aboutsummaryrefslogtreecommitdiff
path: root/scripts/mk2knr.pl
blob: 29f94a1880fd40af7cf0c41d66aa5f174ccf6087 (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
#!/usr/bin/perl -w
#
# @(#) mk2knr.pl - generates a perl script that converts lexemes to K&R-style
#
# How to use this script:
#  - In the busybox directory type 'scripts/mk2knr.pl files-you-want-to-convert'
#  - Review the 'convertme.pl' script generated and remove / edit any of the
#    substitutions in there (please especially check for false positives)
#  - Type './convertme.pl same-files-as-before'
#  - Compile and see if it works
#
# BUGS: This script does not ignore strings inside comments or strings inside
# quotes (it probably should).

# set this to something else if you want
$convertme = 'convertme.pl';

# internal-use variables (don't touch)
$convert = 0;
%converted = ();


# prepare the "convert me" file
open(CM, ">$convertme") or die "convertme.pl $!";
print CM "#!/usr/bin/perl -p -i\n\n";

# process each file passed on the cmd line
while (<>) {

	# if the line says "getopt" in it anywhere, we don't want to muck with it
	# because option lists tend to include strings like "cxtzvOf:" which get
	# matched by the javaStyle / Hungarian and PascalStyle regexps below
	next if /getopt/;

	# tokenize the string into just the variables
	while (/([a-zA-Z_][a-zA-Z0-9_]*)/g) {
		$var = $1;

		# ignore the word "BusyBox"
		next if ($var =~ /BusyBox/);

		# this checks for javaStyle or szHungarianNotation
		$convert++ if ($var =~ /^[a-z]+[A-Z][a-z]+/);

		# this checks for PascalStyle
		$convert++ if ($var =~ /^[A-Z][a-z]+[A-Z][a-z]+/);

		if ($convert) {
			$convert = 0;

			# skip ahead if we've already dealt with this one
			next if ($converted{$var});

			# record that we've dealt with this var
			$converted{$var} = 1;

			print CM "s/\\b$var\\b/"; # more to come in just a minute

			# change the first letter to lower-case
			$var = lcfirst($var);

			# put underscores before all remaining upper-case letters
			$var =~ s/([A-Z])/_$1/g;

			# now change the remaining characters to lower-case
			$var = lc($var);

			print CM "$var/g;\n";
		}
	}
}

# tidy up and make the $convertme script executable
close(CM);
chmod 0755, $convertme;