source: git/src/cavernlog.cc @ cdb5c7f

stereo-2025
Last change on this file since cdb5c7f was 70c8a8c, checked in by Olly Betts <olly@…>, 3 months ago

Fix cavern log window for wx 3.0

The wx API to detect dark mode wasn't in 3.0, so just assume light
mode there.

  • Property mode set to 100644
File size: 18.9 KB
RevLine 
[6bec10c]1/* cavernlog.cc
2 * Run cavern inside an Aven window
3 *
[ac20829b]4 * Copyright (C) 2005-2024 Olly Betts
[6bec10c]5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 */
20
[4c83f84]21#include <config.h>
[6bec10c]22
23#include "aven.h"
24#include "cavernlog.h"
25#include "filename.h"
[fb5887c]26#include "mainfrm.h"
[6bec10c]27#include "message.h"
[4b40a9c]28#include "osalloc.h"
[6bec10c]29
[7af6fff]30#include <algorithm>
31
[baeae66]32#include <errno.h>
[6bec10c]33#include <stdio.h>
[a90632c]34#include <stdlib.h>
[6bec10c]35
36#include <sys/time.h>
37#include <sys/types.h>
38#include <unistd.h>
39
[15ba0b5]40#include <wx/process.h>
41
[cc2d7ad]42#define GVIM_COMMAND "gvim +'call cursor($l,$c)' $f"
43#define VIM_COMMAND "x-terminal-emulator -e vim +'call cursor($l,$c)' $f"
[81d94a4]44#define NVIM_COMMAND "x-terminal-emulator -e nvim +'call cursor($l,$c)' $f"
[cc2d7ad]45#define GEDIT_COMMAND "gedit $f +$l:$c"
46// Pluma currently ignores the column, but include it assuming some future
47// version will add support.
48#define PLUMA_COMMAND "pluma +$l:$c $f"
49#define EMACS_COMMAND "x-terminal-emulator -e emacs +$l:$c $f"
50#define NANO_COMMAND "x-terminal-emulator -e nano +$l,$c $f"
51#define JED_COMMAND "x-terminal-emulator -e jed $f -g $l"
52#define KATE_COMMAND "kate -l $l -c $c $f"
53
54#ifdef __WXMSW__
55# define DEFAULT_EDITOR_COMMAND "notepad $f"
56#elif defined __WXMAC__
57# define DEFAULT_EDITOR_COMMAND "open -t $f"
58#else
59# define DEFAULT_EDITOR_COMMAND VIM_COMMAND
60#endif
61
[0e81a88]62enum { LOG_REPROCESS = 1234, LOG_SAVE = 1235 };
[fb5887c]63
[ac20829b]64// New event type for signalling cavern output to process.
65wxDEFINE_EVENT(EVT_CAVERN_OUTPUT, wxCommandEvent);
[fc626ae]66
[ac20829b]67void
68CavernLogWindow::CheckForOutput(bool immediate)
69{
70    timer.Stop();
71    if (cavern_out == NULL) return;
[fc626ae]72
[ac20829b]73    wxInputStream * in = cavern_out->GetInputStream();
[fc626ae]74
[ac20829b]75    if (!in->CanRead()) {
76        timer.StartOnce();
77        return;
[fc626ae]78    }
79
[ac20829b]80    size_t real_size = log_txt.size();
81    size_t allow = 1024;
82    log_txt.resize(real_size + allow);
83    in->Read(&log_txt[real_size], allow);
84    size_t n = in->LastRead();
85    log_txt.resize(real_size + n);
86    if (n) {
87        if (immediate) {
88            ProcessCavernOutput();
89        } else {
90            QueueEvent(new wxCommandEvent(EVT_CAVERN_OUTPUT));
91        }
[fc626ae]92    }
[ac20829b]93}
[fc626ae]94
[ac20829b]95int
96CavernLogWindow::OnPaintButton(wxButton* b, int x)
[fc626ae]97{
[ac20829b]98    if (b) {
99        x -= 4;
100        const wxSize& bsize = b->GetSize();
101        x -= bsize.x;
102        b->SetSize(x, 4, bsize.x, bsize.y);
103        x -= 4;
[15ba0b5]104    }
[ac20829b]105    return x;
[15ba0b5]106}
107
108void
[ac20829b]109CavernLogWindow::OnPaint(wxPaintEvent&)
[15ba0b5]110{
[ac20829b]111    wxPaintDC dc(this);
112    wxFont font = dc.GetFont();
113    wxFont bold_font = font.Bold();
114    wxFont underlined_font = font.Underlined();
115    const wxRegion& region = GetUpdateRegion();
116    const wxRect& rect = region.GetBox();
117    int scroll_x = 0, scroll_y = 0;
118    GetViewStart(&scroll_x, &scroll_y);
119    int fsize = dc.GetFont().GetPixelSize().GetHeight();
120    int limit = min((rect.y + rect.height + fsize - 1) / fsize + scroll_y, int(line_info.size()) - 1);
121    for (int i = max(rect.y / fsize, scroll_y); i <= limit ; ++i) {
122        LineInfo& info = line_info[i];
123        // Leave a small margin to the left.
124        int x = fsize / 2 - scroll_x * fsize;
125        int y = (i - scroll_y) * fsize;
126        unsigned offset = info.start_offset;
127        unsigned len = info.len;
128        if (info.link_len) {
129            dc.SetFont(underlined_font);
130            dc.SetTextForeground(wxColour(192, 0, 192));
131            wxString link = wxString::FromUTF8(&log_txt[offset], info.link_len);
132            offset += info.link_len;
133            len -= info.link_len;
134            dc.DrawText(link, x, y);
135            x += info.link_pixel_width;
136            dc.SetFont(font);
[fc626ae]137        }
[ac20829b]138        if (info.colour_len) {
[1b3bd5d]139            dc.SetTextForeground(dark_mode ? *wxWHITE : *wxBLACK);
[ac20829b]140            {
141                size_t s_len = info.start_offset + info.colour_start - offset;
142                wxString s = wxString::FromUTF8(&log_txt[offset], s_len);
143                offset += s_len;
144                len -= s_len;
145                dc.DrawText(s, x, y);
146                x += dc.GetTextExtent(s).GetWidth();
147            }
148            switch (info.colour) {
149                case LOG_ERROR:
150                    dc.SetTextForeground(*wxRED);
151                    break;
152                case LOG_WARNING:
153                    dc.SetTextForeground(wxColour(0xf2, 0x8C, 0x28));
154                    break;
155                case LOG_INFO:
156                    dc.SetTextForeground(*wxBLUE);
157                    break;
158            }
159            dc.SetFont(bold_font);
160            wxString d = wxString::FromUTF8(&log_txt[offset], info.colour_len);
161            offset += info.colour_len;
162            len -= info.colour_len;
163            dc.DrawText(d, x, y);
164            x += dc.GetTextExtent(d).GetWidth();
165            dc.SetFont(font);
166        }
[1b3bd5d]167        dc.SetTextForeground(dark_mode ? *wxWHITE : *wxBLACK);
[ac20829b]168        dc.DrawText(wxString::FromUTF8(&log_txt[offset], len), x, y);
[15ba0b5]169    }
[ac20829b]170    int x = GetClientSize().x;
171    x = OnPaintButton(ok_button, x);
172    x = OnPaintButton(reprocess_button, x);
173    OnPaintButton(save_button, x);
[fc626ae]174}
175
[ac20829b]176BEGIN_EVENT_TABLE(CavernLogWindow, wxScrolledWindow)
[81e1aa4]177    EVT_BUTTON(LOG_REPROCESS, CavernLogWindow::OnReprocess)
[0e81a88]178    EVT_BUTTON(LOG_SAVE, CavernLogWindow::OnSave)
[fb5887c]179    EVT_BUTTON(wxID_OK, CavernLogWindow::OnOK)
[ac20829b]180    EVT_COMMAND(wxID_ANY, EVT_CAVERN_OUTPUT, CavernLogWindow::OnCavernOutput)
[8991d7f]181    EVT_IDLE(CavernLogWindow::OnIdle)
[ac20829b]182    EVT_TIMER(wxID_ANY, CavernLogWindow::OnTimer)
183    EVT_PAINT(CavernLogWindow::OnPaint)
184    EVT_MOTION(CavernLogWindow::OnMouseMove)
185    EVT_LEFT_UP(CavernLogWindow::OnLinkClicked)
[15ba0b5]186    EVT_END_PROCESS(wxID_ANY, CavernLogWindow::OnEndProcess)
[fb5887c]187END_EVENT_TABLE()
188
[549eb37]189wxString escape_for_shell(wxString s, bool protect_dash)
[6bec10c]190{
191#ifdef __WXMSW__
[faf83bee]192    // Correct quoting rules are insane:
193    //
[764fe32]194    // http://blogs.msdn.com/b/twistylittlepassagesallalike/archive/2011/04/23/everyone-quotes-arguments-the-wrong-way.aspx
[faf83bee]195    //
196    // Thankfully wxExecute passes the command string to CreateProcess(), so
197    // at least we don't need to quote for cmd.exe too.
[8204040]198    if (protect_dash && !s.empty() && s[0u] == '-') {
199        // If the filename starts with a '-', protect it from being
200        // treated as an option by prepending ".\".
201        s.insert(0, wxT(".\\"));
202    }
[faf83bee]203    if (s.empty() || s.find_first_of(wxT(" \"\t\n\v")) != s.npos) {
204        // Need to quote.
205        s.insert(0, wxT('"'));
206        for (size_t p = 1; p < s.size(); ++p) {
207            size_t backslashes = 0;
208            while (s[p] == wxT('\\')) {
209                ++backslashes;
210                if (++p == s.size()) {
211                    // Escape all the backslashes, since they're before
212                    // the closing quote we add below.
213                    s.append(backslashes, wxT('\\'));
214                    goto done;
215                }
216            }
217
218            if (s[p] == wxT('"')) {
219                // Escape any preceding backslashes and this quote.
220                s.insert(p, backslashes + 1, wxT('\\'));
221                p += backslashes + 1;
[eff69a7]222            }
[6bec10c]223        }
[faf83bee]224done:
225        s.append(wxT('"'));
[6bec10c]226    }
227#else
[faf83bee]228    size_t p = 0;
[6bec10c]229    if (protect_dash && !s.empty() && s[0u] == '-') {
230        // If the filename starts with a '-', protect it from being
231        // treated as an option by prepending "./".
[5627cbb]232        s.insert(0, wxT("./"));
[6bec10c]233        p = 2;
234    }
235    while (p < s.size()) {
236        // Exclude a few safe characters which are common in filenames
[8adbe49]237        if (!isalnum((unsigned char)s[p]) && strchr("/._-", s[p]) == NULL) {
[6baad4a]238            s.insert(p, 1, wxT('\\'));
[6bec10c]239            ++p;
240        }
241        ++p;
242    }
243#endif
244    return s;
245}
246
[549eb37]247wxString get_command_path(const wxChar * command_name)
248{
249#ifdef __WXMSW__
250    wxString cmd;
251    {
252        DWORD len = 256;
253        wchar_t *buf = NULL;
254        while (1) {
255            DWORD got;
256            buf = (wchar_t*)osrealloc(buf, len * 2);
257            got = GetModuleFileNameW(NULL, buf, len);
258            if (got < len) break;
259            len += len;
260        }
261        /* Strange Win32 nastiness - strip prefix "\\?\" if present */
262        wchar_t *start = buf;
263        if (wcsncmp(start, L"\\\\?\\", 4) == 0) start += 4;
264        wchar_t * slash = wcsrchr(start, L'\\');
265        if (slash) {
266            cmd.assign(start, slash - start + 1);
267        }
[ae917b96]268        free(buf);
[549eb37]269    }
270#else
[ac20829b]271    wxString cmd = wxString::FromUTF8(msg_exepth());
[549eb37]272#endif
273    cmd += command_name;
274    return cmd;
275}
276
[d7b53e3]277CavernLogWindow::CavernLogWindow(MainFrm * mainfrm_, const wxString & survey_, wxWindow * parent)
[ac20829b]278    : wxScrolledWindow(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize,
279                       wxFULL_REPAINT_ON_RESIZE),
[76bc864f]280      mainfrm(mainfrm_),
[ac20829b]281      survey(survey_),
282      timer(this)
[fb5887c]283{
[70c8a8c]284#if wxCHECK_VERSION(3,2,0)
[1b3bd5d]285    if (wxSystemSettings::GetAppearance().IsDark()) {
286        SetOwnBackgroundColour(*wxBLACK);
287        dark_mode = true;
[70c8a8c]288        return;
[1b3bd5d]289    }
[70c8a8c]290#endif
291
292    SetOwnBackgroundColour(*wxWHITE);
[93ff5cc]293}
294
[8991d7f]295CavernLogWindow::~CavernLogWindow()
296{
[ac20829b]297    timer.Stop();
[c1144fe]298    if (cavern_out) {
299        wxEndBusyCursor();
[15ba0b5]300        cavern_out->Detach();
[c1144fe]301    }
[8991d7f]302}
303
[fc626ae]304void
[ac20829b]305CavernLogWindow::OnMouseMove(wxMouseEvent& e)
[fc626ae]306{
[ac20829b]307    const auto& pos = e.GetPosition();
308    int fsize = GetFont().GetPixelSize().GetHeight();
309    int scroll_x = 0, scroll_y = 0;
310    GetViewStart(&scroll_x, &scroll_y);
311    unsigned line = pos.y / fsize + scroll_y;
312    unsigned x = pos.x + scroll_x * fsize - fsize / 2;
313    if (line < line_info.size() && x <= line_info[line].link_pixel_width) {
314        SetCursor(wxCursor(wxCURSOR_HAND));
315    } else {
316        SetCursor(wxNullCursor);
[fc626ae]317    }
318}
319
320void
[ac20829b]321CavernLogWindow::OnLinkClicked(wxMouseEvent& e)
[6bec10c]322{
[ac20829b]323    const auto& pos = e.GetPosition();
324    int fsize = GetFont().GetPixelSize().GetHeight();
325    int scroll_x = 0, scroll_y = 0;
326    GetViewStart(&scroll_x, &scroll_y);
327    unsigned line = pos.y / fsize + scroll_y;
328    unsigned x = pos.x + scroll_x * fsize - fsize / 2;
329    if (!(line < line_info.size() && x <= line_info[line].link_pixel_width))
[3d3fb6c]330        return;
[ac20829b]331
332    const char* cur = &log_txt[line_info[line].start_offset];
333    size_t link_len = line_info[line].link_len;
334    size_t colon = link_len;
335    while (colon > 1 && (unsigned)(cur[--colon] - '0') <= 9) { }
336    size_t colon2 = colon;
337    while (colon > 1 && (unsigned)(cur[--colon] - '0') <= 9) { }
338    if (cur[colon] != ':') {
339        colon = colon2;
340        colon2 = link_len;
341    }
342
[cc2d7ad]343    wxString cmd;
[b8ba399]344    wxChar * p = wxGetenv(wxT("SURVEXEDITOR"));
[3d3fb6c]345    if (p) {
[b8ba399]346        cmd = p;
[3d3fb6c]347        if (!cmd.find(wxT("$f"))) {
348            cmd += wxT(" $f");
[6bec10c]349        }
[cc2d7ad]350    } else {
351        p = wxGetenv(wxT("VISUAL"));
352        if (!p) p = wxGetenv(wxT("EDITOR"));
353        if (!p) {
354            cmd = wxT(DEFAULT_EDITOR_COMMAND);
355        } else {
356            cmd = p;
357            if (cmd == "gvim") {
358                cmd = wxT(GVIM_COMMAND);
359            } else if (cmd == "vim") {
360                cmd = wxT(VIM_COMMAND);
[81d94a4]361            } else if (cmd == "nvim") {
362                cmd = wxT(NVIM_COMMAND);
[cc2d7ad]363            } else if (cmd == "gedit") {
364                cmd = wxT(GEDIT_COMMAND);
365            } else if (cmd == "pluma") {
366                cmd = wxT(PLUMA_COMMAND);
367            } else if (cmd == "emacs") {
368                cmd = wxT(EMACS_COMMAND);
369            } else if (cmd == "nano") {
370                cmd = wxT(NANO_COMMAND);
371            } else if (cmd == "jed") {
372                cmd = wxT(JED_COMMAND);
373            } else if (cmd == "kate") {
374                cmd = wxT(KATE_COMMAND);
375            } else {
376                // Escape any $.
377                cmd.Replace(wxT("$"), wxT("$$"));
378                cmd += wxT(" $f");
379            }
380        }
[3d3fb6c]381    }
382    size_t i = 0;
383    while ((i = cmd.find(wxT('$'), i)) != wxString::npos) {
384        if (++i >= cmd.size()) break;
385        switch ((int)cmd[i]) {
386            case wxT('$'):
387                cmd.erase(i, 1);
388                break;
389            case wxT('f'): {
[ac20829b]390                wxString f = escape_for_shell(wxString(cur, colon), true);
[3d3fb6c]391                cmd.replace(i - 1, 2, f);
392                i += f.size() - 1;
393                break;
394            }
395            case wxT('l'): {
[ac20829b]396                wxString l = escape_for_shell(wxString(cur + colon + 1, colon2 - colon - 1));
[3d3fb6c]397                cmd.replace(i - 1, 2, l);
398                i += l.size() - 1;
399                break;
[1d71195]400            }
[3d3fb6c]401            case wxT('c'): {
402                wxString l;
[ac20829b]403                if (colon2 == link_len)
[3d3fb6c]404                    l = wxT("0");
405                else
[ac20829b]406                    l = escape_for_shell(wxString(cur + colon2 + 1, link_len - colon2 - 1));
[3d3fb6c]407                cmd.replace(i - 1, 2, l);
408                i += l.size() - 1;
409                break;
410            }
411            default:
412                ++i;
[6bec10c]413        }
[3d3fb6c]414    }
[faf83bee]415
416    if (wxExecute(cmd, wxEXEC_ASYNC|wxEXEC_MAKE_GROUP_LEADER) >= 0)
[3d3fb6c]417        return;
[faf83bee]418
[3d3fb6c]419    wxString m;
[736f7df]420    // TRANSLATORS: %s is replaced by the command we attempted to run.
[3d3fb6c]421    m.Printf(wmsg(/*Couldn’t run external command: “%s”*/17), cmd.c_str());
422    m += wxT(" (");
[ac20829b]423    m += wxString::FromUTF8(strerror(errno));
[3d3fb6c]424    m += wxT(')');
425    wxGetApp().ReportError(m);
[6bec10c]426}
427
[8991d7f]428void
[6bec10c]429CavernLogWindow::process(const wxString &file)
430{
[ac20829b]431    timer.Stop();
[c1144fe]432    if (cavern_out) {
[15ba0b5]433        cavern_out->Detach();
[15033fd]434        cavern_out = NULL;
[c1144fe]435    } else {
436        wxBeginBusyCursor();
437    }
438
[fb5887c]439    SetFocus();
440    filename = file;
441
[76bc864f]442    info_count = 0;
[8991d7f]443    link_count = 0;
[0e81a88]444    log_txt.resize(0);
[ac20829b]445    line_info.resize(0);
446    // Reserve enough that we won't need to grow the allocations in normal cases.
447    log_txt.reserve(16384);
448    line_info.reserve(256);
449    ptr = 0;
450    save_button = nullptr;
451    reprocess_button = nullptr;
452    ok_button = nullptr;
453    DestroyChildren();
454    SetVirtualSize(0, 0);
[0e81a88]455
[6bec10c]456#ifdef __WXMSW__
[15322f2]457    SetEnvironmentVariable(wxT("SURVEX_UTF8"), wxT("1"));
[6bec10c]458#else
[06b1227]459    setenv("SURVEX_UTF8", "1", 1);
[6bec10c]460#endif
[93ff5cc]461
[6bec10c]462    wxString escaped_file = escape_for_shell(file, true);
[549eb37]463    wxString cmd = get_command_path(L"cavern");
[9e50f755]464    cmd = escape_for_shell(cmd, false);
[5627cbb]465    cmd += wxT(" -o ");
[6bec10c]466    cmd += escaped_file;
[5627cbb]467    cmd += wxT(' ');
[6bec10c]468    cmd += escaped_file;
469
[15ba0b5]470    cavern_out = wxProcess::Open(cmd);
[6bec10c]471    if (!cavern_out) {
[5627cbb]472        wxString m;
[3d3fb6c]473        m.Printf(wmsg(/*Couldn’t run external command: “%s”*/17), cmd.c_str());
[5627cbb]474        m += wxT(" (");
[ac20829b]475        m += wxString::FromUTF8(strerror(errno));
[5627cbb]476        m += wxT(')');
[6bec10c]477        wxGetApp().ReportError(m);
[8991d7f]478        return;
[6bec10c]479    }
480
[15ba0b5]481    // We want to receive the wxProcessEvent when cavern exits.
482    cavern_out->SetNextHandler(this);
[40b02e8]483
[ac20829b]484    // Check for output after 500ms if we don't get an idle event sooner.
485    timer.StartOnce(500);
[fc626ae]486}
487
488void
[ac20829b]489CavernLogWindow::ProcessCavernOutput()
[fc626ae]490{
[ac20829b]491    // ptr gives the start of the first line we've not yet processed.
492
493    size_t nl;
494    while ((nl = log_txt.find('\n', ptr)) != std::string::npos) {
495        if (nl == ptr || (nl - ptr == 1 && log_txt[ptr] == '\r')) {
496            // Don't show empty lines in the window.
497            ptr = nl + 1;
498            continue;
499        }
500        size_t line_len = nl - ptr - (log_txt[nl - 1] == '\r');
501        // FIXME: Avoid copy, use string_view?
502        string cur(log_txt, ptr, line_len);
503        if (log_txt[ptr] == ' ') {
504            if (expecting_caret_line) {
505                // FIXME: Check the line is only space, `^` and `~`?
506                // Otherwise an error without caret info followed
507                // by an error which contains a '^' gets
508                // mishandled...
509                size_t caret = cur.rfind('^');
510                if (caret != wxString::npos) {
511                    size_t tilde = cur.rfind('~');
512                    if (tilde == wxString::npos || tilde < caret) {
513                        tilde = caret;
[b3ee5f5]514                    }
[ac20829b]515                    line_info.back().colour = line_info[line_info.size() - 2].colour;
516                    line_info.back().colour_start = caret;
517                    line_info.back().colour_len = tilde - caret + 1;
518                    expecting_caret_line = false;
519                    ptr = nl + 1;
520                    continue;
[6bec10c]521                }
522            }
[ac20829b]523            expecting_caret_line = true;
524        }
525        line_info.emplace_back(ptr);
526        line_info.back().len = line_len;
527        size_t colon = cur.find(": ");
528        if (colon != wxString::npos) {
529            size_t link_len = colon;
530            while (colon > 1 && (unsigned)(cur[--colon] - '0') <= 9) { }
531            if (cur[colon] == ':') {
532                line_info.back().link_len = link_len;
533
534                static string info_marker = string(msg(/*info*/485)) + ':';
[7962c9d]535                static string warning_marker = string(msg(/*warning*/106)) + ':';
[ac20829b]536                static string error_marker = string(msg(/*error*/93)) + ':';
537
538                size_t offset = link_len + 2;
539                if (cur.compare(offset, info_marker.size(), info_marker) == 0) {
540                    // Show "info" marker in blue.
541                    ++info_count;
542                    line_info.back().colour = LOG_INFO;
543                    line_info.back().colour_start = offset;
544                    line_info.back().colour_len = info_marker.size() - 1;
545                } else if (cur.compare(offset, warning_marker.size(), warning_marker) == 0) {
546                    // Show "warning" marker in orange.
547                    line_info.back().colour = LOG_WARNING;
548                    line_info.back().colour_start = offset;
549                    line_info.back().colour_len = warning_marker.size() - 1;
550                } else if (cur.compare(offset, error_marker.size(), error_marker) == 0) {
551                    // Show "error" marker in red.
552                    line_info.back().colour = LOG_ERROR;
553                    line_info.back().colour_start = offset;
554                    line_info.back().colour_len = error_marker.size() - 1;
[e768f29]555                }
[ac20829b]556                ++link_count;
[b3ee5f5]557            }
[6bec10c]558        }
[b3ee5f5]559
[ac20829b]560        int fsize = GetFont().GetPixelSize().GetHeight();
561        SetScrollRate(fsize, fsize);
562
563        auto& info = line_info.back();
564        info.link_pixel_width = GetTextExtent(wxString(&log_txt[ptr], info.link_len)).GetWidth();
565        auto rest_pixel_width = GetTextExtent(wxString(&log_txt[ptr + info.link_len], info.len - info.link_len)).GetWidth();
566        int width = max(GetVirtualSize().GetWidth(),
567                        int(fsize + info.link_pixel_width + rest_pixel_width));
568        int height = line_info.size();
569        SetVirtualSize(width, height * fsize);
570        if (!link_count) {
571            // Auto-scroll until the first diagnostic.
572            int scroll_x = 0, scroll_y = 0;
573            GetViewStart(&scroll_x, &scroll_y);
574            int xs, ys;
575            GetClientSize(&xs, &ys);
576            Scroll(scroll_x, line_info.size() * fsize - ys);
577        }
578        ptr = nl + 1;
[6bec10c]579    }
[ac20829b]580}
[8991d7f]581
[ac20829b]582void
583CavernLogWindow::OnEndProcess(wxProcessEvent & evt)
584{
585    bool cavern_success = evt.GetExitCode() == 0;
[f207751]586
[ac20829b]587    // Read and process any remaining buffered output.
588    wxInputStream* in = cavern_out->GetInputStream();
589    while (!in->Eof()) {
590        CheckForOutput(true);
[f207751]591    }
[fb5887c]592
[c1144fe]593    wxEndBusyCursor();
[ac20829b]594
[15ba0b5]595    delete cavern_out;
[8991d7f]596    cavern_out = NULL;
[ac20829b]597
598    // Initially place buttons off the right of the window - they get moved to
599    // the desired position by OnPaintButton().
600    wxPoint off_right(GetSize().x, 0);
601    /* TRANSLATORS: Label for button in aven’s cavern log window which
602     * allows the user to save the log to a file. */
603    save_button = new wxButton(this, LOG_SAVE, wmsg(/*&Save Log*/446), off_right);
604
605    /* TRANSLATORS: Label for button in aven’s cavern log window which
606     * causes the survey data to be reprocessed. */
607    reprocess_button = new wxButton(this, LOG_REPROCESS, wmsg(/*&Reprocess*/184), off_right);
608
609    if (cavern_success) {
610        ok_button = new wxButton(this, wxID_OK, wxString(), off_right);
611        ok_button->SetDefault();
612    }
613
614    Refresh();
615    if (!cavern_success) {
[8991d7f]616        return;
[6bec10c]617    }
[ac20829b]618
[d7b53e3]619    init_done = false;
[fb5887c]620
[15ba0b5]621    {
622        wxString file3d(filename, 0, filename.length() - 3);
623        file3d.append(wxT("3d"));
624        if (!mainfrm->LoadData(file3d, survey)) {
625            return;
626        }
[d7b53e3]627    }
[15ba0b5]628
[76bc864f]629    // Don't stay on log if there there are only "info" diagnostics.
630    if (link_count == info_count) {
[8991d7f]631        wxCommandEvent dummy;
632        OnOK(dummy);
[fb5887c]633    }
[15ba0b5]634}
635
[0e81a88]636void
[330cb03]637CavernLogWindow::OnReprocess(wxCommandEvent &)
[8991d7f]638{
639    process(filename);
640}
641
642void
[0e81a88]643CavernLogWindow::OnSave(wxCommandEvent &)
644{
645    wxString filelog(filename, 0, filename.length() - 3);
[ac20829b]646#ifdef __WXMSW__
647    // We need to consistently use `\` here.
648    filelog.Replace("/", "\\");
649#endif
[0e81a88]650    filelog += wxT("log");
651#ifdef __WXMOTIF__
652    wxString ext(wxT("*.log"));
653#else
[bb71423]654    /* TRANSLATORS: Log files from running cavern (extension .log) */
[0e81a88]655    wxString ext = wmsg(/*Log files*/447);
656    ext += wxT("|*.log");
657#endif
658    wxFileDialog dlg(this, wmsg(/*Select an output filename*/319),
659                     wxString(), filelog, ext,
660                     wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
661    if (dlg.ShowModal() != wxID_OK) return;
662    filelog = dlg.GetPath();
[3206c12]663    FILE * fh_log = wxFopen(filelog, wxT("w"));
[0e81a88]664    if (!fh_log) {
[7962c9d]665        wxGetApp().ReportError(wxString::Format(wmsg(/*Error writing to file “%s”*/7), filelog.c_str()));
[0e81a88]666        return;
667    }
[87c9067]668    FWRITE_(log_txt.data(), log_txt.size(), 1, fh_log);
[0e81a88]669    fclose(fh_log);
670}
671
[fb5887c]672void
673CavernLogWindow::OnOK(wxCommandEvent &)
674{
[d7b53e3]675    if (init_done) {
676        mainfrm->HideLog(this);
677    } else {
[5e0b9f9d]678        mainfrm->InitialiseAfterLoad(filename, survey);
[d7b53e3]679        init_done = true;
680    }
[fb5887c]681}
Note: See TracBrowser for help on using the repository browser.