2020-04-09 05:50:55 +08:00
|
|
|
/*
|
|
|
|
* SpecialKeySpace.actor.h
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
|
|
|
* Copyright 2013-2020 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.
|
|
|
|
*/
|
|
|
|
|
2020-03-04 10:35:24 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#if defined(NO_INTELLISENSE) && !defined(FDBCLIENT_SPECIALKEYSPACE_ACTOR_G_H)
|
|
|
|
#define FDBCLIENT_SPECIALKEYSPACE_ACTOR_G_H
|
|
|
|
#include "fdbclient/SpecialKeySpace.actor.g.h"
|
|
|
|
#elif !defined(FDBCLIENT_SPECIALKEYSPACE_ACTOR_H)
|
|
|
|
#define FDBCLIENT_SPECIALKEYSPACE_ACTOR_H
|
|
|
|
|
|
|
|
#include "flow/flow.h"
|
|
|
|
#include "flow/Arena.h"
|
|
|
|
#include "fdbclient/FDBTypes.h"
|
|
|
|
#include "fdbclient/KeyRangeMap.h"
|
|
|
|
#include "fdbclient/ReadYourWrites.h"
|
|
|
|
#include "flow/actorcompiler.h" // This must be the last #include.
|
|
|
|
|
|
|
|
class SpecialKeyRangeBaseImpl {
|
|
|
|
public:
|
|
|
|
// Each derived class only needs to implement this simple version of getRange
|
|
|
|
virtual Future<Standalone<RangeResultRef>> getRange(Reference<ReadYourWritesTransaction> ryw,
|
|
|
|
KeyRangeRef kr) const = 0;
|
|
|
|
|
2020-04-15 00:10:40 +08:00
|
|
|
explicit SpecialKeyRangeBaseImpl(KeyRangeRef kr) : range(kr) {}
|
2020-03-04 10:35:24 +08:00
|
|
|
KeyRangeRef getKeyRange() const { return range; }
|
|
|
|
ACTOR Future<Void> normalizeKeySelectorActor(const SpecialKeyRangeBaseImpl* pkrImpl,
|
|
|
|
Reference<ReadYourWritesTransaction> ryw, KeySelector* ks);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
KeyRange range; // underlying key range for this function
|
|
|
|
};
|
|
|
|
|
|
|
|
class SpecialKeySpace {
|
|
|
|
public:
|
2020-04-09 04:38:12 +08:00
|
|
|
Future<Optional<Value>> get(Reference<ReadYourWritesTransaction> ryw, const Key& key);
|
2020-03-04 10:35:24 +08:00
|
|
|
|
|
|
|
Future<Standalone<RangeResultRef>> getRange(Reference<ReadYourWritesTransaction> ryw, KeySelector begin,
|
2020-04-09 04:38:12 +08:00
|
|
|
KeySelector end, GetRangeLimits limits, bool reverse = false);
|
2020-03-04 10:35:24 +08:00
|
|
|
|
2020-03-31 16:44:02 +08:00
|
|
|
SpecialKeySpace(KeyRef spaceStartKey = Key(), KeyRef spaceEndKey = normalKeys.end) {
|
2020-03-04 10:35:24 +08:00
|
|
|
// Default value is nullptr, begin of KeyRangeMap is Key()
|
|
|
|
impls = KeyRangeMap<SpecialKeyRangeBaseImpl*>(nullptr, spaceEndKey);
|
|
|
|
range = KeyRangeRef(spaceStartKey, spaceEndKey);
|
|
|
|
}
|
|
|
|
void registerKeyRange(const KeyRangeRef& kr, SpecialKeyRangeBaseImpl* impl) {
|
|
|
|
// range check
|
2020-04-09 04:38:12 +08:00
|
|
|
// TODO: add range check not to be replaced by overlapped ones
|
2020-03-04 10:35:24 +08:00
|
|
|
ASSERT(kr.begin >= range.begin && kr.end <= range.end);
|
2020-04-09 05:27:05 +08:00
|
|
|
// make sure the registered range is not overlapping with existing ones
|
|
|
|
// Note: kr.end should not be the same as another range's begin, although it should work even they are the same
|
|
|
|
ASSERT(impls.rangeContaining(kr.begin) == impls.rangeContaining(kr.end) && impls[kr.begin] == nullptr);
|
2020-03-04 10:35:24 +08:00
|
|
|
impls.insert(kr, impl);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2020-04-09 04:38:12 +08:00
|
|
|
ACTOR Future<Optional<Value>> getActor(SpecialKeySpace* pks, Reference<ReadYourWritesTransaction> ryw, KeyRef key);
|
2020-03-04 10:35:24 +08:00
|
|
|
|
|
|
|
ACTOR Future<Standalone<RangeResultRef>> getRangeAggregationActor(SpecialKeySpace* pks,
|
|
|
|
Reference<ReadYourWritesTransaction> ryw,
|
|
|
|
KeySelector begin, KeySelector end,
|
2020-04-09 04:38:12 +08:00
|
|
|
GetRangeLimits limits, bool reverse);
|
2020-03-04 10:35:24 +08:00
|
|
|
|
|
|
|
KeyRangeMap<SpecialKeyRangeBaseImpl*> impls;
|
|
|
|
KeyRange range;
|
|
|
|
};
|
|
|
|
|
2020-04-07 13:09:17 +08:00
|
|
|
// Use special key prefix "\xff\xff/transaction/conflicting_keys/<some_key>",
|
|
|
|
// to retrieve keys which caused latest not_committed(conflicting with another transaction) error.
|
|
|
|
// The returned key value pairs are interpretted as :
|
|
|
|
// prefix/<key1> : '1' - any keys equal or larger than this key are (probably) conflicting keys
|
|
|
|
// prefix/<key2> : '0' - any keys equal or larger than this key are (definitely) not conflicting keys
|
|
|
|
// Currently, the conflicting keyranges returned are original read_conflict_ranges or union of them.
|
2020-04-04 07:11:20 +08:00
|
|
|
class ConflictingKeysImpl : public SpecialKeyRangeBaseImpl {
|
|
|
|
public:
|
2020-04-15 00:10:40 +08:00
|
|
|
explicit ConflictingKeysImpl(KeyRangeRef kr);
|
2020-04-09 04:38:12 +08:00
|
|
|
Future<Standalone<RangeResultRef>> getRange(Reference<ReadYourWritesTransaction> ryw,
|
|
|
|
KeyRangeRef kr) const override;
|
2020-04-04 07:11:20 +08:00
|
|
|
};
|
|
|
|
|
2020-03-04 10:35:24 +08:00
|
|
|
#include "flow/unactorcompiler.h"
|
|
|
|
#endif
|