SkipList.h
Go to the documentation of this file.
1 /******************************************************************************/
35 /******************************************************************************/
36 
37 #ifndef PROJECT_SKIPLIST_H
38 #define PROJECT_SKIPLIST_H
39 
40 #include "Dictionary.h"
41 #include "../key_value/kv_system.h"
42 #include "../dictionary/skip_list/skip_list_handler.h"
43 
44 template<typename K, typename V>
45 class SkipList:public Dictionary<K, V> {
46 public:
70  ion_dictionary_size_t dictionary_size
71 ) {
72  sldict_init(&this->handler);
73 
74  this->initializeDictionary(id, key_type, key_size, value_size, dictionary_size);
75 }
76 
79 ) {
80  sldict_init(&this->handler);
81 
82  this->open(config);
83 }
84 
85 static SkipList<K, V> *
87  ion_dictionary_config_info_t config_info,
88  K key_type,
89  V value_type
90 ) {
91  UNUSED(key_type);
92  UNUSED(value_type);
93 
94  return new SkipList<K, V>(config_info);
95 }
96 };
97 
98 #endif /* PROJECT_SKIPLIST_H */
ion_key_type_t key_type
Definition: Dictionary.h:54
enum ION_KEY_TYPE ion_key_type_t
This is the available key types for ION_DB. All types will be based on system defines.
int ion_value_size_t
The size (length) of a dictionary value in bytes.
Definition: kv_system.h:256
SkipList(ion_dictionary_id_t id, ion_key_type_t key_type, ion_key_size_t key_size, ion_value_size_t value_size, ion_dictionary_size_t dictionary_size)
Registers a specific skip list dictionary instance.
Definition: SkipList.h:65
ion_value_size_t value_size
Definition: Dictionary.h:56
unsigned int ion_dictionary_id_t
A type used to identify dictionaries, specifically in the master table.
unsigned int ion_dictionary_size_t
The implementation specific size of the dictionary.
Definition: kv_system.h:264
Struct containing details for opening a dictionary previously created.
ion_err_t open(ion_dictionary_config_info_t config_info)
Opens a dictionary, given the desired config.
Definition: Dictionary.h:230
static SkipList< K, V > * openDictionary(ion_dictionary_config_info_t config_info, K key_type, V value_type)
Definition: SkipList.h:86
ion_key_size_t key_size
Definition: Dictionary.h:55
#define UNUSED(x)
Definition: kv_system.h:102
ion_dictionary_handler_t handler
Definition: Dictionary.h:52
Interface describing how user interacts with general dictionaries using C++.
int ion_key_size_t
The size (length) of a dictionary key in bytes.
Definition: kv_system.h:251
ion_err_t initializeDictionary(ion_dictionary_id_t dict_id, ion_key_type_t k_type, ion_key_size_t k_size, ion_value_size_t v_size, ion_dictionary_size_t dictionary_size)
Creates a dictionary with a specific identifier (for use through the master table).
Definition: Dictionary.h:85
SkipList(ion_dictionary_config_info_t config)
Definition: SkipList.h:77
void sldict_init(ion_dictionary_handler_t *handler)
Registers a skiplist handler to a dictionary instance.