//////////////////////////////////////////////////////////////////////////////// /// @brief unique hash index /// /// @file /// /// DISCLAIMER /// /// Copyright by triAGENS GmbH - All rights reserved. /// /// The Programs (which include both the software and documentation) /// contain proprietary information of triAGENS GmbH; they are /// provided under a license agreement containing restrictions on use and /// disclosure and are also protected by copyright, patent and other /// intellectual and industrial property laws. Reverse engineering, /// disassembly or decompilation of the Programs, except to the extent /// required to obtain interoperability with other independently created /// software or as specified by law, is prohibited. /// /// The Programs are not intended for use in any nuclear, aviation, mass /// transit, medical, or other inherently dangerous applications. It shall /// be the licensee's responsibility to take all appropriate fail-safe, /// backup, redundancy, and other measures to ensure the safe use of such /// applications if the Programs are used for such purposes, and triAGENS /// GmbH disclaims liability for any damages caused by such use of /// the Programs. /// /// This software is the confidential and proprietary information of /// triAGENS GmbH. You shall not disclose such confidential and /// proprietary information and shall use it only in accordance with the /// terms of the license agreement you entered into with triAGENS GmbH. /// /// Copyright holder is triAGENS GmbH, Cologne, Germany /// /// @author Dr. O /// @author Copyright 2011, triagens GmbH, Cologne, Germany //////////////////////////////////////////////////////////////////////////////// #ifndef TRI_HASH_INDEX_H #define TRI_HASH_INDEX_H 1 #include #include #include #include #include "ShapedJson/shaped-json.h" #include "ShapedJson/json-shaper.h" #include "IndexIterators/index-iterator.h" #include "IndexOperators/index-operator.h" #include "hasharray.h" // ............................................................................... // Define the structure of a unique or non-unique hashindex // ............................................................................... typedef struct { TRI_hasharray_t* hashArray; bool unique; } HashIndex; typedef struct { TRI_shaped_json_t* fields; // list of shaped json objects the blob of data within will be hashed void* data; // master document pointer } HashIndexElement; typedef struct { size_t _numElements; HashIndexElement* _elements; // simple list of elements } TRI_hash_index_elements_t; //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ // Common hash index methods //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ int HashIndex_assignMethod (void*, TRI_index_method_assignment_type_e); //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ // Unique hash index methods //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ void HashIndex_destroy (HashIndex*); HashIndex* HashIndex_new (size_t, size_t); void HashIndex_free (HashIndex*); //////////////////////////////////////////////////////////////////////////////// /// @brief free a result set allocated by HashIndex_find //////////////////////////////////////////////////////////////////////////////// void HashIndex_freeResult(TRI_hash_index_elements_t* const); int HashIndex_add (HashIndex*, HashIndexElement*); TRI_hash_index_elements_t* HashIndex_find (HashIndex*, HashIndexElement*); int HashIndex_insert (HashIndex*, HashIndexElement*); int HashIndex_remove (HashIndex*, HashIndexElement*); int HashIndex_update (HashIndex*, const HashIndexElement*, const HashIndexElement*); //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ // Multi-hash non-unique hash indexes //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ void MultiHashIndex_destroy (HashIndex*); void MultiHashIndex_free (HashIndex*); //////////////////////////////////////////////////////////////////////////////// /// @brief free a result set allocated by MultiHashIndex_find //////////////////////////////////////////////////////////////////////////////// void MultiHashIndex_freeResult(TRI_hash_index_elements_t* const); HashIndex* MultiHashIndex_new (size_t, size_t); int MultiHashIndex_add (HashIndex*, HashIndexElement*); TRI_hash_index_elements_t* MultiHashIndex_find (HashIndex*, HashIndexElement*); int MultiHashIndex_insert (HashIndex*, HashIndexElement*); int MultiHashIndex_remove (HashIndex*, HashIndexElement*); int MultiHashIndex_update (HashIndex*, HashIndexElement*, HashIndexElement*); #endif