blob: c5009d3fec1f0da619da293d8588c452940c54b6 [file] [log] [blame]
// Copyright (C) 2019 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.replication;
import com.google.common.eventbus.EventBus;
import com.google.common.flogger.FluentLogger;
import com.google.gerrit.extensions.annotations.PluginData;
import com.google.gerrit.server.config.SitePaths;
import com.google.inject.Inject;
import com.google.inject.Provider;
import java.nio.file.Path;
public class AutoReloadRunnable implements Runnable {
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
private final SitePaths site;
private final Path pluginDataDir;
private final EventBus eventBus;
private final Provider<ReplicationQueue> replicationQueue;
private ReplicationFileBasedConfig loadedConfig;
private String loadedConfigVersion;
private String lastFailedConfigVersion;
@Inject
public AutoReloadRunnable(
ReplicationFileBasedConfig config,
SitePaths site,
@PluginData Path pluginDataDir,
EventBus eventBus,
Provider<ReplicationQueue> replicationQueue) {
this.loadedConfig = config;
this.loadedConfigVersion = config.getVersion();
this.lastFailedConfigVersion = "";
this.site = site;
this.pluginDataDir = pluginDataDir;
this.eventBus = eventBus;
this.replicationQueue = replicationQueue;
}
@Override
public synchronized void run() {
String pendingConfigVersion = loadedConfig.getVersion();
ReplicationQueue queue = replicationQueue.get();
if (pendingConfigVersion.equals(loadedConfigVersion)
|| pendingConfigVersion.equals(lastFailedConfigVersion)
|| !queue.isRunning()
|| queue.isReplaying()) {
return;
}
reload();
}
synchronized void reload() {
String pendingConfigVersion = loadedConfig.getVersion();
try {
loadedConfig = new ReplicationFileBasedConfig(site, pluginDataDir);
loadedConfigVersion = loadedConfig.getVersion();
lastFailedConfigVersion = "";
eventBus.post(loadedConfig);
} catch (Exception e) {
logger.atSevere().withCause(e).log(
"Cannot reload replication configuration: keeping existing settings");
lastFailedConfigVersion = pendingConfigVersion;
}
}
}