Gradually converting code to use cloud logs for storing data.
[bluesky.git] / bluesky / debug.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 <stdlib.h>
11 #include <inttypes.h>
12 #include <glib.h>
13 #include <string.h>
14
15 #include "bluesky-private.h"
16
17 /* Debugging support for BlueSky. */
18
19 static void inode_dump(gpointer key, gpointer value, gpointer user_data)
20 {
21     BlueSkyInode *inode = (BlueSkyInode *)value;
22
23     g_print("Inode %"PRIu64":\n", inode->inum);
24
25     gboolean locked = TRUE;
26     if (g_mutex_trylock(inode->lock)) {
27         locked = FALSE;
28         g_mutex_unlock(inode->lock);
29     }
30     g_print("    Locked: %c   Refcount: %d\n",
31             locked ? 'T' : 'F', inode->refcount);
32
33     g_print("    Type: %d   Mode: %o\n", inode->type, inode->mode);
34     g_print("    change_count = %"PRIu64", change_commit = %"PRIu64"\n",
35             inode->change_count, inode->change_commit);
36 }
37
38 static void cloudlog_dump(gpointer key, gpointer value, gpointer user_data)
39 {
40     BlueSkyCloudLog *log = (BlueSkyCloudLog *)value;
41
42     for (int i = 0; i < sizeof(BlueSkyCloudID); i++) {
43         g_print("%02x", (uint8_t)(log->id.bytes[i]));
44     }
45     g_print(": refs=%d ty=%d inode=%"PRIu64" locs=%x log@(%d,%d) cloud@(%d,%d,%d)\n",
46             log->refcount,
47             log->type, log->inum, log->location_flags,
48             log->log_seq, log->log_offset, log->location.directory,
49             log->location.sequence, log->location.offset);
50 }
51
52 /* Dump a summary of filesystem state as it is cached in memory. */
53 void bluesky_debug_dump(BlueSkyFS *fs)
54 {
55     g_print("*** DEBUG DUMP FOR FILESYSTEM %s ***\n", fs->name);
56     g_print("Cached blocks: %d\tDirty blocks: %d\n",
57             g_atomic_int_get(&fs->cache_total),
58             g_atomic_int_get(&fs->cache_dirty));
59     g_print("Cached inodes: %u\tNext inode: %"PRIu64"\n",
60             g_hash_table_size(fs->inodes), fs->next_inum);
61
62     GList *item;
63     g_print("Unsynced inode list:");
64     for (item = fs->unlogged_list.next; item != NULL; item = item->next) {
65         g_print(" %"PRIu64";", ((BlueSkyInode *)item->data)->inum);
66     }
67     g_print("\n");
68     g_print("Dirty inode LRU list:");
69     for (item = fs->dirty_list.next; item != NULL; item = item->next) {
70         g_print(" %"PRIu64";", ((BlueSkyInode *)item->data)->inum);
71     }
72     g_print("\n");
73     g_print("Accessed inode LRU list:");
74     for (item = fs->accessed_list.next; item != NULL; item = item->next) {
75         g_print(" %"PRIu64";", ((BlueSkyInode *)item->data)->inum);
76     }
77     g_print("\n");
78
79     g_hash_table_foreach(fs->inodes, inode_dump, fs);
80
81     g_print("\nLog Objects:\n");
82     g_hash_table_foreach(fs->locations, cloudlog_dump, fs);
83     g_print("\n");
84 }
85
86 /* Statistics counters: for operation counts, bytes transferred, etc. */
87 static GStaticMutex stats_lock = G_STATIC_MUTEX_INIT;
88 static GList *stats_list = NULL;
89
90 struct bluesky_stats *bluesky_stats_new(const char *name)
91 {
92     struct bluesky_stats *stats = g_new0(struct bluesky_stats, 1);
93     stats->name = name;
94     g_static_mutex_lock(&stats_lock);
95     stats_list = g_list_append(stats_list, stats);
96     g_static_mutex_unlock(&stats_lock);
97     return stats;
98 }
99
100 void bluesky_stats_add(struct bluesky_stats *stats, int64_t value)
101 {
102     __sync_fetch_and_add(&stats->count, (int64_t)1);
103     __sync_fetch_and_add(&stats->sum, value);
104 }
105
106 void bluesky_stats_dump_all()
107 {
108     g_static_mutex_lock(&stats_lock);
109     for (GList *item = stats_list; item != NULL; item = item->next) {
110         struct bluesky_stats *stats = (struct bluesky_stats *)item->data;
111         g_print("%s: count=%"PRIi64" sum=%"PRIi64"\n",
112                 stats->name, stats->count, stats->sum);
113     }
114     g_static_mutex_unlock(&stats_lock);
115 }