summaryrefslogtreecommitdiff
path: root/RealtimeSync/tray_menu.cpp
blob: af37d32e2de88917a8b555594eb9d64cd1cb9470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved        *
// **************************************************************************

#include "tray_menu.h"
#include <algorithm>
#include <iterator>
#include <limits>
#include <set>
#include <zen/assert_static.h>
#include <zen/build_info.h>
#include <wx+/mouse_move_dlg.h>
#include <wx+/image_tools.h>
#include <wx+/string_conv.h>
#include <wx+/shell_execute.h>
#include <wx/msgdlg.h>
#include <wx/taskbar.h>
#include <wx/app.h>
#include <wx/utils.h>
#include <wx/menu.h>
#include <wx/utils.h>
#include <wx/icon.h> //Linux needs this
#include <wx/timer.h>
#include "resources.h"
#include "gui_generated.h"
#include "watcher.h"
#include "../lib/resolve_path.h"

using namespace rts;
using namespace zen;


namespace
{
struct AbortCallback  //never throw exceptions through a C-Layer (GUI)!
{
    virtual ~AbortCallback() {}
    virtual void requestResume() = 0;
    virtual void requestAbort() = 0;
};


//RtsTrayIcon is a dumb class whose sole purpose is to enable wxWidgets deferred deletion
class RtsTrayIconRaw : public wxTaskBarIcon
{
public:
    RtsTrayIconRaw(AbortCallback& abortCb) : abortCb_(&abortCb)
    {
        Connect(wxEVT_TASKBAR_LEFT_DCLICK, wxCommandEventHandler(RtsTrayIconRaw::OnDoubleClick), nullptr, this);
    }

    void dontCallBackAnymore() { abortCb_ = nullptr; } //call before tray icon is marked for deferred deletion

private:
    enum Selection
    {
        CONTEXT_ABORT,
        CONTEXT_RESTORE,
        CONTEXT_ABOUT
    };

    virtual wxMenu* CreatePopupMenu()
    {
        if (!abortCb_)
            return nullptr;

        wxMenu* contextMenu = new wxMenu;
        contextMenu->Append(CONTEXT_RESTORE, _("&Restore"));
        contextMenu->Append(CONTEXT_ABOUT, _("&About"));
        contextMenu->AppendSeparator();
        contextMenu->Append(CONTEXT_ABORT, _("&Exit"));
        //event handling
        contextMenu->Connect(wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(RtsTrayIconRaw::OnContextMenuSelection), nullptr, this);

        return contextMenu; //ownership transferred to caller
    }

    void OnContextMenuSelection(wxCommandEvent& event)
    {
        if (!abortCb_)
            return;

        switch (static_cast<Selection>(event.GetId()))
        {
            case CONTEXT_ABORT:
                abortCb_->requestAbort();
                break;

            case CONTEXT_RESTORE:
                abortCb_->requestResume();
                break;

            case CONTEXT_ABOUT:
            {
                //build information
                wxString build = __TDATE__;
#if wxUSE_UNICODE
                build += L" - Unicode";
#else
                build += L" - ANSI";
#endif //wxUSE_UNICODE

                //compile time info about 32/64-bit build
                if (zen::is64BitBuild)
                    build += L" x64";
                else
                    build += L" x86";
                assert_static(zen::is32BitBuild || zen::is64BitBuild);

                wxMessageBox(L"RealtimeSync" L"\n\n" + replaceCpy(_("Build: %x"), L"%x", build), _("About"), wxOK);
            }
            break;
        }
    }

    void OnDoubleClick(wxCommandEvent& event)
    {
        if (abortCb_)
            abortCb_->requestResume();
    }

    AbortCallback* abortCb_;
};


class TrayIconHolder
{
public:
    TrayIconHolder(const wxString& jobname, AbortCallback& abortCb) :
        jobName_(jobname)
    {
        trayMenu = new RtsTrayIconRaw(abortCb); //not in initialization list: give it a valid parent object!
        showIconActive();
    }

    ~TrayIconHolder()
    {
        trayMenu->RemoveIcon(); //(try to) hide icon until final deletion takes place
        trayMenu->dontCallBackAnymore();

        //use wxWidgets delayed destruction: delete during next idle loop iteration (handle late window messages, e.g. when double-clicking)
        if (!wxPendingDelete.Member(trayMenu))
            wxPendingDelete.Append(trayMenu);
    }

    void doUiRefreshNow()
    {
        wxTheApp->Yield();
    } //yield is UI-layer which is represented by this tray icon

    void showIconActive()
    {
        wxIcon realtimeIcon;
#ifdef FFS_WIN
        realtimeIcon.CopyFromBitmap(GlobalResources::getImage(L"RTS_tray_win")); //use a 16x16 bitmap
#elif defined FFS_LINUX
        realtimeIcon.CopyFromBitmap(GlobalResources::getImage(L"RTS_tray_linux")); //use a 22x22 bitmap for perfect fit
#endif
        const wxString postFix = jobName_.empty() ? wxString() : (L"\n\"" + jobName_ + L"\"");
        trayMenu->SetIcon(realtimeIcon, _("Monitoring active...") + postFix);
    }

    void showIconWaiting()
    {
        wxIcon realtimeIcon;
#ifdef FFS_WIN
        realtimeIcon.CopyFromBitmap(greyScale(GlobalResources::getImage(L"RTS_tray_win"))); //use a 16x16 bitmap
#elif defined FFS_LINUX
        realtimeIcon.CopyFromBitmap(greyScale(GlobalResources::getImage(L"RTS_tray_linux"))); //use a 22x22 bitmap for perfect fit
#endif
        const wxString postFix = jobName_.empty() ? wxString() : (L"\n\"" + jobName_ + L"\"");
        trayMenu->SetIcon(realtimeIcon, _("Waiting for missing directories...") + postFix);
    }

private:
    RtsTrayIconRaw* trayMenu;
    const wxString jobName_; //RTS job name, may be empty
};


//##############################################################################################################

struct AbortMonitoring//exception class
{
    AbortMonitoring(AbortReason reasonCode) : reasonCode_(reasonCode) {}
    AbortReason reasonCode_;
};

class StartSyncNowException {};

//##############################################################################################################

class WaitCallbackImpl : public rts::WaitCallback, private AbortCallback
{
public:
    WaitCallbackImpl(const wxString& jobname) :
        trayIcon(jobname, *this),
        nextSyncStart_(std::numeric_limits<long>::max()),
        resumeRequested(false),
        abortRequested(false) {}

    void notifyAllDirectoriesExist() { trayIcon.showIconActive(); }
    void notifyDirectoryMissing   () { trayIcon.showIconWaiting(); }

    void scheduleNextSync(long nextSyncStart) { nextSyncStart_ = nextSyncStart; }
    void clearSchedule() { nextSyncStart_ = std::numeric_limits<long>::max(); }

    //implement WaitCallback
    virtual void requestUiRefresh(bool readyForSync) //throw StartSyncNowException, AbortMonitoring
    {
        if (resumeRequested)
            throw AbortMonitoring(SHOW_GUI);

        if (abortRequested)
            throw AbortMonitoring(EXIT_APP);

        if (readyForSync)
            if (nextSyncStart_ <= wxGetLocalTime())
                throw StartSyncNowException(); //abort wait and start sync

        if (updateUiIsAllowed())
            trayIcon.doUiRefreshNow();
    }

private:
    //implement AbortCallback: used from C-GUI call stack
    virtual void requestResume() { resumeRequested = true; }
    virtual void requestAbort () { abortRequested  = true; }

    TrayIconHolder trayIcon;
    long nextSyncStart_;
    bool resumeRequested;
    bool abortRequested;
};



class ErrorDlgWithTimeout : public ErrorDlgGenerated
{
public:
    ErrorDlgWithTimeout(wxWindow* parent, const wxString& messageText) :
        ErrorDlgGenerated(parent),
        secondsLeft(15) //give user some time to read msg!?
    {
#ifdef FFS_WIN
        new zen::MouseMoveWindow(*this); //allow moving main dialog by clicking (nearly) anywhere...; ownership passed to "this"
#endif
        m_bitmap10->SetBitmap(GlobalResources::getImage(L"msg_error"));
        m_textCtrl8->SetValue(messageText);
        m_buttonRetry->SetFocus();

        //count down X seconds then automatically press "retry"
        timer.Connect(wxEVT_TIMER, wxEventHandler(ErrorDlgWithTimeout::OnTimerEvent), nullptr, this);
        timer.Start(1000); //timer interval in ms
        updateButtonLabel();

        Fit(); //child-element widths have changed: image was set
    }

    enum ButtonPressed
    {
        BUTTON_RETRY,
        BUTTON_ABORT
    };

private:
    void OnTimerEvent(wxEvent& event)
    {
        if (secondsLeft <= 0)
        {
            EndModal(BUTTON_RETRY);
            return;
        }
        --secondsLeft;
        updateButtonLabel();
    }

    void updateButtonLabel()
    {
        m_buttonRetry->SetLabel(_("&Retry") + L" (" + replaceCpy(_P("1 sec", "%x sec", secondsLeft), L"%x", numberTo<std::wstring>(secondsLeft)) + L")");
        Layout();
    }

    void OnClose(wxCloseEvent&   event) { EndModal(BUTTON_ABORT); }
    void OnRetry(wxCommandEvent& event) { EndModal(BUTTON_RETRY); }
    void OnAbort(wxCommandEvent& event) { EndModal(BUTTON_ABORT); }

    int secondsLeft;
    wxTimer timer;
};


bool reportErrorTimeout(const std::wstring& msg) //return true if timeout or user selected "retry", else abort
{
    ErrorDlgWithTimeout errorDlg(nullptr, msg);
    //errorDlg.Raise(); -> don't steal focus every X seconds
    switch (static_cast<ErrorDlgWithTimeout::ButtonPressed>(errorDlg.ShowModal()))
    {
        case ErrorDlgWithTimeout::BUTTON_RETRY:
            return true;
        case ErrorDlgWithTimeout::BUTTON_ABORT:
            return false;
    }
    return false;
}
}

/*
Data Flow:
----------

TrayIconHolder (GUI output)
  /|\
   |
WaitCallbackImpl
  /|\
   |
startDirectoryMonitor() (wire dir-changes and execution of commandline)
*/


rts::AbortReason rts::startDirectoryMonitor(const xmlAccess::XmlRealConfig& config, const wxString& jobname)
{
    const std::vector<Zstring> dirList = toZ(config.directories);

    wxString cmdLine = config.commandline;
    trim(cmdLine);

    if (cmdLine.empty())
    {
        wxMessageBox(_("Invalid command line:") + L" \"\"", _("Error"), wxOK | wxICON_ERROR);
        return SHOW_GUI;
    }
    if (dirList.empty() || std::any_of(dirList.begin(), dirList.end(), [](Zstring str) -> bool { trim(str); return str.empty(); }))
    {
        wxMessageBox(_("A folder input field is empty."), _("Error"), wxOK | wxICON_ERROR);
        return SHOW_GUI;
    }

    try
    {
        Zstring lastFileChanged;
        WaitCallbackImpl callback(jobname);

        auto execMonitoring = [&] //throw FileError, AbortMonitoring
        {
            callback.notifyDirectoryMissing();
            callback.clearSchedule();
            waitForMissingDirs(dirList, callback); //throw FileError, StartSyncNowException(not scheduled yet), AbortMonitoring
            callback.notifyAllDirectoriesExist();

            //schedule initial execution (*after* all directories have arrived, which could take some time which we don't want to include)
            callback.scheduleNextSync(wxGetLocalTime() + static_cast<long>(config.delay));

            while (true)
            {
                try
                {
                    while (true)
                    {
                        //wait for changes (and for all directories to become available)
                        WaitResult res = waitForChanges(dirList, callback); //throw FileError, StartSyncNowException, AbortMonitoring
                        switch (res.type)
                        {
                            case CHANGE_DIR_MISSING: //don't execute the commandline before all directories are available!
                                callback.notifyDirectoryMissing();
                                callback.clearSchedule();
                                waitForMissingDirs(dirList, callback); //throw FileError, StartSyncNowException(not scheduled yet), AbortMonitoring
                                callback.notifyAllDirectoriesExist();
                                break;

                            case CHANGE_DETECTED:
                                lastFileChanged = res.filename;
                                break;
                        }
                        callback.scheduleNextSync(wxGetLocalTime() + static_cast<long>(config.delay));
                    }
                }
                catch (StartSyncNowException&) {}

                ::wxSetEnv(L"changed_file", utfCvrtTo<wxString>(lastFileChanged)); //some way to output what file changed to the user
                lastFileChanged.clear(); //make sure old name is not shown again after a directory reappears

                //execute command
                auto cmdLineExp = utfCvrtTo<wxString>(expandMacros(utfCvrtTo<Zstring>(cmdLine)));
                zen::shellExecute(cmdLineExp, zen::EXEC_TYPE_SYNC);
                callback.clearSchedule();
            }
        };

        while (true)
            try
            {
                execMonitoring(); //throw FileError, AbortMonitoring
            }
            catch (const zen::FileError& e)
            {
                if (!reportErrorTimeout(e.toString())) //return true if timeout or user selected "retry", else abort
                    return SHOW_GUI;
            }
    }
    catch (const AbortMonitoring& ab)
    {
        return ab.reasonCode_;
    }
}
bgstack15