summaryrefslogtreecommitdiff
path: root/Documentation/technical/api-gitattributes.txt
blob: e7cbb7c13adf2f7ea3b15279a17f1a06da859cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
gitattributes API
=================
 
gitattributes mechanism gives a uniform way to associate various
attributes to set of paths.
 
 
Data Structure
--------------
 
`struct git_attr`::
 
	An attribute is an opaque object that is identified by its name.
	Pass the name to `git_attr()` function to obtain the object of
	this type.  The internal representation of this structure is
	of no interest to the calling programs.  The name of the
	attribute can be retrieved by calling `git_attr_name()`.
 
`struct attr_check_item`::
 
	This structure represents one attribute and its value.
 
`struct attr_check`::
 
	This structure represents a collection of `attr_check_item`.
	It is passed to `git_check_attr()` function, specifying the
	attributes to check, and receives their values.
 
 
Attribute Values
----------------
 
An attribute for a path can be in one of four states: Set, Unset,
Unspecified or set to a string, and `.value` member of `struct
attr_check_item` records it.  There are three macros to check these:
 
`ATTR_TRUE()`::
 
	Returns true if the attribute is Set for the path.
 
`ATTR_FALSE()`::
 
	Returns true if the attribute is Unset for the path.
 
`ATTR_UNSET()`::
 
	Returns true if the attribute is Unspecified for the path.
 
If none of the above returns true, `.value` member points at a string
value of the attribute for the path.
 
 
Querying Specific Attributes
----------------------------
 
* Prepare `struct attr_check` using attr_check_initl()
  function, enumerating the names of attributes whose values you are
  interested in, terminated with a NULL pointer.  Alternatively, an
  empty `struct attr_check` can be prepared by calling
  `attr_check_alloc()` function and then attributes you want to
  ask about can be added to it with `attr_check_append()`
  function.
 
* Call `git_check_attr()` to check the attributes for the path.
 
* Inspect `attr_check` structure to see how each of the
  attribute in the array is defined for the path.
 
 
Example
-------
 
To see how attributes "crlf" and "ident" are set for different paths.
 
. Prepare a `struct attr_check` with two elements (because
  we are checking two attributes):
 
------------
static struct attr_check *check;
static void setup_check(void)
{
	if (check)
		return; /* already done */
	check = attr_check_initl("crlf", "ident", NULL);
}
------------
 
. Call `git_check_attr()` with the prepared `struct attr_check`:
 
------------
	const char *path;
 
	setup_check();
	git_check_attr(path, check);
------------
 
. Act on `.value` member of the result, left in `check->items[]`:
 
------------
	const char *value = check->items[0].value;
 
	if (ATTR_TRUE(value)) {
		The attribute is Set, by listing only the name of the
		attribute in the gitattributes file for the path.
	} else if (ATTR_FALSE(value)) {
		The attribute is Unset, by listing the name of the
		attribute prefixed with a dash - for the path.
	} else if (ATTR_UNSET(value)) {
		The attribute is neither set nor unset for the path.
	} else if (!strcmp(value, "input")) {
		If none of ATTR_TRUE(), ATTR_FALSE(), or ATTR_UNSET() is
		true, the value is a string set in the gitattributes
		file for the path by saying "attr=value".
	} else if (... other check using value as string ...) {
		...
	}
------------
 
To see how attributes in argv[] are set for different paths, only
the first step in the above would be different.
 
------------
static struct attr_check *check;
static void setup_check(const char **argv)
{
	check = attr_check_alloc();
	while (*argv) {
		struct git_attr *attr = git_attr(*argv);
		attr_check_append(check, attr);
		argv++;
	}
}
------------
 
 
Querying All Attributes
-----------------------
 
To get the values of all attributes associated with a file:
 
* Prepare an empty `attr_check` structure by calling
  `attr_check_alloc()`.
 
* Call `git_all_attrs()`, which populates the `attr_check`
  with the attributes attached to the path.
 
* Iterate over the `attr_check.items[]` array to examine
  the attribute names and values.  The name of the attribute
  described by a  `attr_check.items[]` object can be retrieved via
  `git_attr_name(check->items[i].attr)`.  (Please note that no items
  will be returned for unset attributes, so `ATTR_UNSET()` will return
  false for all returned `attr_check.items[]` objects.)
 
* Free the `attr_check` struct by calling `attr_check_free()`.