com.ofcoder.klein.storage.facade.LogManager 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.ofcoder.klein.storage.facade;
import java.io.Serializable;
import java.util.List;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import com.ofcoder.klein.spi.SPI;
/**
* Manage logs generated by the consensus system.
*
* @author 释慧利
*/
@SPI
public interface LogManager {
/**
* get log lock.
*
* @param instanceId lock object
* @return ReentrantReadWriteLock
*/
ReentrantReadWriteLock getLock(long instanceId);
/**
* Persisting the Instance.
*
*
* NOTICE: It needs to be called in a synchronous method.
*
* @param instance data
*/
void updateInstance(Instance
instance);
/**
* Get the instance by id.
*
* @param id the index of instance
* @return the instance with {@code id}
*/
Instance
getInstance(long id);
/**
* Get instance without consensus.
*
* @return all instance for no confirm, state in (PREPARED, ACCEPTED)
*/
List> getInstanceNoConfirm();
/**
* Get instance reach confirmed.
*
* @return range in [checkpoint, Max Instance] confirmed the Instance
*/
List> getInstanceConfirmed();
/**
* load MetaData.
*
* @param defaultValue default MetaData
* @return MetaData
*/
MetaData loadMetaData(MetaData defaultValue);
/**
* save snapshot.
*
* @param group sm group
* @param snap snapshot
*/
void saveSnap(String group, Snap snap);
/**
* get last snapshot.
*
* @param group sm group
* @return last snapshot
*/
Snap getLastSnap(String group);
/**
* Bean shutdown.
*/
void shutdown();
/**
* Meta data.
*
* @author 释慧利
*/
interface MetaData extends Serializable {
}
}