76 lines
2.5 KiB
C++
76 lines
2.5 KiB
C++
/*
|
|
* BlobGranuleServerCommon.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.
|
|
*/
|
|
|
|
#if defined(NO_INTELLISENSE) && !defined(FDBSERVER_BLOBGRANULESERVERCOMMON_ACTOR_G_H)
|
|
#define FDBSERVER_BLOBGRANULESERVERCOMMON_ACTOR_G_H
|
|
#include "fdbserver/BlobGranuleServerCommon.actor.g.h"
|
|
#elif !defined(FDBSERVER_BLOBGRANULESERVERCOMMON_ACTOR_H)
|
|
#define FDBSERVER_BLOBGRANULESERVERCOMMON_ACTOR_H
|
|
|
|
#pragma once
|
|
|
|
#include "flow/flow.h"
|
|
#include "fdbclient/CommitTransaction.h"
|
|
#include "fdbclient/FDBTypes.h"
|
|
#include "fdbclient/BlobGranuleCommon.h"
|
|
#include "flow/actorcompiler.h" // has to be last include
|
|
|
|
struct GranuleHistory {
|
|
KeyRange range;
|
|
Version version;
|
|
Standalone<BlobGranuleHistoryValue> value;
|
|
|
|
GranuleHistory() {}
|
|
|
|
GranuleHistory(KeyRange range, Version version, Standalone<BlobGranuleHistoryValue> value)
|
|
: range(range), version(version), value(value) {}
|
|
};
|
|
|
|
// Stores info about a file in blob storage
|
|
struct BlobFileIndex {
|
|
Version version;
|
|
std::string filename;
|
|
int64_t offset;
|
|
int64_t length;
|
|
|
|
BlobFileIndex() {}
|
|
|
|
BlobFileIndex(Version version, std::string filename, int64_t offset, int64_t length)
|
|
: version(version), filename(filename), offset(offset), length(length) {}
|
|
};
|
|
|
|
// Stores the files that comprise a blob granule
|
|
struct GranuleFiles {
|
|
std::deque<BlobFileIndex> snapshotFiles;
|
|
std::deque<BlobFileIndex> deltaFiles;
|
|
};
|
|
|
|
class Transaction;
|
|
ACTOR Future<Optional<GranuleHistory>> getLatestGranuleHistory(Transaction* tr, KeyRange range);
|
|
ACTOR Future<Void> readGranuleFiles(Transaction* tr,
|
|
Key* startKey,
|
|
Key endKey,
|
|
GranuleFiles* files,
|
|
UID granuleID,
|
|
bool debug);
|
|
|
|
ACTOR Future<GranuleFiles> loadHistoryFiles(Database cx, UID granuleID, bool debug);
|
|
#endif
|