#include "bluesky-private.h"
+static void inode_fetch_task(gpointer a, gpointer b);
+
/* Core filesystem. Different proxies, such as the NFSv3 one, interface to
* this, but the core actually tracks the data which is stored. So far we just
* implement an in-memory filesystem, but eventually this will be state which
fs->log_state->data = g_string_new("");
bluesky_cloudlog_threads_init(fs);
+ fs->inode_fetch_thread_pool = g_thread_pool_new(inode_fetch_task, NULL,
+ bluesky_max_threads,
+ FALSE, NULL);
return fs;
}
}
}
-static void complete_inode_fetch(BlueSkyInode *inode)
+static void inode_fetch_task(gpointer a, gpointer b)
{
+ BlueSkyInode *inode = (BlueSkyInode *)a;
+
BlueSkyCloudLog *item = inode->committed_item;
inode->committed_item = NULL;
g_print("Completing fetch of inode %"PRIu64"...\n", inode->inum);
if (entry == NULL)
return;
+ /* Non-portable behavior: We take the inode lock here, and release it in
+ * the fetching thread. This works with the default Linux pthreads
+ * implementation but is not guaranteed. */
+
BlueSkyInode *inode = bluesky_new_inode(inum, fs, BLUESKY_PENDING);
inode->change_count = 0;
bluesky_inode_ref(inode); // Extra ref held by fetching process
g_mutex_lock(inode->lock);
- bluesky_insert_inode(fs, inode);
+
inode->committed_item = entry->item;
bluesky_cloudlog_ref(entry->item);
+ bluesky_insert_inode(fs, inode);
- /* TODO: Thread pool or other better async method. */
- g_thread_create((GThreadFunc)complete_inode_fetch,
- (gpointer)inode, FALSE, NULL);
+ g_thread_pool_push(fs->inode_fetch_thread_pool, inode, NULL);
}