+#include <ctype.h>
#include "cache.h"
#include "object.h"
#include "delta.h"
unsigned long size;
unsigned long offset;
unsigned int depth;
- unsigned int flags;
+ unsigned int hash;
enum object_type type;
unsigned long delta_size;
struct object_entry *delta;
fclose(f);
}
-static void add_object_entry(unsigned char *sha1)
+static void add_object_entry(unsigned char *sha1, unsigned int hash)
{
unsigned int idx = nr_objects;
struct object_entry *entry;
entry = objects + idx;
memset(entry, 0, sizeof(*entry));
memcpy(entry->sha1, sha1, 20);
+ entry->hash = hash;
nr_objects = idx+1;
}
return -1;
if (a->type > b->type)
return 1;
+ if (a->hash < b->hash)
+ return -1;
+ if (a->hash > b->hash)
+ return 1;
if (a->size < b->size)
return -1;
if (a->size > b->size)
max_size = size / 2 - 20;
if (cur_entry->delta)
max_size = cur_entry->delta_size-1;
+ if (sizediff >= max_size)
+ return -1;
delta_buf = diff_delta(old->data, oldsize,
cur->data, size, &delta_size, max_size);
if (!delta_buf)
int main(int argc, char **argv)
{
- char line[128];
+ char line[PATH_MAX + 20];
int window = 10, depth = 10;
int i;
usage(pack_usage);
while (fgets(line, sizeof(line), stdin) != NULL) {
+ unsigned int hash;
+ char *p;
unsigned char sha1[20];
+
if (get_sha1_hex(line, sha1))
die("expected sha1, got garbage");
- add_object_entry(sha1);
+ hash = 0;
+ p = line+40;
+ while (*p) {
+ unsigned char c = *p++;
+ if (isspace(c))
+ continue;
+ hash = hash * 11 + c;
+ }
+ add_object_entry(sha1, hash);
}
get_object_details();