1
0
Fork 0
arangodb/arangod/Aql/QueryResources.h

89 lines
2.7 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 Jan Steemann
////////////////////////////////////////////////////////////////////////////////
#ifndef ARANGOD_AQL_QUERY_RESOURCES_H
#define ARANGOD_AQL_QUERY_RESOURCES_H 1
#include "Aql/ShortStringStorage.h"
#include "Basics/Common.h"
namespace arangodb {
namespace aql {
struct AstNode;
struct ResourceMonitor;
class QueryResources {
public:
QueryResources() = delete;
QueryResources(QueryResources const&) = delete;
QueryResources& operator=(QueryResources const&) = delete;
explicit QueryResources(ResourceMonitor*);
~QueryResources();
/// @brief add a node to the list of nodes
void addNode(AstNode*);
/// @brief register a string
/// the string is freed when the query is destroyed
char* registerString(char const* p, size_t length);
/// @brief register a string
/// the string is freed when the query is destroyed
char* registerString(std::string const& p) {
return registerString(p.data(), p.size());
}
/// @brief register a potentially UTF-8-escaped string
/// the string is freed when the query is destroyed
char* registerEscapedString(char const* p, size_t length, size_t& outLength);
private:
/// @brief registers a long string and takes over the ownership for it
char* registerLongString(char* copy, size_t length);
private:
ResourceMonitor* _resourceMonitor;
/// @brief all nodes created in the AST - will be used for freeing them later
std::vector<AstNode*> _nodes;
/// @brief strings created in the query - used for easy memory deallocation
std::vector<char*> _strings;
/// @brief cumulated length of strings in _strings
#ifdef ARANGODB_ENABLE_MAINTAINER_MODE
size_t _stringsLength;
#endif
/// @brief short string storage. uses less memory allocations for short
/// strings
ShortStringStorage _shortStringStorage;
};
} // namespace aql
} // namespace arangodb
#endif