79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
/*
|
|
* RestoreInterface.h
|
|
*
|
|
* This source file is part of the FoundationDB open source project
|
|
*
|
|
* Copyright 2013-2018 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 FDBCLIENT_RestoreInterface_H
|
|
#define FDBCLIENT_RestoreInterface_H
|
|
#pragma once
|
|
|
|
#include "fdbclient/FDBTypes.h"
|
|
#include "fdbrpc/fdbrpc.h"
|
|
#include "fdbserver/CoordinationInterface.h"
|
|
#include "fdbrpc/Locality.h"
|
|
|
|
struct RestoreInterface {
|
|
constexpr static FileIdentifier file_identifier = 13398189;
|
|
RequestStream< struct TestRequest > test;
|
|
|
|
bool operator == (RestoreInterface const& r) const { return id() == r.id(); }
|
|
bool operator != (RestoreInterface const& r) const { return id() != r.id(); }
|
|
UID id() const { return test.getEndpoint().token; }
|
|
NetworkAddress address() const { return test.getEndpoint().getPrimaryAddress(); }
|
|
|
|
void initEndpoints() {
|
|
test.getEndpoint( TaskPriority::ClusterController );
|
|
}
|
|
|
|
template <class Ar>
|
|
void serialize( Ar& ar ) {
|
|
serializer(ar, test);
|
|
}
|
|
};
|
|
|
|
struct TestReply {
|
|
constexpr static FileIdentifier file_identifier = 12075719;
|
|
int replyData;
|
|
|
|
TestReply() : replyData(0) {}
|
|
explicit TestReply(int replyData) : replyData(replyData) {}
|
|
|
|
template <class Ar>
|
|
void serialize(Ar& ar) {
|
|
serializer(ar, replyData);
|
|
}
|
|
};
|
|
|
|
struct TestRequest {
|
|
constexpr static FileIdentifier file_identifier = 14404487;
|
|
int testData;
|
|
ReplyPromise< struct TestReply > reply;
|
|
|
|
TestRequest() : testData(0) {}
|
|
explicit TestRequest(int testData) : testData(testData) {}
|
|
|
|
template <class Ar>
|
|
void serialize(Ar& ar) {
|
|
serializer(ar, testData, reply);
|
|
}
|
|
};
|
|
|
|
Future<Void> restoreWorker(Reference<ClusterConnectionFile> const& ccf, LocalityData const& locality);
|
|
|
|
#endif
|