]> git.ipfire.org Git - thirdparty/git.git/commitdiff
mailinfo: load default metainfo_charset lazily
authorĐoàn Trần Công Danh <congdanhqx@gmail.com>
Thu, 6 May 2021 15:02:18 +0000 (22:02 +0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 6 May 2021 21:40:25 +0000 (06:40 +0900)
In a later change, we will use parse_option to parse mailinfo's options.
In mailinfo, both "-u", "-n", and "--encoding" try to set the same
field, with "-u" reset that field to some default value from
configuration variable "i18n.commitEncoding".

Let's delay the setting of that field until we finish processing all
options. By doing that, "i18n.commitEncoding" can be parsed on demand.
More importantly, it cleans the way for using parse_option.

This change introduces some inconsistent brackets "{}" in "if/else if"
construct, however, we will rewrite them in the next few changes.

Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/mailinfo.c

index cfb667a594c8452b8f4259bb3da1976965906f95..77f96177ccd7cfb62b7848717b453cec98f3d16f 100644 (file)
 static const char mailinfo_usage[] =
        "git mailinfo [-k | -b] [-m | --message-id] [-u | --encoding=<encoding> | -n] [--scissors | --no-scissors] <msg> <patch> < mail >info";
 
+struct metainfo_charset
+{
+       enum {
+               CHARSET_DEFAULT,
+               CHARSET_NO_REENCODE,
+               CHARSET_EXPLICIT,
+       } policy;
+       const char *charset;
+};
+
 int cmd_mailinfo(int argc, const char **argv, const char *prefix)
 {
-       const char *def_charset;
+       struct metainfo_charset meta_charset;
        struct mailinfo mi;
        int status;
        char *msgfile, *patchfile;
 
        setup_mailinfo(&mi);
-
-       def_charset = get_commit_output_encoding();
-       mi.metainfo_charset = def_charset;
+       meta_charset.policy = CHARSET_DEFAULT;
 
        while (1 < argc && argv[1][0] == '-') {
                if (!strcmp(argv[1], "-k"))
@@ -31,12 +39,13 @@ int cmd_mailinfo(int argc, const char **argv, const char *prefix)
                else if (!strcmp(argv[1], "-m") || !strcmp(argv[1], "--message-id"))
                        mi.add_message_id = 1;
                else if (!strcmp(argv[1], "-u"))
-                       mi.metainfo_charset = def_charset;
+                       meta_charset.policy = CHARSET_DEFAULT;
                else if (!strcmp(argv[1], "-n"))
-                       mi.metainfo_charset = NULL;
-               else if (starts_with(argv[1], "--encoding="))
-                       mi.metainfo_charset = argv[1] + 11;
-               else if (!strcmp(argv[1], "--scissors"))
+                       meta_charset.policy = CHARSET_NO_REENCODE;
+               else if (starts_with(argv[1], "--encoding=")) {
+                       meta_charset.policy = CHARSET_EXPLICIT;
+                       meta_charset.charset = argv[1] + 11;
+               } else if (!strcmp(argv[1], "--scissors"))
                        mi.use_scissors = 1;
                else if (!strcmp(argv[1], "--no-scissors"))
                        mi.use_scissors = 0;
@@ -50,6 +59,19 @@ int cmd_mailinfo(int argc, const char **argv, const char *prefix)
        if (argc != 3)
                usage(mailinfo_usage);
 
+       switch (meta_charset.policy) {
+       case CHARSET_DEFAULT:
+               mi.metainfo_charset = get_commit_output_encoding();
+               break;
+       case CHARSET_NO_REENCODE:
+               mi.metainfo_charset = NULL;
+               break;
+       case CHARSET_EXPLICIT:
+               break;
+       default:
+               BUG("invalid meta_charset.policy");
+       }
+
        mi.input = stdin;
        mi.output = stdout;