X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=bluesky%2Fbluesky-private.h;h=e5b5b583919576614862bb79eb2cd2df06c86610;hb=a82b60b3b683840a7074110831bcbaa16a40f0eb;hp=7652cff53c3a1315543abc97c80ce32aba9cc28e;hpb=8ea73bbfba8c53cdaf41f2abf47bec389d1fa8ba;p=bluesky.git diff --git a/bluesky/bluesky-private.h b/bluesky/bluesky-private.h index 7652cff..e5b5b58 100644 --- a/bluesky/bluesky-private.h +++ b/bluesky/bluesky-private.h @@ -314,6 +314,42 @@ typedef struct { gboolean complete; } SerializedRecord; +/***** Inode map management *****/ + +/* Mapping information for a single inode number. These are grouped together + * into InodeMapRange objects. */ +typedef struct { + uint64_t inum; + + /* The ID of the most recent version of the inode. */ + BlueSkyCloudID id; + + /* The location where that version is written in the cloud. */ + BlueSkyCloudPointer location; + + /* If the cloud log entry exists in memory, then a pointer to it, otherwise + * NULL. */ + BlueSkyCloudLog *item; +} InodeMapEntry; + +typedef struct { + /* Starting and ending inode number values that fall in this section. + * Endpoint values are inclusive. */ + uint64_t start, end; + + /* A sorted list (by inode number) of InodeMapEntry objects. */ + GSequence *map_entries; + + /* The location where this inode map section is stored in the cloud. */ + BlueSkyCloudPointer location; + + /* Have there been changes that require writing this section out again? */ + gboolean dirty; +} InodeMapRange; + +InodeMapEntry *bluesky_inode_map_lookup(GSequence *inode_map, uint64_t inum, + int action); + #ifdef __cplusplus } #endif