Coverage Report

Created: 2024-09-08 06:23

/src/git/builtin/mailinfo.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Another stupid program, this one parsing the headers of an
3
 * email to figure out authorship and subject
4
 */
5
#include "builtin.h"
6
#include "abspath.h"
7
#include "environment.h"
8
#include "gettext.h"
9
#include "strbuf.h"
10
#include "mailinfo.h"
11
#include "parse-options.h"
12
13
static const char * const mailinfo_usage[] = {
14
  /* TRANSLATORS: keep <> in "<" mail ">" info. */
15
  N_("git mailinfo [<options>] <msg> <patch> < mail >info"),
16
  NULL,
17
};
18
19
struct metainfo_charset
20
{
21
  enum {
22
    CHARSET_DEFAULT,
23
    CHARSET_NO_REENCODE,
24
    CHARSET_EXPLICIT,
25
  } policy;
26
  const char *charset;
27
};
28
29
static int parse_opt_explicit_encoding(const struct option *opt,
30
               const char *arg, int unset)
31
0
{
32
0
  struct metainfo_charset *meta_charset = opt->value;
33
34
0
  BUG_ON_OPT_NEG(unset);
35
36
0
  meta_charset->policy = CHARSET_EXPLICIT;
37
0
  meta_charset->charset = arg;
38
39
0
  return 0;
40
0
}
41
42
static int parse_opt_quoted_cr(const struct option *opt, const char *arg, int unset)
43
0
{
44
0
  BUG_ON_OPT_NEG(unset);
45
46
0
  if (mailinfo_parse_quoted_cr_action(arg, opt->value) != 0)
47
0
    return error(_("bad action '%s' for '%s'"), arg, "--quoted-cr");
48
0
  return 0;
49
0
}
50
51
int cmd_mailinfo(int argc, const char **argv, const char *prefix)
52
0
{
53
0
  struct metainfo_charset meta_charset;
54
0
  struct mailinfo mi;
55
0
  int status;
56
0
  char *msgfile, *patchfile;
57
58
0
  struct option options[] = {
59
0
    OPT_BOOL('k', NULL, &mi.keep_subject, N_("keep subject")),
60
0
    OPT_BOOL('b', NULL, &mi.keep_non_patch_brackets_in_subject,
61
0
       N_("keep non patch brackets in subject")),
62
0
    OPT_BOOL('m', "message-id", &mi.add_message_id,
63
0
       N_("copy Message-ID to the end of commit message")),
64
0
    OPT_SET_INT_F('u', NULL, &meta_charset.policy,
65
0
            N_("re-code metadata to i18n.commitEncoding"),
66
0
            CHARSET_DEFAULT, PARSE_OPT_NONEG),
67
0
    OPT_SET_INT_F('n', NULL, &meta_charset.policy,
68
0
            N_("disable charset re-coding of metadata"),
69
0
            CHARSET_NO_REENCODE, PARSE_OPT_NONEG),
70
0
    OPT_CALLBACK_F(0, "encoding", &meta_charset, N_("encoding"),
71
0
             N_("re-code metadata to this encoding"),
72
0
             PARSE_OPT_NONEG, parse_opt_explicit_encoding),
73
0
    OPT_BOOL(0, "scissors", &mi.use_scissors, N_("use scissors")),
74
0
    OPT_CALLBACK_F(0, "quoted-cr", &mi.quoted_cr, N_("<action>"),
75
0
             N_("action when quoted CR is found"),
76
0
             PARSE_OPT_NONEG, parse_opt_quoted_cr),
77
0
    OPT_HIDDEN_BOOL(0, "inbody-headers", &mi.use_inbody_headers,
78
0
       N_("use headers in message's body")),
79
0
    OPT_END()
80
0
  };
81
82
0
  setup_mailinfo(&mi);
83
0
  meta_charset.policy = CHARSET_DEFAULT;
84
85
0
  argc = parse_options(argc, argv, prefix, options, mailinfo_usage, 0);
86
87
0
  if (argc != 2)
88
0
    usage_with_options(mailinfo_usage, options);
89
90
0
  switch (meta_charset.policy) {
91
0
  case CHARSET_DEFAULT:
92
0
    mi.metainfo_charset = get_commit_output_encoding();
93
0
    break;
94
0
  case CHARSET_NO_REENCODE:
95
0
    mi.metainfo_charset = NULL;
96
0
    break;
97
0
  case CHARSET_EXPLICIT:
98
0
    break;
99
0
  default:
100
0
    BUG("invalid meta_charset.policy");
101
0
  }
102
103
0
  mi.input = stdin;
104
0
  mi.output = stdout;
105
106
0
  msgfile = prefix_filename(prefix, argv[0]);
107
0
  patchfile = prefix_filename(prefix, argv[1]);
108
109
0
  status = !!mailinfo(&mi, msgfile, patchfile);
110
0
  clear_mailinfo(&mi);
111
112
0
  free(msgfile);
113
0
  free(patchfile);
114
0
  return status;
115
0
}