Use Lucene to index and search on commit-id

Use a PrefixQuery to match partial or full commit-ids.

Change-Id: I0a82873c3b802a5abbd96467dff44007609248ba
This commit is contained in:
Nasser Grainawi
2013-06-25 15:06:44 -06:00
parent 13b2073043
commit 6ef53023df
4 changed files with 38 additions and 7 deletions

View File

@@ -18,6 +18,7 @@ import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import com.google.gerrit.reviewdb.client.PatchSetApproval;
import com.google.gerrit.reviewdb.client.PatchSet;
import com.google.gerrit.server.query.change.ChangeData;
import com.google.gerrit.server.query.change.ChangeQueryBuilder;
import com.google.gerrit.server.query.change.ChangeStatusPredicate;
@@ -42,7 +43,7 @@ import java.util.Set;
*/
public class ChangeField {
/** Increment whenever making schema changes. */
public static final int SCHEMA_VERSION = 4;
public static final int SCHEMA_VERSION = 5;
/** Legacy change ID. */
public static final FieldDef<ChangeData, Integer> CHANGE_ID =
@@ -136,6 +137,21 @@ public class ChangeField {
}
};
/** Commit id of any PatchSet on the change */
public static final FieldDef<ChangeData, Iterable<String>> COMMIT =
new FieldDef.Repeatable<ChangeData, String>(
ChangeQueryBuilder.FIELD_COMMIT, FieldType.PREFIX, false) {
@Override
public Iterable<String> get(ChangeData input, FillArgs args)
throws OrmException {
Set<String> revisions = Sets.newHashSet();
for (PatchSet ps : input.patches(args.db)) {
revisions.add(ps.getRevision().get());
}
return revisions;
}
};
public static final ImmutableMap<String, FieldDef<ChangeData, ?>> ALL;
static {