mirror of https://gitee.com/bigwinds/arangodb
642 lines
23 KiB
C++
642 lines
23 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2014-2017 ArangoDB GmbH, Cologne, Germany
|
|
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// 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.
|
|
///
|
|
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
///
|
|
/// @author Simon Grätzer
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RestCollectionHandler.h"
|
|
|
|
#include "ApplicationFeatures/ApplicationServer.h"
|
|
#include "Cluster/ClusterFeature.h"
|
|
#include "Cluster/ClusterInfo.h"
|
|
#include "Cluster/ServerState.h"
|
|
#include "Rest/HttpRequest.h"
|
|
#include "StorageEngine/EngineSelectorFeature.h"
|
|
#include "StorageEngine/PhysicalCollection.h"
|
|
#include "StorageEngine/StorageEngine.h"
|
|
#include "Transaction/Methods.h"
|
|
#include "Transaction/StandaloneContext.h"
|
|
#include "Utils/Events.h"
|
|
#include "Utils/OperationOptions.h"
|
|
#include "Utils/SingleCollectionTransaction.h"
|
|
#include "VocBase/LogicalCollection.h"
|
|
#include "VocBase/Methods/Collections.h"
|
|
|
|
#include <velocypack/Builder.h>
|
|
#include <velocypack/Collection.h>
|
|
#include <velocypack/velocypack-aliases.h>
|
|
|
|
using namespace arangodb;
|
|
using namespace arangodb::basics;
|
|
using namespace arangodb::rest;
|
|
|
|
RestCollectionHandler::RestCollectionHandler(GeneralRequest* request, GeneralResponse* response)
|
|
: RestVocbaseBaseHandler(request, response) {}
|
|
|
|
RestStatus RestCollectionHandler::execute() {
|
|
switch (_request->requestType()) {
|
|
case rest::RequestType::GET:
|
|
handleCommandGet();
|
|
break;
|
|
case rest::RequestType::POST:
|
|
handleCommandPost();
|
|
break;
|
|
case rest::RequestType::PUT:
|
|
handleCommandPut();
|
|
break;
|
|
case rest::RequestType::DELETE_REQ:
|
|
handleCommandDelete();
|
|
break;
|
|
default:
|
|
generateError(rest::ResponseCode::METHOD_NOT_ALLOWED, TRI_ERROR_HTTP_METHOD_NOT_ALLOWED);
|
|
}
|
|
|
|
return RestStatus::DONE;
|
|
}
|
|
|
|
void RestCollectionHandler::handleCommandGet() {
|
|
std::vector<std::string> const& suffixes = _request->decodedSuffixes();
|
|
VPackBuilder builder;
|
|
|
|
// /_api/collection
|
|
if (suffixes.empty()) {
|
|
bool excludeSystem = _request->parsedValue("excludeSystem", false);
|
|
|
|
builder.openArray();
|
|
methods::Collections::enumerate(&_vocbase, [&](std::shared_ptr<LogicalCollection> const& coll) -> void {
|
|
TRI_ASSERT(coll);
|
|
ExecContext const* exec = ExecContext::CURRENT;
|
|
bool canUse = exec == nullptr ||
|
|
exec->canUseCollection(coll->name(), auth::Level::RO);
|
|
|
|
if (canUse && (!excludeSystem || !coll->system())) {
|
|
// We do not need a transaction here
|
|
methods::Collections::Context ctxt(_vocbase, *coll);
|
|
|
|
collectionRepresentation(builder, ctxt,
|
|
/*showProperties*/ false,
|
|
/*showFigures*/ false, /*showCount*/ false,
|
|
/*detailedCount*/ false);
|
|
}
|
|
});
|
|
|
|
builder.close();
|
|
generateOk(rest::ResponseCode::OK, builder.slice());
|
|
|
|
return;
|
|
}
|
|
|
|
std::string const& name = suffixes[0];
|
|
// /_api/collection/<name>
|
|
if (suffixes.size() == 1) {
|
|
try {
|
|
collectionRepresentation(builder, name, /*showProperties*/ false,
|
|
/*showFigures*/ false, /*showCount*/ false,
|
|
/*detailedCount*/ false);
|
|
generateOk(rest::ResponseCode::OK, builder);
|
|
} catch (basics::Exception const& ex) { // do not log not found exceptions
|
|
generateError(GeneralResponse::responseCode(ex.code()), ex.code(), ex.what());
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (suffixes.size() > 2) {
|
|
generateError(rest::ResponseCode::BAD, TRI_ERROR_HTTP_BAD_PARAMETER,
|
|
"expect GET /_api/collection/<collection-name>/<method>");
|
|
return;
|
|
}
|
|
|
|
std::string const& sub = suffixes[1];
|
|
bool skipGenerate = false;
|
|
auto found = methods::Collections::lookup( // find collection
|
|
_vocbase, // vocbase to search
|
|
name, // collection name to find
|
|
[&](std::shared_ptr<LogicalCollection> const& coll)->void { // callback if found
|
|
TRI_ASSERT(coll);
|
|
|
|
if (sub == "checksum") {
|
|
// /_api/collection/<identifier>/checksum
|
|
if (ServerState::instance()->isCoordinator()) {
|
|
THROW_ARANGO_EXCEPTION(TRI_ERROR_NOT_IMPLEMENTED);
|
|
}
|
|
|
|
bool withRevisions = _request->parsedValue("withRevisions", false);
|
|
bool withData = _request->parsedValue("withData", false);
|
|
auto result = coll->checksum(withRevisions, withData);
|
|
|
|
if (result.ok()) {
|
|
VPackObjectBuilder obj(&builder, true);
|
|
|
|
obj->add("checksum", result.slice().get("checksum"));
|
|
obj->add("revision", result.slice().get("revision"));
|
|
|
|
// We do not need a transaction here
|
|
methods::Collections::Context ctxt(_vocbase, *coll);
|
|
|
|
collectionRepresentation(builder, *coll,
|
|
/*showProperties*/ false,
|
|
/*showFigures*/ false,
|
|
/*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
} else {
|
|
skipGenerate = true;
|
|
this->generateError(result.result());
|
|
}
|
|
} else if (sub == "figures") {
|
|
// /_api/collection/<identifier>/figures
|
|
collectionRepresentation(builder, *coll,
|
|
/*showProperties*/ true,
|
|
/*showFigures*/ true,
|
|
/*showCount*/ true,
|
|
/*detailedCount*/ false);
|
|
} else if (sub == "count") {
|
|
// /_api/collection/<identifier>/count
|
|
bool details = _request->parsedValue("details", false);
|
|
collectionRepresentation(builder, *coll,
|
|
/*showProperties*/ true,
|
|
/*showFigures*/ false,
|
|
/*showCount*/ true,
|
|
/*detailedCount*/ details);
|
|
} else if (sub == "properties") {
|
|
// /_api/collection/<identifier>/properties
|
|
collectionRepresentation(builder, *coll,
|
|
/*showProperties*/ true,
|
|
/*showFigures*/ false,
|
|
/*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
} else if (sub == "revision") {
|
|
methods::Collections::Context ctxt(_vocbase, *coll);
|
|
// /_api/collection/<identifier>/revision
|
|
TRI_voc_rid_t revisionId;
|
|
auto res = methods::Collections::revisionId(ctxt, revisionId);
|
|
|
|
if (res.fail()) {
|
|
THROW_ARANGO_EXCEPTION(res);
|
|
}
|
|
|
|
VPackObjectBuilder obj(&builder, true);
|
|
|
|
obj->add("revision", VPackValue(StringUtils::itoa(revisionId)));
|
|
collectionRepresentation(builder, ctxt, /*showProperties*/ true,
|
|
/*showFigures*/ false, /*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
|
|
} else if (sub == "shards") {
|
|
// /_api/collection/<identifier>/shards
|
|
if (!ServerState::instance()->isRunningInCluster()) {
|
|
skipGenerate = true; // must be internal error for tests
|
|
this->generateError(Result(TRI_ERROR_INTERNAL));
|
|
return;
|
|
}
|
|
|
|
VPackObjectBuilder obj(&builder, true); // need to open object
|
|
|
|
collectionRepresentation(builder, *coll,
|
|
/*showProperties*/ true,
|
|
/*showFigures*/ false,
|
|
/*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
|
|
auto shards =
|
|
ClusterInfo::instance()->getShardList(std::to_string(coll->planId()));
|
|
|
|
if (_request->parsedValue("details", false)) {
|
|
// with details
|
|
VPackObjectBuilder arr(&builder, "shards", true);
|
|
for (ShardID const& shard : *shards) {
|
|
std::vector<ServerID> servers;
|
|
ClusterInfo::instance()->getShardServers(shard, servers);
|
|
|
|
if (servers.empty()) {
|
|
continue;
|
|
}
|
|
|
|
VPackArrayBuilder arr(&builder, shard);
|
|
|
|
for (auto const& server : servers) {
|
|
arr->add(VPackValue(server));
|
|
}
|
|
}
|
|
} else {
|
|
// no details
|
|
VPackArrayBuilder arr(&builder, "shards", true);
|
|
|
|
for (ShardID const& shard : *shards) {
|
|
arr->add(VPackValue(shard));
|
|
}
|
|
}
|
|
|
|
} else {
|
|
skipGenerate = true;
|
|
this->generateError(rest::ResponseCode::NOT_FOUND, TRI_ERROR_HTTP_NOT_FOUND,
|
|
"expecting one of the resources 'checksum', 'count', "
|
|
"'figures', 'properties', 'responsibleShard', 'revision', 'shards'");
|
|
}
|
|
});
|
|
|
|
if (skipGenerate) {
|
|
return;
|
|
}
|
|
if (found.ok()) {
|
|
generateOk(rest::ResponseCode::OK, builder);
|
|
_response->setHeaderNC(StaticStrings::Location, _request->requestPath());
|
|
} else {
|
|
generateError(found);
|
|
}
|
|
}
|
|
|
|
// create a collection
|
|
void RestCollectionHandler::handleCommandPost() {
|
|
bool parseSuccess = false;
|
|
VPackSlice const body = this->parseVPackBody(parseSuccess);
|
|
if (!parseSuccess) {
|
|
// error message generated in parseVPackBody
|
|
events::CreateCollection(_vocbase.name(), "", TRI_ERROR_BAD_PARAMETER);
|
|
return;
|
|
}
|
|
|
|
VPackSlice nameSlice;
|
|
if (!body.isObject() || !(nameSlice = body.get("name")).isString() ||
|
|
nameSlice.getStringLength() == 0) {
|
|
generateError(rest::ResponseCode::BAD, TRI_ERROR_ARANGO_ILLEGAL_NAME);
|
|
events::CreateCollection(_vocbase.name(), "", TRI_ERROR_ARANGO_ILLEGAL_NAME);
|
|
return;
|
|
}
|
|
|
|
auto cluster = application_features::ApplicationServer::getFeature<ClusterFeature>(
|
|
"Cluster");
|
|
bool waitForSyncReplication =
|
|
_request->parsedValue("waitForSyncReplication",
|
|
cluster->createWaitsForSyncReplication());
|
|
|
|
bool enforceReplicationFactor =
|
|
_request->parsedValue("enforceReplicationFactor", true);
|
|
|
|
TRI_col_type_e type = TRI_col_type_e::TRI_COL_TYPE_DOCUMENT;
|
|
VPackSlice typeSlice = body.get("type");
|
|
if ((typeSlice.isString() &&
|
|
(typeSlice.compareString("edge") == 0 || typeSlice.compareString("3") == 0)) ||
|
|
(typeSlice.isNumber() && typeSlice.getUInt() == TRI_col_type_e::TRI_COL_TYPE_EDGE)) {
|
|
type = TRI_col_type_e::TRI_COL_TYPE_EDGE;
|
|
}
|
|
|
|
// for some "security" a whitelist of allowed parameters
|
|
VPackBuilder filtered = VPackCollection::keep(
|
|
body, std::unordered_set<std::string>{
|
|
"doCompact", StaticStrings::DataSourceSystem,
|
|
StaticStrings::DataSourceId, "isVolatile", "journalSize",
|
|
"indexBuckets", "keyOptions", StaticStrings::WaitForSyncString,
|
|
"cacheEnabled", StaticStrings::ShardKeys, StaticStrings::NumberOfShards,
|
|
StaticStrings::DistributeShardsLike, "avoidServers", StaticStrings::IsSmart,
|
|
"shardingStrategy", StaticStrings::GraphSmartGraphAttribute,
|
|
StaticStrings::SmartJoinAttribute, StaticStrings::ReplicationFactor,
|
|
"servers"});
|
|
VPackSlice const parameters = filtered.slice();
|
|
|
|
// now we can create the collection
|
|
std::string const& name = nameSlice.copyString();
|
|
VPackBuilder builder;
|
|
Result res = methods::Collections::create(
|
|
_vocbase, // collection vocbase
|
|
name, // colection name
|
|
type, // collection type
|
|
parameters, // collection properties
|
|
waitForSyncReplication, // replication wait flag
|
|
enforceReplicationFactor, // replication factor flag
|
|
[&](std::shared_ptr<LogicalCollection> const& coll) -> void {
|
|
TRI_ASSERT(coll);
|
|
collectionRepresentation(builder, coll->name(),
|
|
/*showProperties*/ true,
|
|
/*showFigures*/ false,
|
|
/*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
});
|
|
|
|
if (res.ok()) {
|
|
generateOk(rest::ResponseCode::OK, builder);
|
|
} else {
|
|
generateError(res);
|
|
}
|
|
}
|
|
|
|
void RestCollectionHandler::handleCommandPut() {
|
|
std::vector<std::string> const& suffixes = _request->decodedSuffixes();
|
|
if (suffixes.size() != 2) {
|
|
generateError(rest::ResponseCode::BAD, TRI_ERROR_HTTP_BAD_PARAMETER,
|
|
"expected PUT /_api/collection/<collection-name>/<action>");
|
|
return;
|
|
}
|
|
bool parseSuccess = false;
|
|
VPackSlice body = this->parseVPackBody(parseSuccess);
|
|
if (!parseSuccess) {
|
|
// error message generated in parseVPackBody
|
|
return;
|
|
}
|
|
|
|
if (!body.isObject()) {
|
|
body = VPackSlice::emptyObjectSlice();
|
|
}
|
|
|
|
std::string const& name = suffixes[0];
|
|
std::string const& sub = suffixes[1];
|
|
Result res;
|
|
VPackBuilder builder;
|
|
auto found = methods::Collections::lookup( // find collection
|
|
_vocbase, // vocbase to search
|
|
name, // collection name to find
|
|
[&](std::shared_ptr<LogicalCollection> const& coll)->void { // callback if found
|
|
TRI_ASSERT(coll);
|
|
|
|
if (sub == "load") {
|
|
res = methods::Collections::load(_vocbase, coll.get());
|
|
|
|
if (res.ok()) {
|
|
bool cc = VelocyPackHelper::getBooleanValue(body, "count", true);
|
|
collectionRepresentation(builder, name, /*showProperties*/ false,
|
|
/*showFigures*/ false, /*showCount*/ cc,
|
|
/*detailedCount*/ false);
|
|
}
|
|
} else if (sub == "unload") {
|
|
bool flush = _request->parsedValue("flush", false);
|
|
|
|
if (flush && TRI_vocbase_col_status_e::TRI_VOC_COL_STATUS_LOADED == coll->status()) {
|
|
EngineSelectorFeature::ENGINE->flushWal(false, false, false);
|
|
}
|
|
|
|
res = methods::Collections::unload(&_vocbase, coll.get());
|
|
|
|
if (res.ok()) {
|
|
collectionRepresentation(builder, name, /*showProperties*/ false,
|
|
/*showFigures*/ false, /*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
}
|
|
} else if (sub == "compact") {
|
|
res = coll->compact();
|
|
|
|
if (res.ok()) {
|
|
collectionRepresentation(builder, name, /*showProperties*/ false,
|
|
/*showFigures*/ false, /*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
}
|
|
} else if (sub == "responsibleShard") {
|
|
if (!ServerState::instance()->isCoordinator()) {
|
|
res.reset(TRI_ERROR_CLUSTER_ONLY_ON_COORDINATOR);
|
|
} else {
|
|
std::string shardId;
|
|
res = coll->getResponsibleShard(body, false, shardId);
|
|
|
|
if (res.ok()) {
|
|
builder.openObject();
|
|
builder.add("shardId", VPackValue(shardId));
|
|
builder.close();
|
|
}
|
|
}
|
|
} else if (sub == "truncate") {
|
|
{
|
|
OperationOptions opts;
|
|
|
|
opts.waitForSync = _request->parsedValue("waitForSync", false);
|
|
opts.isSynchronousReplicationFrom =
|
|
_request->value("isSynchronousReplication");
|
|
|
|
auto trx = createTransaction(coll->name(), AccessMode::Type::EXCLUSIVE);
|
|
trx->addHint(transaction::Hints::Hint::INTERMEDIATE_COMMITS);
|
|
trx->addHint(transaction::Hints::Hint::ALLOW_RANGE_DELETE);
|
|
res = trx->begin();
|
|
|
|
if (res.ok()) {
|
|
auto result = trx->truncate(coll->name(), opts);
|
|
res = trx->finish(result.result);
|
|
}
|
|
}
|
|
// wait for the transaction to finish first. only after that compact the
|
|
// data range(s) for the collection
|
|
// we shouldn't run compact() as part of the transaction, because the compact
|
|
// will be useless inside due to the snapshot the transaction has taken
|
|
coll->compact();
|
|
|
|
if (res.ok()) {
|
|
if (ServerState::instance()->isCoordinator()) { // ClusterInfo::loadPlan eventually
|
|
// updates status
|
|
coll->setStatus(TRI_vocbase_col_status_e::TRI_VOC_COL_STATUS_LOADED);
|
|
}
|
|
|
|
collectionRepresentation(builder, *coll,
|
|
/*showProperties*/ false,
|
|
/*showFigures*/ false,
|
|
/*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
}
|
|
} else if (sub == "properties") {
|
|
std::vector<std::string> keep = {"doCompact", "journalSize",
|
|
"waitForSync", "indexBuckets",
|
|
"replicationFactor", "cacheEnabled"};
|
|
VPackBuilder props = VPackCollection::keep(body, keep);
|
|
|
|
res = methods::Collections::updateProperties(*coll, props.slice(), false // always a full-update
|
|
);
|
|
|
|
if (res.ok()) {
|
|
collectionRepresentation(builder, name, /*showProperties*/ true,
|
|
/*showFigures*/ false, /*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
}
|
|
|
|
} else if (sub == "rename") {
|
|
VPackSlice const newNameSlice = body.get("name");
|
|
|
|
if (!newNameSlice.isString()) {
|
|
res = Result(TRI_ERROR_ARANGO_ILLEGAL_NAME, "name is empty");
|
|
return;
|
|
}
|
|
|
|
std::string const newName = newNameSlice.copyString();
|
|
|
|
res = methods::Collections::rename(*coll, newName, false);
|
|
|
|
if (res.ok()) {
|
|
collectionRepresentation(builder, newName, /*showProperties*/ false,
|
|
/*showFigures*/ false, /*showCount*/ false,
|
|
/*detailedCount*/ true);
|
|
}
|
|
} else if (sub == "loadIndexesIntoMemory") {
|
|
res = methods::Collections::warmup(_vocbase, *coll);
|
|
|
|
VPackObjectBuilder obj(&builder, true);
|
|
|
|
obj->add("result", VPackValue(res.ok()));
|
|
} else {
|
|
res = handleExtraCommandPut(*coll, sub, builder);
|
|
if (res.is(TRI_ERROR_NOT_IMPLEMENTED)) {
|
|
res.reset(TRI_ERROR_HTTP_NOT_FOUND,
|
|
"expecting one of the actions 'load', 'unload', 'truncate',"
|
|
" 'properties', 'compact', 'rename', 'loadIndexesIntoMemory'");
|
|
}
|
|
}
|
|
});
|
|
|
|
if (found.fail()) {
|
|
generateError(found);
|
|
} else if (res.ok()) {
|
|
generateOk(rest::ResponseCode::OK, builder);
|
|
_response->setHeaderNC(StaticStrings::Location, _request->requestPath());
|
|
} else {
|
|
generateError(res);
|
|
}
|
|
}
|
|
|
|
void RestCollectionHandler::handleCommandDelete() {
|
|
std::vector<std::string> const& suffixes = _request->decodedSuffixes();
|
|
|
|
if (suffixes.size() != 1) {
|
|
generateError(rest::ResponseCode::BAD, TRI_ERROR_HTTP_BAD_PARAMETER,
|
|
"expected DELETE /_api/collection/<collection-name>");
|
|
events::DropCollection(_vocbase.name(), "", TRI_ERROR_HTTP_BAD_PARAMETER);
|
|
return;
|
|
}
|
|
|
|
std::string const& name = suffixes[0];
|
|
bool allowDropSystem = _request->parsedValue("isSystem", false);
|
|
VPackBuilder builder;
|
|
Result res;
|
|
Result found = methods::Collections::lookup(
|
|
_vocbase, // vocbase to search
|
|
name, // collection name to find
|
|
[&](std::shared_ptr<LogicalCollection> const& coll)->void { // callback if found
|
|
TRI_ASSERT(coll);
|
|
|
|
auto cid = std::to_string(coll->id());
|
|
VPackObjectBuilder obj(&builder, true);
|
|
|
|
obj->add("id", VPackValue(cid));
|
|
res = methods::Collections::drop(*coll, allowDropSystem, -1.0);
|
|
});
|
|
|
|
if (found.fail()) {
|
|
events::DropCollection(_vocbase.name(), name, found.errorNumber());
|
|
generateError(found);
|
|
} else if (res.fail()) {
|
|
generateError(res);
|
|
} else {
|
|
generateOk(rest::ResponseCode::OK, builder);
|
|
}
|
|
}
|
|
|
|
/// generate collection info. We lookup the collection again, because in the
|
|
/// cluster someinfo is lazily added in loadPlan, which means load, unload,
|
|
/// truncate
|
|
/// and create will not immediately show the expected results on a collection
|
|
/// object.
|
|
void RestCollectionHandler::collectionRepresentation(VPackBuilder& builder,
|
|
std::string const& name,
|
|
bool showProperties, bool showFigures,
|
|
bool showCount, bool detailedCount) {
|
|
Result r = methods::Collections::lookup(
|
|
_vocbase, // vocbase to search
|
|
name, // collection to find
|
|
[&](std::shared_ptr<LogicalCollection> const& coll)->void { // callback if found
|
|
TRI_ASSERT(coll);
|
|
collectionRepresentation(builder, *coll, showProperties, showFigures,
|
|
showCount, detailedCount);
|
|
});
|
|
|
|
if (r.fail()) {
|
|
THROW_ARANGO_EXCEPTION(r);
|
|
}
|
|
}
|
|
|
|
void RestCollectionHandler::collectionRepresentation(
|
|
arangodb::velocypack::Builder& builder, LogicalCollection& coll,
|
|
bool showProperties, bool showFigures, bool showCount, bool detailedCount) {
|
|
if (showProperties || showCount) {
|
|
// Here we need a transaction
|
|
auto trx = createTransaction(coll.name(), AccessMode::Type::READ);
|
|
Result res = trx->begin();
|
|
|
|
if (res.fail()) {
|
|
THROW_ARANGO_EXCEPTION(res);
|
|
}
|
|
|
|
methods::Collections::Context ctxt(_vocbase, coll, trx.get());
|
|
|
|
collectionRepresentation(builder, ctxt, showProperties, showFigures,
|
|
showCount, detailedCount);
|
|
} else {
|
|
// We do not need a transaction here
|
|
methods::Collections::Context ctxt(_vocbase, coll);
|
|
|
|
collectionRepresentation(builder, ctxt, showProperties, showFigures,
|
|
showCount, detailedCount);
|
|
}
|
|
}
|
|
|
|
void RestCollectionHandler::collectionRepresentation(VPackBuilder& builder,
|
|
methods::Collections::Context& ctxt,
|
|
bool showProperties, bool showFigures,
|
|
bool showCount, bool detailedCount) {
|
|
bool wasOpen = builder.isOpenObject();
|
|
if (!wasOpen) {
|
|
builder.openObject();
|
|
}
|
|
|
|
auto coll = ctxt.coll();
|
|
TRI_ASSERT(coll != nullptr);
|
|
|
|
// `methods::Collections::properties` will filter these out
|
|
builder.add(StaticStrings::DataSourceId, VPackValue(std::to_string(coll->id())));
|
|
builder.add(StaticStrings::DataSourceName, VPackValue(coll->name()));
|
|
builder.add("status", VPackValue(coll->status()));
|
|
builder.add(StaticStrings::DataSourceType, VPackValue(coll->type()));
|
|
|
|
if (!showProperties) {
|
|
builder.add(StaticStrings::DataSourceSystem, VPackValue(coll->system()));
|
|
builder.add(StaticStrings::DataSourceGuid, VPackValue(coll->guid()));
|
|
} else {
|
|
Result res = methods::Collections::properties(ctxt, builder);
|
|
if (res.fail()) {
|
|
THROW_ARANGO_EXCEPTION(res);
|
|
}
|
|
}
|
|
|
|
if (showFigures) {
|
|
auto figures = coll->figures();
|
|
builder.add("figures", figures->slice());
|
|
}
|
|
|
|
if (showCount) {
|
|
auto trx = ctxt.trx(AccessMode::Type::READ, true, true);
|
|
TRI_ASSERT(trx != nullptr);
|
|
OperationResult opRes =
|
|
trx->count(coll->name(), detailedCount ? transaction::CountType::Detailed
|
|
: transaction::CountType::Normal);
|
|
|
|
if (opRes.fail()) {
|
|
trx->finish(opRes.result);
|
|
THROW_ARANGO_EXCEPTION(opRes.result);
|
|
}
|
|
|
|
builder.add("count", opRes.slice());
|
|
}
|
|
|
|
if (!wasOpen) {
|
|
builder.close();
|
|
}
|
|
}
|