for anything useful by bucket type code.
}
struct fastbuf *
-obuck_create(void)
+obuck_create(u32 type)
{
obuck_lock_write();
bflush(obuck_fb);
obuck_broken("Misaligned file");
obuck_hdr.magic = OBUCK_INCOMPLETE_MAGIC;
obuck_hdr.oid = bucket_start >> OBUCK_SHIFT;
- obuck_hdr.length = obuck_hdr.orig_length = 0;
+ obuck_hdr.length = 0;
+ obuck_hdr.type = type;
bucket_current = bucket_start;
bwrite(obuck_fb, &obuck_hdr, sizeof(obuck_hdr));
obuck_fb->pos = -sizeof(obuck_hdr);
{
int pad;
obuck_hdr.magic = OBUCK_MAGIC;
- obuck_hdr.length = obuck_hdr.orig_length = btell(obuck_fb);
+ obuck_hdr.length = btell(obuck_fb);
pad = (OBUCK_ALIGN - sizeof(obuck_hdr) - obuck_hdr.length - 4) & (OBUCK_ALIGN - 1);
while (pad--)
bputc(obuck_fb, 0);
obuck_hdr.length = bucket_start - wstart - sizeof(obuck_hdr) - 4;
else
obuck_hdr.length = 0x40000000 - sizeof(obuck_hdr) - 4;
- obuck_hdr.orig_length = obuck_hdr.length;
sh_pwrite(obuck_fd, &obuck_hdr, sizeof(obuck_hdr), wstart);
wstart += sizeof(obuck_hdr) + obuck_hdr.length + 4;
sh_pwrite(obuck_fd, &check, 4, wstart-4);
for(i=0; i<LEN(j); i++)
bputc(b, (i+j) % 256);
obuck_create_end(b, &h);
- printf("Writing %08x %d -> %d\n", h.oid, h.orig_length, h.length);
+ printf("Writing %08x %d\n", h.oid, h.length);
ids[j] = h.oid;
}
for(j=0; j<COUNT; j++)
h.oid = ids[j];
obuck_find_by_oid(&h);
b = obuck_fetch();
- printf("Reading %08x %d -> %d\n", h.oid, h.orig_length, h.length);
- if (h.orig_length != LEN(j))
+ printf("Reading %08x %d\n", h.oid, h.length);
+ if (h.length != LEN(j))
die("Invalid length");
- for(i=0; i<h.orig_length; i++)
+ for(i=0; i<h.length; i++)
if ((unsigned) bgetc(b) != (i+j) % 256)
die("Contents mismatch");
if (bgetc(b) != EOF)
if (obuck_find_first(&h, 0))
do
{
- printf("<<< %08x\t%d\n", h.oid, h.orig_length);
+ printf("<<< %08x\t%d\n", h.oid, h.length);
cnt--;
}
while (obuck_find_next(&h, 0));
* of the GNU Lesser General Public License.
*/
+#ifndef _SHERLOCK_BUCKET_H
+#define _SHERLOCK_BUCKET_H
+
/*
* Format: The object pool is merely a sequence of object buckets.
* Each bucket starts with struct obuck_header and it's padded
struct obuck_header {
u32 magic; /* OBUCK_MAGIC should dwell here */
oid_t oid; /* ID of this object or OBUCK_OID_DELETED */
- u32 length; /* Length of compressed data in the bucket */
- u32 orig_length; /* Length of uncompressed data */
+ u32 length; /* Length of data in the bucket */
+ u32 type; /* Data type */
/* Bucket data continue here */
};
+enum bucket_type {
+ BUCKET_TYPE_COMPAT = 0x7fffffff, /* and less -- buckets created by older versions of Sherlock */
+ BUCKET_TYPE_PLAIN = 0x80000000, /* plain textual buckets */
+ BUCKET_TYPE_V30 = 0x80000001, /* v3.0 uncompressed buckets */
+ BUCKET_TYPE_V30C = 0x80000002 /* v3.0 compressed buckets */
+};
+
struct fastbuf;
void obuck_init(int writeable); /* Initialize the bucket module */
void obuck_fetch_end(struct fastbuf *b);
/* Creating buckets */
-struct fastbuf *obuck_create(void);
+struct fastbuf *obuck_create(u32 type);
void obuck_create_end(struct fastbuf *b, struct obuck_header *hdrp);
/* Deleting buckets */
/* Shaking down bucket file */
void obuck_shakedown(int (*kibitz)(struct obuck_header *old, oid_t new, byte *buck));
+
+#endif
-L\t\tlist all buckets including deleted ones\n\
-d <obj>\tdelete bucket\n\
-x <obj>\textract bucket\n\
--i\t\tinsert buckets separated by blank lines\n\
+-i[<type>]\tinsert buckets separated by blank lines\n\
-c\t\tconcatenate and dump all buckets\n\
-f\t\taudit bucket file structure\n\
-F\t\taudit and fix bucket file structure\n\
if (h.oid == OBUCK_OID_DELETED)
printf("DELETED %6d\n", h.length);
else
- printf("%08x %6d %6d\n", h.oid, h.length, h.orig_length);
+ printf("%08x %6d %08x\n", h.oid, h.length, h.type);
}
while (obuck_find_next(&h, full));
obuck_cleanup();
}
static void
-insert(void)
+insert(byte *arg)
{
struct fastbuf *b, *in;
byte buf[4096];
struct obuck_header h;
byte *e;
+ u32 type;
+
+ if (!arg)
+ type = BUCKET_TYPE_PLAIN;
+ else if (sscanf(arg, "%x", &type) != 1)
+ die("Type `%s' is not a hexadecimal number");
in = bfdopen_shared(0, 4096);
obuck_init(1);
do
{
- b = obuck_create();
+ b = obuck_create(type);
while ((e = bgets(in, buf, sizeof(buf))) && buf[0])
{
*e++ = '\n';
bwrite(b, buf, e-buf);
}
obuck_create_end(b, &h);
- printf("%08x %d %d\n", h.oid, h.length, h.orig_length);
+ printf("%08x %d %08x\n", h.oid, h.length, h.type);
}
while (e);
obuck_cleanup();
obuck_init(0);
while (b = obuck_slurp_pool(&h))
{
- printf("### %08x %6d %6d\n", h.oid, h.length, h.orig_length);
+ printf("### %08x %6d %08x\n", h.oid, h.length, h.type);
lf = 1;
while ((l = bread(b, buf, sizeof(buf))))
{
{
h.magic = OBUCK_MAGIC;
h.oid = OBUCK_OID_DELETED;
- h.length = h.orig_length = end - pos - sizeof(h) - 4;
+ h.length = end - pos - sizeof(h) - 4;
sh_pwrite(fd, &h, sizeof(h), pos);
chk = OBUCK_TRAILER;
sh_pwrite(fd, &chk, 4, end-4);
log_init(NULL);
op = 0;
- while ((i = cf_getopt(argc, argv, CF_SHORT_OPTS "lLd:x:icfFqsv", CF_NO_LONG_OPTS, NULL)) != -1)
+ while ((i = cf_getopt(argc, argv, CF_SHORT_OPTS "lLd:x:i::cfFqsv", CF_NO_LONG_OPTS, NULL)) != -1)
if (i == '?' || op)
help();
else if (i == 'v')
extract(arg);
break;
case 'i':
- insert();
+ insert(arg);
break;
case 'c':
cat();