]> sigrok.org Git - pulseview.git/blame - pv/data/analog.hpp
Fix #1629 by not reallocating DecodeSegments
[pulseview.git] / pv / data / analog.hpp
CommitLineData
aba1dd16
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
aba1dd16
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_DATA_ANALOG_HPP
21#define PULSEVIEW_PV_DATA_ANALOG_HPP
aba1dd16 22
2acdb232 23#include "signaldata.hpp"
aba1dd16 24
aba1dd16 25#include <deque>
f9abf97e 26#include <memory>
aba1dd16 27
7db61e77 28#include <QObject>
2c5b0f46 29#include "pv/data/segment.hpp"
7db61e77 30
6f925ba9
UH
31using std::deque;
32using std::shared_ptr;
33using std::vector;
34
aba1dd16 35namespace pv {
1b1ec774 36namespace data {
aba1dd16 37
f3d66e52 38class AnalogSegment;
aba1dd16 39
8ce8ebb9 40class Analog : public SignalData
aba1dd16 41{
7db61e77
SA
42 Q_OBJECT
43
aba1dd16 44public:
b087ba7f 45 Analog();
aba1dd16 46
6f925ba9 47 void push_segment(shared_ptr<AnalogSegment> &segment);
aba1dd16 48
6f925ba9 49 const deque< shared_ptr<AnalogSegment> >& analog_segments() const;
aba1dd16 50
6f925ba9 51 vector< shared_ptr<Segment> > segments() const;
99503171 52
9009d9b5 53 uint32_t get_segment_count() const;
7f965464 54
caabb84c 55 void clear();
b087ba7f 56
464f05d5
SA
57 void set_samplerate(double value);
58
eeceee99
SA
59 double get_samplerate() const;
60
e45b13b5 61 uint64_t max_sample_count() const;
a007f5ad 62
1f3033cb 63 void notify_samples_added(shared_ptr<Segment> segment, uint64_t start_sample,
7db61e77
SA
64 uint64_t end_sample);
65
8e15445c
SA
66 void notify_min_max_changed(float min, float max);
67
7db61e77
SA
68Q_SIGNALS:
69 void samples_cleared();
70
2c5b0f46 71 void samples_added(SharedPtrToSegment segment, uint64_t start_sample,
7db61e77
SA
72 uint64_t end_sample);
73
8e15445c
SA
74 void min_max_changed(float min, float max);
75
bee54d9e
SA
76 void segment_completed();
77
78private Q_SLOTS:
79 void on_segment_completed();
80
aba1dd16 81private:
464f05d5 82 double samplerate_;
6f925ba9 83 deque< shared_ptr<AnalogSegment> > segments_;
aba1dd16
JH
84};
85
1b1ec774 86} // namespace data
aba1dd16
JH
87} // namespace pv
88
7a01bd36 89#endif // PULSEVIEW_PV_DATA_ANALOG_HPP