2011-03-21 01:46:02 +01:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
|
|
require_once $root.'/scripts/__init_script__.php';
|
|
|
|
|
|
|
|
$commit = new PhabricatorRepositoryCommit();
|
|
|
|
|
2011-05-02 22:00:16 +02:00
|
|
|
$conn_w = id(new PhabricatorRepository())->establishConnection('w');
|
2011-03-21 01:46:02 +01:00
|
|
|
$sizes = queryfx_all(
|
|
|
|
$conn_w,
|
|
|
|
'SELECT repositoryID, count(*) N FROM %T GROUP BY repositoryID',
|
|
|
|
$commit->getTableName());
|
|
|
|
$sizes = ipull($sizes, 'N', 'repositoryID');
|
|
|
|
|
|
|
|
$maxes = queryfx_all(
|
|
|
|
$conn_w,
|
|
|
|
'SELECT repositoryID, max(epoch) maxEpoch FROM %T GROUP BY repositoryID',
|
|
|
|
$commit->getTableName());
|
|
|
|
$maxes = ipull($maxes, 'maxEpoch', 'repositoryID');
|
|
|
|
|
|
|
|
|
|
|
|
$repository_ids = array_keys($sizes + $maxes);
|
|
|
|
|
2015-05-22 09:27:56 +02:00
|
|
|
echo pht('Updating %d repositories', count($repository_ids));
|
2011-03-21 01:46:02 +01:00
|
|
|
|
|
|
|
foreach ($repository_ids as $repository_id) {
|
|
|
|
$last_commit = queryfx_one(
|
|
|
|
$conn_w,
|
|
|
|
'SELECT id FROM %T WHERE repositoryID = %d AND epoch = %d LIMIT 1',
|
|
|
|
$commit->getTableName(),
|
|
|
|
$repository_id,
|
|
|
|
idx($maxes, $repository_id, 0));
|
|
|
|
if ($last_commit) {
|
|
|
|
$last_commit = $last_commit['id'];
|
|
|
|
} else {
|
|
|
|
$last_commit = 0;
|
|
|
|
}
|
|
|
|
queryfx(
|
|
|
|
$conn_w,
|
|
|
|
'INSERT INTO %T (repositoryID, lastCommitID, size, epoch)
|
|
|
|
VALUES (%d, %d, %d, %d) ON DUPLICATE KEY UPDATE
|
|
|
|
lastCommitID = VALUES(lastCommitID),
|
|
|
|
size = VALUES(size),
|
|
|
|
epoch = VALUES(epoch)',
|
|
|
|
PhabricatorRepository::TABLE_SUMMARY,
|
|
|
|
$repository_id,
|
|
|
|
$last_commit,
|
|
|
|
idx($sizes, $repository_id, 0),
|
|
|
|
idx($maxes, $repository_id, 0));
|
2014-06-09 20:36:49 +02:00
|
|
|
echo '.';
|
2011-03-21 01:46:02 +01:00
|
|
|
}
|
2015-05-22 09:27:56 +02:00
|
|
|
echo "\n".pht('Done.')."\n";
|