blob: f079abbf1102686fdb8e64258f456877f976dd03 [file] [log] [blame]
Stephan Beyerd82f33e2008-07-25 18:28:41 +02001#include "cache.h"
Alban Gruin2aed0182018-08-10 18:51:30 +02002#include "config.h"
Stephan Beyerd82f33e2008-07-25 18:28:41 +02003#include "strbuf.h"
4#include "run-command.h"
Paul Fox913ef362012-11-30 17:41:26 -05005#include "sigchain.h"
Stephan Beyerd82f33e2008-07-25 18:28:41 +02006
Jonathan Nieder8f4b5762009-10-30 20:44:41 -05007#ifndef DEFAULT_EDITOR
8#define DEFAULT_EDITOR "vi"
9#endif
10
Lars Schneidera64f2132017-11-29 15:37:51 +010011int is_terminal_dumb(void)
12{
13 const char *terminal = getenv("TERM");
14 return !terminal || !strcmp(terminal, "dumb");
15}
16
Jonathan Nieder44fcb492009-11-11 18:01:27 -060017const char *git_editor(void)
Stephan Beyerd82f33e2008-07-25 18:28:41 +020018{
Jonathan Niederd33738d2009-11-11 17:56:07 -060019 const char *editor = getenv("GIT_EDITOR");
Lars Schneidera64f2132017-11-29 15:37:51 +010020 int terminal_is_dumb = is_terminal_dumb();
Stephan Beyerd82f33e2008-07-25 18:28:41 +020021
Stephan Beyerd82f33e2008-07-25 18:28:41 +020022 if (!editor && editor_program)
23 editor = editor_program;
Jonathan Niederd33738d2009-11-11 17:56:07 -060024 if (!editor && !terminal_is_dumb)
Stephan Beyerd82f33e2008-07-25 18:28:41 +020025 editor = getenv("VISUAL");
26 if (!editor)
27 editor = getenv("EDITOR");
28
Jonathan Niederd33738d2009-11-11 17:56:07 -060029 if (!editor && terminal_is_dumb)
Jonathan Nieder44fcb492009-11-11 18:01:27 -060030 return NULL;
Stephan Beyerd82f33e2008-07-25 18:28:41 +020031
32 if (!editor)
Jonathan Nieder8f4b5762009-10-30 20:44:41 -050033 editor = DEFAULT_EDITOR;
Stephan Beyerd82f33e2008-07-25 18:28:41 +020034
Jonathan Nieder44fcb492009-11-11 18:01:27 -060035 return editor;
36}
37
Alban Gruin2aed0182018-08-10 18:51:30 +020038const char *git_sequence_editor(void)
Jonathan Nieder44fcb492009-11-11 18:01:27 -060039{
Alban Gruin2aed0182018-08-10 18:51:30 +020040 const char *editor = getenv("GIT_SEQUENCE_EDITOR");
Jonathan Nieder44fcb492009-11-11 18:01:27 -060041
42 if (!editor)
Alban Gruin2aed0182018-08-10 18:51:30 +020043 git_config_get_string_const("sequence.editor", &editor);
44 if (!editor)
45 editor = git_editor();
46
47 return editor;
48}
49
50static int launch_specified_editor(const char *editor, const char *path,
51 struct strbuf *buffer, const char *const *env)
52{
53 if (!editor)
Jonathan Nieder44fcb492009-11-11 18:01:27 -060054 return error("Terminal is dumb, but EDITOR unset");
55
Stephan Beyerd82f33e2008-07-25 18:28:41 +020056 if (strcmp(editor, ":")) {
Ramkumar Ramachandra09c5ae52013-07-28 22:29:42 +053057 const char *args[] = { editor, real_path(path), NULL };
René Scharfed3180272014-08-19 21:09:35 +020058 struct child_process p = CHILD_PROCESS_INIT;
Jeff King12508572012-11-30 17:41:50 -050059 int ret, sig;
Lars Schneiderabfb04d2017-12-07 16:16:41 +010060 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 Beyerd82f33e2008-07-25 18:28:41 +020077
Jeff Kingf42ca312012-11-30 17:41:04 -050078 p.argv = args;
79 p.env = env;
80 p.use_shell = 1;
Jeff Hostetlereee73d12019-02-22 14:25:04 -080081 p.trace2_child_class = "editor";
Jeff Kingf42ca312012-11-30 17:41:04 -050082 if (start_command(&p) < 0)
83 return error("unable to start editor '%s'", editor);
84
Paul Fox913ef362012-11-30 17:41:26 -050085 sigchain_push(SIGINT, SIG_IGN);
86 sigchain_push(SIGQUIT, SIG_IGN);
87 ret = finish_command(&p);
Jeff King709ca732013-01-05 09:49:49 -050088 sig = ret - 128;
Paul Fox913ef362012-11-30 17:41:26 -050089 sigchain_pop(SIGINT);
90 sigchain_pop(SIGQUIT);
Jeff King12508572012-11-30 17:41:50 -050091 if (sig == SIGINT || sig == SIGQUIT)
92 raise(sig);
Paul Fox913ef362012-11-30 17:41:26 -050093 if (ret)
Stephan Beyer71982032008-07-25 18:28:42 +020094 return error("There was a problem with the editor '%s'.",
95 editor);
Lars Schneiderabfb04d2017-12-07 16:16:41 +010096
97 if (print_waiting_for_editor && !is_terminal_dumb())
98 /*
SZEDER Gáborcd1096b2019-06-24 20:13:16 +020099 * Erase the entire line to avoid wasting the
100 * vertical space.
Lars Schneiderabfb04d2017-12-07 16:16:41 +0100101 */
SZEDER Gáborcd1096b2019-06-24 20:13:16 +0200102 term_clear_line();
Stephan Beyerd82f33e2008-07-25 18:28:41 +0200103 }
104
105 if (!buffer)
Stephan Beyer71982032008-07-25 18:28:42 +0200106 return 0;
Stephan Beyerd82f33e2008-07-25 18:28:41 +0200107 if (strbuf_read_file(buffer, path, 0) < 0)
Nguyễn Thái Ngọc Duy9f9a5222016-05-08 16:47:43 +0700108 return error_errno("could not read file '%s'", path);
Stephan Beyer71982032008-07-25 18:28:42 +0200109 return 0;
Stephan Beyerd82f33e2008-07-25 18:28:41 +0200110}
Alban Gruin2aed0182018-08-10 18:51:30 +0200111
112int launch_editor(const char *path, struct strbuf *buffer, const char *const *env)
113{
114 return launch_specified_editor(git_editor(), path, buffer, env);
115}
116
117int launch_sequence_editor(const char *path, struct strbuf *buffer,
118 const char *const *env)
119{
120 return launch_specified_editor(git_sequence_editor(), path, buffer, env);
121}