mirror of https://gitee.com/bigwinds/arangodb
200 lines
7.0 KiB
C++
200 lines
7.0 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief collection name resolver
|
|
///
|
|
/// @file
|
|
///
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2004-2013 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 Jan Steemann
|
|
/// @author Copyright 2012-2013, triAGENS GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef TRIAGENS_UTILS_COLLECTION_NAME_RESOLVER_H
|
|
#define TRIAGENS_UTILS_COLLECTION_NAME_RESOLVER_H 1
|
|
|
|
#include "BasicsC/common.h"
|
|
|
|
#include "Basics/StringUtils.h"
|
|
#include "VocBase/vocbase.h"
|
|
|
|
namespace triagens {
|
|
namespace arango {
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- class CollectionNameResolver
|
|
// -----------------------------------------------------------------------------
|
|
|
|
class CollectionNameResolver {
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- constructors / destructors
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup ArangoDB
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
public:
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief create the resolver
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
CollectionNameResolver (TRI_vocbase_t* vocbase) :
|
|
_vocbase(vocbase), _resolvedNames(), _resolvedIds() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroy the resolver
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
~CollectionNameResolver () {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup ArangoDB
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
public:
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief look up a collection id for a collection name
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
TRI_voc_cid_t getCollectionId (const string& name) const {
|
|
if (name[0] >= '0' && name[0] <= '9') {
|
|
// name is a numeric id
|
|
return (TRI_voc_cid_t) triagens::basics::StringUtils::uint64(name);
|
|
}
|
|
|
|
const TRI_vocbase_col_t* collection = getCollectionStruct(name);
|
|
|
|
if (collection != 0) {
|
|
return collection->_cid;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief look up a collection struct for a collection name
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
const TRI_vocbase_col_t* getCollectionStruct (const string& name) const {
|
|
if (_resolvedNames.size() > 0) {
|
|
map<string, const TRI_vocbase_col_t*>::const_iterator it = _resolvedNames.find(name);
|
|
|
|
if (it != _resolvedNames.end()) {
|
|
return (*it).second;
|
|
}
|
|
}
|
|
|
|
const TRI_vocbase_col_t* collection = TRI_LookupCollectionByNameVocBase(_vocbase, name.c_str());
|
|
|
|
if (collection != 0) {
|
|
_resolvedNames[name] = collection;
|
|
}
|
|
|
|
return collection;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief look up a collection name for a collection id
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
string getCollectionName (const TRI_voc_cid_t cid) const {
|
|
if (_resolvedIds.size() > 0) {
|
|
map<TRI_voc_cid_t, string>::const_iterator it = _resolvedIds.find(cid);
|
|
|
|
if (it != _resolvedIds.end()) {
|
|
return (*it).second;
|
|
}
|
|
}
|
|
|
|
char* n = TRI_GetCollectionNameByIdVocBase(_vocbase, cid);
|
|
if (n == 0) {
|
|
return "_unknown";
|
|
}
|
|
|
|
string name(n);
|
|
|
|
_resolvedIds[cid] = name;
|
|
TRI_Free(TRI_UNKNOWN_MEM_ZONE, n);
|
|
|
|
return name;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- private variables
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup ArangoDB
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
private:
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief vocbase base pointer
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
TRI_vocbase_t* _vocbase;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief collection id => collection struct map
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
mutable std::map<std::string, const TRI_vocbase_col_t*> _resolvedNames;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief collection id => collection name map
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
mutable std::map<TRI_voc_cid_t, std::string> _resolvedIds;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
// Local Variables:
|
|
// mode: outline-minor
|
|
// outline-regexp: "/// @brief\\|/// {@inheritDoc}\\|/// @addtogroup\\|/// @page\\|// --SECTION--\\|/// @\\}"
|
|
// End:
|