2013-01-04 16:01:50 +01:00
|
|
|
// Copyright (c) 2013, Thomas Goyne <plorkyeran@aegisub.org>
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2011-09-28 21:47:40 +02:00
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2011-09-28 21:47:40 +02:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2009-07-29 07:43:02 +02:00
|
|
|
|
|
|
|
/// @file dialog_progress.cpp
|
2011-09-28 21:47:40 +02:00
|
|
|
/// @brief Progress-bar dialog box for displaying during long operations
|
2009-07-29 07:43:02 +02:00
|
|
|
/// @ingroup utility
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
#include "dialog_progress.h"
|
|
|
|
|
|
|
|
#include "compat.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <libaegisub/dispatch.h>
|
|
|
|
#include <libaegisub/exception.h>
|
|
|
|
|
2013-01-28 15:58:57 +01:00
|
|
|
#include <atomic>
|
2007-09-12 01:22:26 +02:00
|
|
|
#include <wx/button.h>
|
2011-09-28 21:47:40 +02:00
|
|
|
#include <wx/gauge.h>
|
2007-09-12 01:22:26 +02:00
|
|
|
#include <wx/sizer.h>
|
2011-09-28 21:47:40 +02:00
|
|
|
#include <wx/stattext.h>
|
|
|
|
#include <wx/textctrl.h>
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
using agi::dispatch::Main;
|
2011-09-28 21:47:40 +02:00
|
|
|
|
|
|
|
class DialogProgressSink : public agi::ProgressSink {
|
|
|
|
DialogProgress *dialog;
|
2013-01-28 15:58:57 +01:00
|
|
|
std::atomic<bool> cancelled;
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
public:
|
|
|
|
DialogProgressSink(DialogProgress *dialog)
|
|
|
|
: dialog(dialog)
|
|
|
|
, cancelled(false)
|
|
|
|
{
|
|
|
|
}
|
2008-10-28 05:03:29 +01:00
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
void SetTitle(std::string const& title) {
|
2013-01-04 16:01:50 +01:00
|
|
|
Main().Async([=]{ dialog->title->SetLabelText(to_wx(title)); });
|
2011-09-28 21:47:40 +02:00
|
|
|
}
|
2008-10-28 05:03:29 +01:00
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
void SetMessage(std::string const& msg) {
|
2013-01-04 16:01:50 +01:00
|
|
|
Main().Async([=]{ dialog->text->SetLabelText(to_wx(msg)); });
|
2011-09-28 21:47:40 +02:00
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-03-10 02:00:13 +01:00
|
|
|
void SetProgress(int64_t cur, int64_t max) {
|
2013-09-27 00:54:59 +02:00
|
|
|
Main().Async([=]{ dialog->SetProgress(mid<int>(0, double(cur) / max * 300, 300)); });
|
2011-09-28 21:47:40 +02:00
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
void Log(std::string const& str) {
|
2013-01-04 16:01:50 +01:00
|
|
|
Main().Async([=]{ dialog->pending_log += to_wx(str); });
|
2011-09-28 21:47:40 +02:00
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
bool IsCancelled() {
|
|
|
|
return cancelled;
|
|
|
|
}
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
void Cancel() {
|
|
|
|
cancelled = true;
|
2008-10-28 05:03:29 +01:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
void SetIndeterminate() {
|
2013-01-04 16:01:50 +01:00
|
|
|
Main().Async([=]{ dialog->pulse_timer.Start(1000); });
|
2011-09-28 21:47:40 +02:00
|
|
|
}
|
|
|
|
};
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
DialogProgress::DialogProgress(wxWindow *parent, wxString const& title_text, wxString const& message)
|
|
|
|
: wxDialog(parent, -1, title_text, wxDefaultPosition, wxDefaultSize, wxBORDER_RAISED)
|
|
|
|
, pulse_timer(GetEventHandler())
|
2013-09-27 00:54:59 +02:00
|
|
|
, progress_current(0)
|
|
|
|
, progress_target(0)
|
2008-10-28 05:03:29 +01:00
|
|
|
{
|
2011-09-28 21:47:40 +02:00
|
|
|
title = new wxStaticText(this, -1, title_text, wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE | wxST_NO_AUTORESIZE);
|
2013-09-27 00:54:59 +02:00
|
|
|
gauge = new wxGauge(this, -1, 300, wxDefaultPosition, wxSize(300,20));
|
2011-09-28 21:47:40 +02:00
|
|
|
text = new wxStaticText(this, -1, message, wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE | wxST_NO_AUTORESIZE);
|
|
|
|
cancel_button = new wxButton(this, wxID_CANCEL);
|
2013-09-22 01:20:19 +02:00
|
|
|
log_output = new wxTextCtrl(this, -1, "", wxDefaultPosition, wxSize(600, 240), wxTE_MULTILINE | wxTE_READONLY);
|
2011-09-28 21:47:40 +02:00
|
|
|
|
|
|
|
// make the title a slightly larger font
|
|
|
|
wxFont title_font = title->GetFont();
|
|
|
|
int fontsize = title_font.GetPointSize();
|
|
|
|
title_font.SetPointSize(fontsize * 1.375);
|
|
|
|
title_font.SetWeight(wxFONTWEIGHT_BOLD);
|
|
|
|
title->SetFont(title_font);
|
|
|
|
|
|
|
|
wxSizer *sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
sizer->Add(title, wxSizerFlags().Expand().Center());
|
|
|
|
sizer->Add(gauge, wxSizerFlags(1).Expand().Border());
|
|
|
|
sizer->Add(text, wxSizerFlags().Expand().Center());
|
|
|
|
sizer->Add(cancel_button, wxSizerFlags().Center().Border());
|
|
|
|
sizer->Add(log_output, wxSizerFlags().Expand().Border(wxALL & ~wxTOP));
|
|
|
|
sizer->Hide(log_output);
|
|
|
|
|
|
|
|
SetSizerAndFit(sizer);
|
|
|
|
CenterOnParent();
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
Bind(wxEVT_SHOW, &DialogProgress::OnShow, this);
|
2012-12-22 20:51:08 +01:00
|
|
|
Bind(wxEVT_TIMER, [=](wxTimerEvent&) { gauge->Pulse(); });
|
2012-02-16 22:22:04 +01:00
|
|
|
Bind(wxEVT_IDLE, &DialogProgress::OnIdle, this);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2012-09-25 01:35:27 +02:00
|
|
|
void DialogProgress::Run(std::function<void(agi::ProgressSink*)> task, int priority) {
|
2011-09-28 21:47:40 +02:00
|
|
|
DialogProgressSink ps(this);
|
|
|
|
this->ps = &ps;
|
2013-01-04 16:01:50 +01:00
|
|
|
|
|
|
|
agi::dispatch::Background().Async([=]{
|
|
|
|
try {
|
|
|
|
task(this->ps);
|
|
|
|
}
|
|
|
|
catch (agi::Exception const& e) {
|
|
|
|
this->ps->Log(e.GetChainedMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
Main().Async([this]{
|
|
|
|
pulse_timer.Stop();
|
|
|
|
|
|
|
|
// Unbind the cancel handler so that the default behavior happens (i.e. the
|
|
|
|
// dialog is closed) as there's no longer a task to cancel
|
|
|
|
Unbind(wxEVT_COMMAND_BUTTON_CLICKED, &DialogProgress::OnCancel, this, wxID_CANCEL);
|
|
|
|
|
|
|
|
// If it ran to completion and there is debug output, leave the window open
|
|
|
|
// so the user can read the debug output and switch the cancel button to a
|
|
|
|
// close button
|
|
|
|
bool cancelled = this->ps->IsCancelled();
|
|
|
|
if (cancelled || (log_output->IsEmpty() && !pending_log))
|
|
|
|
EndModal(!cancelled);
|
|
|
|
else
|
|
|
|
cancel_button->SetLabelText(_("Close"));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2011-10-23 19:00:21 +02:00
|
|
|
if (!ShowModal())
|
2011-09-28 21:47:40 +02:00
|
|
|
throw agi::UserCancelException("Cancelled by user");
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
void DialogProgress::OnShow(wxShowEvent&) {
|
|
|
|
// Restore the cancel button in case it was previously switched to a close
|
|
|
|
// button
|
|
|
|
Bind(wxEVT_COMMAND_BUTTON_CLICKED, &DialogProgress::OnCancel, this, wxID_CANCEL);
|
|
|
|
cancel_button->SetLabelText(_("Cancel"));
|
|
|
|
cancel_button->Enable();
|
|
|
|
|
|
|
|
wxSizer *sizer = GetSizer();
|
|
|
|
if (sizer->IsShown(log_output)) {
|
|
|
|
sizer->Hide(log_output);
|
|
|
|
Layout();
|
|
|
|
sizer->Fit(this);
|
|
|
|
log_output->Clear();
|
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2012-02-16 22:22:04 +01:00
|
|
|
void DialogProgress::OnIdle(wxIdleEvent&) {
|
2013-09-27 00:54:59 +02:00
|
|
|
if (progress_current != progress_target) {
|
|
|
|
using namespace std::chrono;
|
|
|
|
auto now = steady_clock::now();
|
|
|
|
int ms = mid<int>(0, duration_cast<milliseconds>(now - progress_anim_start_time).count(), progress_anim_duration);
|
|
|
|
int dist = (progress_target - progress_anim_start_value) * ms / progress_anim_duration;
|
|
|
|
if (dist) {
|
|
|
|
progress_current = progress_anim_start_value + dist;
|
|
|
|
gauge->SetValue(progress_current);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-16 22:22:04 +01:00
|
|
|
if (!pending_log) return;
|
|
|
|
|
|
|
|
if (log_output->IsEmpty()) {
|
|
|
|
wxSizer *sizer = GetSizer();
|
|
|
|
sizer->Show(log_output);
|
|
|
|
Layout();
|
|
|
|
sizer->Fit(this);
|
2013-09-22 01:20:19 +02:00
|
|
|
CenterOnParent();
|
2012-02-16 22:22:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
*log_output << pending_log;
|
|
|
|
log_output->SetInsertionPointEnd();
|
|
|
|
pending_log.clear();
|
|
|
|
}
|
|
|
|
|
2011-12-22 22:09:31 +01:00
|
|
|
void DialogProgress::OnCancel(wxCommandEvent &) {
|
2011-09-28 21:47:40 +02:00
|
|
|
ps->Cancel();
|
|
|
|
cancel_button->Enable(false);
|
|
|
|
cancel_button->SetLabelText(_("Cancelling..."));
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2013-09-27 00:54:59 +02:00
|
|
|
|
|
|
|
void DialogProgress::SetProgress(int target) {
|
|
|
|
using namespace std::chrono;
|
|
|
|
|
|
|
|
progress_anim_start_value = progress_current;
|
|
|
|
auto now = steady_clock::now();
|
|
|
|
if (progress_target == 0)
|
|
|
|
progress_anim_duration = 1000;
|
|
|
|
else
|
|
|
|
progress_anim_duration = std::max<int>(100, duration_cast<milliseconds>(now - progress_anim_start_time).count() * 11 / 10);
|
|
|
|
progress_anim_start_time = now;
|
|
|
|
progress_target = target;
|
|
|
|
}
|