More work on synchronous/asynchronous operations.
[bluesky.git] / bluesky / store.c
index ec72ec2..7c8123c 100644 (file)
 struct _BlueSkyStore {
     const BlueSkyStoreImplementation *impl;
     gpointer handle;
+
+    GMutex *lock;
+    GCond *cond_idle;
+    int pending;                /* Count of operations not yet complete. */
 };
 
 GHashTable *store_implementations;
@@ -45,6 +49,9 @@ BlueSkyStore *bluesky_store_new(const gchar *type)
     BlueSkyStore *store = g_new(BlueSkyStore, 1);
     store->impl = impl;
     store->handle = handle;
+    store->lock = g_mutex_new();
+    store->cond_idle = g_cond_new();
+    store->pending = 0;
     return store;
 }
 
@@ -121,6 +128,14 @@ void bluesky_store_async_wait(BlueSkyStoreAsync *async)
  * function. */
 void bluesky_store_async_mark_complete(BlueSkyStoreAsync *async)
 {
+    if (async->status != ASYNC_COMPLETE) {
+        g_mutex_lock(async->store->lock);
+        async->store->pending--;
+        if (async->store->pending == 0)
+            g_cond_broadcast(async->store->cond_idle);
+        g_mutex_unlock(async->store->lock);
+    }
+
     async->status = ASYNC_COMPLETE;
     g_cond_broadcast(async->completion_cond);
 }
@@ -129,7 +144,25 @@ void bluesky_store_async_submit(BlueSkyStoreAsync *async)
 {
     BlueSkyStore *store = async->store;
 
+    g_mutex_lock(async->store->lock);
+    async->store->pending++;
+    g_mutex_unlock(async->store->lock);
+
     store->impl->submit(store->handle, async);
+
+    if (bluesky_options.synchronous_stores)
+        bluesky_store_async_wait(async);
+}
+
+void bluesky_store_sync(BlueSkyStore *store)
+{
+    g_mutex_lock(store->lock);
+    g_print("Waiting for pending store operations to complete...\n");
+    while (store->pending > 0) {
+        g_cond_wait(store->cond_idle, store->lock);
+    }
+    g_mutex_unlock(store->lock);
+    g_print("Operations are complete.\n");
 }
 
 /* Convenience wrappers that perform a single operation synchronously. */
@@ -138,7 +171,7 @@ BlueSkyRCStr *bluesky_store_get(BlueSkyStore *store, const gchar *key)
     BlueSkyStoreAsync *async = bluesky_store_async_new(store);
     async->op = STORE_OP_GET;
     async->key = g_strdup(key);
-    store->impl->submit(store->handle, async);
+    bluesky_store_async_submit(async);
 
     bluesky_store_async_wait(async);
 
@@ -156,7 +189,7 @@ void bluesky_store_put(BlueSkyStore *store,
     async->key = g_strdup(key);
     bluesky_string_ref(val);
     async->data = val;
-    store->impl->submit(store->handle, async);
+    bluesky_store_async_submit(async);
 
     bluesky_store_async_wait(async);
     bluesky_store_async_unref(async);