-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathstore.c
executable file
·51 lines (38 loc) · 1.07 KB
/
store.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <stdio.h>
#include <stdlib.h>
#include "store.h"
static GHashTable *_store_session_hash;
// gboolean wide_open(gpointer key, gpointer value, gpointer user_data) {
// return TRUE;
// }
static void value_destroyed(gpointer data) {
}
static void key_destroyed(gpointer data) {
}
void store_init(void) {
_store_session_hash = g_hash_table_new_full(g_str_hash, g_str_equal, (GDestroyNotify)key_destroyed, (GDestroyNotify)value_destroyed);
}
void store_add(char *key, void *value) {
if (key) {
g_hash_table_insert(_store_session_hash, g_strdup(key), value);
}
}
gboolean store_remove(char *key) {
if (key)
return g_hash_table_remove(_store_session_hash, key);
return 0;
}
gpointer store_lookup(char *key) {
if (key)
return g_hash_table_lookup(_store_session_hash, key);
return NULL;
}
gint store_size(void) {
return g_hash_table_size(_store_session_hash);
}
void store_destroy(void) {
g_hash_table_destroy(_store_session_hash);
}
GList *get_store_list() {
return g_hash_table_get_keys(_store_session_hash);
}