
com.alipay.sofa.jraft.conf.ConfigurationManager Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.alipay.sofa.jraft.conf;
import java.util.LinkedList;
import java.util.ListIterator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.alipay.sofa.jraft.util.Requires;
/**
* Configuration manager
*
* @author boyan ([email protected])
*
* 2018-Apr-04 2:24:54 PM
*/
public class ConfigurationManager {
private static final Logger LOG = LoggerFactory.getLogger(ConfigurationManager.class);
private final LinkedList configurations = new LinkedList<>();
private ConfigurationEntry snapshot = new ConfigurationEntry();
/**
* Adds a new conf entry.
*/
public boolean add(final ConfigurationEntry entry) {
if (!this.configurations.isEmpty()) {
if (this.configurations.peekLast().getId().getIndex() >= entry.getId().getIndex()) {
LOG.error("Did you forget to call truncateSuffix before the last log index goes back.");
return false;
}
}
return this.configurations.add(entry);
}
/**
* [1, first_index_kept) are being discarded
*/
public void truncatePrefix(final long firstIndexKept) {
while (!this.configurations.isEmpty() && this.configurations.peekFirst().getId().getIndex() < firstIndexKept) {
this.configurations.pollFirst();
}
}
/**
* (last_index_kept, infinity) are being discarded
*/
public void truncateSuffix(final long lastIndexKept) {
while (!this.configurations.isEmpty() && this.configurations.peekLast().getId().getIndex() > lastIndexKept) {
this.configurations.pollLast();
}
}
public ConfigurationEntry getSnapshot() {
return this.snapshot;
}
public void setSnapshot(final ConfigurationEntry snapshot) {
this.snapshot = snapshot;
}
public ConfigurationEntry getLastConfiguration() {
if (this.configurations.isEmpty()) {
return snapshot;
} else {
return this.configurations.peekLast();
}
}
public ConfigurationEntry get(final long lastIncludedIndex) {
if (this.configurations.isEmpty()) {
Requires.requireTrue(lastIncludedIndex >= this.snapshot.getId().getIndex(),
"lastIncludedIndex %d is less than snapshot index %d", lastIncludedIndex, this.snapshot.getId()
.getIndex());
return this.snapshot;
}
ListIterator it = this.configurations.listIterator();
while (it.hasNext()) {
if (it.next().getId().getIndex() > lastIncludedIndex) {
it.previous();
break;
}
}
if (it.hasPrevious()) {
// find the first position that is less than or equal to lastIncludedIndex.
return it.previous();
} else {
// position not found position, return snapshot.
return this.snapshot;
}
}
}