2019-04-25 06:12:37 +08:00
|
|
|
/*
|
|
|
|
* BackupInterface.h
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
|
|
|
* Copyright 2013-2019 Apple Inc. and the FoundationDB project authors
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FDBSERVER_BACKUPINTERFACE_H
|
|
|
|
#define FDBSERVER_BACKUPINTERFACE_H
|
|
|
|
|
|
|
|
#include "fdbclient/FDBTypes.h"
|
|
|
|
#include "fdbrpc/fdbrpc.h"
|
|
|
|
#include "fdbrpc/Locality.h"
|
|
|
|
|
2019-05-21 05:22:31 +08:00
|
|
|
// The interface for backup workers.
|
2019-04-25 06:12:37 +08:00
|
|
|
struct BackupInterface {
|
2019-05-22 05:03:11 +08:00
|
|
|
constexpr static FileIdentifier file_identifier = 6762745;
|
2019-04-25 06:12:37 +08:00
|
|
|
RequestStream<ReplyPromise<Void>> waitFailure;
|
|
|
|
struct LocalityData locality;
|
|
|
|
|
2019-05-21 05:22:31 +08:00
|
|
|
BackupInterface() = default;
|
2020-01-17 11:16:23 +08:00
|
|
|
explicit BackupInterface(const struct LocalityData& l) : locality(l) {}
|
2019-04-25 06:12:37 +08:00
|
|
|
|
|
|
|
void initEndpoints() {}
|
2020-01-17 11:16:23 +08:00
|
|
|
UID id() const { return getToken(); }
|
2019-04-25 06:12:37 +08:00
|
|
|
NetworkAddress address() const { return waitFailure.getEndpoint().getPrimaryAddress(); }
|
2019-08-15 05:19:50 +08:00
|
|
|
UID getToken() const { return waitFailure.getEndpoint().token; }
|
2019-04-25 06:12:37 +08:00
|
|
|
bool operator== (const BackupInterface& r) const {
|
2020-01-17 11:16:23 +08:00
|
|
|
return getToken() == r.getToken();
|
2019-04-25 06:12:37 +08:00
|
|
|
}
|
|
|
|
bool operator!= (const BackupInterface& r) const {
|
|
|
|
return !(*this == r);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class Archive>
|
|
|
|
void serialize(Archive& ar) {
|
2020-01-17 11:16:23 +08:00
|
|
|
serializer(ar, waitFailure, locality);
|
2019-04-25 06:12:37 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //FDBSERVER_BACKUPINTERFACE_H
|