2007-04-17 01:03:15 +02:00
|
|
|
/*
|
|
|
|
* decorate.c - decorate a git object with some arbitrary
|
|
|
|
* data.
|
|
|
|
*/
|
|
|
|
#include "cache.h"
|
|
|
|
#include "object.h"
|
|
|
|
#include "decorate.h"
|
|
|
|
|
2008-08-20 19:55:33 +02:00
|
|
|
static unsigned int hash_obj(const struct object *obj, unsigned int n)
|
2007-04-17 01:03:15 +02:00
|
|
|
{
|
2014-07-03 00:20:20 +02:00
|
|
|
return sha1hash(obj->sha1) % n;
|
2007-04-17 01:03:15 +02:00
|
|
|
}
|
|
|
|
|
2008-08-20 19:55:33 +02:00
|
|
|
static void *insert_decoration(struct decoration *n, const struct object *base, void *decoration)
|
2007-04-17 01:03:15 +02:00
|
|
|
{
|
|
|
|
int size = n->size;
|
|
|
|
struct object_decoration *hash = n->hash;
|
2009-05-19 06:34:02 +02:00
|
|
|
unsigned int j = hash_obj(base, size);
|
2007-04-17 01:03:15 +02:00
|
|
|
|
|
|
|
while (hash[j].base) {
|
|
|
|
if (hash[j].base == base) {
|
|
|
|
void *old = hash[j].decoration;
|
|
|
|
hash[j].decoration = decoration;
|
|
|
|
return old;
|
|
|
|
}
|
|
|
|
if (++j >= size)
|
|
|
|
j = 0;
|
|
|
|
}
|
|
|
|
hash[j].base = base;
|
|
|
|
hash[j].decoration = decoration;
|
|
|
|
n->nr++;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void grow_decoration(struct decoration *n)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int old_size = n->size;
|
2008-07-03 09:25:23 +02:00
|
|
|
struct object_decoration *old_hash = n->hash;
|
2007-04-17 01:03:15 +02:00
|
|
|
|
|
|
|
n->size = (old_size + 1000) * 3 / 2;
|
|
|
|
n->hash = xcalloc(n->size, sizeof(struct object_decoration));
|
|
|
|
n->nr = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < old_size; i++) {
|
2008-08-20 19:55:33 +02:00
|
|
|
const struct object *base = old_hash[i].base;
|
2007-04-17 01:03:15 +02:00
|
|
|
void *decoration = old_hash[i].decoration;
|
|
|
|
|
2013-05-16 17:32:27 +02:00
|
|
|
if (!decoration)
|
2007-04-17 01:03:15 +02:00
|
|
|
continue;
|
|
|
|
insert_decoration(n, base, decoration);
|
|
|
|
}
|
|
|
|
free(old_hash);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a decoration pointer, return any old one */
|
2008-08-20 19:55:33 +02:00
|
|
|
void *add_decoration(struct decoration *n, const struct object *obj,
|
|
|
|
void *decoration)
|
2007-04-17 01:03:15 +02:00
|
|
|
{
|
|
|
|
int nr = n->nr + 1;
|
|
|
|
|
|
|
|
if (nr > n->size * 2 / 3)
|
|
|
|
grow_decoration(n);
|
|
|
|
return insert_decoration(n, obj, decoration);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lookup a decoration pointer */
|
2008-08-20 19:55:33 +02:00
|
|
|
void *lookup_decoration(struct decoration *n, const struct object *obj)
|
2007-04-17 01:03:15 +02:00
|
|
|
{
|
2009-05-19 06:34:02 +02:00
|
|
|
unsigned int j;
|
2007-04-17 01:03:15 +02:00
|
|
|
|
|
|
|
/* nothing to lookup */
|
|
|
|
if (!n->size)
|
|
|
|
return NULL;
|
|
|
|
j = hash_obj(obj, n->size);
|
|
|
|
for (;;) {
|
|
|
|
struct object_decoration *ref = n->hash + j;
|
|
|
|
if (ref->base == obj)
|
|
|
|
return ref->decoration;
|
|
|
|
if (!ref->base)
|
|
|
|
return NULL;
|
|
|
|
if (++j == n->size)
|
|
|
|
j = 0;
|
|
|
|
}
|
|
|
|
}
|