Merge branch 'jh/partial-clone-doc'
[git.git] / attr.h
blob01dab4a1262bc5aefadca627012cbf59c7c9df16
1 #ifndef ATTR_H
2 #define ATTR_H
4 struct index_state;
6 /* An attribute is a pointer to this opaque structure */
7 struct git_attr;
9 /* opaque structures used internally for attribute collection */
10 struct all_attrs_item;
11 struct attr_stack;
14 * Given a string, return the gitattribute object that
15 * corresponds to it.
17 const struct git_attr *git_attr(const char *);
19 /* Internal use */
20 extern const char git_attr__true[];
21 extern const char git_attr__false[];
23 /* For public to check git_attr_check results */
24 #define ATTR_TRUE(v) ((v) == git_attr__true)
25 #define ATTR_FALSE(v) ((v) == git_attr__false)
26 #define ATTR_UNSET(v) ((v) == NULL)
29 * Send one or more git_attr_check to git_check_attrs(), and
30 * each 'value' member tells what its value is.
31 * Unset one is returned as NULL.
33 struct attr_check_item {
34 const struct git_attr *attr;
35 const char *value;
38 struct attr_check {
39 int nr;
40 int alloc;
41 struct attr_check_item *items;
42 int all_attrs_nr;
43 struct all_attrs_item *all_attrs;
44 struct attr_stack *stack;
47 struct attr_check *attr_check_alloc(void);
48 struct attr_check *attr_check_initl(const char *, ...);
49 struct attr_check *attr_check_dup(const struct attr_check *check);
51 struct attr_check_item *attr_check_append(struct attr_check *check,
52 const struct git_attr *attr);
54 void attr_check_reset(struct attr_check *check);
55 void attr_check_clear(struct attr_check *check);
56 void attr_check_free(struct attr_check *check);
59 * Return the name of the attribute represented by the argument. The
60 * return value is a pointer to a null-delimited string that is part
61 * of the internal data structure; it should not be modified or freed.
63 const char *git_attr_name(const struct git_attr *);
65 int git_check_attr(const struct index_state *istate,
66 const char *path, struct attr_check *check);
69 * Retrieve all attributes that apply to the specified path.
70 * check holds the attributes and their values.
72 void git_all_attrs(const struct index_state *istate,
73 const char *path, struct attr_check *check);
75 enum git_attr_direction {
76 GIT_ATTR_CHECKIN,
77 GIT_ATTR_CHECKOUT,
78 GIT_ATTR_INDEX
80 void git_attr_set_direction(enum git_attr_direction new_direction);
82 void attr_start(void);
84 #endif /* ATTR_H */