]> sigrok.org Git - pulseview.git/blame - pv/storesession.hpp
Modified header guards to match file names
[pulseview.git] / pv / storesession.hpp
CommitLineData
0fbda3c2
JH
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
7a01bd36
JH
21#ifndef PULSEVIEW_PV_STORESESSION_HPP
22#define PULSEVIEW_PV_STORESESSION_HPP
0fbda3c2
JH
23
24#include <stdint.h>
25
3b68d03d 26#include <atomic>
c1035a14 27#include <fstream>
4764bc4d 28#include <memory>
3b68d03d 29#include <mutex>
0fbda3c2 30#include <string>
3b68d03d 31#include <thread>
0fbda3c2
JH
32
33#include <QObject>
34
7223eb62
ML
35namespace sigrok {
36class Output;
4764bc4d 37class OutputFormat;
7223eb62
ML
38}
39
0fbda3c2
JH
40namespace pv {
41
2b81ae46 42class Session;
0fbda3c2
JH
43
44namespace data {
f3d66e52 45class LogicSegment;
0fbda3c2
JH
46}
47
48class StoreSession : public QObject
49{
50 Q_OBJECT
51
52private:
53 static const size_t BlockSize;
54
55public:
56 StoreSession(const std::string &file_name,
4764bc4d 57 const std::shared_ptr<sigrok::OutputFormat> &output_format,
2b81ae46 58 const Session &session);
0fbda3c2
JH
59
60 ~StoreSession();
61
e40b2f29 62 std::pair<int, int> progress() const;
0fbda3c2
JH
63
64 const QString& error() const;
65
66 bool start();
67
68 void wait();
69
70 void cancel();
71
72private:
f3d66e52 73 void store_proc(std::shared_ptr<pv::data::LogicSegment> segment);
0fbda3c2 74
e9213170 75Q_SIGNALS:
0fbda3c2
JH
76 void progress_updated();
77
78private:
8dbbc7f0 79 const std::string file_name_;
4764bc4d 80 const std::shared_ptr<sigrok::OutputFormat> output_format_;
2b81ae46 81 const Session &session_;
0fbda3c2 82
8dbbc7f0 83 std::shared_ptr<sigrok::Output> output_;
c1035a14 84 std::ofstream output_stream_;
7223eb62 85
8dbbc7f0 86 std::thread thread_;
3b68d03d 87
8dbbc7f0 88 std::atomic<bool> interrupt_;
0fbda3c2 89
8dbbc7f0 90 std::atomic<int> units_stored_, unit_count_;
b101c41e 91
8dbbc7f0
JH
92 mutable std::mutex mutex_;
93 QString error_;
0fbda3c2
JH
94};
95
96} // pv
97
7a01bd36 98#endif // PULSEVIEW_PV_STORESESSION_HPP