Re-enable file and memory storage backends.
[bluesky.git] / bluesky / store.c
1 /* Blue Sky: File Systems in the Cloud
2  *
3  * Copyright (C) 2009  The Regents of the University of California
4  * Written by Michael Vrable <mvrable@cs.ucsd.edu>
5  *
6  * TODO: Licensing
7  */
8
9 #include <stdint.h>
10 #include <glib.h>
11 #include <string.h>
12
13 #include "bluesky-private.h"
14
15 /* Interaction with cloud storage.  We expose very simple GET/PUT style
16  * interface, which different backends can implement.  Available backends
17  * (will) include Amazon S3 and a simple local store for testing purposes.
18  * Operations may be performed asynchronously. */
19
20 struct _BlueSkyStore {
21     const BlueSkyStoreImplementation *impl;
22     gpointer handle;
23
24     GMutex *lock;
25     GCond *cond_idle;
26     int pending;                /* Count of operations not yet complete. */
27 };
28
29 GHashTable *store_implementations;
30
31 /* Thread pool for calling notifier functions when an operation completes.
32  * These are called in a separate thread for locking reasons: we want to call
33  * the notifiers without the lock on the async object held, but completion
34  * occurs when the lock is held--so we need some way to defer the call.  This
35  * isn't really optimal from a cache-locality standpoint. */
36 static GThreadPool *notifier_thread_pool;
37
38 void bluesky_store_register(const BlueSkyStoreImplementation *impl,
39                             const gchar *name)
40 {
41     g_hash_table_insert(store_implementations, g_strdup(name), (gpointer)impl);
42 }
43
44 BlueSkyStore *bluesky_store_new(const gchar *type)
45 {
46     const BlueSkyStoreImplementation *impl;
47
48     impl = g_hash_table_lookup(store_implementations, type);
49     if (impl == NULL)
50         return NULL;
51
52     gpointer handle = impl->create();
53     if (handle == NULL)
54         return NULL;
55
56     BlueSkyStore *store = g_new(BlueSkyStore, 1);
57     store->impl = impl;
58     store->handle = handle;
59     store->lock = g_mutex_new();
60     store->cond_idle = g_cond_new();
61     store->pending = 0;
62     return store;
63 }
64
65 void bluesky_store_free(BlueSkyStore *store)
66 {
67     store->impl->destroy(store->handle);
68     g_free(store);
69 }
70
71 BlueSkyStoreAsync *bluesky_store_async_new(BlueSkyStore *store)
72 {
73     BlueSkyStoreAsync *async;
74
75     async = g_new(BlueSkyStoreAsync, 1);
76     async->store = store;
77     async->lock = g_mutex_new();
78     async->completion_cond = g_cond_new();
79     async->refcount = 1;
80     async->status = ASYNC_NEW;
81     async->op = STORE_OP_NONE;
82     async->key = NULL;
83     async->data = NULL;
84     async->result = -1;
85     async->notifiers = NULL;
86     async->store_private = NULL;
87
88     return async;
89 }
90
91 void bluesky_store_async_ref(BlueSkyStoreAsync *async)
92 {
93     if (async == NULL)
94         return;
95
96     g_return_if_fail(g_atomic_int_get(&async->refcount) > 0);
97
98     g_atomic_int_inc(&async->refcount);
99 }
100
101 void bluesky_store_async_unref(BlueSkyStoreAsync *async)
102 {
103     if (async == NULL)
104         return;
105
106     if (g_atomic_int_dec_and_test(&async->refcount)) {
107         async->store->impl->cleanup(async->store->handle, async);
108         g_mutex_free(async->lock);
109         g_cond_free(async->completion_cond);
110         g_free(async->key);
111         bluesky_string_unref(async->data);
112         g_free(async);
113         g_log("bluesky/store", G_LOG_LEVEL_DEBUG,
114               "freeing async");
115     }
116 }
117
118 /* Block until the given operation has completed. */
119 void bluesky_store_async_wait(BlueSkyStoreAsync *async)
120 {
121     g_return_if_fail(async != NULL);
122     g_mutex_lock(async->lock);
123
124     if (async->status == ASYNC_NEW) {
125         g_error("bluesky_store_async_wait on a new async object!\n");
126         g_mutex_unlock(async->lock);
127         return;
128     }
129
130     while (async->status != ASYNC_COMPLETE) {
131         g_cond_wait(async->completion_cond, async->lock);
132     }
133
134     g_mutex_unlock(async->lock);
135 }
136
137 /* Add a notifier function to be called when the operation completes. */
138 void bluesky_store_async_add_notifier(BlueSkyStoreAsync *async,
139                                       GFunc func, gpointer user_data)
140 {
141     struct BlueSkyNotifierList *nl = g_new(struct BlueSkyNotifierList, 1);
142     nl->next = async->notifiers;
143     nl->func = func;
144     nl->async = async; bluesky_store_async_ref(async);
145     nl->user_data = user_data;
146     if (async->status == ASYNC_COMPLETE) {
147         g_thread_pool_push(notifier_thread_pool, nl, NULL);
148     } else {
149         async->notifiers = nl;
150     }
151 }
152
153 /* Mark an asynchronous operation as complete.  This should only be called by
154  * the store implementations.  The lock should be held when calling this
155  * function.  Any notifier functions will be called, but in a separate thread
156  * and without the lock held. */
157 void bluesky_store_async_mark_complete(BlueSkyStoreAsync *async)
158 {
159     g_return_if_fail(async->status != ASYNC_COMPLETE);
160
161     g_mutex_lock(async->store->lock);
162     async->store->pending--;
163     if (async->store->pending == 0)
164         g_cond_broadcast(async->store->cond_idle);
165     g_mutex_unlock(async->store->lock);
166
167     async->status = ASYNC_COMPLETE;
168     g_cond_broadcast(async->completion_cond);
169
170     while (async->notifiers != NULL) {
171         struct BlueSkyNotifierList *nl = async->notifiers;
172         async->notifiers = nl->next;
173         g_thread_pool_push(notifier_thread_pool, nl, NULL);
174     }
175 }
176
177 void bluesky_store_async_submit(BlueSkyStoreAsync *async)
178 {
179     BlueSkyStore *store = async->store;
180
181     /* Barriers are handled specially, and not handed down the storage
182      * implementation layer. */
183     if (async->op == STORE_OP_BARRIER) {
184         async->status = ASYNC_RUNNING;
185         if (GPOINTER_TO_INT(async->store_private) == 0)
186             bluesky_store_async_mark_complete(async);
187         return;
188     }
189
190     g_log("bluesky/store", G_LOG_LEVEL_DEBUG, "submit: %s %s",
191           async->op == STORE_OP_GET ? "GET"
192             : async->op == STORE_OP_PUT ? "PUT"
193             : async->op == STORE_OP_DELETE ? "DELETE" : "???",
194           async->key);
195
196     g_mutex_lock(async->store->lock);
197     async->store->pending++;
198     g_mutex_unlock(async->store->lock);
199
200     store->impl->submit(store->handle, async);
201
202     if (bluesky_options.synchronous_stores)
203         bluesky_store_async_wait(async);
204 }
205
206 static void op_complete(gpointer a, gpointer b)
207 {
208     BlueSkyStoreAsync *barrier = (BlueSkyStoreAsync *)b;
209
210     g_mutex_lock(barrier->lock);
211     barrier->store_private
212         = GINT_TO_POINTER(GPOINTER_TO_INT(barrier->store_private) - 1);
213     if (GPOINTER_TO_INT(barrier->store_private) == 0
214             && barrier->status != ASYNC_NEW) {
215         bluesky_store_async_mark_complete(barrier);
216     }
217     g_mutex_unlock(barrier->lock);
218 }
219
220 /* Add the given operation to the barrier.  The barrier will not complete until
221  * all operations added to it have completed. */
222 void bluesky_store_add_barrier(BlueSkyStoreAsync *barrier,
223                                BlueSkyStoreAsync *async)
224 {
225     g_return_if_fail(barrier->op == STORE_OP_BARRIER);
226     barrier->store_private
227         = GINT_TO_POINTER(GPOINTER_TO_INT(barrier->store_private) + 1);
228     bluesky_store_async_add_notifier(async, op_complete, barrier);
229 }
230
231 static void notifier_task(gpointer n, gpointer s)
232 {
233     struct BlueSkyNotifierList *notifier = (struct BlueSkyNotifierList *)n;
234
235     notifier->func(notifier->async, notifier->user_data);
236     bluesky_store_async_unref(notifier->async);
237     g_free(notifier);
238 }
239
240 void bluesky_store_sync(BlueSkyStore *store)
241 {
242     g_mutex_lock(store->lock);
243     g_print("Waiting for pending store operations to complete...\n");
244     while (store->pending > 0) {
245         g_cond_wait(store->cond_idle, store->lock);
246     }
247     g_mutex_unlock(store->lock);
248     g_print("Operations are complete.\n");
249 }
250
251 /* Convenience wrappers that perform a single operation synchronously. */
252 BlueSkyRCStr *bluesky_store_get(BlueSkyStore *store, const gchar *key)
253 {
254     BlueSkyStoreAsync *async = bluesky_store_async_new(store);
255     async->op = STORE_OP_GET;
256     async->key = g_strdup(key);
257     bluesky_store_async_submit(async);
258
259     bluesky_store_async_wait(async);
260
261     BlueSkyRCStr *data = async->data;
262     bluesky_string_ref(data);
263     bluesky_store_async_unref(async);
264     return data;
265 }
266
267 void bluesky_store_put(BlueSkyStore *store,
268                        const gchar *key, BlueSkyRCStr *val)
269 {
270     BlueSkyStoreAsync *async = bluesky_store_async_new(store);
271     async->op = STORE_OP_PUT;
272     async->key = g_strdup(key);
273     bluesky_string_ref(val);
274     async->data = val;
275     bluesky_store_async_submit(async);
276
277     bluesky_store_async_wait(async);
278     bluesky_store_async_unref(async);
279 }
280
281 /* Simple in-memory data store for test purposes. */
282 typedef struct {
283     GMutex *lock;
284
285     /* TODO: A hashtable isn't optimal for list queries... */
286     GHashTable *store;
287 } MemStore;
288
289 static gpointer memstore_create()
290 {
291     MemStore *store = g_new(MemStore, 1);
292     store->lock = g_mutex_new();
293     store->store = g_hash_table_new_full(g_str_hash, g_str_equal,
294                                          g_free,
295                                          (GDestroyNotify)bluesky_string_unref);
296
297     return (gpointer)store;
298 }
299
300 static void memstore_destroy(gpointer store)
301 {
302     /* TODO */
303 }
304
305 static BlueSkyRCStr *memstore_get(gpointer st, const gchar *key)
306 {
307     MemStore *store = (MemStore *)st;
308     BlueSkyRCStr *s = g_hash_table_lookup(store->store, key);
309     if (s != NULL)
310         bluesky_string_ref(s);
311     return s;
312 }
313
314 static void memstore_put(gpointer s, const gchar *key, BlueSkyRCStr *val)
315 {
316     MemStore *store = (MemStore *)s;
317     bluesky_string_ref(val);
318     g_hash_table_insert(store->store, g_strdup(key), val);
319 }
320
321 static void memstore_submit(gpointer s, BlueSkyStoreAsync *async)
322 {
323     g_return_if_fail(async->status == ASYNC_NEW);
324     g_return_if_fail(async->op != STORE_OP_NONE);
325
326     switch (async->op) {
327     case STORE_OP_GET:
328         async->data = memstore_get(s, async->key);
329         break;
330
331     case STORE_OP_PUT:
332         memstore_put(s, async->key, async->data);
333         break;
334
335     default:
336         g_warning("Uknown operation type for MemStore: %d\n", async->op);
337         return;
338     }
339
340     bluesky_store_async_mark_complete(async);
341 }
342
343 static void memstore_cleanup(gpointer store, BlueSkyStoreAsync *async)
344 {
345 }
346
347 static BlueSkyStoreImplementation memstore_impl = {
348     .create = memstore_create,
349     .destroy = memstore_destroy,
350     .submit = memstore_submit,
351     .cleanup = memstore_cleanup,
352 };
353
354 /* Store implementation which writes data as files to disk. */
355 static gpointer filestore_create()
356 {
357     return GINT_TO_POINTER(1);
358 }
359
360 static void filestore_destroy()
361 {
362 }
363
364 static BlueSkyRCStr *filestore_get(const gchar *key)
365 {
366     gchar *contents = NULL;
367     gsize length;
368     GError *error = NULL;
369
370     g_file_get_contents(key, &contents, &length, &error);
371     if (contents == NULL)
372         return NULL;
373
374     return bluesky_string_new(contents, length);
375 }
376
377 static void filestore_put(const gchar *key, BlueSkyRCStr *val)
378 {
379     g_file_set_contents(key, val->data, val->len, NULL);
380 }
381
382 static void filestore_submit(gpointer s, BlueSkyStoreAsync *async)
383 {
384     g_return_if_fail(async->status == ASYNC_NEW);
385     g_return_if_fail(async->op != STORE_OP_NONE);
386
387     switch (async->op) {
388     case STORE_OP_GET:
389         async->data = filestore_get(async->key);
390         break;
391
392     case STORE_OP_PUT:
393         filestore_put(async->key, async->data);
394         break;
395
396     default:
397         g_warning("Uknown operation type for FileStore: %d\n", async->op);
398         return;
399     }
400
401     bluesky_store_async_mark_complete(async);
402 }
403
404 static void filestore_cleanup(gpointer store, BlueSkyStoreAsync *async)
405 {
406 }
407
408 static BlueSkyStoreImplementation filestore_impl = {
409     .create = filestore_create,
410     .destroy = filestore_destroy,
411     .submit = filestore_submit,
412     .cleanup = filestore_cleanup,
413 };
414
415 void bluesky_store_init()
416 {
417     store_implementations = g_hash_table_new(g_str_hash, g_str_equal);
418     notifier_thread_pool = g_thread_pool_new(notifier_task, NULL, -1, FALSE,
419                                              NULL);
420     bluesky_store_register(&memstore_impl, "mem");
421     bluesky_store_register(&filestore_impl, "file");
422 }