mirror of https://gitee.com/bigwinds/arangodb
183 lines
5.8 KiB
C++
183 lines
5.8 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2014-2016 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 Dr. Frank Celler
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "v8-vocbaseprivate.h"
|
|
#include "Basics/conversions.h"
|
|
#include "Utils/Cursor.h"
|
|
#include "Utils/CursorRepository.h"
|
|
#include "Transaction/V8Context.h"
|
|
#include "V8/v8-conv.h"
|
|
#include "V8/v8-vpack.h"
|
|
#include "V8Server/v8-voccursor.h"
|
|
|
|
using namespace arangodb;
|
|
using namespace arangodb::basics;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief generates a general cursor from an array
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
static void JS_CreateCursor(v8::FunctionCallbackInfo<v8::Value> const& args) {
|
|
TRI_V8_TRY_CATCH_BEGIN(isolate);
|
|
v8::HandleScope scope(isolate);
|
|
|
|
TRI_vocbase_t* vocbase = GetContextVocBase(isolate);
|
|
|
|
if (vocbase == nullptr) {
|
|
TRI_V8_THROW_EXCEPTION(TRI_ERROR_ARANGO_DATABASE_NOT_FOUND);
|
|
}
|
|
|
|
if (args.Length() < 1) {
|
|
TRI_V8_THROW_EXCEPTION_USAGE("CREATE_CURSOR(<data>, <batchSize>, <ttl>)");
|
|
}
|
|
|
|
if (!args[0]->IsArray()) {
|
|
TRI_V8_THROW_TYPE_ERROR("<data> must be an array");
|
|
}
|
|
|
|
// extract objects
|
|
v8::Handle<v8::Array> array = v8::Handle<v8::Array>::Cast(args[0]);
|
|
auto builder = std::make_shared<VPackBuilder>();
|
|
int res = TRI_V8ToVPack(isolate, *builder, array, false);
|
|
|
|
if (res != TRI_ERROR_NO_ERROR) {
|
|
TRI_V8_THROW_TYPE_ERROR("cannot convert <array> to JSON");
|
|
}
|
|
|
|
// maximum number of results to return at once
|
|
uint32_t batchSize = 1000;
|
|
|
|
if (args.Length() >= 2) {
|
|
int64_t maxValue = TRI_ObjectToInt64(args[1]);
|
|
if (maxValue > 0 && maxValue < (int64_t)UINT32_MAX) {
|
|
batchSize = static_cast<uint32_t>(maxValue);
|
|
}
|
|
}
|
|
|
|
double ttl = 0.0;
|
|
if (args.Length() >= 3) {
|
|
ttl = TRI_ObjectToDouble(args[2]);
|
|
}
|
|
|
|
if (ttl <= 0.0) {
|
|
ttl = 30.0; // default ttl
|
|
}
|
|
|
|
// create a cursor
|
|
CursorRepository* cursors = vocbase->cursorRepository();
|
|
|
|
arangodb::aql::QueryResult result(TRI_ERROR_NO_ERROR);
|
|
result.result = builder;
|
|
result.cached = false;
|
|
result.context = transaction::V8Context::Create(vocbase, false);
|
|
|
|
TRI_ASSERT(builder.get() != nullptr);
|
|
|
|
try {
|
|
arangodb::Cursor* cursor = cursors->createFromQueryResult(
|
|
std::move(result), static_cast<size_t>(batchSize), ttl, true);
|
|
|
|
TRI_ASSERT(cursor != nullptr);
|
|
// need to fetch id before release() as release() might delete the cursor
|
|
CursorId id = cursor->id();
|
|
cursors->release(cursor);
|
|
|
|
auto result = TRI_V8UInt64String<TRI_voc_tick_t>(isolate, id);
|
|
TRI_V8_RETURN(result);
|
|
} catch (...) {
|
|
TRI_V8_THROW_EXCEPTION_MEMORY();
|
|
}
|
|
TRI_V8_TRY_CATCH_END
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief generates a JSON object from the specified cursor
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
static void JS_JsonCursor(v8::FunctionCallbackInfo<v8::Value> const& args) {
|
|
TRI_V8_TRY_CATCH_BEGIN(isolate);
|
|
v8::HandleScope scope(isolate);
|
|
|
|
TRI_vocbase_t* vocbase = GetContextVocBase(isolate);
|
|
|
|
if (vocbase == nullptr) {
|
|
TRI_V8_THROW_EXCEPTION(TRI_ERROR_ARANGO_DATABASE_NOT_FOUND);
|
|
}
|
|
|
|
if (args.Length() != 1) {
|
|
TRI_V8_THROW_EXCEPTION_USAGE("JSON_CURSOR(<id>)");
|
|
}
|
|
|
|
std::string const id = TRI_ObjectToString(args[0]);
|
|
auto cursorId = static_cast<arangodb::CursorId>(
|
|
arangodb::basics::StringUtils::uint64(id));
|
|
|
|
// find the cursor
|
|
auto cursors = vocbase->cursorRepository();
|
|
TRI_ASSERT(cursors != nullptr);
|
|
|
|
bool busy;
|
|
Cursor* cursor = cursors->find(cursorId, Cursor::CURSOR_VPACK, busy);
|
|
TRI_DEFER(cursors->release(cursor));
|
|
|
|
if (cursor == nullptr) {
|
|
if (busy) {
|
|
TRI_V8_THROW_EXCEPTION(TRI_ERROR_CURSOR_BUSY);
|
|
}
|
|
|
|
TRI_V8_THROW_EXCEPTION(TRI_ERROR_CURSOR_NOT_FOUND);
|
|
}
|
|
|
|
auto cth = cursor->context()->orderCustomTypeHandler();
|
|
VPackOptions opts = VPackOptions::Defaults;
|
|
opts.customTypeHandler = cth.get();
|
|
|
|
VPackBuilder builder(&opts);
|
|
builder.openObject(true); // conversion uses sequential iterator, no indexing
|
|
Result r = cursor->dump(builder);
|
|
if (r.fail()) {
|
|
TRI_V8_THROW_EXCEPTION_MEMORY(); // for compatibility
|
|
}
|
|
builder.close();
|
|
|
|
v8::Handle<v8::Value> result = TRI_VPackToV8(isolate, builder.slice());
|
|
TRI_V8_RETURN(result);
|
|
TRI_V8_TRY_CATCH_END
|
|
}
|
|
|
|
// .............................................................................
|
|
// generate the general cursor template
|
|
// .............................................................................
|
|
|
|
void TRI_InitV8cursor(v8::Handle<v8::Context> context, TRI_v8_global_t* v8g) {
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
|
|
// cursor functions. not intended to be used by end users
|
|
TRI_AddGlobalFunctionVocbase(isolate,
|
|
TRI_V8_ASCII_STRING(isolate, "CREATE_CURSOR"),
|
|
JS_CreateCursor, true);
|
|
TRI_AddGlobalFunctionVocbase(isolate,
|
|
TRI_V8_ASCII_STRING(isolate, "JSON_CURSOR"),
|
|
JS_JsonCursor, true);
|
|
}
|