]> sigrok.org Git - pulseview.git/blob - pv/dialogs/storeprogress.cpp
Added support for save
[pulseview.git] / pv / dialogs / storeprogress.cpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2014 Joel Holdsworth <joel@airwebreathe.org.uk>
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
21 #include "storeprogress.h"
22
23 namespace pv {
24 namespace dialogs {
25
26 StoreProgress::StoreProgress(const QString &file_name,
27         const SigSession &session, QWidget *parent) :
28         QProgressDialog(tr("Saving..."), tr("Cancel"), 0, 0, parent),
29         _session(file_name.toStdString(), session)
30 {
31         connect(&_session, SIGNAL(progress_updated()),
32                 this, SLOT(on_progress_updated()));
33 }
34
35 StoreProgress::~StoreProgress()
36 {
37         _session.wait();
38 }
39
40 void StoreProgress::run()
41 {
42         if (_session.start())
43                 show();
44         else
45                 show_error();
46 }
47
48 void StoreProgress::show_error()
49 {
50         QMessageBox msg(parentWidget());
51         msg.setText(tr("Failed to save session."));
52         msg.setInformativeText(_session.error());
53         msg.setStandardButtons(QMessageBox::Ok);
54         msg.setIcon(QMessageBox::Warning);
55         msg.exec();
56 }
57
58 void StoreProgress::closeEvent(QCloseEvent*)
59 {
60         _session.cancel();
61 }
62
63 void StoreProgress::on_progress_updated()
64 {
65         const std::pair<uint64_t, uint64_t> p = _session.progress();
66         assert(p.first <= p.second);
67
68         setValue(p.first);
69         setMaximum(p.second);
70
71         const QString err = _session.error();
72         if (!err.isEmpty()) {
73                 show_error();
74                 close();
75         }
76
77         if (p.first == p.second)
78                 close();
79 }
80
81 } // dialogs
82 } // pv