//////////////////////////////////////////////////////////////////////////////// /// 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 #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 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