]> sigrok.org Git - pulseview.git/blobdiff - pv/data/logic.cpp
Fix random clazy warnings
[pulseview.git] / pv / data / logic.cpp
index c62a2f2e3ad693833b1a55dbac3977d72c62deb5..516060a0aec9013c139f8597dc0bf9bfd70de6aa 100644 (file)
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "logic.h"
-#include "logicsnapshot.h"
+#include <cassert>
 
-using namespace boost;
-using namespace std;
+#include "logic.hpp"
+#include "logicsegment.hpp"
+
+using std::deque;
+using std::max;
+using std::shared_ptr;
+using std::vector;
 
 namespace pv {
 namespace data {
 
-Logic::Logic(unsigned int num_probes) :
+Logic::Logic(unsigned int num_channels) :
        SignalData(),
-       _num_probes(num_probes)
+       num_channels_(num_channels)
+{
+       assert(num_channels_ > 0);
+}
+
+unsigned int Logic::num_channels() const
+{
+       return num_channels_;
+}
+
+void Logic::push_segment(shared_ptr<LogicSegment> &segment)
+{
+       segments_.push_back(segment);
+}
+
+const deque< shared_ptr<LogicSegment> >& Logic::logic_segments() const
 {
-       assert(_num_probes > 0);
+       return segments_;
 }
 
-int Logic::get_num_probes() const
+vector< shared_ptr<Segment> > Logic::segments() const
 {
-       return _num_probes;
+       return vector< shared_ptr<Segment> >(segments_.begin(), segments_.end());
 }
 
-void Logic::push_snapshot(
-       shared_ptr<LogicSnapshot> &snapshot)
+uint32_t Logic::get_segment_count() const
 {
-       _snapshots.push_front(snapshot);
+       return (uint32_t)segments_.size();
+}
+
+void Logic::clear()
+{
+       segments_.clear();
+
+       samples_cleared();
+}
+
+double Logic::get_samplerate() const
+{
+       if (segments_.empty())
+               return 1.0;
+
+       return segments_.front()->samplerate();
 }
 
-deque< shared_ptr<LogicSnapshot> >& Logic::get_snapshots()
+uint64_t Logic::max_sample_count() const
 {
-       return _snapshots;
+       uint64_t l = 0;
+       for (const shared_ptr<LogicSegment>& s : segments_) {
+               assert(s);
+               l = max(l, s->get_sample_count());
+       }
+       return l;
 }
 
-void Logic::clear_snapshots()
+void Logic::notify_samples_added(QObject* segment, uint64_t start_sample,
+       uint64_t end_sample)
 {
-       _snapshots.clear();
+       samples_added(segment, start_sample, end_sample);
 }
 
 } // namespace data