//////////////////////////////////////////////////////////////////////////////// /// 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 Michael Hackstein /// @author Jan Christoph Uhde //////////////////////////////////////////////////////////////////////////////// #ifndef ARANGOD_VOCBASE_LOGICAL_COLLECTION_H #define ARANGOD_VOCBASE_LOGICAL_COLLECTION_H 1 #include "Basics/Common.h" #include "VocBase/voc-types.h" #include "VocBase/vocbase.h" #include namespace arangodb { namespace velocypack { class Slice; } typedef std::string ServerID; // ID of a server typedef std::string DatabaseID; // ID/name of a database typedef std::string CollectionID; // ID of a collection typedef std::string ShardID; // ID of a shard typedef std::unordered_map> ShardMap; struct DocumentIdentifierToken; class FollowerInfo; class Index; class IndexIterator; class ManagedDocumentResult; struct OperationOptions; class PhysicalCollection; class Result; class StringRef; class KeyGenerator; namespace transaction { class Methods; } class LogicalCollection { friend struct ::TRI_vocbase_t; public: LogicalCollection(TRI_vocbase_t*, velocypack::Slice const&); virtual ~LogicalCollection(); enum CollectionVersions { VERSION_30 = 5, VERSION_31 = 6 }; protected: // If you need a copy outside the class, use clone below. explicit LogicalCollection(LogicalCollection const&); private: LogicalCollection& operator=(LogicalCollection const&) = delete; public: LogicalCollection() = delete; virtual std::unique_ptr clone() { auto p = new LogicalCollection(*this); return std::unique_ptr(p); } /// @brief hard-coded minimum version number for collections static constexpr uint32_t minimumVersion() { return VERSION_30; } /// @brief current version for collections static constexpr uint32_t currentVersion() { return VERSION_31; } /// @brief determine whether a collection name is a system collection name static inline bool IsSystemName(std::string const& name) { if (name.empty()) { return false; } return name[0] == '_'; } static bool IsAllowedName(velocypack::Slice parameters); static bool IsAllowedName(bool isSystem, std::string const& name); // SECTION: Meta Information uint32_t version() const { return _version; } void setVersion(CollectionVersions version) { _version = version; } uint32_t internalVersion() const; inline TRI_voc_cid_t cid() const { return _cid; } std::string cid_as_string() const; TRI_voc_cid_t planId() const; std::string planId_as_string() const; TRI_col_type_e type() const; std::string name() const; std::string dbName() const; // Does always return the cid std::string const distributeShardsLike() const; void distributeShardsLike(std::string const& cid); std::vector const& avoidServers() const; void avoidServers(std::vector const&); // For normal collections the realNames is just a vector of length 1 // with its name. For smart edge collections (enterprise only) this is // different. virtual std::vector realNames() const { std::vector res{name()}; return res; } // Same here, this is for reading in AQL: virtual std::vector realNamesForRead() const { std::vector res{name()}; return res; } TRI_vocbase_col_status_e status() const; TRI_vocbase_col_status_e getStatusLocked(); void executeWhileStatusLocked(std::function const& callback); bool tryExecuteWhileStatusLocked(std::function const& callback); /// @brief try to fetch the collection status under a lock /// the boolean value will be set to true if the lock could be acquired /// if the boolean is false, the return value is always /// TRI_VOC_COL_STATUS_CORRUPTED TRI_vocbase_col_status_e tryFetchStatus(bool&); std::string statusString() const; uint64_t numberDocuments(transaction::Methods*) const; // SECTION: Properties TRI_voc_rid_t revision(transaction::Methods*) const; bool isLocal() const; bool deleted() const; bool isSystem() const; bool waitForSync() const; bool isSmart() const; void waitForSync(bool value) { _waitForSync = value; } std::unique_ptr const& followers() const; void setDeleted(bool); PhysicalCollection* getPhysical() const { return _physical.get(); } std::unique_ptr getAllIterator(transaction::Methods* trx, ManagedDocumentResult* mdr, bool reverse); std::unique_ptr getAnyIterator(transaction::Methods* trx, ManagedDocumentResult* mdr); void invokeOnAllElements( transaction::Methods* trx, std::function callback); // SECTION: Indexes std::vector> getIndexes() const; void getIndexesVPack(velocypack::Builder&, bool withFigures, bool forPersistence) const; // SECTION: Replication int replicationFactor() const; bool isSatellite() const; // SECTION: Sharding int numberOfShards() const; bool allowUserKeys() const; virtual bool usesDefaultShardKeys() const; std::vector const& shardKeys() const; std::shared_ptr shardIds() const; // return a filtered list of the collection's shards std::shared_ptr shardIds( std::unordered_set const& includedShards) const; void setShardMap(std::shared_ptr& map); /// @brief a method to skip certain documents in AQL write operations, /// this is only used in the enterprise edition for smart graphs virtual bool skipForAqlWrite(velocypack::Slice document, std::string const& key) const; // SECTION: Modification Functions int rename(std::string const&); void load(); void unload(); virtual void drop(); virtual void setStatus(TRI_vocbase_col_status_e); // SECTION: Serialisation void toVelocyPack(velocypack::Builder&, bool translateCids, bool forPersistence = false) const; velocypack::Builder toVelocyPackIgnore( std::unordered_set const& ignoreKeys, bool translateCids, bool forPersistence) const; virtual void toVelocyPackForClusterInventory(velocypack::Builder&, bool useSystem) const; inline TRI_vocbase_t* vocbase() const { return _vocbase; } // Update this collection. virtual arangodb::Result updateProperties(velocypack::Slice const&, bool); /// @brief return the figures for a collection virtual std::shared_ptr figures(); /// @brief opens an existing collection void open(bool ignoreErrors); /// @brief closes an open collection int close(); // SECTION: Indexes /// @brief Create a new Index based on VelocyPack description virtual std::shared_ptr createIndex(transaction::Methods*, velocypack::Slice const&, bool&); /// @brief Find index by definition std::shared_ptr lookupIndex(velocypack::Slice const&) const; /// @brief Find index by iid std::shared_ptr lookupIndex(TRI_idx_iid_t) const; bool dropIndex(TRI_idx_iid_t iid); // SECTION: Index access (local only) Result read(transaction::Methods*, std::string const&, ManagedDocumentResult& result, bool); Result read(transaction::Methods*, StringRef const&, ManagedDocumentResult& result, bool); /// @brief processes a truncate operation /// NOTE: This function throws on error void truncate(transaction::Methods* trx, OperationOptions&); Result insert(transaction::Methods*, velocypack::Slice const, ManagedDocumentResult& result, OperationOptions&, TRI_voc_tick_t&, bool); Result update(transaction::Methods*, velocypack::Slice const, ManagedDocumentResult& result, OperationOptions&, TRI_voc_tick_t&, bool, TRI_voc_rid_t& prevRev, ManagedDocumentResult& previous); Result replace(transaction::Methods*, velocypack::Slice const, ManagedDocumentResult& result, OperationOptions&, TRI_voc_tick_t&, bool, TRI_voc_rid_t& prevRev, ManagedDocumentResult& previous); Result remove(transaction::Methods*, velocypack::Slice const, OperationOptions&, TRI_voc_tick_t&, bool, TRI_voc_rid_t& prevRev, ManagedDocumentResult& previous); bool readDocument(transaction::Methods* trx, DocumentIdentifierToken const& token, ManagedDocumentResult& result); /// @brief Persist the connected physical collection. /// This should be called AFTER the collection is successfully /// created and only on Sinlge/DBServer void persistPhysicalCollection(); basics::ReadWriteLock& lock() { return _lock; } /// @brief Defer a callback to be executed when the collection /// can be dropped. The callback is supposed to drop /// the collection and it is guaranteed that no one is using /// it at that moment. void deferDropCollection( std::function callback); // SECTION: Key Options velocypack::Slice keyOptions() const; // Get a reference to this KeyGenerator. // Caller is not allowed to free it. inline KeyGenerator* keyGenerator() const { return _keyGenerator.get(); } private: void prepareIndexes(velocypack::Slice indexesSlice); // SECTION: Indexes (local only) // @brief create index with the given definition. bool openIndex(velocypack::Slice const&, transaction::Methods*); void increaseInternalVersion(); protected: virtual void includeVelocyPackEnterprise(velocypack::Builder& result) const; protected: // SECTION: Meta Information // // @brief Internal version used for caching uint32_t _internalVersion; // @brief Local collection id TRI_voc_cid_t const _cid; // @brief Global collection id TRI_voc_cid_t const _planId; // @brief Collection type TRI_col_type_e const _type; // @brief Collection Name std::string _name; // @brief Name of other collection this shards should be distributed like std::string _distributeShardsLike; // @brief Name of other collection this shards should be distributed like std::vector _avoidServers; // @brief Flag if this collection is a smart one. (Enterprise only) bool _isSmart; // the following contains in the cluster/DBserver case the information // which other servers are in sync with this shard. It is unset in all // other cases. std::unique_ptr _followers; // @brief Current state of this colletion TRI_vocbase_col_status_e _status; // SECTION: Properties bool _isLocal; bool _isDeleted; bool const _isSystem; uint32_t _version; bool _waitForSync; // SECTION: Replication size_t _replicationFactor; // SECTION: Sharding size_t _numberOfShards; bool const _allowUserKeys; std::vector _shardKeys; // This is shared_ptr because it is thread-safe // A thread takes a copy of this, another one updates this // the first one still has a valid copy std::shared_ptr _shardIds; TRI_vocbase_t* _vocbase; // SECTION: Key Options // TODO Really VPack? std::shared_ptr const> _keyOptions; // options for key creation std::unique_ptr _keyGenerator; std::unique_ptr _physical; mutable basics::ReadWriteLock _lock; // lock protecting the status and name mutable basics::ReadWriteLock _infoLock; // lock protecting the info }; } // namespace arangodb #endif