ramips: convert mt7628 to new image building code
[openwrt/openwrt.git] / scripts / metadata.pm
1 package metadata;
2 use base 'Exporter';
3 use strict;
4 use warnings;
5 our @EXPORT = qw(%package %srcpackage %category %subdir %preconfig %features %overrides clear_packages parse_package_metadata parse_target_metadata get_multiline @ignore);
6
7 our %package;
8 our %preconfig;
9 our %srcpackage;
10 our %category;
11 our %subdir;
12 our %features;
13 our %overrides;
14 our @ignore;
15
16 sub get_multiline {
17 my $fh = shift;
18 my $prefix = shift;
19 my $str;
20 while (<$fh>) {
21 last if /^@@/;
22 $str .= (($_ and $prefix) ? $prefix . $_ : $_);
23 }
24
25 return $str ? $str : "";
26 }
27
28 sub confstr($) {
29 my $conf = shift;
30 $conf =~ tr#/\.\-/#___#;
31 return $conf;
32 }
33
34 sub parse_target_metadata($) {
35 my $file = shift;
36 my ($target, @target, $profile);
37 my %target;
38 my $makefile;
39
40 open FILE, "<$file" or do {
41 warn "Can't open file '$file': $!\n";
42 return;
43 };
44 while (<FILE>) {
45 chomp;
46 /^Source-Makefile: \s*((.+\/)([^\/]+)\/Makefile)\s*$/ and $makefile = $1;
47 /^Target:\s*(.+)\s*$/ and do {
48 my $name = $1;
49 $target = {
50 id => $name,
51 board => $name,
52 makefile => $makefile,
53 boardconf => confstr($name),
54 conf => confstr($name),
55 profiles => [],
56 features => [],
57 depends => [],
58 subtargets => []
59 };
60 push @target, $target;
61 $target{$name} = $target;
62 if ($name =~ /([^\/]+)\/([^\/]+)/) {
63 push @{$target{$1}->{subtargets}}, $2;
64 $target->{board} = $1;
65 $target->{boardconf} = confstr($1);
66 $target->{subtarget} = 1;
67 $target->{parent} = $target{$1};
68 }
69 };
70 /^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1;
71 /^Target-Arch:\s*(.+)\s*$/ and $target->{arch} = $1;
72 /^Target-Arch-Packages:\s*(.+)\s*$/ and $target->{arch_packages} = $1;
73 /^Target-Features:\s*(.+)\s*$/ and $target->{features} = [ split(/\s+/, $1) ];
74 /^Target-Depends:\s*(.+)\s*$/ and $target->{depends} = [ split(/\s+/, $1) ];
75 /^Target-Description:/ and $target->{desc} = get_multiline(*FILE);
76 /^Target-Optimization:\s*(.+)\s*$/ and $target->{cflags} = $1;
77 /^CPU-Type:\s*(.+)\s*$/ and $target->{cputype} = $1;
78 /^Linux-Version:\s*(.+)\s*$/ and $target->{version} = $1;
79 /^Linux-Release:\s*(.+)\s*$/ and $target->{release} = $1;
80 /^Linux-Kernel-Arch:\s*(.+)\s*$/ and $target->{karch} = $1;
81 /^Default-Subtarget:\s*(.+)\s*$/ and $target->{def_subtarget} = $1;
82 /^Default-Packages:\s*(.+)\s*$/ and $target->{packages} = [ split(/\s+/, $1) ];
83 /^Target-Profile:\s*(.+)\s*$/ and do {
84 $profile = {
85 id => $1,
86 name => $1,
87 priority => 999,
88 packages => []
89 };
90 push @{$target->{profiles}}, $profile;
91 };
92 /^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1;
93 /^Target-Profile-Priority:\s*(\d+)\s*$/ and do {
94 $profile->{priority} = $1;
95 $target->{sort} = 1;
96 };
97 /^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ];
98 /^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
99 /^Target-Profile-Config:/ and $profile->{config} = get_multiline(*FILE, "\t");
100 /^Target-Profile-Kconfig:/ and $profile->{kconfig} = 1;
101 }
102 close FILE;
103 foreach my $target (@target) {
104 if (@{$target->{subtargets}} > 0) {
105 $target->{profiles} = [];
106 next;
107 }
108 @{$target->{profiles}} > 0 or $target->{profiles} = [
109 {
110 id => 'Default',
111 name => 'Default',
112 packages => []
113 }
114 ];
115 }
116 return @target;
117 }
118
119 sub clear_packages() {
120 %subdir = ();
121 %preconfig = ();
122 %package = ();
123 %srcpackage = ();
124 %category = ();
125 %features = ();
126 %overrides = ();
127 }
128
129 sub parse_package_metadata($) {
130 my $file = shift;
131 my $pkg;
132 my $feature;
133 my $makefile;
134 my $preconfig;
135 my $subdir;
136 my $src;
137 my $override;
138 my %ignore = map { $_ => 1 } @ignore;
139
140 open FILE, "<$file" or do {
141 warn "Cannot open '$file': $!\n";
142 return undef;
143 };
144 while (<FILE>) {
145 chomp;
146 /^Source-Makefile: \s*((.+\/)([^\/]+)\/Makefile)\s*$/ and do {
147 $makefile = $1;
148 $subdir = $2;
149 $src = $3;
150 $subdir =~ s/^package\///;
151 $subdir{$src} = $subdir;
152 $srcpackage{$src} = [];
153 $override = "";
154 undef $pkg;
155 };
156 /^Override: \s*(.+?)\s*$/ and do {
157 $override = $1;
158 $overrides{$src} = 1;
159 };
160 next unless $src;
161 next if $ignore{$src};
162 /^Package:\s*(.+?)\s*$/ and do {
163 undef $feature;
164 $pkg = {};
165 $pkg->{src} = $src;
166 $pkg->{makefile} = $makefile;
167 $pkg->{name} = $1;
168 $pkg->{title} = "";
169 $pkg->{depends} = [];
170 $pkg->{mdepends} = [];
171 $pkg->{builddepends} = [];
172 $pkg->{buildtypes} = [];
173 $pkg->{subdir} = $subdir;
174 $pkg->{tristate} = 1;
175 $pkg->{override} = $override;
176 $package{$1} = $pkg;
177 push @{$srcpackage{$src}}, $pkg;
178 };
179 /^Feature:\s*(.+?)\s*$/ and do {
180 undef $pkg;
181 $feature = {};
182 $feature->{name} = $1;
183 $feature->{priority} = 0;
184 };
185 $feature and do {
186 /^Target-Name:\s*(.+?)\s*$/ and do {
187 $features{$1} or $features{$1} = [];
188 push @{$features{$1}}, $feature;
189 };
190 /^Target-Title:\s*(.+?)\s*$/ and $feature->{target_title} = $1;
191 /^Feature-Priority:\s*(\d+)\s*$/ and $feature->{priority} = $1;
192 /^Feature-Name:\s*(.+?)\s*$/ and $feature->{title} = $1;
193 /^Feature-Description:/ and $feature->{description} = get_multiline(\*FILE, "\t\t\t");
194 next;
195 };
196 next unless $pkg;
197 /^Version: \s*(.+)\s*$/ and $pkg->{version} = $1;
198 /^Title: \s*(.+)\s*$/ and $pkg->{title} = $1;
199 /^Menu: \s*(.+)\s*$/ and $pkg->{menu} = $1;
200 /^Submenu: \s*(.+)\s*$/ and $pkg->{submenu} = $1;
201 /^Submenu-Depends: \s*(.+)\s*$/ and $pkg->{submenudep} = $1;
202 /^Source: \s*(.+)\s*$/ and $pkg->{source} = $1;
203 /^License: \s*(.+)\s*$/ and $pkg->{license} = $1;
204 /^LicenseFiles: \s*(.+)\s*$/ and $pkg->{licensefiles} = $1;
205 /^Default: \s*(.+)\s*$/ and $pkg->{default} = $1;
206 /^Provides: \s*(.+)\s*$/ and do {
207 my @vpkg = split /\s+/, $1;
208 foreach my $vpkg (@vpkg) {
209 $package{$vpkg} or $package{$vpkg} = {
210 name => $vpkg,
211 vdepends => [],
212 src => $src,
213 subdir => $subdir,
214 makefile => $makefile
215 };
216 push @{$package{$vpkg}->{vdepends}}, $pkg->{name};
217 }
218 };
219 /^Menu-Depends: \s*(.+)\s*$/ and $pkg->{mdepends} = [ split /\s+/, $1 ];
220 /^Depends: \s*(.+)\s*$/ and $pkg->{depends} = [ split /\s+/, $1 ];
221 /^Conflicts: \s*(.+)\s*$/ and $pkg->{conflicts} = [ split /\s+/, $1 ];
222 /^Hidden: \s*(.+)\s*$/ and $pkg->{hidden} = 1;
223 /^Build-Variant: \s*([\w\-]+)\s*/ and $pkg->{variant} = $1;
224 /^Default-Variant: .*/ and $pkg->{variant_default} = 1;
225 /^Build-Only: \s*(.+)\s*$/ and $pkg->{buildonly} = 1;
226 /^Build-Depends: \s*(.+)\s*$/ and $pkg->{builddepends} = [ split /\s+/, $1 ];
227 /^Build-Depends\/(\w+): \s*(.+)\s*$/ and $pkg->{"builddepends/$1"} = [ split /\s+/, $2 ];
228 /^Build-Types:\s*(.+)\s*$/ and $pkg->{buildtypes} = [ split /\s+/, $1 ];
229 /^Repository:\s*(.+?)\s*$/ and $pkg->{repository} = $1;
230 /^Category: \s*(.+)\s*$/ and do {
231 $pkg->{category} = $1;
232 defined $category{$1} or $category{$1} = {};
233 defined $category{$1}->{$src} or $category{$1}->{$src} = [];
234 push @{$category{$1}->{$src}}, $pkg;
235 };
236 /^Description: \s*(.*)\s*$/ and $pkg->{description} = "\t\t $1\n". get_multiline(*FILE, "\t\t ");
237 /^Type: \s*(.+)\s*$/ and do {
238 $pkg->{type} = [ split /\s+/, $1 ];
239 undef $pkg->{tristate};
240 foreach my $type (@{$pkg->{type}}) {
241 $type =~ /ipkg/ and $pkg->{tristate} = 1;
242 }
243 };
244 /^Config:\s*(.*)\s*$/ and $pkg->{config} = "$1\n".get_multiline(*FILE, "\t");
245 /^Prereq-Check:/ and $pkg->{prereq} = 1;
246 /^Preconfig:\s*(.+)\s*$/ and do {
247 my $pkgname = $pkg->{name};
248 $preconfig{$pkgname} or $preconfig{$pkgname} = {};
249 if (exists $preconfig{$pkgname}->{$1}) {
250 $preconfig = $preconfig{$pkgname}->{$1};
251 } else {
252 $preconfig = {
253 id => $1
254 };
255 $preconfig{$pkgname}->{$1} = $preconfig;
256 }
257 };
258 /^Preconfig-Type:\s*(.*?)\s*$/ and $preconfig->{type} = $1;
259 /^Preconfig-Label:\s*(.*?)\s*$/ and $preconfig->{label} = $1;
260 /^Preconfig-Default:\s*(.*?)\s*$/ and $preconfig->{default} = $1;
261 }
262 close FILE;
263 return 1;
264 }
265
266 1;