]> sigrok.org Git - pulseview.git/blame - pv/data/mathsignal.hpp
Session: Fix issue #67 by improving error handling
[pulseview.git] / pv / data / mathsignal.hpp
CommitLineData
b0773a8a
SA
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2020 Soeren Apel <soeren@apelpie.net>
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, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_DATA_MATHSIGNAL_HPP
21#define PULSEVIEW_PV_DATA_MATHSIGNAL_HPP
22
2823de2c
SA
23#define exprtk_disable_rtl_io_file /* Potential security issue, doubt anyone would use those anyway */
24#define exprtk_disable_rtl_vecops /* Vector ops are rather useless for math channels */
25#define exprtk_disable_caseinsensitivity /* So that we can have both 't' and 'T' */
26
3f1f6295
SA
27#include <limits>
28
b0773a8a
SA
29#include <QString>
30
4640a84e
SA
31#include <pv/exprtk.hpp>
32#include <pv/util.hpp>
b0773a8a
SA
33#include <pv/data/analog.hpp>
34#include <pv/data/signalbase.hpp>
b0773a8a 35
4640a84e
SA
36using std::atomic;
37using std::condition_variable;
38using std::mutex;
3f1f6295 39using std::numeric_limits;
b0773a8a
SA
40using std::shared_ptr;
41
42namespace pv {
43class Session;
44
45namespace data {
46
47class SignalBase;
b0773a8a 48
3f1f6295 49template<typename T>
36e62b17 50struct fnc_sample;
3f1f6295
SA
51
52struct signal_data {
53 signal_data(const shared_ptr<SignalBase> _sb) :
54 sb(_sb), sample_num(numeric_limits<uint64_t>::max()), sample_value(0), ref(nullptr)
55 {}
56
57 const shared_ptr<SignalBase> sb;
58 uint64_t sample_num;
59 double sample_value;
60 double* ref;
61};
62
b0773a8a
SA
63class MathSignal : public SignalBase
64{
65 Q_OBJECT
4640a84e 66 Q_PROPERTY(QString expression READ get_expression WRITE set_expression NOTIFY expression_changed)
b0773a8a
SA
67
68private:
69 static const int64_t ChunkLength;
70
71public:
72 MathSignal(pv::Session &session);
73 virtual ~MathSignal();
74
75 virtual void save_settings(QSettings &settings) const;
76 virtual void restore_settings(QSettings &settings);
77
4640a84e
SA
78 QString get_expression() const;
79 void set_expression(QString expression);
80
81private:
66b6f41b 82 void set_error(uint8_t type, QString msg);
4640a84e
SA
83
84 /**
85 * Returns the number of samples that can be worked on,
86 * i.e. the number of samples where samples are available
87 * for all connected channels.
88 * If the math signal uses no input channels, this is the
89 * number of samples in the session.
90 */
91 uint64_t get_working_sample_count(uint32_t segment_id) const;
92
144e72c9 93 void update_completeness(uint32_t segment_id, uint64_t output_sample_count);
bee54d9e 94
4640a84e 95 void reset_generation();
79c0e045 96 virtual void begin_generation();
4640a84e 97
2823de2c 98 uint64_t generate_samples(uint32_t segment_id, const uint64_t start_sample,
4640a84e
SA
99 const int64_t sample_count);
100 void generation_proc();
101
3f1f6295
SA
102 signal_data* signal_from_name(const std::string& name);
103 void update_signal_sample(signal_data* sig_data, uint32_t segment_id, uint64_t sample_num);
104
66b6f41b
SA
105 bool all_input_signals_enabled(QString &disabled_signals) const;
106
b0773a8a 107Q_SIGNALS:
4640a84e 108 void expression_changed(QString expression);
b0773a8a 109
4640a84e
SA
110private Q_SLOTS:
111 void on_capture_state_changed(int state);
112 void on_data_received();
b0773a8a 113
66b6f41b
SA
114 void on_enabled_changed();
115
b0773a8a
SA
116private:
117 pv::Session &session_;
118
4640a84e
SA
119 uint64_t custom_sample_rate_;
120 uint64_t custom_sample_count_;
121 bool use_custom_sample_rate_, use_custom_sample_count_;
2823de2c 122 uint64_t generation_chunk_size_;
3f1f6295 123 map<std::string, signal_data> input_signals_;
4640a84e 124
f6a93932 125 QString expression_;
4640a84e 126
66b6f41b
SA
127 uint8_t error_type_;
128
4640a84e
SA
129 mutable mutex input_mutex_;
130 mutable condition_variable gen_input_cond_;
131
132 std::thread gen_thread_;
133 atomic<bool> gen_interrupt_;
134
3f1f6295 135 exprtk::symbol_table<double> *exprtk_unknown_symbol_table_, *exprtk_symbol_table_;
4640a84e
SA
136 exprtk::expression<double> *exprtk_expression_;
137 exprtk::parser<double> *exprtk_parser_;
138 double exprtk_current_time_, exprtk_current_sample_;
3f1f6295 139
36e62b17 140 fnc_sample<double>* fnc_sample_;
3f1f6295
SA
141
142 // Give sig_sample access to the private helper functions
36e62b17 143 friend struct fnc_sample<double>;
b0773a8a
SA
144};
145
146} // namespace data
147} // namespace pv
148
149#endif // PULSEVIEW_PV_DATA_MATHSIGNAL_HPP