| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 1 | #include "cache.h" |
| Alban Gruin | 2aed018 | 2018-08-10 16:51:30 | [diff] [blame] | 2 | #include "config.h" |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 3 | #include "strbuf.h" |
| 4 | #include "run-command.h" |
| Paul Fox | 913ef36 | 2012-11-30 22:41:26 | [diff] [blame] | 5 | #include "sigchain.h" |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 6 | |
| Jonathan Nieder | 8f4b576 | 2009-10-31 01:44:41 | [diff] [blame] | 7 | #ifndef DEFAULT_EDITOR |
| 8 | #define DEFAULT_EDITOR "vi" |
| 9 | #endif |
| 10 | |
| Lars Schneider | a64f213 | 2017-11-29 14:37:51 | [diff] [blame] | 11 | int is_terminal_dumb(void) |
| 12 | { |
| 13 | const char *terminal = getenv("TERM"); |
| 14 | return !terminal || !strcmp(terminal, "dumb"); |
| 15 | } |
| 16 | |
| Jonathan Nieder | 44fcb49 | 2009-11-12 00:01:27 | [diff] [blame] | 17 | const char *git_editor(void) |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 18 | { |
| Jonathan Nieder | d33738d | 2009-11-11 23:56:07 | [diff] [blame] | 19 | const char *editor = getenv("GIT_EDITOR"); |
| Lars Schneider | a64f213 | 2017-11-29 14:37:51 | [diff] [blame] | 20 | int terminal_is_dumb = is_terminal_dumb(); |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 21 | |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 22 | if (!editor && editor_program) |
| 23 | editor = editor_program; |
| Jonathan Nieder | d33738d | 2009-11-11 23:56:07 | [diff] [blame] | 24 | if (!editor && !terminal_is_dumb) |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 25 | editor = getenv("VISUAL"); |
| 26 | if (!editor) |
| 27 | editor = getenv("EDITOR"); |
| 28 | |
| Jonathan Nieder | d33738d | 2009-11-11 23:56:07 | [diff] [blame] | 29 | if (!editor && terminal_is_dumb) |
| Jonathan Nieder | 44fcb49 | 2009-11-12 00:01:27 | [diff] [blame] | 30 | return NULL; |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 31 | |
| 32 | if (!editor) |
| Jonathan Nieder | 8f4b576 | 2009-10-31 01:44:41 | [diff] [blame] | 33 | editor = DEFAULT_EDITOR; |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 34 | |
| Jonathan Nieder | 44fcb49 | 2009-11-12 00:01:27 | [diff] [blame] | 35 | return editor; |
| 36 | } |
| 37 | |
| Alban Gruin | 2aed018 | 2018-08-10 16:51:30 | [diff] [blame] | 38 | const char *git_sequence_editor(void) |
| Jonathan Nieder | 44fcb49 | 2009-11-12 00:01:27 | [diff] [blame] | 39 | { |
| Alban Gruin | 2aed018 | 2018-08-10 16:51:30 | [diff] [blame] | 40 | const char *editor = getenv("GIT_SEQUENCE_EDITOR"); |
| Jonathan Nieder | 44fcb49 | 2009-11-12 00:01:27 | [diff] [blame] | 41 | |
| 42 | if (!editor) |
| Alban Gruin | 2aed018 | 2018-08-10 16:51:30 | [diff] [blame] | 43 | git_config_get_string_const("sequence.editor", &editor); |
| 44 | if (!editor) |
| 45 | editor = git_editor(); |
| 46 | |
| 47 | return editor; |
| 48 | } |
| 49 | |
| 50 | static int launch_specified_editor(const char *editor, const char *path, |
| 51 | struct strbuf *buffer, const char *const *env) |
| 52 | { |
| 53 | if (!editor) |
| Jonathan Nieder | 44fcb49 | 2009-11-12 00:01:27 | [diff] [blame] | 54 | return error("Terminal is dumb, but EDITOR unset"); |
| 55 | |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 56 | if (strcmp(editor, ":")) { |
| Ramkumar Ramachandra | 09c5ae5 | 2013-07-28 16:59:42 | [diff] [blame] | 57 | const char *args[] = { editor, real_path(path), NULL }; |
| René Scharfe | d318027 | 2014-08-19 19:09:35 | [diff] [blame] | 58 | struct child_process p = CHILD_PROCESS_INIT; |
| Jeff King | 1250857 | 2012-11-30 22:41:50 | [diff] [blame] | 59 | int ret, sig; |
| Lars Schneider | abfb04d | 2017-12-07 15:16:41 | [diff] [blame] | 60 | int print_waiting_for_editor = advice_waiting_for_editor && isatty(2); |
| 61 | |
| 62 | if (print_waiting_for_editor) { |
| 63 | /* |
| 64 | * A dumb terminal cannot erase the line later on. Add a |
| 65 | * newline to separate the hint from subsequent output. |
| 66 | * |
| 67 | * Make sure that our message is separated with a whitespace |
| 68 | * from further cruft that may be written by the editor. |
| 69 | */ |
| 70 | const char term = is_terminal_dumb() ? '\n' : ' '; |
| 71 | |
| 72 | fprintf(stderr, |
| 73 | _("hint: Waiting for your editor to close the file...%c"), |
| 74 | term); |
| 75 | fflush(stderr); |
| 76 | } |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 77 | |
| Jeff King | f42ca31 | 2012-11-30 22:41:04 | [diff] [blame] | 78 | p.argv = args; |
| 79 | p.env = env; |
| 80 | p.use_shell = 1; |
| 81 | if (start_command(&p) < 0) |
| 82 | return error("unable to start editor '%s'", editor); |
| 83 | |
| Paul Fox | 913ef36 | 2012-11-30 22:41:26 | [diff] [blame] | 84 | sigchain_push(SIGINT, SIG_IGN); |
| 85 | sigchain_push(SIGQUIT, SIG_IGN); |
| 86 | ret = finish_command(&p); |
| Jeff King | 709ca73 | 2013-01-05 14:49:49 | [diff] [blame] | 87 | sig = ret - 128; |
| Paul Fox | 913ef36 | 2012-11-30 22:41:26 | [diff] [blame] | 88 | sigchain_pop(SIGINT); |
| 89 | sigchain_pop(SIGQUIT); |
| Jeff King | 1250857 | 2012-11-30 22:41:50 | [diff] [blame] | 90 | if (sig == SIGINT || sig == SIGQUIT) |
| 91 | raise(sig); |
| Paul Fox | 913ef36 | 2012-11-30 22:41:26 | [diff] [blame] | 92 | if (ret) |
| Stephan Beyer | 7198203 | 2008-07-25 16:28:42 | [diff] [blame] | 93 | return error("There was a problem with the editor '%s'.", |
| 94 | editor); |
| Lars Schneider | abfb04d | 2017-12-07 15:16:41 | [diff] [blame] | 95 | |
| 96 | if (print_waiting_for_editor && !is_terminal_dumb()) |
| 97 | /* |
| 98 | * Go back to the beginning and erase the entire line to |
| 99 | * avoid wasting the vertical space. |
| 100 | */ |
| 101 | fputs("\r\033[K", stderr); |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | if (!buffer) |
| Stephan Beyer | 7198203 | 2008-07-25 16:28:42 | [diff] [blame] | 105 | return 0; |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 106 | if (strbuf_read_file(buffer, path, 0) < 0) |
| Nguyễn Thái Ngọc Duy | 9f9a522 | 2016-05-08 09:47:43 | [diff] [blame] | 107 | return error_errno("could not read file '%s'", path); |
| Stephan Beyer | 7198203 | 2008-07-25 16:28:42 | [diff] [blame] | 108 | return 0; |
| Stephan Beyer | d82f33e | 2008-07-25 16:28:41 | [diff] [blame] | 109 | } |
| Alban Gruin | 2aed018 | 2018-08-10 16:51:30 | [diff] [blame] | 110 | |
| 111 | int launch_editor(const char *path, struct strbuf *buffer, const char *const *env) |
| 112 | { |
| 113 | return launch_specified_editor(git_editor(), path, buffer, env); |
| 114 | } |
| 115 | |
| 116 | int launch_sequence_editor(const char *path, struct strbuf *buffer, |
| 117 | const char *const *env) |
| 118 | { |
| 119 | return launch_specified_editor(git_sequence_editor(), path, buffer, env); |
| 120 | } |