123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /* melder_console.cpp
- *
- * Copyright (C) 1992-2018 Paul Boersma
- *
- * This code is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or (at
- * your option) any later version.
- *
- * This code is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this work. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "melder.h"
- #ifdef _WIN32
- #include <windows.h>
- #include <fcntl.h>
- #include <io.h>
- #endif
- /*
- MelderConsole is the interface through which Melder_casual writes to
- the console (on stderr), and through which Melder_info writes to the
- console (on stdout) if it does not write to the GUI.
- */
- namespace MelderConsole {// reopen
- /*
- On Windows, the console ("command prompt") understands UTF-16,
- independently of the selected code page, so we use UTF-16 by default.
- We could use UTF-8 as well, but this will work only if the code page
- is 65001 (i.e. one would have to type "chcp 65001" into the console).
- In redirection cases (pipes or files), the encoding will often have
- to be different.
- On Unix-like platforms (MacOS and Linux), the console understands UTF-8,
- so we use UTF-8 by default. Other programs are usually fine handling UTF-8,
- so we are probably good even in the context of pipes or redirection.
- */
- MelderConsole::Encoding encoding =
- #if defined (_WIN32)
- MelderConsole::Encoding::UTF16;
- #else
- MelderConsole::Encoding::UTF8;
- #endif
- }
- void MelderConsole::setEncoding (MelderConsole::Encoding newEncoding) {
- MelderConsole :: encoding = newEncoding;
- }
- /*
- stdout and stderr should be kept distinct. For instance, if you do
- praat test.praat > out.txt
- the output of Melder_info should go to the file `out.txt`,
- whereas the output of Melder_casual should go to the console or terminal.
- On MacOS and Linux this requirement is satisfied by default,
- but on Windows satisfying this requirement involves some work.
- */
- static void ensureThatStdoutAndStderrAreInitialized () {
- #if defined (_WIN32)
- /*
- Stdout and stderr are initialized automatically if we are redirected to a pipe or file.
- Stdout and stderr are not initialized, however, if Praat is started from the console,
- neither in GUI mode nor in console mode; in these latter cases,
- we manually attach stdout and stderr to the calling console.
- */
- auto ensureThatStreamIsInitialized = [] (FILE *stream, int handle) {
- bool streamHasBeenInitialized = ( _fileno (stream) >= 0 );
- if (! streamHasBeenInitialized) {
- /*
- Don't change the following four lines into
- freopen ("CONOUT$", "w", stream);
- because if you did that, the distinction between stdout and stderr would be lost.
- */
- HANDLE osfHandle = GetStdHandle (handle);
- if (osfHandle) {
- int fileDescriptor = _open_osfhandle ((intptr_t) osfHandle, _O_TEXT);
- Melder_assert (fileDescriptor != 0);
- FILE *f = _fdopen (fileDescriptor, "w");
- Melder_assert (!! f);
- *stream = *f;
- }
- }
- };
- ensureThatStreamIsInitialized (stdout, STD_OUTPUT_HANDLE);
- ensureThatStreamIsInitialized (stderr, STD_ERROR_HANDLE);
- #endif
- }
- void MelderConsole::write (conststring32 message, bool useStderr) {
- if (! message)
- return;
- ensureThatStdoutAndStderrAreInitialized ();
- FILE *f = useStderr ? stderr : stdout;
- if (MelderConsole :: encoding == Encoding::UTF16) {
- #if defined (_WIN32)
- fflush (f);
- int savedMode = _setmode (_fileno (f), _O_U16TEXT); // without line-break translation
- #endif
- fwprintf (f, L"%ls", Melder_peek32to16 (message)); // with line-break translation (Windows)
- fflush (f);
- #if defined (_WIN32)
- _setmode (_fileno (f), savedMode);
- #endif
- } else if (MelderConsole :: encoding == Encoding::UTF8) {
- for (const char32 *p = & message [0]; *p != U'\0'; p ++) {
- char32 kar = *p;
- if (kar <= 0x00'007F) {
- fputc ((int) kar, f); // because fputc wants an int instead of a uint8 (guarded conversion)
- } else if (kar <= 0x00'07FF) {
- fputc (0xC0 | (kar >> 6), f);
- fputc (0x80 | (kar & 0x00'003F), f);
- } else if (kar <= 0x00'FFFF) {
- fputc (0xE0 | (kar >> 12), f);
- fputc (0x80 | ((kar >> 6) & 0x00'003F), f);
- fputc (0x80 | (kar & 0x00'003F), f);
- } else {
- fputc (0xF0 | (kar >> 18), f);
- fputc (0x80 | ((kar >> 12) & 0x00'003F), f);
- fputc (0x80 | ((kar >> 6) & 0x00'003F), f);
- fputc (0x80 | (kar & 0x00'003F), f);
- }
- }
- fflush (f);
- } else if (MelderConsole :: encoding == Encoding::ANSI) {
- integer n = str32len (message);
- for (integer i = 0; i < n; i ++) {
- /*
- We convert Unicode to ISO 8859-1 by simple truncation. This loses information.
- */
- unsigned int kar = message [i] & 0x00'00FF;
- fputc ((int) kar, f);
- }
- fflush (f);
- } else {
- // should not happen
- }
- }
- /* End of file melder_console.cpp */
|