mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Document reparse --min-date more, add validation
Summary: Sometimes it seems necessary to force a reparse of recent commits in production, it took me longer than expected to get this right. To make this easier, document the usage of --min-date further with usage examples and print a usage exception with the input if the supplied value isn't accepted by MySQL. (otherwise all commits will be affected in the case of user error) Test Plan: .. create TEST repo with commits dated 2013-04-03 .. $ ./reparse.php --all TEST --owners --min-date "2013a-04-03 10:30:19" .. see usage exception - invalid timestamp .. $ ./reparse.php --all TEST --owners --min-date "2013-04-03 10:30:19" .. reparse commits ok .. $ ./reparse.php --all TEST --owners --min-date "2013-04-04 10:30:19" .. see 'No commits have been discovered' .. $ ./reparse.php --all TEST --owners .. reparse commits ok .. $ ./reparse.php --help .. looks ok to me .. $ ./reparse.php --all TEST --owners --min-date 2013-04-03 10:30:19 .. see error - interprets 10:30:19 as commit and refuses .. $ ./reparse.php --all TEST --owners --min-date <<first commit time>> .. parse this commit and following .. $ ./reparse.php <<revision_id>> --owners --min-date <<first commit time>> .. see error - insist on --all if --min-date .. $ ./reparse.php <<revision_id>> --owners .. ok .. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5579
This commit is contained in:
parent
754705df4e
commit
875455ad64
1 changed files with 56 additions and 6 deletions
|
@ -10,9 +10,27 @@ $args->setSynopsis(<<<EOHELP
|
||||||
|
|
||||||
Rerun the Diffusion parser on specific commits and repositories. Mostly
|
Rerun the Diffusion parser on specific commits and repositories. Mostly
|
||||||
useful for debugging changes to Diffusion.
|
useful for debugging changes to Diffusion.
|
||||||
|
|
||||||
|
e.g. enqueue reparse owners in the TEST repo for all commits:
|
||||||
|
./reparse.php --all TEST --owners
|
||||||
|
|
||||||
|
e.g. do same but exclude before yesterday (local time):
|
||||||
|
./reparse.php --all TEST --owners --min-date yesterday
|
||||||
|
./reparse.php --all TEST --owners --min-date "today -1 day"
|
||||||
|
|
||||||
|
e.g. do same but exclude before 03/31/2013 (local time):
|
||||||
|
./reparse.php --all TEST --owners --min-date "03/31/2013"
|
||||||
EOHELP
|
EOHELP
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$min_date_usage_examples =
|
||||||
|
"Valid examples:\n".
|
||||||
|
" 'today', 'today 2pm', '-1 hour', '-2 hours', '-24 hours',\n".
|
||||||
|
" 'yesterday', 'today -1 day', 'yesterday 2pm', '2pm -1 day',\n".
|
||||||
|
" 'last Monday', 'last Monday 14:00', 'last Monday 2pm',\n".
|
||||||
|
" '31 March 2013', '31 Mar', '03/31', '03/31/2013',\n".
|
||||||
|
"See __http://www.php.net/manual/en/datetime.formats.php__ for more.\n";
|
||||||
|
|
||||||
$args->parseStandardArguments();
|
$args->parseStandardArguments();
|
||||||
$args->parse(
|
$args->parse(
|
||||||
array(
|
array(
|
||||||
|
@ -33,8 +51,9 @@ $args->parse(
|
||||||
array(
|
array(
|
||||||
'name' => 'min-date',
|
'name' => 'min-date',
|
||||||
'param' => 'date',
|
'param' => 'date',
|
||||||
'help' => 'When used with __--all__, this will restrict to '.
|
'help' => 'Must be used with __--all__, this will exclude commits '.
|
||||||
'reparsing only the commits that are newer than __date__.',
|
'which are earlier than __date__.'.
|
||||||
|
"\n".$min_date_usage_examples,
|
||||||
),
|
),
|
||||||
// which parts
|
// which parts
|
||||||
array(
|
array(
|
||||||
|
@ -87,11 +106,40 @@ if (!$all_from_repo && !$reparse_what) {
|
||||||
usage("Specify a commit or repository to reparse.");
|
usage("Specify a commit or repository to reparse.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($all_from_repo && $reparse_what) {
|
||||||
|
$commits = implode(', ', $reparse_what);
|
||||||
|
usage(
|
||||||
|
"Specify a commit or repository to reparse, not both:\n".
|
||||||
|
"All from repo: ".$all_from_repo."\n".
|
||||||
|
"Commit(s) to reparse: ".$commits);
|
||||||
|
}
|
||||||
|
|
||||||
if (!$reparse_message && !$reparse_change && !$reparse_herald &&
|
if (!$reparse_message && !$reparse_change && !$reparse_herald &&
|
||||||
!$reparse_owners && !$reparse_harbormaster) {
|
!$reparse_owners && !$reparse_harbormaster) {
|
||||||
usage("Specify what information to reparse with --message, --change, ".
|
usage("Specify what information to reparse with --message, --change, ".
|
||||||
"--herald, --harbormaster, and/or --owners");
|
"--herald, --harbormaster, and/or --owners");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$min_timestamp = false;
|
||||||
|
if ($min_date) {
|
||||||
|
$min_timestamp = strtotime($min_date);
|
||||||
|
|
||||||
|
if (!$all_from_repo) {
|
||||||
|
usage(
|
||||||
|
"You must use --all if you specify --min-date\n".
|
||||||
|
"e.g.\n".
|
||||||
|
" ./reparse.php --all TEST --owners --min-date yesterday");
|
||||||
|
}
|
||||||
|
|
||||||
|
// previous to PHP 5.1.0 you would compare with -1, instead of false
|
||||||
|
if (false === $min_timestamp) {
|
||||||
|
usage(
|
||||||
|
"Supplied --min-date is not valid\n".
|
||||||
|
"Supplied value: '".$min_date."'\n".
|
||||||
|
$min_date_usage_examples);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($reparse_owners && !$force) {
|
if ($reparse_owners && !$force) {
|
||||||
echo phutil_console_wrap(
|
echo phutil_console_wrap(
|
||||||
"You are about to recreate the relationship entries between the commits ".
|
"You are about to recreate the relationship entries between the commits ".
|
||||||
|
@ -114,13 +162,14 @@ if ($all_from_repo) {
|
||||||
throw new Exception("Unknown repository {$all_from_repo}!");
|
throw new Exception("Unknown repository {$all_from_repo}!");
|
||||||
}
|
}
|
||||||
$constraint = '';
|
$constraint = '';
|
||||||
if ($min_date) {
|
if ($min_timestamp) {
|
||||||
|
echo "Excluding entries before UNIX timestamp: ".$min_timestamp."\n";
|
||||||
$table = new PhabricatorRepositoryCommit();
|
$table = new PhabricatorRepositoryCommit();
|
||||||
$conn_r = $table->establishConnection('r');
|
$conn_r = $table->establishConnection('r');
|
||||||
$constraint = qsprintf(
|
$constraint = qsprintf(
|
||||||
$conn_r,
|
$conn_r,
|
||||||
'AND epoch > unix_timestamp(%s)',
|
'AND epoch >= %d',
|
||||||
$min_date);
|
$min_timestamp);
|
||||||
}
|
}
|
||||||
$commits = id(new PhabricatorRepositoryCommit())->loadAllWhere(
|
$commits = id(new PhabricatorRepositoryCommit())->loadAllWhere(
|
||||||
'repositoryID = %d %Q',
|
'repositoryID = %d %Q',
|
||||||
|
@ -236,6 +285,7 @@ echo "\nDone.\n";
|
||||||
|
|
||||||
function usage($message) {
|
function usage($message) {
|
||||||
echo phutil_console_format(
|
echo phutil_console_format(
|
||||||
'**Usage Exception:** '.$message."\n");
|
'**Usage Exception:** '.$message."\n".
|
||||||
|
"Use __--help__ to display full help\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue