File inc/git.inc.php changed (mode: 100644) (index dfd89e6..dd336bf) |
... |
... |
function rg_git_init($dst) |
66 |
66 |
|
|
67 |
67 |
if (!file_exists($dst . "/rocketgit")) { |
if (!file_exists($dst . "/rocketgit")) { |
68 |
68 |
$cmd = "git init --bare '" . escapeshellcmd($dst) . "'"; |
$cmd = "git init --bare '" . escapeshellcmd($dst) . "'"; |
69 |
|
rg_log("\texec $cmd..."); |
|
70 |
|
$a = exec($cmd, $output, $err); |
|
71 |
|
if ($err != 0) { |
|
72 |
|
rg_git_set_error("crror $err (" . implode("|", $output) . " ($a)"); |
|
|
69 |
|
$a = rg_exec($cmd); |
|
70 |
|
if ($a['ok'] != 1) { |
|
71 |
|
rg_git_set_error("error on init " . $a['errmsg']); |
73 |
72 |
return FALSE; |
return FALSE; |
74 |
73 |
} |
} |
75 |
74 |
|
|
|
... |
... |
function rg_git_clone($src, $dst) |
101 |
100 |
if (!file_exists($dst . "/rocketgit")) { |
if (!file_exists($dst . "/rocketgit")) { |
102 |
101 |
$cmd = "git clone --bare '" . escapeshellcmd($src) . "'" |
$cmd = "git clone --bare '" . escapeshellcmd($src) . "'" |
103 |
102 |
. " '" . escapeshellcmd($dst) . "'"; |
. " '" . escapeshellcmd($dst) . "'"; |
104 |
|
rg_log("\texec $cmd..."); |
|
105 |
|
$a = exec($cmd); |
|
106 |
|
if ($err != 0) { |
|
107 |
|
rg_git_set_error("error $err (" . implode("|", $output) . " ($a)"); |
|
|
103 |
|
$a = rg_exec($cmd); |
|
104 |
|
if ($a['ok'] != 1) { |
|
105 |
|
rg_git_set_error("error on clone (" . $a['errmsg']); |
108 |
106 |
return FALSE; |
return FALSE; |
109 |
107 |
} |
} |
110 |
108 |
|
|
|
... |
... |
function rg_git_clone($src, $dst) |
126 |
124 |
function rg_git_type($obj) |
function rg_git_type($obj) |
127 |
125 |
{ |
{ |
128 |
126 |
$cmd = "git cat-file -t '" . $obj . "'"; |
$cmd = "git cat-file -t '" . $obj . "'"; |
129 |
|
rg_log("\texec $cmd..."); |
|
130 |
|
$a = exec($cmd, $output, $err); |
|
131 |
|
if ($err != 0) { |
|
132 |
|
rg_git_set_error("error $err (" . implode("|", $output) . " ($a)"); |
|
|
127 |
|
$a = rg_exec($cmd); |
|
128 |
|
if ($a['ok'] != 1) { |
|
129 |
|
rg_git_set_error("error on cat-file (" . $a['errmsg']); |
133 |
130 |
return FALSE; |
return FALSE; |
134 |
131 |
} |
} |
135 |
132 |
|
|
136 |
|
return trim($a); |
|
|
133 |
|
return trim($a['data']); |
137 |
134 |
} |
} |
138 |
135 |
|
|
139 |
136 |
/* |
/* |
|
... |
... |
function rg_git_type($obj) |
142 |
139 |
function rg_git_content($obj) |
function rg_git_content($obj) |
143 |
140 |
{ |
{ |
144 |
141 |
$cmd = "git cat-file -p '" . $obj . "'"; |
$cmd = "git cat-file -p '" . $obj . "'"; |
145 |
|
rg_log("\texec $cmd..."); |
|
146 |
|
$a = exec($cmd, $output, $err); |
|
147 |
|
if ($err != 0) { |
|
148 |
|
rg_git_set_error("error $err (" . implode("|", $output) . " ($a)"); |
|
|
142 |
|
$a = rg_exec($cmd); |
|
143 |
|
if ($a['ok'] != 1) { |
|
144 |
|
rg_git_set_error("error on cat-file (" . $a['errmsg']); |
149 |
145 |
return FALSE; |
return FALSE; |
150 |
146 |
} |
} |
151 |
147 |
|
|
152 |
|
return $output; |
|
|
148 |
|
return $a['data']; |
153 |
149 |
} |
} |
154 |
150 |
|
|
155 |
151 |
/* |
/* |
|
... |
... |
function rg_git_reference($refname) |
176 |
172 |
function rg_git_rev_ok($rev) |
function rg_git_rev_ok($rev) |
177 |
173 |
{ |
{ |
178 |
174 |
$cmd = "git rev-parse --verify --quiet '" . $rev . "'"; |
$cmd = "git rev-parse --verify --quiet '" . $rev . "'"; |
179 |
|
rg_log("\texec $cmd..."); |
|
180 |
|
$a = @exec($cmd, $output, $err); |
|
181 |
|
if ($err != 0) { |
|
182 |
|
rg_git_set_error("error $err out=[" . implode("|", $output) . "] a=[$a]"); |
|
|
175 |
|
$a = rg_exec($cmd); |
|
176 |
|
if ($a['ok'] != 1) { |
|
177 |
|
rg_git_set_error("error on rev-parse (" . $a['errmsg']); |
183 |
178 |
return FALSE; |
return FALSE; |
184 |
179 |
} |
} |
185 |
180 |
|
|
186 |
181 |
return TRUE; |
return TRUE; |
187 |
182 |
} |
} |
188 |
183 |
|
|
189 |
|
// returns FALSE if bad whitespace detected |
|
190 |
|
// TODO: Unit testing |
|
|
184 |
|
/* |
|
185 |
|
* Returns FALSE if bad whitespace detected |
|
186 |
|
* TODO: Unit testing: pay attention to return code |
|
187 |
|
*/ |
191 |
188 |
function rg_git_whitespace_ok($old, $new) |
function rg_git_whitespace_ok($old, $new) |
192 |
189 |
{ |
{ |
193 |
190 |
$cmd = "git diff --check " . $old . " " . $new; |
$cmd = "git diff --check " . $old . " " . $new; |
194 |
|
rg_log("\texec $cmd..."); |
|
195 |
|
$a = @exec($cmd, $output, $err); |
|
196 |
|
if ($err != 0) { |
|
197 |
|
rg_git_set_error("error $err out=[" . implode("|", $output) . "] a=[$a]"); |
|
|
191 |
|
$a = rg_exec($cmd); |
|
192 |
|
if ($a['ok'] != 1) { |
|
193 |
|
rg_git_set_error("error on diff (" . $a['errmsg']); |
198 |
194 |
return FALSE; |
return FALSE; |
199 |
195 |
} |
} |
200 |
196 |
|
|
|
... |
... |
function rg_git_whitespace_ok($old, $new) |
205 |
201 |
function rg_git_merge_base($old, $new) |
function rg_git_merge_base($old, $new) |
206 |
202 |
{ |
{ |
207 |
203 |
$cmd = "git merge-base " . $old . " " . $new; |
$cmd = "git merge-base " . $old . " " . $new; |
208 |
|
rg_log("\texec $cmd..."); |
|
209 |
|
$a = @exec($cmd, $output, $err); |
|
210 |
|
if ($err != 0) { |
|
211 |
|
rg_git_set_error("error $err out=[" . implode("|", $output) . "] a=[$a]"); |
|
|
204 |
|
$a = rg_exec($cmd); |
|
205 |
|
if ($a['ok'] != 1) { |
|
206 |
|
rg_git_set_error("error on merge-base (" . $a['errmsg']); |
212 |
207 |
return FALSE; |
return FALSE; |
213 |
208 |
} |
} |
214 |
209 |
|
|
215 |
|
return trim($a); |
|
|
210 |
|
return trim($a['data']); |
216 |
211 |
} |
} |
217 |
212 |
|
|
218 |
213 |
/* |
/* |
|
... |
... |
function rg_git_ls_tree($tree) |
231 |
226 |
} |
} |
232 |
227 |
|
|
233 |
228 |
$cmd = "git ls-tree --long" . $op . $tree; |
$cmd = "git ls-tree --long" . $op . $tree; |
234 |
|
rg_log("\texec $cmd..."); |
|
235 |
|
$a = @exec($cmd, $output, $err); |
|
236 |
|
if ($err != 0) { |
|
237 |
|
rg_git_set_error("error $err out=[" . implode("|", $output) . "] a=[$a]"); |
|
|
229 |
|
$a = rg_exec($cmd); |
|
230 |
|
if ($a['ok'] != 1) { |
|
231 |
|
rg_git_set_error("error on ls-tree (" . $a['errmsg']); |
238 |
232 |
return FALSE; |
return FALSE; |
239 |
233 |
} |
} |
240 |
234 |
|
|
|
235 |
|
$output = explode("\n", trim($a['data'])); |
241 |
236 |
foreach ($output as $line) { |
foreach ($output as $line) { |
242 |
237 |
$_y = array(); |
$_y = array(); |
243 |
238 |
$_t = explode("\t", $line); |
$_t = explode("\t", $line); |
|
... |
... |
function rg_git_diff2array($diff) |
263 |
258 |
$ret = array(); |
$ret = array(); |
264 |
259 |
|
|
265 |
260 |
$lines = explode("\n", $diff); |
$lines = explode("\n", $diff); |
|
261 |
|
|
266 |
262 |
$file = 0; |
$file = 0; |
267 |
263 |
foreach ($lines as $line) { |
foreach ($lines as $line) { |
268 |
|
if (empty($line)) |
|
269 |
|
continue; |
|
270 |
|
|
|
271 |
264 |
if (strncmp($line, "diff ", 5) == 0) { |
if (strncmp($line, "diff ", 5) == 0) { |
272 |
265 |
$file++; |
$file++; |
273 |
266 |
$ret[$file] = array(); |
$ret[$file] = array(); |
|
... |
... |
function rg_git_diff2array($diff) |
333 |
326 |
if (!isset($ret[$file]['file'])) |
if (!isset($ret[$file]['file'])) |
334 |
327 |
$ret[$file]['file'] = $file_name_tmp[$file_name_sel]; |
$ret[$file]['file'] = $file_name_tmp[$file_name_sel]; |
335 |
328 |
|
|
336 |
|
if ((strncmp($line, " ", 1) == 0) |
|
|
329 |
|
// empty is because somehow git log pass an empty line. |
|
330 |
|
// TODO: we should check this theory. |
|
331 |
|
if (empty($line) |
|
332 |
|
|| (strncmp($line, " ", 1) == 0) |
337 |
333 |
|| (strncmp($line, "+", 1) == 0) |
|| (strncmp($line, "+", 1) == 0) |
338 |
334 |
|| (strncmp($line, "-", 1) == 0)) { |
|| (strncmp($line, "-", 1) == 0)) { |
339 |
335 |
$ret[$file]['chunks'][$chunk]['lines'][] = $line; |
$ret[$file]['chunks'][$chunk]['lines'][] = $line; |
340 |
336 |
continue; |
continue; |
341 |
337 |
} |
} |
342 |
338 |
|
|
343 |
|
echo "I do not know how to parse [" . trim($line) . "]!\n"; |
|
|
339 |
|
if (empty($line)) { |
|
340 |
|
rg_log("\tWARN: empty line [$line]!"); |
|
341 |
|
continue; |
|
342 |
|
} |
|
343 |
|
|
|
344 |
|
rg_log("\tERROR: I do not know how to parse [" . trim($line) . "]!"); |
344 |
345 |
exit(0); |
exit(0); |
345 |
346 |
} |
} |
346 |
347 |
|
|
|
... |
... |
function rg_git_log($max, $from, $to, $also_patch) |
388 |
389 |
. "%x00ROCKETGIT_END_OF_VARS%x00\"" |
. "%x00ROCKETGIT_END_OF_VARS%x00\"" |
389 |
390 |
. " --numstat" |
. " --numstat" |
390 |
391 |
. $from_to; |
. $from_to; |
391 |
|
rg_log("\texec $cmd..."); |
|
392 |
|
$a = @exec($cmd, $output, $err); |
|
393 |
|
if ($err != 0) { |
|
394 |
|
rg_git_set_error("error $err out=[" . implode("|", $output) . "] a=[$a]"); |
|
|
392 |
|
$a = rg_exec($cmd); |
|
393 |
|
if ($a['ok'] != 1) { |
|
394 |
|
rg_git_set_error("error on log (" . $a['errmsg']); |
395 |
395 |
return FALSE; |
return FALSE; |
396 |
396 |
} |
} |
397 |
397 |
|
|
398 |
|
$a = implode("\n", $output); |
|
399 |
|
|
|
400 |
|
$blocks = explode("\0-=ROCKETGIT=-\0", $a); |
|
|
398 |
|
$blocks = explode("\0-=ROCKETGIT=-\0", $a['data']); |
401 |
399 |
// ignore first entry because of separator |
// ignore first entry because of separator |
402 |
400 |
unset($blocks[0]); |
unset($blocks[0]); |
403 |
401 |
|
|
|
... |
... |
function rg_git_log($max, $from, $to, $also_patch) |
407 |
405 |
|
|
408 |
406 |
// split block in two: vars and stats + patches |
// split block in two: vars and stats + patches |
409 |
407 |
$parts = explode("\0ROCKETGIT_END_OF_VARS\0", $block, 2); |
$parts = explode("\0ROCKETGIT_END_OF_VARS\0", $block, 2); |
410 |
|
//rg_log("DEBUG: parts:" . print_r($parts, TRUE)); |
|
411 |
408 |
|
|
412 |
409 |
// vars |
// vars |
413 |
410 |
$x = explode ("\0", trim($parts[0])); |
$x = explode ("\0", trim($parts[0])); |
|
... |
... |
function rg_git_log($max, $from, $to, $also_patch) |
422 |
419 |
|
|
423 |
420 |
// stats & patches |
// stats & patches |
424 |
421 |
$stats_and_patches = trim($parts[1]); |
$stats_and_patches = trim($parts[1]); |
425 |
|
rg_log("DEBUG: stats_and_patches:" . print_r($stats_and_patches, TRUE)); |
|
426 |
422 |
$_sp = explode("\0\0", $stats_and_patches, 2); |
$_sp = explode("\0\0", $stats_and_patches, 2); |
427 |
423 |
$stats = $_sp[0]; |
$stats = $_sp[0]; |
428 |
424 |
if (isset($_sp[1])) |
if (isset($_sp[1])) |
|
... |
... |
function rg_git_diff($a, $template_file) |
540 |
536 |
if (!isset($finfo['file'])) |
if (!isset($finfo['file'])) |
541 |
537 |
rg_log("BAD finfo:" . print_r($finfo, TRUE)); |
rg_log("BAD finfo:" . print_r($finfo, TRUE)); |
542 |
538 |
$f = $finfo['file']; |
$f = $finfo['file']; |
543 |
|
$ret .= "<br />"; |
|
|
539 |
|
$ret .= "<br />\n"; |
544 |
540 |
$ret .= "<b>"; |
$ret .= "<b>"; |
545 |
541 |
if (strstr($finfo['flags'], "N")) |
if (strstr($finfo['flags'], "N")) |
546 |
542 |
$ret .= "file [$f] added\n"; |
$ret .= "file [$f] added\n"; |
|
... |
... |
function rg_git_diff($a, $template_file) |
551 |
547 |
$ret .= "</b>"; |
$ret .= "</b>"; |
552 |
548 |
|
|
553 |
549 |
foreach ($finfo['chunks'] as $chunk => $ci) { |
foreach ($finfo['chunks'] as $chunk => $ci) { |
554 |
|
$ret .= "<br />"; |
|
|
550 |
|
$ret .= "<br />\n"; |
555 |
551 |
$ret .= "Section [" . $ci['section'] . "] ($chunk):<br />\n"; |
$ret .= "Section [" . $ci['section'] . "] ($chunk):<br />\n"; |
556 |
552 |
$ret .= "<table>\n"; |
$ret .= "<table>\n"; |
557 |
553 |
|
|