mirror of https://gitee.com/bigwinds/arangodb
67 lines
2.3 KiB
C++
67 lines
2.3 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2014-2016 ArangoDB GmbH, Cologne, Germany
|
|
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// 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.
|
|
///
|
|
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
///
|
|
/// @author Jan Steemann
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef ARANGOD_REPLICATION_GLOBAL_REPLICATION_APPLIER_H
|
|
#define ARANGOD_REPLICATION_GLOBAL_REPLICATION_APPLIER_H 1
|
|
|
|
#include "Basics/Common.h"
|
|
#include "Replication/ReplicationApplier.h"
|
|
|
|
namespace arangodb {
|
|
|
|
/// @brief server-global replication applier for all databases
|
|
class GlobalReplicationApplier final : public ReplicationApplier {
|
|
friend class GlobalTailingSyncer;
|
|
|
|
public:
|
|
explicit GlobalReplicationApplier(ReplicationApplierConfiguration const& configuration);
|
|
|
|
~GlobalReplicationApplier();
|
|
|
|
/// @brief whether or not the applier is the global one
|
|
bool isGlobal() const override { return true; }
|
|
|
|
/// @brief execute the check condition
|
|
bool applies() const override { return true; }
|
|
|
|
/// @brief stop the applier and "forget" everything
|
|
void forget() override;
|
|
|
|
/// @brief store the configuration for the applier
|
|
void storeConfiguration(bool doSync) override;
|
|
|
|
/// @brief load a persisted configuration for the applier
|
|
static ReplicationApplierConfiguration loadConfiguration();
|
|
|
|
std::shared_ptr<InitialSyncer> buildInitialSyncer() const override;
|
|
std::shared_ptr<TailingSyncer> buildTailingSyncer(TRI_voc_tick_t initialTick, bool useTick,
|
|
TRI_voc_tick_t barrierId) const override;
|
|
|
|
protected:
|
|
std::string getStateFilename() const override;
|
|
};
|
|
|
|
} // namespace arangodb
|
|
|
|
#endif
|