2006-01-07 10:33:54 +01:00
|
|
|
#include "cache.h"
|
2005-04-18 20:39:48 +02:00
|
|
|
#include "tree.h"
|
|
|
|
#include "blob.h"
|
2005-09-05 08:03:51 +02:00
|
|
|
#include "commit.h"
|
|
|
|
#include "tag.h"
|
2006-05-29 00:07:07 +02:00
|
|
|
#include "tree-walk.h"
|
2005-04-18 20:39:48 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
const char *tree_type = "tree";
|
|
|
|
|
2006-05-29 00:10:04 +02:00
|
|
|
static int read_one_entry(const unsigned char *sha1, const char *base, int baselen, const char *pathname, unsigned mode, int stage)
|
2005-04-23 01:42:37 +02:00
|
|
|
{
|
2005-11-26 18:38:20 +01:00
|
|
|
int len;
|
|
|
|
unsigned int size;
|
|
|
|
struct cache_entry *ce;
|
|
|
|
|
|
|
|
if (S_ISDIR(mode))
|
|
|
|
return READ_TREE_RECURSIVE;
|
|
|
|
|
|
|
|
len = strlen(pathname);
|
|
|
|
size = cache_entry_size(baselen + len);
|
2006-04-03 20:30:46 +02:00
|
|
|
ce = xcalloc(1, size);
|
2005-04-23 01:42:37 +02:00
|
|
|
|
|
|
|
ce->ce_mode = create_ce_mode(mode);
|
|
|
|
ce->ce_flags = create_ce_flags(baselen + len, stage);
|
|
|
|
memcpy(ce->name, base, baselen);
|
|
|
|
memcpy(ce->name + baselen, pathname, len+1);
|
|
|
|
memcpy(ce->sha1, sha1, 20);
|
2005-06-25 11:25:29 +02:00
|
|
|
return add_cache_entry(ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_SKIP_DFCHECK);
|
2005-04-23 01:42:37 +02:00
|
|
|
}
|
|
|
|
|
2005-07-14 20:39:27 +02:00
|
|
|
static int match_tree_entry(const char *base, int baselen, const char *path, unsigned int mode, const char **paths)
|
2005-07-14 20:26:31 +02:00
|
|
|
{
|
2005-07-14 20:39:27 +02:00
|
|
|
const char *match;
|
2005-07-14 20:26:31 +02:00
|
|
|
int pathlen;
|
|
|
|
|
|
|
|
if (!paths)
|
|
|
|
return 1;
|
|
|
|
pathlen = strlen(path);
|
|
|
|
while ((match = *paths++) != NULL) {
|
|
|
|
int matchlen = strlen(match);
|
|
|
|
|
|
|
|
if (baselen >= matchlen) {
|
|
|
|
/* If it doesn't match, move along... */
|
|
|
|
if (strncmp(base, match, matchlen))
|
|
|
|
continue;
|
|
|
|
/* The base is a subdirectory of a path which was specified. */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Does the base match? */
|
|
|
|
if (strncmp(base, match, baselen))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
match += baselen;
|
|
|
|
matchlen -= baselen;
|
|
|
|
|
|
|
|
if (pathlen > matchlen)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (matchlen > pathlen) {
|
|
|
|
if (match[pathlen] != '/')
|
|
|
|
continue;
|
|
|
|
if (!S_ISDIR(mode))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strncmp(path, match, pathlen))
|
|
|
|
continue;
|
2005-07-14 20:39:27 +02:00
|
|
|
|
|
|
|
return 1;
|
2005-07-14 20:26:31 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-26 07:13:36 +01:00
|
|
|
int read_tree_recursive(struct tree *tree,
|
2005-11-26 18:38:20 +01:00
|
|
|
const char *base, int baselen,
|
|
|
|
int stage, const char **match,
|
|
|
|
read_tree_fn_t fn)
|
2005-04-23 01:42:37 +02:00
|
|
|
{
|
2006-05-29 00:11:28 +02:00
|
|
|
struct tree_desc desc;
|
|
|
|
|
2006-01-26 07:13:36 +01:00
|
|
|
if (parse_tree(tree))
|
|
|
|
return -1;
|
2006-05-29 00:11:28 +02:00
|
|
|
|
|
|
|
desc.buf = tree->buffer;
|
|
|
|
desc.size = tree->size;
|
|
|
|
|
|
|
|
while (desc.size) {
|
|
|
|
unsigned mode;
|
|
|
|
const char *name;
|
|
|
|
const unsigned char *sha1;
|
|
|
|
|
|
|
|
sha1 = tree_entry_extract(&desc, &name, &mode);
|
|
|
|
update_tree_entry(&desc);
|
|
|
|
|
|
|
|
if (!match_tree_entry(base, baselen, name, mode, match))
|
2005-07-14 20:26:31 +02:00
|
|
|
continue;
|
|
|
|
|
2006-05-29 00:11:28 +02:00
|
|
|
switch (fn(sha1, base, baselen, name, mode, stage)) {
|
2005-11-26 18:38:20 +01:00
|
|
|
case 0:
|
|
|
|
continue;
|
|
|
|
case READ_TREE_RECURSIVE:
|
|
|
|
break;;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
2006-05-29 00:11:28 +02:00
|
|
|
if (S_ISDIR(mode)) {
|
2005-04-23 01:42:37 +02:00
|
|
|
int retval;
|
2006-05-29 00:11:28 +02:00
|
|
|
int pathlen = strlen(name);
|
2005-04-27 00:00:01 +02:00
|
|
|
char *newbase;
|
2005-04-23 01:42:37 +02:00
|
|
|
|
2005-04-27 00:00:01 +02:00
|
|
|
newbase = xmalloc(baselen + 1 + pathlen);
|
2005-04-23 01:42:37 +02:00
|
|
|
memcpy(newbase, base, baselen);
|
2006-05-29 00:11:28 +02:00
|
|
|
memcpy(newbase + baselen, name, pathlen);
|
2005-04-23 01:42:37 +02:00
|
|
|
newbase[baselen + pathlen] = '/';
|
2006-05-29 00:11:28 +02:00
|
|
|
retval = read_tree_recursive(lookup_tree(sha1),
|
2005-04-23 01:42:37 +02:00
|
|
|
newbase,
|
2005-07-14 20:26:31 +02:00
|
|
|
baselen + pathlen + 1,
|
2005-11-26 18:38:20 +01:00
|
|
|
stage, match, fn);
|
2005-04-23 01:42:37 +02:00
|
|
|
free(newbase);
|
|
|
|
if (retval)
|
|
|
|
return -1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-26 07:13:36 +01:00
|
|
|
int read_tree(struct tree *tree, int stage, const char **match)
|
2005-04-23 01:42:37 +02:00
|
|
|
{
|
2006-01-26 07:13:36 +01:00
|
|
|
return read_tree_recursive(tree, "", 0, stage, match, read_one_entry);
|
2005-04-23 01:42:37 +02:00
|
|
|
}
|
|
|
|
|
2005-06-03 17:05:39 +02:00
|
|
|
struct tree *lookup_tree(const unsigned char *sha1)
|
2005-04-18 20:39:48 +02:00
|
|
|
{
|
|
|
|
struct object *obj = lookup_object(sha1);
|
|
|
|
if (!obj) {
|
2006-04-03 20:30:46 +02:00
|
|
|
struct tree *ret = xcalloc(1, sizeof(struct tree));
|
2005-04-18 20:39:48 +02:00
|
|
|
created_object(sha1, &ret->object);
|
2005-04-24 23:17:13 +02:00
|
|
|
ret->object.type = tree_type;
|
2005-04-18 20:39:48 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2005-05-20 22:59:17 +02:00
|
|
|
if (!obj->type)
|
|
|
|
obj->type = tree_type;
|
2005-04-24 23:22:09 +02:00
|
|
|
if (obj->type != tree_type) {
|
2005-04-18 20:39:48 +02:00
|
|
|
error("Object %s is a %s, not a tree",
|
|
|
|
sha1_to_hex(sha1), obj->type);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return (struct tree *) obj;
|
|
|
|
}
|
|
|
|
|
2006-05-29 00:13:53 +02:00
|
|
|
static int track_tree_refs(struct tree *item)
|
2005-04-18 20:39:48 +02:00
|
|
|
{
|
2006-05-29 00:13:53 +02:00
|
|
|
int n_refs = 0, i;
|
|
|
|
struct object_refs *refs;
|
2006-05-29 00:07:07 +02:00
|
|
|
struct tree_desc desc;
|
2005-05-06 19:48:34 +02:00
|
|
|
|
2006-05-29 00:13:53 +02:00
|
|
|
/* Count how many entries there are.. */
|
|
|
|
desc.buf = item->buffer;
|
|
|
|
desc.size = item->size;
|
|
|
|
while (desc.size) {
|
|
|
|
n_refs++;
|
|
|
|
update_tree_entry(&desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate object refs and walk it again.. */
|
|
|
|
i = 0;
|
|
|
|
refs = alloc_object_refs(n_refs);
|
|
|
|
desc.buf = item->buffer;
|
|
|
|
desc.size = item->size;
|
|
|
|
while (desc.size) {
|
|
|
|
unsigned mode;
|
|
|
|
const char *name;
|
|
|
|
const unsigned char *sha1;
|
|
|
|
struct object *obj;
|
|
|
|
|
|
|
|
sha1 = tree_entry_extract(&desc, &name, &mode);
|
|
|
|
update_tree_entry(&desc);
|
|
|
|
if (S_ISDIR(mode))
|
|
|
|
obj = &lookup_tree(sha1)->object;
|
|
|
|
else
|
|
|
|
obj = &lookup_blob(sha1)->object;
|
|
|
|
refs->ref[i++] = obj;
|
|
|
|
}
|
|
|
|
set_object_refs(&item->object, refs);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size)
|
|
|
|
{
|
2005-04-18 20:39:48 +02:00
|
|
|
if (item->object.parsed)
|
|
|
|
return 0;
|
|
|
|
item->object.parsed = 1;
|
2006-05-29 00:07:07 +02:00
|
|
|
item->buffer = buffer;
|
|
|
|
item->size = size;
|
|
|
|
|
2006-05-29 00:13:53 +02:00
|
|
|
if (track_object_refs)
|
|
|
|
track_tree_refs(item);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct tree_entry_list *create_tree_entry_list(struct tree *tree)
|
|
|
|
{
|
|
|
|
struct tree_desc desc;
|
|
|
|
struct tree_entry_list *ret = NULL;
|
|
|
|
struct tree_entry_list **list_p = &ret;
|
|
|
|
|
|
|
|
desc.buf = tree->buffer;
|
|
|
|
desc.size = tree->size;
|
2006-05-29 00:07:07 +02:00
|
|
|
|
|
|
|
while (desc.size) {
|
|
|
|
unsigned mode;
|
|
|
|
const char *path;
|
|
|
|
const unsigned char *sha1;
|
2005-04-24 03:47:23 +02:00
|
|
|
struct tree_entry_list *entry;
|
2006-05-29 00:07:07 +02:00
|
|
|
|
|
|
|
sha1 = tree_entry_extract(&desc, &path, &mode);
|
2005-04-18 20:39:48 +02:00
|
|
|
|
2005-04-26 21:00:58 +02:00
|
|
|
entry = xmalloc(sizeof(struct tree_entry_list));
|
2006-05-29 00:07:07 +02:00
|
|
|
entry->name = path;
|
2006-05-29 00:10:04 +02:00
|
|
|
entry->sha1 = sha1;
|
2006-05-29 00:07:07 +02:00
|
|
|
entry->mode = mode;
|
2005-05-06 01:18:48 +02:00
|
|
|
entry->directory = S_ISDIR(mode) != 0;
|
|
|
|
entry->executable = (mode & S_IXUSR) != 0;
|
|
|
|
entry->symlink = S_ISLNK(mode) != 0;
|
2006-05-29 00:07:07 +02:00
|
|
|
entry->zeropad = *(const char *)(desc.buf) == '0';
|
2005-04-24 03:47:23 +02:00
|
|
|
entry->next = NULL;
|
|
|
|
|
2006-05-29 00:07:07 +02:00
|
|
|
update_tree_entry(&desc);
|
2005-04-24 03:47:23 +02:00
|
|
|
*list_p = entry;
|
|
|
|
list_p = &entry->next;
|
2005-04-18 20:39:48 +02:00
|
|
|
}
|
2006-05-29 00:13:53 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2005-11-15 17:08:08 +01:00
|
|
|
|
2006-05-29 00:13:53 +02:00
|
|
|
void free_tree_entry_list(struct tree_entry_list *list)
|
|
|
|
{
|
|
|
|
while (list) {
|
|
|
|
struct tree_entry_list *next = list->next;
|
|
|
|
free(list);
|
|
|
|
list = next;
|
2005-11-15 17:08:08 +01:00
|
|
|
}
|
2005-04-18 20:39:48 +02:00
|
|
|
}
|
2005-05-06 19:48:34 +02:00
|
|
|
|
|
|
|
int parse_tree(struct tree *item)
|
|
|
|
{
|
|
|
|
char type[20];
|
|
|
|
void *buffer;
|
|
|
|
unsigned long size;
|
|
|
|
|
|
|
|
if (item->object.parsed)
|
|
|
|
return 0;
|
|
|
|
buffer = read_sha1_file(item->object.sha1, type, &size);
|
|
|
|
if (!buffer)
|
|
|
|
return error("Could not read %s",
|
|
|
|
sha1_to_hex(item->object.sha1));
|
|
|
|
if (strcmp(type, tree_type)) {
|
|
|
|
free(buffer);
|
|
|
|
return error("Object %s not a tree",
|
|
|
|
sha1_to_hex(item->object.sha1));
|
|
|
|
}
|
2006-05-29 00:07:07 +02:00
|
|
|
return parse_tree_buffer(item, buffer, size);
|
2005-05-06 19:48:34 +02:00
|
|
|
}
|
2005-09-05 08:03:51 +02:00
|
|
|
|
|
|
|
struct tree *parse_tree_indirect(const unsigned char *sha1)
|
|
|
|
{
|
|
|
|
struct object *obj = parse_object(sha1);
|
|
|
|
do {
|
|
|
|
if (!obj)
|
|
|
|
return NULL;
|
|
|
|
if (obj->type == tree_type)
|
|
|
|
return (struct tree *) obj;
|
|
|
|
else if (obj->type == commit_type)
|
|
|
|
obj = &(((struct commit *) obj)->tree->object);
|
|
|
|
else if (obj->type == tag_type)
|
|
|
|
obj = ((struct tag *) obj)->tagged;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
if (!obj->parsed)
|
|
|
|
parse_object(obj->sha1);
|
|
|
|
} while (1);
|
|
|
|
}
|