1 #define USE_THE_INDEX_COMPATIBILITY_MACROS
 
   7 #include "parse-options.h"
 
  10 static int cached_attrs;
 
  11 static int stdin_paths;
 
  12 static const char * const check_attr_usage[] = {
 
  13 N_("git check-attr [-a | --all | <attr>...] [--] <pathname>..."),
 
  14 N_("git check-attr --stdin [-z] [-a | --all | <attr>...]"),
 
  18 static int nul_term_line;
 
  20 static const struct option check_attr_options[] = {
 
  21         OPT_BOOL('a', "all", &all_attrs, N_("report all attributes set on file")),
 
  22         OPT_BOOL(0,  "cached", &cached_attrs, N_("use .gitattributes only from the index")),
 
  23         OPT_BOOL(0 , "stdin", &stdin_paths, N_("read file names from stdin")),
 
  24         OPT_BOOL('z', NULL, &nul_term_line,
 
  25                  N_("terminate input and output records by a NUL character")),
 
  29 static void output_attr(struct attr_check *check, const char *file)
 
  34         for (j = 0; j < cnt; j++) {
 
  35                 const char *value = check->items[j].value;
 
  39                 else if (ATTR_FALSE(value))
 
  41                 else if (ATTR_UNSET(value))
 
  42                         value = "unspecified";
 
  45                         printf("%s%c" /* path */
 
  47                                "%s%c" /* attrvalue */,
 
  49                                git_attr_name(check->items[j].attr), 0, value, 0);
 
  51                         quote_c_style(file, NULL, stdout, 0);
 
  53                                git_attr_name(check->items[j].attr), value);
 
  58 static void check_attr(const char *prefix,
 
  59                        struct attr_check *check,
 
  64                 prefix_path(prefix, prefix ? strlen(prefix) : 0, file);
 
  67                 git_all_attrs(&the_index, full_path, check);
 
  69                 git_check_attr(&the_index, full_path, check);
 
  71         output_attr(check, file);
 
  76 static void check_attr_stdin_paths(const char *prefix,
 
  77                                    struct attr_check *check,
 
  80         struct strbuf buf = STRBUF_INIT;
 
  81         struct strbuf unquoted = STRBUF_INIT;
 
  82         strbuf_getline_fn getline_fn;
 
  84         getline_fn = nul_term_line ? strbuf_getline_nul : strbuf_getline_lf;
 
  85         while (getline_fn(&buf, stdin) != EOF) {
 
  86                 if (!nul_term_line && buf.buf[0] == '"') {
 
  87                         strbuf_reset(&unquoted);
 
  88                         if (unquote_c_style(&unquoted, buf.buf, NULL))
 
  89                                 die("line is badly quoted");
 
  90                         strbuf_swap(&buf, &unquoted);
 
  92                 check_attr(prefix, check, collect_all, buf.buf);
 
  93                 maybe_flush_or_die(stdout, "attribute to stdout");
 
  96         strbuf_release(&unquoted);
 
  99 static NORETURN void error_with_usage(const char *msg)
 
 102         usage_with_options(check_attr_usage, check_attr_options);
 
 105 int cmd_check_attr(int argc, const char **argv, const char *prefix)
 
 107         struct attr_check *check;
 
 108         int cnt, i, doubledash, filei;
 
 110         if (!is_bare_repository())
 
 113         git_config(git_default_config, NULL);
 
 115         argc = parse_options(argc, argv, prefix, check_attr_options,
 
 116                              check_attr_usage, PARSE_OPT_KEEP_DASHDASH);
 
 118         if (read_cache() < 0) {
 
 119                 die("invalid cache");
 
 123                 git_attr_set_direction(GIT_ATTR_INDEX);
 
 126         for (i = 0; doubledash < 0 && i < argc; i++) {
 
 127                 if (!strcmp(argv[i], "--"))
 
 131         /* Process --all and/or attribute arguments: */
 
 134                         error_with_usage("Attributes and --all both specified");
 
 137                 filei = doubledash + 1;
 
 138         } else if (doubledash == 0) {
 
 139                 error_with_usage("No attribute specified");
 
 140         } else if (doubledash < 0) {
 
 142                         error_with_usage("No attribute specified");
 
 145                         /* Treat all arguments as attribute names. */
 
 149                         /* Treat exactly one argument as an attribute name. */
 
 155                 filei = doubledash + 1;
 
 158         /* Check file argument(s): */
 
 161                         error_with_usage("Can't specify files with --stdin");
 
 164                         error_with_usage("No file specified");
 
 167         check = attr_check_alloc();
 
 169                 for (i = 0; i < cnt; i++) {
 
 170                         const struct git_attr *a = git_attr(argv[i]);
 
 173                                 return error("%s: not a valid attribute name",
 
 175                         attr_check_append(check, a);
 
 180                 check_attr_stdin_paths(prefix, check, all_attrs);
 
 182                 for (i = filei; i < argc; i++)
 
 183                         check_attr(prefix, check, all_attrs, argv[i]);
 
 184                 maybe_flush_or_die(stdout, "attribute to stdout");
 
 187         attr_check_free(check);