blob: 520ede4d5053058a54da0a1f45d6f1d354002eba [file] [log] [blame]
// Copyright (C) 2017 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.server.git;
import com.google.common.flogger.FluentLogger;
import com.google.gerrit.extensions.events.LifecycleListener;
import com.google.gerrit.server.config.SitePaths;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.storage.file.FileBasedConfig;
import org.eclipse.jgit.util.FS;
import org.eclipse.jgit.util.SystemReader;
@Singleton
public class SystemReaderInstaller implements LifecycleListener {
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
private final SitePaths site;
@Inject
SystemReaderInstaller(SitePaths site) {
this.site = site;
}
@Override
public void start() {
SystemReader.setInstance(customReader());
logger.atInfo().log("Set JGit's SystemReader to read system config from %s", site.jgit_config);
}
@Override
public void stop() {}
private SystemReader customReader() {
SystemReader current = SystemReader.getInstance();
FileBasedConfig jgitConfig = new FileBasedConfig(site.jgit_config.toFile(), FS.DETECTED);
return new SystemReader() {
@Override
public String getHostname() {
return current.getHostname();
}
@Override
public String getenv(String variable) {
return current.getenv(variable);
}
@Override
public String getProperty(String key) {
return current.getProperty(key);
}
@Override
public FileBasedConfig openUserConfig(Config parent, FS fs) {
return current.openSystemConfig(parent, fs);
}
@Override
public FileBasedConfig openSystemConfig(Config parent, FS fs) {
return jgitConfig;
}
@Override
public long getCurrentTime() {
return current.getCurrentTime();
}
@Override
public int getTimezone(long when) {
return current.getTimezone(when);
}
};
}
}