summaryrefslogtreecommitdiff
path: root/diffcore-pathspec.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-04-10 16:44:59 -0700
committerJunio C Hamano <junkio@cox.net>2006-04-10 16:44:59 -0700
commit6d46a23bf6e009487166f044b8c759aa734b8f90 (patch)
treeb6b3d18ff7a60585921674bc043fe6dd514a3f8c /diffcore-pathspec.c
parent52b70d56bd23811003a72866cc23a0a44b9da1b7 (diff)
parent5910e997754e0a03f25457965bd9faf80f2f9854 (diff)
downloadgit-6d46a23bf6e009487166f044b8c759aa734b8f90.tar.gz
Merge branch 'master' into jc/diff
* master: Make "--parents" logs also be incremental Retire diffcore-pathspec. Improve the git-diff-tree -c/-cc documentation
Diffstat (limited to 'diffcore-pathspec.c')
-rw-r--r--diffcore-pathspec.c70
1 files changed, 0 insertions, 70 deletions
diff --git a/diffcore-pathspec.c b/diffcore-pathspec.c
deleted file mode 100644
index 139fe882f9..0000000000
--- a/diffcore-pathspec.c
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * 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++) {
- int len = s[i].len;
- if (namelen < len)
- continue;
- if (memcmp(s[i].spec, name, len))
- continue;
- if (s[i].spec[len-1] == '/' ||
- name[len] == 0 ||
- name[len] == '/')
- return 1;
- if (!len)
- 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;
- if (!speccnt)
- return;
-
- spec = xmalloc(sizeof(*spec) * speccnt);
- for (i = 0; pathspec[i]; i++) {
- spec[i].spec = pathspec[i];
- spec[i].len = strlen(pathspec[i]);
- }
-
- for (i = 0; i < q->nr; i++) {
- struct diff_filepair *p = q->queue[i];
- if (matches_pathspec(p->two->path, spec, speccnt))
- diff_q(&outq, p);
- else
- diff_free_filepair(p);
- }
- free(q->queue);
- *q = outq;
- return;
-}