2 * Copyright 2008 Peter Harris <git@peter.is-a-geek.org>
6 #include "../git-compat-util.h"
11 static int fd_is_interactive
[3] = { 0, 0, 0 };
12 #define FD_CONSOLE 0x1
13 #define FD_SWAPPED 0x2
17 ANSI codes used by git: m, K
19 This file is git-specific. Therefore, this file does not attempt
20 to implement any codes that are not used by git.
23 static HANDLE console
;
24 static WORD plain_attr
;
27 static int non_ascii_used
= 0;
28 static HANDLE hthread
, hread
, hwrite
;
29 static HANDLE hconsole1
, hconsole2
;
32 #if !defined(__MINGW64_VERSION_MAJOR) || __MINGW64_VERSION_MAJOR < 5
33 typedef struct _CONSOLE_FONT_INFOEX
{
39 WCHAR FaceName
[LF_FACESIZE
];
40 } CONSOLE_FONT_INFOEX
, *PCONSOLE_FONT_INFOEX
;
44 typedef BOOL (WINAPI
*PGETCURRENTCONSOLEFONTEX
)(HANDLE
, BOOL
,
45 PCONSOLE_FONT_INFOEX
);
47 static void warn_if_raster_font(void)
50 PGETCURRENTCONSOLEFONTEX pGetCurrentConsoleFontEx
;
52 /* don't bother if output was ascii only */
56 /* GetCurrentConsoleFontEx is available since Vista */
57 pGetCurrentConsoleFontEx
= (PGETCURRENTCONSOLEFONTEX
) GetProcAddress(
58 GetModuleHandle("kernel32.dll"),
59 "GetCurrentConsoleFontEx");
60 if (pGetCurrentConsoleFontEx
) {
61 CONSOLE_FONT_INFOEX cfi
;
62 cfi
.cbSize
= sizeof(cfi
);
63 if (pGetCurrentConsoleFontEx(console
, 0, &cfi
))
64 fontFamily
= cfi
.FontFamily
;
66 /* pre-Vista: check default console font in registry */
68 if (ERROR_SUCCESS
== RegOpenKeyExA(HKEY_CURRENT_USER
, "Console",
69 0, KEY_READ
, &hkey
)) {
70 DWORD size
= sizeof(fontFamily
);
71 RegQueryValueExA(hkey
, "FontFamily", NULL
, NULL
,
72 (LPVOID
) &fontFamily
, &size
);
77 if (!(fontFamily
& TMPF_TRUETYPE
)) {
78 const wchar_t *msg
= L
"\nWarning: Your console font probably "
79 L
"doesn\'t support Unicode. If you experience strange "
80 L
"characters in the output, consider switching to a "
81 L
"TrueType font such as Consolas!\n";
83 WriteConsoleW(console
, msg
, wcslen(msg
), &dummy
, NULL
);
87 static int is_console(int fd
)
89 CONSOLE_SCREEN_BUFFER_INFO sbi
;
93 static int initialized
= 0;
95 /* get OS handle of the file descriptor */
96 hcon
= (HANDLE
) _get_osfhandle(fd
);
97 if (hcon
== INVALID_HANDLE_VALUE
)
100 /* check if its a device (i.e. console, printer, serial port) */
101 if (GetFileType(hcon
) != FILE_TYPE_CHAR
)
104 /* check if its a handle to a console output screen buffer */
106 if (!GetConsoleMode(hcon
, &mode
))
108 } else if (!GetConsoleScreenBufferInfo(hcon
, &sbi
))
111 if (fd
>= 0 && fd
<= 2)
112 fd_is_interactive
[fd
] |= FD_CONSOLE
;
114 /* initialize attributes */
117 attr
= plain_attr
= sbi
.wAttributes
;
125 #define BUFFER_SIZE 4096
126 #define MAX_PARAMS 16
128 static void write_console(unsigned char *str
, size_t len
)
130 /* only called from console_thread, so a static buffer will do */
131 static wchar_t wbuf
[2 * BUFFER_SIZE
+ 1];
134 /* convert utf-8 to utf-16 */
135 int wlen
= xutftowcsn(wbuf
, (char*) str
, ARRAY_SIZE(wbuf
), len
);
137 /* write directly to console */
138 WriteConsoleW(console
, wbuf
, wlen
, &dummy
, NULL
);
140 /* remember if non-ascii characters are printed */
145 #define FOREGROUND_ALL (FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE)
146 #define BACKGROUND_ALL (BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE)
148 static void set_console_attr(void)
150 WORD attributes
= attr
;
152 attributes
&= ~FOREGROUND_ALL
;
153 attributes
&= ~BACKGROUND_ALL
;
155 /* This could probably use a bitmask
156 instead of a series of ifs */
157 if (attr
& FOREGROUND_RED
)
158 attributes
|= BACKGROUND_RED
;
159 if (attr
& FOREGROUND_GREEN
)
160 attributes
|= BACKGROUND_GREEN
;
161 if (attr
& FOREGROUND_BLUE
)
162 attributes
|= BACKGROUND_BLUE
;
164 if (attr
& BACKGROUND_RED
)
165 attributes
|= FOREGROUND_RED
;
166 if (attr
& BACKGROUND_GREEN
)
167 attributes
|= FOREGROUND_GREEN
;
168 if (attr
& BACKGROUND_BLUE
)
169 attributes
|= FOREGROUND_BLUE
;
171 SetConsoleTextAttribute(console
, attributes
);
174 static void erase_in_line(void)
176 CONSOLE_SCREEN_BUFFER_INFO sbi
;
177 DWORD dummy
; /* Needed for Windows 7 (or Vista) regression */
182 GetConsoleScreenBufferInfo(console
, &sbi
);
183 FillConsoleOutputCharacterA(console
, ' ',
184 sbi
.dwSize
.X
- sbi
.dwCursorPosition
.X
, sbi
.dwCursorPosition
,
188 static void set_attr(char func
, const int *params
, int paramlen
)
193 for (i
= 0; i
< paramlen
; i
++) {
200 attr
|= FOREGROUND_INTENSITY
;
203 case 22: /* normal */
204 attr
&= ~FOREGROUND_INTENSITY
;
209 case 4: /* underline */
210 case 21: /* double underline */
211 /* Wikipedia says this flag does nothing */
212 /* Furthermore, mingw doesn't define this flag
213 attr |= COMMON_LVB_UNDERSCORE; */
215 case 24: /* no underline */
216 /* attr &= ~COMMON_LVB_UNDERSCORE; */
218 case 5: /* slow blink */
219 case 6: /* fast blink */
220 /* We don't have blink, but we do have
221 background intensity */
222 attr
|= BACKGROUND_INTENSITY
;
224 case 25: /* no blink */
225 attr
&= ~BACKGROUND_INTENSITY
;
227 case 7: /* negative */
230 case 27: /* positive */
233 case 8: /* conceal */
234 case 28: /* reveal */
238 attr
&= ~FOREGROUND_ALL
;
241 attr
&= ~FOREGROUND_ALL
;
242 attr
|= FOREGROUND_RED
;
245 attr
&= ~FOREGROUND_ALL
;
246 attr
|= FOREGROUND_GREEN
;
248 case 33: /* Yellow */
249 attr
&= ~FOREGROUND_ALL
;
250 attr
|= FOREGROUND_RED
| FOREGROUND_GREEN
;
253 attr
&= ~FOREGROUND_ALL
;
254 attr
|= FOREGROUND_BLUE
;
256 case 35: /* Magenta */
257 attr
&= ~FOREGROUND_ALL
;
258 attr
|= FOREGROUND_RED
| FOREGROUND_BLUE
;
261 attr
&= ~FOREGROUND_ALL
;
262 attr
|= FOREGROUND_GREEN
| FOREGROUND_BLUE
;
265 attr
|= FOREGROUND_RED
|
269 case 38: /* Unknown */
272 attr
&= ~FOREGROUND_ALL
;
273 attr
|= (plain_attr
& FOREGROUND_ALL
);
276 attr
&= ~BACKGROUND_ALL
;
279 attr
&= ~BACKGROUND_ALL
;
280 attr
|= BACKGROUND_RED
;
283 attr
&= ~BACKGROUND_ALL
;
284 attr
|= BACKGROUND_GREEN
;
286 case 43: /* Yellow */
287 attr
&= ~BACKGROUND_ALL
;
288 attr
|= BACKGROUND_RED
| BACKGROUND_GREEN
;
291 attr
&= ~BACKGROUND_ALL
;
292 attr
|= BACKGROUND_BLUE
;
294 case 45: /* Magenta */
295 attr
&= ~BACKGROUND_ALL
;
296 attr
|= BACKGROUND_RED
| BACKGROUND_BLUE
;
299 attr
&= ~BACKGROUND_ALL
;
300 attr
|= BACKGROUND_GREEN
| BACKGROUND_BLUE
;
303 attr
|= BACKGROUND_RED
|
307 case 48: /* Unknown */
310 attr
&= ~BACKGROUND_ALL
;
311 attr
|= (plain_attr
& BACKGROUND_ALL
);
314 /* Unsupported code */
324 /* Unsupported code */
330 TEXT
= 0, ESCAPE
= 033, BRACKET
= '['
333 static DWORD WINAPI
console_thread(LPVOID unused
)
335 unsigned char buffer
[BUFFER_SIZE
];
337 int start
, end
= 0, c
, parampos
= 0, state
= TEXT
;
338 int params
[MAX_PARAMS
];
341 /* read next chunk of bytes from the pipe */
342 if (!ReadFile(hread
, buffer
+ end
, BUFFER_SIZE
- end
, &bytes
,
344 /* exit if pipe has been closed or disconnected */
345 if (GetLastError() == ERROR_PIPE_NOT_CONNECTED
||
346 GetLastError() == ERROR_BROKEN_PIPE
)
348 /* ignore other errors */
352 /* scan the bytes and handle ANSI control codes */
355 while (end
< bytes
) {
360 /* print text seen so far */
362 write_console(buffer
+ start
,
365 /* then start parsing escape sequence */
367 memset(params
, 0, sizeof(params
));
374 /* continue if "\033[", otherwise bail out */
375 state
= (c
== BRACKET
) ? BRACKET
: TEXT
;
379 /* parse [0-9;]* into array of parameters */
380 if (c
>= '0' && c
<= '9') {
381 params
[parampos
] *= 10;
382 params
[parampos
] += c
- '0';
383 } else if (c
== ';') {
385 * next parameter, bail out if out of
389 if (parampos
>= MAX_PARAMS
)
393 * end of escape sequence, change
396 set_attr(c
, params
, parampos
+ 1);
404 /* print remaining text unless parsing an escape sequence */
405 if (state
== TEXT
&& end
> start
) {
406 /* check for incomplete UTF-8 sequences and fix end */
407 if (buffer
[end
- 1] >= 0x80) {
408 if (buffer
[end
-1] >= 0xc0)
410 else if (end
- 1 > start
&&
411 buffer
[end
- 2] >= 0xe0)
413 else if (end
- 2 > start
&&
414 buffer
[end
- 3] >= 0xf0)
418 /* print remaining complete UTF-8 sequences */
420 write_console(buffer
+ start
, end
- start
);
422 /* move remaining bytes to the front */
424 memmove(buffer
, buffer
+ end
, bytes
- end
);
427 /* all data has been consumed, mark buffer empty */
432 /* check if the console font supports unicode */
433 warn_if_raster_font();
439 static void winansi_exit(void)
441 /* flush all streams */
444 /* signal console thread to exit */
445 FlushFileBuffers(hwrite
);
446 DisconnectNamedPipe(hwrite
);
448 /* wait for console thread to copy remaining data */
449 WaitForSingleObject(hthread
, INFINITE
);
451 /* cleanup handles... */
453 CloseHandle(hthread
);
456 static void die_lasterr(const char *fmt
, ...)
459 va_start(params
, fmt
);
460 errno
= err_win_to_posix(GetLastError());
461 die_errno(fmt
, params
);
465 static HANDLE
duplicate_handle(HANDLE hnd
)
467 HANDLE hresult
, hproc
= GetCurrentProcess();
468 if (!DuplicateHandle(hproc
, hnd
, hproc
, &hresult
, 0, TRUE
,
469 DUPLICATE_SAME_ACCESS
))
470 die_lasterr("DuplicateHandle(%li) failed",
471 (long) (intptr_t) hnd
);
475 static HANDLE
swap_osfhnd(int fd
, HANDLE new_handle
)
478 * Create a copy of the original handle associated with fd
479 * because the original will get closed when we dup2().
481 HANDLE handle
= (HANDLE
)_get_osfhandle(fd
);
482 HANDLE duplicate
= duplicate_handle(handle
);
484 /* Create a temp fd associated with the already open "new_handle". */
485 int new_fd
= _open_osfhandle((intptr_t)new_handle
, O_BINARY
);
487 assert((fd
== 1) || (fd
== 2));
490 * Use stock dup2() to re-bind fd to the new handle. Note that
491 * this will implicitly close(1) and close both fd=1 and the
492 * originally associated handle. It will open a new fd=1 and
493 * call DuplicateHandle() on the handle associated with new_fd.
494 * It is because of this implicit close() that we created the
495 * copy of the original.
497 * Note that we need to update the cached console handle to the
498 * duplicated one because the dup2() call will implicitly close
501 * Note that dup2() when given target := {0,1,2} will also
502 * call SetStdHandle(), so we don't need to worry about that.
504 if (console
== handle
)
508 /* Close the temp fd. This explicitly closes "new_handle"
509 * (because it has been associated with it).
514 setvbuf(stderr
, NULL
, _IONBF
, BUFSIZ
);
515 fd_is_interactive
[fd
] |= FD_SWAPPED
;
520 #ifdef DETECT_MSYS_TTY
522 #include <winternl.h>
523 #include <ntstatus.h>
525 static void detect_msys_tty(int fd
)
529 POBJECT_NAME_INFORMATION nameinfo
= (POBJECT_NAME_INFORMATION
) buffer
;
532 /* check if fd is a pipe */
533 HANDLE h
= (HANDLE
) _get_osfhandle(fd
);
534 if (GetFileType(h
) != FILE_TYPE_PIPE
)
538 if (!NT_SUCCESS(NtQueryObject(h
, ObjectNameInformation
,
539 buffer
, sizeof(buffer
) - 2, &result
)))
541 name
= nameinfo
->Name
.Buffer
;
542 name
[nameinfo
->Name
.Length
/ sizeof(*name
)] = 0;
545 * Check if this could be a MSYS2 pty pipe ('msys-XXXX-ptyN-XX')
546 * or a cygwin pty pipe ('cygwin-XXXX-ptyN-XX')
548 if ((!wcsstr(name
, L
"msys-") && !wcsstr(name
, L
"cygwin-")) ||
549 !wcsstr(name
, L
"-pty"))
553 setvbuf(stderr
, NULL
, _IONBF
, BUFSIZ
);
554 fd_is_interactive
[fd
] |= FD_MSYS
;
560 * Wrapper for isatty(). Most calls in the main git code
561 * call isatty(1 or 2) to see if the instance is interactive
562 * and should: be colored, show progress, paginate output.
563 * We lie and give results for what the descriptor WAS at
564 * startup (and ignore any pipe redirection we internally
568 int winansi_isatty(int fd
)
570 if (fd
>= 0 && fd
<= 2)
571 return fd_is_interactive
[fd
] != 0;
575 void winansi_init(void)
580 /* check if either stdout or stderr is a console output screen buffer */
581 con1
= is_console(1);
582 con2
= is_console(2);
584 /* Also compute console bit for fd 0 even though we don't need the result here. */
587 if (!con1
&& !con2
) {
588 #ifdef DETECT_MSYS_TTY
589 /* check if stdin / stdout / stderr are MSYS2 pty pipes */
597 /* create a named pipe to communicate with the console thread */
598 xsnprintf(name
, sizeof(name
), "\\\\.\\pipe\\winansi%lu", GetCurrentProcessId());
599 hwrite
= CreateNamedPipe(name
, PIPE_ACCESS_OUTBOUND
,
600 PIPE_TYPE_BYTE
| PIPE_WAIT
, 1, BUFFER_SIZE
, 0, 0, NULL
);
601 if (hwrite
== INVALID_HANDLE_VALUE
)
602 die_lasterr("CreateNamedPipe failed");
604 hread
= CreateFile(name
, GENERIC_READ
, 0, NULL
, OPEN_EXISTING
, 0, NULL
);
605 if (hread
== INVALID_HANDLE_VALUE
)
606 die_lasterr("CreateFile for named pipe failed");
608 /* start console spool thread on the pipe's read end */
609 hthread
= CreateThread(NULL
, 0, console_thread
, NULL
, 0, NULL
);
610 if (hthread
== INVALID_HANDLE_VALUE
)
611 die_lasterr("CreateThread(console_thread) failed");
613 /* schedule cleanup routine */
614 if (atexit(winansi_exit
))
615 die_errno("atexit(winansi_exit) failed");
617 /* redirect stdout / stderr to the pipe */
619 hconsole1
= swap_osfhnd(1, duplicate_handle(hwrite
));
621 hconsole2
= swap_osfhnd(2, duplicate_handle(hwrite
));
625 * Returns the real console handle if stdout / stderr is a pipe redirecting
626 * to the console. Allows spawn / exec to pass the console to the next process.
628 HANDLE
winansi_get_osfhandle(int fd
)
630 if (fd
== 1 && (fd_is_interactive
[1] & FD_SWAPPED
))
632 if (fd
== 2 && (fd_is_interactive
[2] & FD_SWAPPED
))
635 return (HANDLE
)_get_osfhandle(fd
);