]> mj.ucw.cz Git - libucw.git/blobdiff - lib/buckettool.c
`buckettool -c' (cat) now separates buckets by an empty line.
[libucw.git] / lib / buckettool.c
index 81b252f8eed6538cd6955eeae79cef735e9842eb..76b8fc37c21f5586074490981ecee352eefbf23a 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     Sherlock Library -- Bucket Manipulation Tool
  *
 /*
  *     Sherlock Library -- Bucket Manipulation Tool
  *
- *     (c) 2001 Martin Mares <mj@ucw.cz>
+ *     (c) 2001--2004 Martin Mares <mj@ucw.cz>
  *     (c) 2004 Robert Spalek <robert@ucw.cz>
  *
  *     This software may be freely distributed and used according to the terms
  *     (c) 2004 Robert Spalek <robert@ucw.cz>
  *
  *     This software may be freely distributed and used according to the terms
 #include "lib/fastbuf.h"
 #include "lib/lfs.h"
 #include "lib/conf.h"
 #include "lib/fastbuf.h"
 #include "lib/lfs.h"
 #include "lib/conf.h"
-#include "lib/pools.h"
+#include "lib/mempool.h"
 #include "lib/object.h"
 #include "lib/object.h"
-#include "lib/buck2obj.h"
-#include "lib/obj2buck.h"
 #include "lib/lizard.h"
 #include "lib/lizard.h"
-#include "charset/unistream.h"
+#include "lib/bbuf.h"
+#include "lib/ff-utf8.h"
 
 #include <stdio.h>
 #include <stdlib.h>
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -48,9 +47,9 @@ CF_USAGE
 -f\t\taudit bucket file structure\n\
 -F\t\taudit and fix bucket file structure\n\
 -q\t\tquick check of bucket file consistency\n\
 -f\t\taudit bucket file structure\n\
 -F\t\taudit and fix bucket file structure\n\
 -q\t\tquick check of bucket file consistency\n\
+-r\t\tdo not parse V33 buckets, but print the raw content\n\
 -s\t\tshake down bucket file (without updating other structures!!!)\n\
 -v\t\tbe verbose\n\
 -s\t\tshake down bucket file (without updating other structures!!!)\n\
 -v\t\tbe verbose\n\
--r\t\tdo not parse V33 buckets, but print the raw content\n\
 ");
   exit(1);
 }
 ");
   exit(1);
 }
@@ -93,38 +92,27 @@ delete(char *id)
 }
 
 static inline void
 }
 
 static inline void
-dump_oattr(struct fastbuf *out, struct oattr *oa)
+dump_oattrs(struct fastbuf *out, struct oattr *a)
 {
 {
-  for (struct oattr *a = oa; a; a = a->same)
+  for (; a; a = a->same)
     bprintf(out, "%c%s\n", a->attr, a->val);
 }
 
 static void
 dump_parsed_bucket(struct fastbuf *out, struct obuck_header *h, struct fastbuf *b)
 {
     bprintf(out, "%c%s\n", a->attr, a->val);
 }
 
 static void
 dump_parsed_bucket(struct fastbuf *out, struct obuck_header *h, struct fastbuf *b)
 {
+  struct odes *o_hdr, *o_body;
   mp_flush(pool);
   mp_flush(pool);
-  struct odes *o = obj_read_bucket(buck_buf, h->type, h->length, b, NULL);
-  if (!o)
-    bprintf(out, "Cannot parse bucket %x of type %x and length %d: %m\n", h->oid, h->type, h->length);
+  o_hdr = obj_new(pool);
+  o_body = obj_new(pool);
+  if (buck2obj_parse(buck_buf, h->type, h->length, b, o_hdr, NULL, o_body) < 0)
+    bprintf(out, ".Cannot parse bucket %x of type %x and length %d: %m\n", h->oid, h->type, h->length);
   else
   else
-  {
-    if (h->type < BUCKET_TYPE_V30)
     {
     {
-      for (struct oattr *oa = o->attrs; oa; oa = oa->next)
-       dump_oattr(out, oa);
-    }
-    else
-    {
-#define        IS_HEADER(x) (x=='O' || x=='U')
-      for (struct oattr *oa = o->attrs; oa; oa = oa->next)
-       if (IS_HEADER(oa->attr))
-         dump_oattr(out, oa);
+      dump_oattrs(out, o_hdr->attrs);
       bputc(out, '\n');
       bputc(out, '\n');
-      for (struct oattr *oa = o->attrs; oa; oa = oa->next)
-       if (!IS_HEADER(oa->attr))
-         dump_oattr(out, oa);
+      dump_oattrs(out, o_body->attrs);
     }
     }
-  }
 }
 
 static void
 }
 
 static void
@@ -152,10 +140,6 @@ extract(char *id)
   obuck_cleanup();
 }
 
   obuck_cleanup();
 }
 
-#define        GBUF_TYPE       byte
-#define        GBUF_PREFIX(x)  bb_##x
-#include "lib/gbuf.h"
-
 static void
 insert(byte *arg)
 {
 static void
 insert(byte *arg)
 {
@@ -172,6 +156,9 @@ insert(byte *arg)
     type = BUCKET_TYPE_PLAIN;
   else if (sscanf(arg, "%x", &type) != 1)
     die("Type `%s' is not a hexadecimal number");
     type = BUCKET_TYPE_PLAIN;
   else if (sscanf(arg, "%x", &type) != 1)
     die("Type `%s' is not a hexadecimal number");
+  if (type < 10)
+    type += BUCKET_TYPE_PLAIN;
+  attr_set_type(type);
 
   in = bfdopen_shared(0, 4096);
   obuck_init(1);
 
   in = bfdopen_shared(0, 4096);
   obuck_init(1);
@@ -190,26 +177,22 @@ insert(byte *arg)
          }
          if (!b)
            b = obuck_create(type);
          }
          if (!b)
            b = obuck_create(type);
-         if (type < BUCKET_TYPE_V33)
-         {
-           *e++ = '\n';
-           bwrite(b, buf, e-buf);
-         }
-         else if (in_body == 1)
+         if (in_body == 1)
          {
            bputc(b, 0);
            in_body = 2;
          }
          {
            bputc(b, 0);
            in_body = 2;
          }
-         else if (type == BUCKET_TYPE_V33 || !in_body)
+         else if (type <= BUCKET_TYPE_V33 || !in_body)
          {
          {
-           bwrite_v33(b, buf[0], buf+1, e-buf-1);
+           bput_attr(b, buf[0], buf+1, e-buf-1);
          }
          else
          {
          }
          else
          {
+           ASSERT(BUCKET_TYPE_V33_LIZARD);
            uns want_len = lizard_filled + (e-buf) + 6 + LIZARD_NEEDS_CHARS;    // +6 is the maximum UTF-8 length
            bb_grow(&lizard_buf, want_len);
            byte *ptr = lizard_buf.ptr + lizard_filled;
            uns want_len = lizard_filled + (e-buf) + 6 + LIZARD_NEEDS_CHARS;    // +6 is the maximum UTF-8 length
            bb_grow(&lizard_buf, want_len);
            byte *ptr = lizard_buf.ptr + lizard_filled;
-           WRITE_V33(ptr, buf[0], buf+1, e-buf-1);
+           ptr = put_attr(ptr, buf[0], buf+1, e-buf-1);
            lizard_filled = ptr - lizard_buf.ptr;
          }
        }
            lizard_filled = ptr - lizard_buf.ptr;
          }
        }
@@ -218,6 +201,11 @@ insert(byte *arg)
        bputl(b, lizard_filled
 #if 0  //TEST error resilience: write wrong length
            +1
        bputl(b, lizard_filled
 #if 0  //TEST error resilience: write wrong length
            +1
+#endif
+           );
+       bputl(b, adler32(lizard_buf.ptr, lizard_filled)
+#if 0  //TEST error resilience: write wrong checksum
+           +1
 #endif
            );
        uns want_len = lizard_filled * LIZARD_MAX_MULTIPLY + LIZARD_MAX_ADD;
 #endif
            );
        uns want_len = lizard_filled * LIZARD_MAX_MULTIPLY + LIZARD_MAX_ADD;
@@ -266,6 +254,7 @@ cat(void)
       }
       else
        dump_parsed_bucket(out, &h, b);
       }
       else
        dump_parsed_bucket(out, &h, b);
+      bputc(out, '\n');
     }
   bclose(out);
   obuck_cleanup();
     }
   bclose(out);
   obuck_cleanup();
@@ -399,7 +388,7 @@ main(int argc, char **argv)
 
   log_init(NULL);
   op = 0;
 
   log_init(NULL);
   op = 0;
-  while ((i = cf_getopt(argc, argv, CF_SHORT_OPTS "lLd:x:i::cfFqsvr", CF_NO_LONG_OPTS, NULL)) != -1)
+  while ((i = cf_getopt(argc, argv, CF_SHORT_OPTS "lLd:x:i::cfFqrsv", CF_NO_LONG_OPTS, NULL)) != -1)
     if (i == '?' || op)
       help();
     else if (i == 'v')
     if (i == '?' || op)
       help();
     else if (i == 'v')
@@ -417,7 +406,7 @@ main(int argc, char **argv)
   if (!raw)
   {
     pool = mp_new(1<<14);
   if (!raw)
   {
     pool = mp_new(1<<14);
-    buck_buf = buck2obj_alloc(pool);
+    buck_buf = buck2obj_alloc();
   }
   switch (op)
     {
   }
   switch (op)
     {