Improve const-correctness for AsyncVar references
This commit is contained in:
parent
ceb83f7f5e
commit
52a64eb04b
|
@ -114,7 +114,7 @@ struct TesterInterface {
|
|||
|
||||
ACTOR Future<Void> testerServerCore(TesterInterface interf,
|
||||
Reference<ClusterConnectionFile> ccf,
|
||||
Reference<AsyncVar<struct ServerDBInfo>> serverDBInfo,
|
||||
Reference<AsyncVar<struct ServerDBInfo> const> serverDBInfo,
|
||||
LocalityData locality);
|
||||
|
||||
enum test_location_t { TEST_HERE, TEST_ON_SERVERS, TEST_ON_TESTERS };
|
||||
|
|
|
@ -880,8 +880,9 @@ class Database openDBOnServer(Reference<AsyncVar<ServerDBInfo> const> const& db,
|
|||
TaskPriority taskID = TaskPriority::DefaultEndpoint,
|
||||
LockAware = LockAware::False,
|
||||
EnableLocalityLoadBalance = EnableLocalityLoadBalance::True);
|
||||
ACTOR Future<Void> extractClusterInterface(Reference<AsyncVar<Optional<struct ClusterControllerFullInterface>>> a,
|
||||
Reference<AsyncVar<Optional<struct ClusterInterface>>> b);
|
||||
ACTOR Future<Void> extractClusterInterface(
|
||||
Reference<AsyncVar<Optional<struct ClusterControllerFullInterface>> const> in,
|
||||
Reference<AsyncVar<Optional<struct ClusterInterface>>> out);
|
||||
|
||||
ACTOR Future<Void> fdbd(Reference<ClusterConnectionFile> ccf,
|
||||
LocalityData localities,
|
||||
|
|
|
@ -315,7 +315,7 @@ struct CompoundWorkload : TestWorkload {
|
|||
|
||||
TestWorkload* getWorkloadIface(WorkloadRequest work,
|
||||
VectorRef<KeyValueRef> options,
|
||||
Reference<AsyncVar<ServerDBInfo>> dbInfo) {
|
||||
Reference<AsyncVar<ServerDBInfo> const> dbInfo) {
|
||||
Value testName = getOption(options, LiteralStringRef("testName"), LiteralStringRef("no-test-specified"));
|
||||
WorkloadContext wcx;
|
||||
wcx.clientId = work.clientId;
|
||||
|
@ -350,7 +350,7 @@ TestWorkload* getWorkloadIface(WorkloadRequest work,
|
|||
return workload;
|
||||
}
|
||||
|
||||
TestWorkload* getWorkloadIface(WorkloadRequest work, Reference<AsyncVar<ServerDBInfo>> dbInfo) {
|
||||
TestWorkload* getWorkloadIface(WorkloadRequest work, Reference<AsyncVar<ServerDBInfo> const> dbInfo) {
|
||||
if (work.options.size() < 1) {
|
||||
TraceEvent(SevError, "TestCreationError").detail("Reason", "No options provided");
|
||||
fprintf(stderr, "ERROR: No options were provided for workload.\n");
|
||||
|
@ -602,7 +602,7 @@ ACTOR Future<Void> runWorkloadAsync(Database cx,
|
|||
|
||||
ACTOR Future<Void> testerServerWorkload(WorkloadRequest work,
|
||||
Reference<ClusterConnectionFile> ccf,
|
||||
Reference<AsyncVar<struct ServerDBInfo>> dbInfo,
|
||||
Reference<AsyncVar<struct ServerDBInfo> const> dbInfo,
|
||||
LocalityData locality) {
|
||||
state WorkloadInterface workIface;
|
||||
state bool replied = false;
|
||||
|
@ -661,7 +661,7 @@ ACTOR Future<Void> testerServerWorkload(WorkloadRequest work,
|
|||
|
||||
ACTOR Future<Void> testerServerCore(TesterInterface interf,
|
||||
Reference<ClusterConnectionFile> ccf,
|
||||
Reference<AsyncVar<struct ServerDBInfo>> dbInfo,
|
||||
Reference<AsyncVar<struct ServerDBInfo> const> dbInfo,
|
||||
LocalityData locality) {
|
||||
state PromiseStream<Future<Void>> addWorkload;
|
||||
state Future<Void> workerFatalError = actorCollection(addWorkload.getFuture());
|
||||
|
|
|
@ -959,7 +959,7 @@ ACTOR Future<Void> storageServerRollbackRebooter(std::set<std::pair<UID, KeyValu
|
|||
UID id,
|
||||
LocalityData locality,
|
||||
bool isTss,
|
||||
Reference<AsyncVar<ServerDBInfo>> db,
|
||||
Reference<AsyncVar<ServerDBInfo> const> db,
|
||||
std::string folder,
|
||||
ActorCollection* filesClosed,
|
||||
int64_t memoryLimit,
|
||||
|
@ -1006,7 +1006,7 @@ ACTOR Future<Void> storageServerRollbackRebooter(std::set<std::pair<UID, KeyValu
|
|||
ACTOR Future<Void> storageCacheRollbackRebooter(Future<Void> prevStorageCache,
|
||||
UID id,
|
||||
LocalityData locality,
|
||||
Reference<AsyncVar<ServerDBInfo>> db) {
|
||||
Reference<AsyncVar<ServerDBInfo> const> db) {
|
||||
loop {
|
||||
ErrorOr<Void> e = wait(errorOr(prevStorageCache));
|
||||
if (!e.isError()) {
|
||||
|
@ -2044,14 +2044,14 @@ ACTOR Future<Void> workerServer(Reference<ClusterConnectionFile> connFile,
|
|||
}
|
||||
}
|
||||
|
||||
ACTOR Future<Void> extractClusterInterface(Reference<AsyncVar<Optional<ClusterControllerFullInterface>>> a,
|
||||
Reference<AsyncVar<Optional<ClusterInterface>>> b) {
|
||||
ACTOR Future<Void> extractClusterInterface(Reference<AsyncVar<Optional<ClusterControllerFullInterface>> const> in,
|
||||
Reference<AsyncVar<Optional<ClusterInterface>>> out) {
|
||||
loop {
|
||||
if (a->get().present())
|
||||
b->set(a->get().get().clientInterface);
|
||||
if (in->get().present())
|
||||
out->set(in->get().get().clientInterface);
|
||||
else
|
||||
b->set(Optional<ClusterInterface>());
|
||||
wait(a->onChange());
|
||||
out->set(Optional<ClusterInterface>());
|
||||
wait(in->onChange());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2086,7 +2086,7 @@ ACTOR Future<Void> printTimeout() {
|
|||
return Void();
|
||||
}
|
||||
|
||||
ACTOR Future<Void> printOnFirstConnected(Reference<AsyncVar<Optional<ClusterInterface>>> ci) {
|
||||
ACTOR Future<Void> printOnFirstConnected(Reference<AsyncVar<Optional<ClusterInterface>> const> ci) {
|
||||
state Future<Void> timeoutFuture = printTimeout();
|
||||
loop {
|
||||
choose {
|
||||
|
|
|
@ -224,7 +224,7 @@ struct ReadWriteWorkload : KVWorkload {
|
|||
Future<Void> setup(Database const& cx) override { return _setup(cx, this); }
|
||||
Future<Void> start(Database const& cx) override { return _start(cx, this); }
|
||||
|
||||
ACTOR static Future<bool> traceDumpWorkers(Reference<AsyncVar<ServerDBInfo>> db) {
|
||||
ACTOR static Future<bool> traceDumpWorkers(Reference<AsyncVar<ServerDBInfo> const> db) {
|
||||
try {
|
||||
loop {
|
||||
choose {
|
||||
|
|
|
@ -49,7 +49,7 @@ struct WorkloadContext {
|
|||
Standalone<VectorRef<KeyValueRef>> options;
|
||||
int clientId, clientCount;
|
||||
int64_t sharedRandomNumber;
|
||||
Reference<AsyncVar<struct ServerDBInfo>> dbInfo;
|
||||
Reference<AsyncVar<struct ServerDBInfo> const> dbInfo;
|
||||
|
||||
WorkloadContext();
|
||||
WorkloadContext(const WorkloadContext&);
|
||||
|
|
Loading…
Reference in New Issue