blob: 3dc7c06f89d74e1eeff8d33bf148f4d5c30718ef [file] [log] [blame]
// Copyright (C) 2014 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.googlesource.gerrit.plugins.quota;
import com.google.gerrit.entities.Project;
import org.eclipse.jgit.lib.Config;
public class QuotaSection {
public static final String QUOTA = "quota";
public static final String KEY_MAX_PROJECTS = "maxProjects";
public static final String KEY_MAX_REPO_SIZE = "maxRepoSize";
public static final String KEY_MAX_TOTAL_SIZE = "maxTotalSize";
private final Config cfg;
private final String namespace;
private final Namespace resolvedNamespace;
QuotaSection(Config cfg, String namespace) {
this(cfg, namespace, namespace);
}
QuotaSection(Config cfg, String namespace, String resolvedNamespace) {
this.cfg = cfg;
this.namespace = namespace;
this.resolvedNamespace = new Namespace(resolvedNamespace);
}
public String getNamespace() {
return resolvedNamespace.get();
}
public boolean matches(Project.NameKey project) {
return resolvedNamespace.matches(project);
}
public Integer getMaxProjects() {
if (!cfg.getNames(QUOTA, namespace).contains(KEY_MAX_PROJECTS)) {
return null;
}
return cfg.getInt(QUOTA, namespace, KEY_MAX_PROJECTS, Integer.MAX_VALUE);
}
public Long getMaxRepoSize() {
if (!cfg.getNames(QUOTA, namespace).contains(KEY_MAX_REPO_SIZE)) {
return null;
}
return cfg.getLong(QUOTA, namespace, KEY_MAX_REPO_SIZE, Long.MAX_VALUE);
}
public Long getMaxTotalSize() {
if (!cfg.getNames(QUOTA, namespace).contains(KEY_MAX_TOTAL_SIZE)) {
return null;
}
return cfg.getLong(QUOTA, namespace, KEY_MAX_TOTAL_SIZE, Long.MAX_VALUE);
}
}