1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
/*
* This file is part of the PulseView project.
*
* Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* 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, see <http://www.gnu.org/licenses/>.
*/
#include <libsigrokdecode/libsigrokdecode.h>
#include <cassert>
#include <vector>
#include <pv/data/decode/annotation.hpp>
#include <pv/data/decode/decoder.hpp>
using std::vector;
namespace pv {
namespace data {
namespace decode {
Annotation::Annotation(const srd_proto_data *const pdata, const Row *row) :
start_sample_(pdata->start_sample),
end_sample_(pdata->end_sample),
row_(row)
{
assert(pdata);
const srd_proto_data_annotation *const pda =
(const srd_proto_data_annotation*)pdata->data;
assert(pda);
ann_class_id_ = (Class)(pda->ann_class);
annotations_ = new vector<QString>();
const char *const *annotations = (char**)pda->ann_text;
while (*annotations) {
annotations_->push_back(QString::fromUtf8(*annotations));
annotations++;
}
annotations_->shrink_to_fit();
}
Annotation::Annotation(Annotation&& a) :
start_sample_(a.start_sample_),
end_sample_(a.end_sample_),
annotations_(a.annotations_),
row_(a.row_),
ann_class_id_(a.ann_class_id_)
{
a.annotations_ = nullptr;
}
Annotation& Annotation::operator=(Annotation&& a)
{
if (&a != this) {
if (annotations_)
delete annotations_;
start_sample_ = a.start_sample_;
end_sample_ = a.end_sample_;
annotations_ = a.annotations_;
row_ = a.row_;
ann_class_id_ = a.ann_class_id_;
a.annotations_ = nullptr;
}
return *this;
}
Annotation::~Annotation()
{
if (annotations_)
delete annotations_;
}
uint64_t Annotation::start_sample() const
{
return start_sample_;
}
uint64_t Annotation::end_sample() const
{
return end_sample_;
}
Annotation::Class Annotation::ann_class_id() const
{
return ann_class_id_;
}
const QString Annotation::ann_class_name() const
{
const AnnotationClass* ann_class =
row_->decoder()->get_ann_class_by_id(ann_class_id_);
return QString(ann_class->name);
}
const vector<QString>* Annotation::annotations() const
{
return annotations_;
}
const Row* Annotation::row() const
{
return row_;
}
bool Annotation::operator<(const Annotation &other) const
{
return (start_sample_ < other.start_sample_);
}
} // namespace decode
} // namespace data
} // namespace pv
|