2005-05-22 19:04:37 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2005 Junio C Hamano
|
|
|
|
*/
|
|
|
|
#include "cache.h"
|
|
|
|
#include "diff.h"
|
|
|
|
#include "diffcore.h"
|
|
|
|
|
|
|
|
struct path_spec {
|
|
|
|
const char *spec;
|
|
|
|
int len;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int matches_pathspec(const char *name, struct path_spec *s, int cnt)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int namelen;
|
|
|
|
|
|
|
|
if (cnt == 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
namelen = strlen(name);
|
|
|
|
for (i = 0; i < cnt; i++) {
|
2005-05-25 08:35:38 +02:00
|
|
|
int len = s[i].len;
|
2005-06-01 00:17:58 +02:00
|
|
|
if (namelen < len)
|
|
|
|
continue;
|
|
|
|
if (memcmp(s[i].spec, name, len))
|
|
|
|
continue;
|
|
|
|
if (s[i].spec[len-1] == '/' ||
|
|
|
|
name[len] == 0 ||
|
|
|
|
name[len] == '/')
|
2005-05-22 19:04:37 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void diffcore_pathspec(const char **pathspec)
|
|
|
|
{
|
|
|
|
struct diff_queue_struct *q = &diff_queued_diff;
|
|
|
|
int i, speccnt;
|
|
|
|
struct diff_queue_struct outq;
|
|
|
|
struct path_spec *spec;
|
|
|
|
|
|
|
|
outq.queue = NULL;
|
|
|
|
outq.nr = outq.alloc = 0;
|
|
|
|
|
|
|
|
for (i = 0; pathspec[i]; i++)
|
|
|
|
;
|
|
|
|
speccnt = i;
|
|
|
|
spec = xmalloc(sizeof(*spec) * speccnt);
|
|
|
|
for (i = 0; pathspec[i]; i++) {
|
|
|
|
spec[i].spec = pathspec[i];
|
2005-06-01 00:17:58 +02:00
|
|
|
spec[i].len = strlen(pathspec[i]);
|
2005-05-22 19:04:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < q->nr; i++) {
|
|
|
|
struct diff_filepair *p = q->queue[i];
|
2005-05-28 00:51:52 +02:00
|
|
|
if (matches_pathspec(p->two->path, spec, speccnt))
|
2005-05-22 19:04:37 +02:00
|
|
|
diff_q(&outq, p);
|
|
|
|
else
|
2005-05-28 00:50:30 +02:00
|
|
|
diff_free_filepair(p);
|
2005-05-22 19:04:37 +02:00
|
|
|
}
|
|
|
|
free(q->queue);
|
|
|
|
*q = outq;
|
|
|
|
return;
|
|
|
|
}
|