summaryrefslogtreecommitdiffstats
path: root/web/lib/pkgbuild-parser.inc.php
blob: 0bd4cfe57fc7cd08b9fed6c1b939ff2817a2a5f2 (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
# <?php
if (!$error) {
	# process PKGBUILD - remove line concatenation
	#
	$pkgbuild = array();
	$line_no = 0;
	$lines = array();
	$continuation_line = 0;
	$current_line = "";
	$paren_depth = 0;
	foreach (explode("\n", $pkgbuild_raw) as $line) {
		$line = trim($line);
		# Remove comments
		$line = preg_replace('/\s*#.*/', '', $line);

		$char_counts = count_chars($line, 0);
		$paren_depth += $char_counts[ord('(')] - $char_counts[ord(')')];
		if (substr($line, strlen($line)-1) == "\\") {
			# continue appending onto existing line_no
			#
			$current_line .= substr($line, 0, strlen($line)-1);
			$continuation_line = 1;
		} elseif ($paren_depth > 0) {
			# assumed continuation
			# continue appending onto existing line_no
			#
			$current_line .= $line . " ";
			$continuation_line = 1;
		} else {
			# maybe the last line in a continuation, or a standalone line?
			#
			if ($continuation_line) {
				# append onto existing line_no
				#
				$current_line .= $line;
				$lines[$line_no] = $current_line;
				$current_line = "";
			} else {
				# it's own line_no
				#
				$lines[$line_no] = $line;
			}
			$continuation_line = 0;
			$line_no++;
		}
	}

	# Now process the lines and put any var=val lines into the
	# 'pkgbuild' array.
	while (list($k, $line) = each($lines)) {
		# Neutralize parameter substitution
		$line = preg_replace('/\${(\w+)#(\w*)}?/', '$1$2', $line);

		$lparts = Array();
		# Match variable assignment only.
		if (preg_match('/^\s*[_\w]+=[^=].*/', $line, $matches)) {
			$lparts = explode("=", $matches[0], 2);
		}

		if (!empty($lparts)) {
			# this is a variable/value pair, strip
			# out array parens and any quoting,
			# except in pkgdesc for pkgname or
			# pkgdesc, only remove start/end pairs
			# of " or '
			if ($lparts[0] == "pkgname" || $lparts[0] == "pkgdesc") {
				if ($lparts[1]{0} == '"' &&
						$lparts[1]{strlen($lparts[1])-1} == '"') {
					$pkgbuild[$lparts[0]] = substr($lparts[1], 1, -1);
				}
				elseif
					($lparts[1]{0} == "'" &&
					 $lparts[1]{strlen($lparts[1])-1} == "'") {
					$pkgbuild[$lparts[0]] = substr($lparts[1], 1, -1);
				} else {
					$pkgbuild[$lparts[0]] = $lparts[1];
				}
			} else {
				$pkgbuild[$lparts[0]] = str_replace(array("(",")","\"","'"), "",
						$lparts[1]);
			}
		}
	}

	# some error checking on PKGBUILD contents - just make sure each
	# variable has a value. This does not do any validity checking
	# on the values, or attempts to fix line continuation/wrapping.
	$req_vars = array("url", "pkgdesc", "license", "pkgrel", "pkgver", "arch", "pkgname");
	foreach ($req_vars as $var) {
		if (!array_key_exists($var, $pkgbuild)) {
			$error = __('Missing %s variable in PKGBUILD.', $var);
			break;
		}
	}
}

# Now, run through the pkgbuild array, and do "eval" and simple substituions.
$new_pkgbuild = array();
if (!$error) {
	while (list($k, $v) = each($pkgbuild)) {
		if (strpos($k,'eval ') !== false) {
			$k = preg_replace('/^eval[\s]*/', "", $k);
			##"eval" replacements
			$pattern_eval = '/{\$({?)([\w]+)(}?)}/';
			while (preg_match($pattern_eval,$v,$regs)) {
				$pieces = explode(",",$pkgbuild["$regs[2]"]);
				## nongreedy matching! - preserving the order of "eval"
				$pattern = '/([\S]*?){\$'.$regs[1].$regs[2].$regs[3].'}([\S]*)/';
				while (preg_match($pattern,$v,$regs_replace)) {
					$replacement = "";
					for ($i = 0; $i < sizeof($pieces); $i++) {
						$replacement .= $regs_replace[1].$pieces[$i].$regs_replace[2]." ";
					}
					$v=preg_replace($pattern, $replacement, $v, 1);
				}
			}
		}

		# Simple variable replacement
		$pattern_var = '/\$({?)([_\w]+)(}?)/';
		$offset = 0;
		while (preg_match($pattern_var, $v, $regs, PREG_OFFSET_CAPTURE, $offset)) {
			$var = $regs[2][0];
			$pos = $regs[0][1];
			$len = strlen($regs[0][0]);

			if (isset($new_pkgbuild[$var])) {
				$replacement = substr($new_pkgbuild[$var], strpos($new_pkgbuild[$var], " "));
			}
			else {
				$replacement = '';
			}

			$v = substr_replace($v, $replacement, $pos, $len);
			$offset = $pos + strlen($replacement);
		}
		$new_pkgbuild[$k] = $v;
	}
}