Line data Source code
1 : // Copyright (C) 2017 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.query.project; 16 : 17 : import com.google.gerrit.entities.Project; 18 : import com.google.gerrit.extensions.client.ProjectState; 19 : import com.google.gerrit.index.project.ProjectData; 20 : import com.google.gerrit.index.project.ProjectField; 21 : import com.google.gerrit.index.project.ProjectPredicate; 22 : import com.google.gerrit.index.query.Predicate; 23 : import java.util.Locale; 24 : 25 : /** Utility class to create predicates for project index queries. */ 26 : public class ProjectPredicates { 27 : public static Predicate<ProjectData> name(Project.NameKey nameKey) { 28 3 : return new ProjectPredicate(ProjectField.NAME, nameKey.get()); 29 : } 30 : 31 : public static Predicate<ProjectData> parent(Project.NameKey parentNameKey) { 32 4 : return new ProjectPredicate(ProjectField.PARENT_NAME, parentNameKey.get()); 33 : } 34 : 35 : public static Predicate<ProjectData> inname(String name) { 36 3 : return new ProjectPredicate(ProjectField.NAME_PART, name.toLowerCase(Locale.US)); 37 : } 38 : 39 : public static Predicate<ProjectData> description(String description) { 40 3 : return new ProjectPredicate(ProjectField.DESCRIPTION, description); 41 : } 42 : 43 : public static Predicate<ProjectData> state(ProjectState state) { 44 3 : return new ProjectPredicate(ProjectField.STATE, state.name()); 45 : } 46 : 47 : private ProjectPredicates() {} 48 : }