mirror of https://gitee.com/bigwinds/arangodb
137 lines
4.6 KiB
JavaScript
Executable File
137 lines
4.6 KiB
JavaScript
Executable File
/*jslint indent: 2, nomen: true, maxlen: 100, sloppy: true, vars: true, white: true, plusplus: true */
|
|
/*global require */
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief ArangoShell client API
|
|
///
|
|
/// @file
|
|
///
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2012 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 triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// @author Achim Brandt
|
|
/// @author Copyright 2012, triAGENS GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public functions
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup ArangoShell
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief start paging
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
function start_pager () {
|
|
var internal = require("internal");
|
|
internal.startPager();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief stop paging
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
function stop_pager () {
|
|
var internal = require("internal");
|
|
internal.stopPager();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief print the overall help
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
function help () {
|
|
var internal = require("internal");
|
|
var arangodb = require("org/arangodb");
|
|
var client = require("org/arangodb/arangosh");
|
|
|
|
internal.print(client.HELP);
|
|
internal.print(arangodb.ArangoStatement.prototype._help());
|
|
internal.print(arangodb.ArangoDatabase.prototype._help());
|
|
internal.print(arangodb.ArangoCollection.prototype._help());
|
|
internal.print(arangodb.ArangoQueryCursor.prototype._help());
|
|
internal.print(client.helpExtended);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief clear screen (poor man's way)
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
function clear () {
|
|
var internal = require("internal");
|
|
var i;
|
|
|
|
for (i = 0; i < 100; ++i) {
|
|
internal.print('\n');
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief prints help
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
(function() {
|
|
var internal = require("internal");
|
|
var arangosh = require("org/arangodb/arangosh");
|
|
|
|
if (internal.db !== undefined) {
|
|
try {
|
|
internal.db._collections();
|
|
}
|
|
catch (err) {
|
|
}
|
|
}
|
|
|
|
if (internal.arango !== undefined) {
|
|
if (typeof internal.arango.isConnected !== "undefined") {
|
|
if (internal.arango.isConnected()) {
|
|
internal.print(arangosh.HELP);
|
|
}
|
|
}
|
|
}
|
|
}());
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief global 'db'
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
var db = require("org/arangodb").db;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief global 'arango'
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
var arango = require("org/arangodb").arango;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- END-OF-FILE
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Local Variables:
|
|
// mode: outline-minor
|
|
// outline-regexp: "/// @brief\\|/// @addtogroup\\|// --SECTION--\\|/// @}\\|/\\*jslint"
|
|
// End:
|