summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/config_mk.pl
blob: 7a85bfa24bbfa32f8a284e878529139de17e978c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
###########################################################
### SMB Build System					###
### - config.mk parsing functions			###
###							###
###  Copyright (C) Stefan (metze) Metzmacher 2004	###
###  Released under the GNU GPL				###
###########################################################

###########################################################
# The parsing function which parses the file
#
# $result = _parse_config_mk($filename)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $result -	the resulting structure
#
# $result->{ERROR_CODE} -	the error_code, '0' means success
# $result->{ERROR_STR} -	the error string
#
# $result->{$key}{KEY} -	the key == the variable which was parsed
# $result->{$key}{VAL} -	the value of the variable
sub _parse_config_mk($)
{
	my $filename = shift;
	my $result;
	my $linenum = -1;
	my $waiting = 0;
	my $section = "GLOBAL";
	my $key;

	$result->{ERROR_CODE} = -1;

	open(CONFIG_MK, "< $filename") || die ("Can't open $filename\n");

	while (<CONFIG_MK>) {
		my $line = $_;
		my $val;

		$linenum++;

		#
		# lines beginnig with '#' are ignored
		# 
		if ($line =~ /^\#.*$/) {
			next;
		}

		#
		#
		#
		if (($waiting == 0) && ($line =~ /^\[([a-zA-Z0-9_:]+)\][\t ]*$/)) {
			$section = $1;
			next;
		}
		
		#
		# 1.)	lines with an aplhanumeric character indicate
		# 	a new variable, 
		# 2.)	followed by zero or more whitespaces or tabs
		# 3.)	then one '=' character
		# 4.)	followed by the value of the variable
		# 5.)	a newline ('\n') can be escaped by a '\' before the newline
		#	and the next line needs to start with a tab ('\t')
		#
		if (($waiting == 0) && ($line =~ /^([a-zA-Z0-9_]+)[\t ]*=(.*)$/)) {
			$key = $1;
			$val = $2;

			#
			# when we have a '\' before the newline 
			# then skip it and wait for the next line.
			#
			if ($val =~ /(.*)(\\)$/) {
				$val = $1;
				$waiting = 1;		
			} else {
				$waiting = 0;
			}

			$result->{$section}{$key}{KEY} = $key;
			$result->{$section}{$key}{VAL} = $val;
			next;
		}

		#
		# when we are waiting for a value to continue then
		# check if it has a leading tab.
		#
		if (($waiting == 1) && ($line =~ /^\t(.*)$/)) {
			$val = $1;

			#
			# when we have a '\' before the newline 
			# then skip it and wait for the next line.
			#
			if ($val =~ /(.*)( \\)$/) {
				$val = $1;
				$waiting = 1;		
			} else {
				$waiting = 0;
			}

			$result->{$section}{$key}{VAL} .= " ";
			$result->{$section}{$key}{VAL} .= $val;
			next;
		}

		#
		# catch empty lines they're ignored
		# and we're no longer waiting for the value to continue
		#
		if ($line =~ /^$/) {
			$waiting = 0;
			next;
		}

		close(CONFIG_MK);

		$result->{ERROR_STR} = "Bad line while parsing $filename\n$filename:$linenum: $line";

		return $result;
	}

	close(CONFIG_MK);

	$result->{ERROR_CODE} = 0;

	return $result;
}

###########################################################
# A caching function to avoid to parse
# a file twice or more
#
# $result = _get_parse_results($filename)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $result -	the resulting structure
#
# $result->{ERROR_CODE} -	the error_code, '0' means success
# $result->{ERROR_STR} -	the error string
#
# $result->{$key}{KEY} -	the key == the variable which was parsed
# $result->{$key}{VAL} -	the value of the variable
my $_get_parse_results_cache;
sub _get_parse_results($)
{
	my $filename = shift;

	if ((!defined($_get_parse_results_cache->{$filename}{ERROR_CODE}))
		||($_get_parse_results_cache->{$filename}{ERROR_CODE} != 0)) {
		$_get_parse_results_cache->{$filename} = _parse_config_mk($filename);
	}

	return $_get_parse_results_cache->{$filename};
}

###########################################################
# The fetching function to fetch the value of a variable 
# out of the file
#
# $value = _fetch_var_from_config_mk($filename,$section,$variable)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $section  -	the section name of the variable
#
# $variable -	the variable name of which we want the value
#
# $value -	the value of the variable
sub _fetch_var_from_config_mk($$$)
{
	my $filename = shift;
	my $section = shift;
	my $key = shift;
	my $val = "";
	my $result;

	$result = _get_parse_results($filename);

	if ($result->{ERROR_CODE} != 0) {
		die ($result->{ERROR_STR});
	}

	if (defined($result->{$section}{$key})) {
		$val = strtrim($result->{$section}{$key}{VAL});
	} elsif (defined($result->{DEFAULT}{$key})) {
		$val = strtrim($result->{DEFAULT}{$key}{VAL});
	}

	return $val;
}

###########################################################
# The fetching function to fetch the array of values of a variable 
# out of the file
#
# $array = _fetch_array_from_config_mk($filename,$section,$variable)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $section  -	the section name of the variable
#
# $variable -	the variable name of which we want the value
#
# $array -	the array of values of the variable
sub _fetch_array_from_config_mk($$$)
{
	my $filename = shift;
	my $section = shift;
	my $key = shift;
	my @val = ();
	my $result;

	$result = _get_parse_results($filename);

	if ($result->{ERROR_CODE} != 0) {
		die ($result->{ERROR_STR});
	}

	if (defined($result->{$section}{$key})) {
		@val = str2array($result->{$section}{$key}{VAL});
	} elsif (defined($result->{DEFAULT}{$key})) {
		@val = str2array($result->{DEFAULT}{$key}{VAL});
	}	

	return @val;
}

###########################################################
# A function for fetching MODULE_<module>_<parameter>
# variables out of a config.mk file
#
# $value = module_get_var($filename,$module,$parameter)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $module -	the middle part of the variable name of which we want the value
#
# $parameter -	the last part of the variable name of which we want the value
#
# $value -	the value of the variable
sub module_get_var($$$)
{
	my $filename = shift;
	my $module = shift;
	my $var = shift;

	my $section = "MODULE::".$module;

	return _fetch_var_from_config_mk($filename,$section,$var);
}

###########################################################
# A function for fetching MODULE_<module>_<parameter>
# variables out of a config.mk file
#
# $array = module_get_array($filename,$module,$parameter)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $module -	the middle part of the variable name of which we want the value
#
# $parameter -	the last part of the variable name of which we want the value
#
# $array -	the array of values of the variable
sub module_get_array($$$)
{
	my $filename = shift;
	my $module = shift;
	my $var = shift;

	my $section = "MODULE::".$module;

	return _fetch_array_from_config_mk($filename,$section,$var);
}

###########################################################
# A function for fetching SUBSYSTEM_<subsystem>_<parameter>
# variables out of a config.mk file
#
# $value = subsystem_get_var($filename,$subsystem,$parameter)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $subsystem -	the middle part of the variable name of which we want the value
#
# $parameter -	the last part of the variable name of which we want the value
#
# $value -	the value of the variable
sub subsystem_get_var($$$)
{
	my $filename = shift;
	my $subsystem = shift;
	my $var = shift;

	my $section = "SUBSYSTEM::".$subsystem;

	return _fetch_var_from_config_mk($filename,$section,$var);
}

###########################################################
# A function for fetching SUBSYSTEM_<subsystem>_<parameter>
# variables out of a config.mk file
#
# $array = subsystem_get_array($filename,$subsystem,$parameter)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $subsystem -	the middle part of the variable name of which we want the value
#
# $parameter -	the last part of the variable name of which we want the value
#
# $array -	the array of values of the variable
sub subsystem_get_array($$$)
{
	my $filename = shift;
	my $subsystem = shift;
	my $var = shift;

	my $section = "SUBSYSTEM::".$subsystem;

	return _fetch_array_from_config_mk($filename,$section,$var);
}

###########################################################
# A function for fetching LIBRARY_<library>_<parameter>
# variables out of a config.mk file
#
# $value = library_get_var($filename,$library,$parameter)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $library -	the middle part of the variable name of which we want the value
#
# $parameter -	the last part of the variable name of which we want the value
#
# $value -	the value of the variable
sub library_get_var($$$)
{
	my $filename = shift;
	my $library = shift;
	my $var = shift;

	my $section = "LIBRARY::".$library;

	return _fetch_var_from_config_mk($filename,$section,$var);
}

###########################################################
# A function for fetching LIBRARY_<library>_<parameter>
# variables out of a config.mk file
#
# $array = library_get_array($filename,$library,$parameter)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $library -	the middle part of the variable name of which we want the value
#
# $parameter -	the last part of the variable name of which we want the value
#
# $array -	the array of values of the variable
sub library_get_array($$$)
{
	my $filename = shift;
	my $library = shift;
	my $var = shift;

	my $section = "LIBRARY::".$library;

	return _fetch_array_from_config_mk($filename,$section,$var);
}

###########################################################
# A function for fetching BINARY_<binary>_<parameter>
# variables out of a config.mk file
#
# $value = binary_get_var($filename,$binary,$parameter)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $binary -	the middle part of the variable name of which we want the value
#
# $parameter -	the last part of the variable name of which we want the value
#
# $value -	the value of the variable
sub binary_get_var($$$)
{
	my $filename = shift;
	my $binary = shift;
	my $var = shift;

	my $section = "BINARY::".$binary;

	return _fetch_var_from_config_mk($filename,$section,$var);
}

###########################################################
# A function for fetching BINARY_<binary>_<parameter>
# variables out of a config.mk file
#
# $array = binary_get_array($filename,$binary,$parameter)
#
# $filename -	the path of the config.mk file
#		which should be parsed
#
# $binary -	the middle part of the variable name of which we want the value
#
# $parameter -	the last part of the variable name of which we want the value
#
# $array -	the array of values of the variable
sub binary_get_array($$$)
{
	my $filename = shift;
	my $binary = shift;
	my $var = shift;

	my $section = "BINARY::".$binary;

	return _fetch_array_from_config_mk($filename,$section,$var);
}