mirror of https://gitee.com/bigwinds/arangodb
98 lines
3.9 KiB
C++
98 lines
3.9 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief shape accessor
|
|
///
|
|
/// @file
|
|
///
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2014 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
|
|
/// @author Copyright 2014, ArangoDB GmbH, Cologne, Germany
|
|
/// @author Copyright 2011-2013, triAGENS GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef ARANGODB_VOC_BASE_SHAPE__ACCESSOR_H
|
|
#define ARANGODB_VOC_BASE_SHAPE__ACCESSOR_H 1
|
|
|
|
#include "Basics/Common.h"
|
|
#include "Basics/json.h"
|
|
#include "VocBase/shaped-json.h"
|
|
|
|
class VocShaper;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public types
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief json shape access
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
typedef struct TRI_shape_access_s {
|
|
TRI_shape_sid_t _sid; // shaped identifier of the shape we are looking at
|
|
TRI_shape_pid_t _pid; // path identifier of the attribute path
|
|
|
|
TRI_shape_sid_t _resultSid; // resulting shape
|
|
void const** _code; // bytecode
|
|
}
|
|
TRI_shape_access_t;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public functions
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief free a shape accessor
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void TRI_FreeShapeAccessor (TRI_shape_access_t*);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates a shape accessor
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
TRI_shape_access_t* TRI_ShapeAccessor (VocShaper* shaper,
|
|
TRI_shape_sid_t sid,
|
|
TRI_shape_pid_t pid);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief executes a shape accessor
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool TRI_ExecuteShapeAccessor (TRI_shape_access_t const* accessor,
|
|
TRI_shaped_json_t const* shaped,
|
|
TRI_shaped_json_t* result);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief prints a TRI_shape_t for debugging
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void TRI_PrintShapeAccessor (TRI_shape_access_t*);
|
|
|
|
#endif
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- END-OF-FILE
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Local Variables:
|
|
// mode: outline-minor
|
|
// outline-regexp: "/// @brief\\|/// {@inheritDoc}\\|/// @page\\|// --SECTION--\\|/// @\\}"
|
|
// End:
|