blob: 0e848b9c194c4275dcddaf2da70ae0ee9c6c46cd [file] [log] [blame]
// Copyright (C) 2013 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.extensions.api.projects;
import com.google.gerrit.extensions.common.ProjectInfo;
import com.google.gerrit.extensions.restapi.NotImplementedException;
import com.google.gerrit.extensions.restapi.RestApiException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.SortedMap;
public interface Projects {
/**
* Look up a project by name.
* <p>
* <strong>Note:</strong> This method eagerly reads the project. Methods that
* mutate the project do not necessarily re-read the project. Therefore,
* calling a getter method on an instance after calling a mutation method on
* that same instance is not guaranteed to reflect the mutation. It is not
* recommended to store references to {@code ProjectApi} instances.
*
* @param name project name.
* @return API for accessing the project.
* @throws RestApiException if an error occurred.
*/
ProjectApi name(String name) throws RestApiException;
/**
* Create a project using the default configuration.
*
* @param name project name.
* @return API for accessing the newly-created project.
* @throws RestApiException if an error occurred.
*/
ProjectApi create(String name) throws RestApiException;
/**
* Create a project.
*
* @param in project creation input; name must be set.
* @return API for accessing the newly-created project.
* @throws RestApiException if an error occurred.
*/
ProjectApi create(ProjectInput in) throws RestApiException;
ListRequest list();
public abstract class ListRequest {
public static enum FilterType {
CODE, PARENT_CANDIDATES, PERMISSIONS, ALL
}
private final List<String> branches = new ArrayList<>();
private boolean description;
private String prefix;
private String substring;
private String regex;
private int limit;
private int start;
private boolean showTree;
private FilterType type = FilterType.ALL;
public List<ProjectInfo> get() throws RestApiException {
Map<String, ProjectInfo> map = getAsMap();
List<ProjectInfo> result = new ArrayList<>(map.size());
for (Map.Entry<String, ProjectInfo> e : map.entrySet()) {
// ListProjects "helpfully" nulls out names when converting to a map.
e.getValue().name = e.getKey();
result.add(e.getValue());
}
return Collections.unmodifiableList(result);
}
public abstract SortedMap<String, ProjectInfo> getAsMap()
throws RestApiException;
public ListRequest withDescription(boolean description) {
this.description = description;
return this;
}
public ListRequest withPrefix(String prefix) {
this.prefix = prefix;
return this;
}
public ListRequest withSubstring(String substring) {
this.substring = substring;
return this;
}
public ListRequest withRegex(String regex) {
this.regex = regex;
return this;
}
public ListRequest withLimit(int limit) {
this.limit = limit;
return this;
}
public ListRequest withStart(int start) {
this.start = start;
return this;
}
public ListRequest addShowBranch(String branch) {
branches.add(branch);
return this;
}
public ListRequest withTree(boolean show) {
showTree = show;
return this;
}
public ListRequest withType(FilterType type) {
this.type = type != null ? type : FilterType.ALL;
return this;
}
public boolean getDescription() {
return description;
}
public String getPrefix() {
return prefix;
}
public String getSubstring() {
return substring;
}
public String getRegex() {
return regex;
}
public int getLimit() {
return limit;
}
public int getStart() {
return start;
}
public List<String> getBranches() {
return Collections.unmodifiableList(branches);
}
public boolean getShowTree() {
return showTree;
}
public FilterType getFilterType() {
return type;
}
}
/**
* A default implementation which allows source compatibility
* when adding new methods to the interface.
**/
public class NotImplemented implements Projects {
@Override
public ProjectApi name(String name) throws RestApiException {
throw new NotImplementedException();
}
@Override
public ProjectApi create(ProjectInput in) throws RestApiException {
throw new NotImplementedException();
}
@Override
public ProjectApi create(String name) throws RestApiException {
throw new NotImplementedException();
}
@Override
public ListRequest list() {
throw new NotImplementedException();
}
}
}