2008-10-05 21:43:21 +00:00
|
|
|
#ifndef USERDIFF_H
|
|
|
|
#define USERDIFF_H
|
|
|
|
|
2010-04-02 00:12:15 +00:00
|
|
|
#include "notes-cache.h"
|
|
|
|
|
2008-10-05 21:43:21 +00:00
|
|
|
struct userdiff_funcname {
|
|
|
|
const char *pattern;
|
|
|
|
int cflags;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct userdiff_driver {
|
|
|
|
const char *name;
|
|
|
|
const char *external;
|
diff: introduce diff.<driver>.binary
The "diff" gitattribute is somewhat overloaded right now. It
can say one of three things:
1. this file is definitely binary, or definitely not
(i.e., diff or !diff)
2. this file should use an external diff engine (i.e.,
diff=foo, diff.foo.command = custom-script)
3. this file should use particular funcname patterns
(i.e., diff=foo, diff.foo.(x?)funcname = some-regex)
Most of the time, there is no conflict between these uses,
since using one implies that the other is irrelevant (e.g.,
an external diff engine will decide for itself whether the
file is binary).
However, there is at least one conflicting situation: there
is no way to say "use the regular rules to determine whether
this file is binary, but if we do diff it textually, use
this funcname pattern." That is, currently setting diff=foo
indicates that the file is definitely text.
This patch introduces a "binary" config option for a diff
driver, so that one can explicitly set diff.foo.binary. We
default this value to "don't know". That is, setting a diff
attribute to "foo" and using "diff.foo.funcname" will have
no effect on the binaryness of a file. To get the current
behavior, one can set diff.foo.binary to true.
This patch also has one additional advantage: it cleans up
the interface to the userdiff code a bit. Before, calling
code had to know more about whether attributes were false,
true, or unset to determine binaryness. Now that binaryness
is a property of a driver, we can represent these situations
just by passing back a driver struct.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-10-05 21:43:36 +00:00
|
|
|
int binary;
|
2008-10-05 21:43:21 +00:00
|
|
|
struct userdiff_funcname funcname;
|
2009-01-17 16:29:48 +00:00
|
|
|
const char *word_regex;
|
2008-10-05 21:43:45 +00:00
|
|
|
const char *textconv;
|
2010-04-02 00:12:15 +00:00
|
|
|
struct notes_cache *textconv_cache;
|
|
|
|
int textconv_want_cache;
|
2008-10-05 21:43:21 +00:00
|
|
|
};
|
|
|
|
|
2008-10-26 04:45:55 +00:00
|
|
|
int userdiff_config(const char *k, const char *v);
|
2008-10-05 21:43:21 +00:00
|
|
|
struct userdiff_driver *userdiff_find_by_name(const char *name);
|
|
|
|
struct userdiff_driver *userdiff_find_by_path(const char *path);
|
|
|
|
|
2011-05-23 20:30:14 +00:00
|
|
|
struct userdiff_driver *userdiff_get_textconv(struct userdiff_driver *driver);
|
|
|
|
|
2008-10-05 21:43:21 +00:00
|
|
|
#endif /* USERDIFF */
|