Difference between revisions of "Console Output"

From Inkscape Wiki
Jump to navigation Jump to search
(Created page with " How do we handle console output? ==Issues== ===Windows Encoding=== Windows uses the wrong encoding for glib output: https://gitlab.com/inkscape/inkscape/commit/408cb49b555...")
 
(→‎Windows Encoding: fix comment link and add relevant bug for glib)
Line 6: Line 6:
===Windows Encoding===
===Windows Encoding===


Windows uses the wrong encoding for glib output: https://gitlab.com/inkscape/inkscape/commit/408cb49b5559a81ea803df64bf58457a5dd4bf16#note_119455385
Windows uses the wrong encoding for glib output: https://gitlab.com/inkscape/inkscape/merge_requests/418#note_119199350


Possible solutions:
Possible solutions:
Line 13: Line 13:
* Use g_log_set_handler as done in ui/dialog/messages.cpp
* Use g_log_set_handler as done in ui/dialog/messages.cpp
* Ask the GTK people.
* Ask the GTK people.
** Related glib bug: https://bugzilla.gnome.org/show_bug.cgi?id=782578


===Glib vs iostreams===
===Glib vs iostreams===

Revision as of 18:15, 23 November 2018

How do we handle console output?

Issues

Windows Encoding

Windows uses the wrong encoding for glib output: https://gitlab.com/inkscape/inkscape/merge_requests/418#note_119199350

Possible solutions:

Glib vs iostreams

Mix of glib output functions and std::cout/std::cerr. In principle mixing the two can cause problems but in practice it does not as by default std::cout/std::cerr are synced with stdio (std::sync_with_stdio).

Current Use

  • std::cout: 976
  • std::cerr: 361
  • g_log/g_logv: 23
  • g_message: 312
  • g_warning: 470
  • g_critical: 47
  • g_info: 72
  • g_debug: 4

Message dialog

Our message dialog can intercept g_log, etc. and redirect it to the dialog. This is done through g_log_set_handler if "Capture log messages" is checked. As we intercept everything, we could just intercept stdout/stderr as a comment in the message code suggests. How do actually do this is not clear.

For std::cout only:

// Start redirection
std::stringstream ss;
std::streambuf *sb = std::cout.rdbuf(ss.rdbuf());

// End redirection
std::cout.redbuf(sb);

For everything:

char huge_string_buf[1000];
freopen("/dev/null", "a", stdout);
setbuf(stdout, huge_string_buf);

Buffer could get filled up (shouldn't overflow).