1
0
Fork 0
arangodb/arangod/Pregel/IndexHelpers.h

89 lines
3.0 KiB
C++

////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2014-2019 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 Michael Hackstein
////////////////////////////////////////////////////////////////////////////////
#ifndef ARANGOD_PREGEL_INDEX_HELPERS_H
#define ARANGOD_PREGEL_INDEX_HELPERS_H 1
#include <memory>
#include "Aql/Graphs.h"
namespace arangodb {
namespace transaction{
class Methods;
}
struct OperationCursor;
namespace traverser {
////////////////////////////////////////////////////////////////////////////////
/// @brief Information required internally of the traverser.
/// Used to easily pass around collections.
/// Also offer abstraction to extract edges.
////////////////////////////////////////////////////////////////////////////////
class EdgeCollectionInfo {
private:
//////////////////////////////////////////////////////////////////////////////
/// @brief the underlying transaction
//////////////////////////////////////////////////////////////////////////////
transaction::Methods* _trx;
//////////////////////////////////////////////////////////////////////////////
/// @brief edge collection name
//////////////////////////////////////////////////////////////////////////////
std::string _collectionName;
//////////////////////////////////////////////////////////////////////////////
/// @brief Temporary builder for index search values
/// NOTE: Single search builder is NOT thread-save
//////////////////////////////////////////////////////////////////////////////
aql::EdgeConditionBuilderContainer _searchBuilder;
public:
EdgeCollectionInfo(transaction::Methods* trx, std::string const& cname);
////////////////////////////////////////////////////////////////////////////////
/// @brief Get edges for the given direction and start vertex.
////////////////////////////////////////////////////////////////////////////////
std::unique_ptr<arangodb::OperationCursor> getEdges(std::string const&);
transaction::Methods* trx() const { return _trx; }
////////////////////////////////////////////////////////////////////////////////
/// @brief Return name of the wrapped collection
////////////////////////////////////////////////////////////////////////////////
std::string const& getName() const;
};
} // namespace traverser
} // namespace arangodb
#endif