annotate data/model/NoteModel.h @ 1804:343ef2a866a4

Implement missing TabularModel editing methods. Also made these pure in TabularModel, since almost all subclasses want them and (clearly) forgetting to implement them is a problem!
author Chris Cannam
date Mon, 14 Oct 2019 14:17:37 +0100
parents 13bd41bd8a17
children ee3b248bda25
rev   line source
Chris@147 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@147 2
Chris@147 3 /*
Chris@147 4 Sonic Visualiser
Chris@147 5 An audio file viewer and annotation editor.
Chris@147 6 Centre for Digital Music, Queen Mary, University of London.
Chris@147 7
Chris@147 8 This program is free software; you can redistribute it and/or
Chris@147 9 modify it under the terms of the GNU General Public License as
Chris@147 10 published by the Free Software Foundation; either version 2 of the
Chris@147 11 License, or (at your option) any later version. See the file
Chris@147 12 COPYING included with this distribution for more information.
Chris@147 13 */
Chris@147 14
Chris@1495 15 #ifndef SV_NOTE_MODEL_H
Chris@1495 16 #define SV_NOTE_MODEL_H
Chris@147 17
Chris@1643 18 #include "Model.h"
Chris@1643 19 #include "TabularModel.h"
Chris@1648 20 #include "EventCommands.h"
Chris@1651 21 #include "DeferredNotifier.h"
Chris@1643 22 #include "base/UnitDatabase.h"
Chris@1643 23 #include "base/EventSeries.h"
Chris@1615 24 #include "base/NoteData.h"
Chris@1643 25 #include "base/NoteExportable.h"
Chris@391 26 #include "base/RealTime.h"
Chris@150 27 #include "base/PlayParameterRepository.h"
Chris@852 28 #include "base/Pitch.h"
Chris@1643 29 #include "system/System.h"
Chris@147 30
Chris@1643 31 #include <QMutexLocker>
Chris@441 32
Chris@1643 33 class NoteModel : public Model,
Chris@1643 34 public TabularModel,
Chris@1648 35 public NoteExportable,
Chris@1648 36 public EventEditable
Chris@147 37 {
Chris@423 38 Q_OBJECT
Chris@423 39
Chris@147 40 public:
Chris@1647 41 enum Subtype {
Chris@1647 42 NORMAL_NOTE,
Chris@1647 43 FLEXI_NOTE
Chris@1647 44 };
Chris@1647 45
Chris@1644 46 NoteModel(sv_samplerate_t sampleRate,
Chris@1644 47 int resolution,
Chris@1647 48 bool notifyOnAdd = true,
Chris@1647 49 Subtype subtype = NORMAL_NOTE) :
Chris@1647 50 m_subtype(subtype),
Chris@1643 51 m_sampleRate(sampleRate),
Chris@1643 52 m_resolution(resolution),
Chris@1643 53 m_valueMinimum(0.f),
Chris@1643 54 m_valueMaximum(0.f),
Chris@1643 55 m_haveExtents(false),
Chris@1643 56 m_valueQuantization(0),
Chris@1643 57 m_units(""),
Chris@1651 58 m_notifier(this,
Chris@1752 59 getId(),
Chris@1651 60 notifyOnAdd ?
Chris@1651 61 DeferredNotifier::NOTIFY_ALWAYS :
Chris@1651 62 DeferredNotifier::NOTIFY_DEFERRED),
Chris@1655 63 m_completion(100) {
Chris@1647 64 if (subtype == FLEXI_NOTE) {
Chris@1647 65 m_valueMinimum = 33.f;
Chris@1647 66 m_valueMaximum = 88.f;
Chris@1647 67 }
Chris@1751 68 PlayParameterRepository::getInstance()->addPlayable
Chris@1751 69 (getId().untyped, this);
Chris@256 70 }
Chris@256 71
Chris@1040 72 NoteModel(sv_samplerate_t sampleRate, int resolution,
Chris@1429 73 float valueMinimum, float valueMaximum,
Chris@1647 74 bool notifyOnAdd = true,
Chris@1647 75 Subtype subtype = NORMAL_NOTE) :
Chris@1647 76 m_subtype(subtype),
Chris@1643 77 m_sampleRate(sampleRate),
Chris@1643 78 m_resolution(resolution),
Chris@1643 79 m_valueMinimum(valueMinimum),
Chris@1643 80 m_valueMaximum(valueMaximum),
Chris@1643 81 m_haveExtents(true),
Chris@1643 82 m_valueQuantization(0),
Chris@1643 83 m_units(""),
Chris@1651 84 m_notifier(this,
Chris@1752 85 getId(),
Chris@1651 86 notifyOnAdd ?
Chris@1651 87 DeferredNotifier::NOTIFY_ALWAYS :
Chris@1651 88 DeferredNotifier::NOTIFY_DEFERRED),
Chris@1655 89 m_completion(100) {
Chris@1751 90 PlayParameterRepository::getInstance()->addPlayable
Chris@1751 91 (getId().untyped, this);
Chris@391 92 }
Chris@391 93
Chris@1643 94 virtual ~NoteModel() {
Chris@1751 95 PlayParameterRepository::getInstance()->removePlayable
Chris@1751 96 (getId().untyped);
Chris@147 97 }
Chris@1647 98
Chris@1643 99 QString getTypeName() const override { return tr("Note"); }
Chris@1647 100 Subtype getSubtype() const { return m_subtype; }
Chris@1692 101 bool isSparse() const override { return true; }
Chris@1659 102 bool isOK() const override { return true; }
Chris@1659 103
Chris@1659 104 sv_frame_t getStartFrame() const override {
Chris@1798 105 QMutexLocker locker(&m_mutex);
Chris@1659 106 return m_events.getStartFrame();
Chris@1659 107 }
Chris@1725 108 sv_frame_t getTrueEndFrame() const override {
Chris@1798 109 QMutexLocker locker(&m_mutex);
Chris@1659 110 if (m_events.isEmpty()) return 0;
Chris@1659 111 sv_frame_t e = m_events.getEndFrame();
Chris@1659 112 if (e % m_resolution == 0) return e;
Chris@1659 113 else return (e / m_resolution + 1) * m_resolution;
Chris@1659 114 }
Chris@1643 115
Chris@1643 116 sv_samplerate_t getSampleRate() const override { return m_sampleRate; }
Chris@1644 117 int getResolution() const { return m_resolution; }
Chris@1643 118
Chris@1643 119 bool canPlay() const override { return true; }
Chris@1643 120 QString getDefaultPlayClipId() const override {
Chris@1643 121 return "elecpiano";
Chris@1643 122 }
Chris@1643 123
Chris@1798 124 QString getScaleUnits() const {
Chris@1798 125 QMutexLocker locker(&m_mutex);
Chris@1798 126 return m_units;
Chris@1798 127 }
Chris@1643 128 void setScaleUnits(QString units) {
Chris@1798 129 QMutexLocker locker(&m_mutex);
Chris@1643 130 m_units = units;
Chris@1643 131 UnitDatabase::getInstance()->registerUnit(units);
Chris@1643 132 }
Chris@147 133
Chris@147 134 float getValueQuantization() const { return m_valueQuantization; }
Chris@147 135 void setValueQuantization(float q) { m_valueQuantization = q; }
Chris@147 136
Chris@1643 137 float getValueMinimum() const { return m_valueMinimum; }
Chris@1643 138 float getValueMaximum() const { return m_valueMaximum; }
Chris@1643 139
Chris@1671 140 int getCompletion() const override { return m_completion; }
Chris@345 141
Chris@1643 142 void setCompletion(int completion, bool update = true) {
Chris@391 143
Chris@1798 144 {
Chris@1651 145 if (m_completion == completion) return;
Chris@1651 146 m_completion = completion;
Chris@1643 147 }
Chris@1643 148
Chris@1651 149 if (update) {
Chris@1651 150 m_notifier.makeDeferredNotifications();
Chris@1643 151 }
Chris@1651 152
Chris@1752 153 emit completionChanged(getId());
Chris@1651 154
Chris@1651 155 if (completion == 100) {
Chris@1651 156 // henceforth:
Chris@1651 157 m_notifier.switchMode(DeferredNotifier::NOTIFY_ALWAYS);
Chris@1752 158 emit modelChanged(getId());
Chris@1643 159 }
Chris@391 160 }
Chris@1644 161
Chris@1644 162 /**
Chris@1644 163 * Query methods.
Chris@1644 164 */
Chris@1644 165
Chris@1644 166 int getEventCount() const {
Chris@1644 167 return m_events.count();
Chris@1644 168 }
Chris@1644 169 bool isEmpty() const {
Chris@1644 170 return m_events.isEmpty();
Chris@1644 171 }
Chris@1644 172 bool containsEvent(const Event &e) const {
Chris@1644 173 return m_events.contains(e);
Chris@1644 174 }
Chris@1644 175 EventVector getAllEvents() const {
Chris@1644 176 return m_events.getAllEvents();
Chris@1644 177 }
Chris@1644 178 EventVector getEventsSpanning(sv_frame_t f, sv_frame_t duration) const {
Chris@1644 179 return m_events.getEventsSpanning(f, duration);
Chris@1644 180 }
Chris@1656 181 EventVector getEventsCovering(sv_frame_t f) const {
Chris@1656 182 return m_events.getEventsCovering(f);
Chris@1656 183 }
Chris@1644 184 EventVector getEventsWithin(sv_frame_t f, sv_frame_t duration) const {
Chris@1644 185 return m_events.getEventsWithin(f, duration);
Chris@1644 186 }
Chris@1644 187 EventVector getEventsStartingWithin(sv_frame_t f, sv_frame_t duration) const {
Chris@1644 188 return m_events.getEventsStartingWithin(f, duration);
Chris@1644 189 }
Chris@1656 190 EventVector getEventsStartingAt(sv_frame_t f) const {
Chris@1656 191 return m_events.getEventsStartingAt(f);
Chris@1644 192 }
Chris@1657 193 bool getNearestEventMatching(sv_frame_t startSearchAt,
Chris@1657 194 std::function<bool(Event)> predicate,
Chris@1657 195 EventSeries::Direction direction,
Chris@1657 196 Event &found) const {
Chris@1657 197 return m_events.getNearestEventMatching
Chris@1657 198 (startSearchAt, predicate, direction, found);
Chris@1657 199 }
Chris@1644 200
Chris@1644 201 /**
Chris@1648 202 * Editing methods.
Chris@1644 203 */
Chris@1648 204 void add(Event e) override {
Chris@1644 205
Chris@1644 206 bool allChange = false;
Chris@1644 207
Chris@1798 208 m_events.add(e);
Chris@1798 209 float v = e.getValue();
Chris@1798 210 if (!ISNAN(v) && !ISINF(v)) {
Chris@1798 211 if (!m_haveExtents || v < m_valueMinimum) {
Chris@1798 212 m_valueMinimum = v; allChange = true;
Chris@1644 213 }
Chris@1798 214 if (!m_haveExtents || v > m_valueMaximum) {
Chris@1798 215 m_valueMaximum = v; allChange = true;
Chris@1798 216 }
Chris@1798 217 m_haveExtents = true;
Chris@1644 218 }
Chris@1644 219
Chris@1651 220 m_notifier.update(e.getFrame(), e.getDuration() + m_resolution);
Chris@1651 221
Chris@1644 222 if (allChange) {
Chris@1752 223 emit modelChanged(getId());
Chris@1644 224 }
Chris@1644 225 }
Chris@1644 226
Chris@1648 227 void remove(Event e) override {
Chris@1798 228 m_events.remove(e);
Chris@1752 229 emit modelChangedWithin(getId(),
Chris@1752 230 e.getFrame(),
Chris@1644 231 e.getFrame() + e.getDuration() + m_resolution);
Chris@147 232 }
Chris@147 233
Chris@424 234 /**
Chris@424 235 * TabularModel methods.
Chris@424 236 */
Chris@1643 237
Chris@1643 238 int getRowCount() const override {
Chris@1643 239 return m_events.count();
Chris@1643 240 }
Chris@424 241
Chris@1643 242 int getColumnCount() const override {
Chris@424 243 return 6;
Chris@424 244 }
Chris@424 245
Chris@1643 246 bool isColumnTimeValue(int column) const override {
Chris@1643 247 // NB duration is not a "time value" -- that's for columns
Chris@1643 248 // whose sort ordering is exactly that of the frame time
Chris@1643 249 return (column < 2);
Chris@1643 250 }
Chris@1643 251
Chris@1643 252 sv_frame_t getFrameForRow(int row) const override {
Chris@1643 253 if (row < 0 || row >= m_events.count()) {
Chris@1643 254 return 0;
Chris@1643 255 }
Chris@1643 256 Event e = m_events.getEventByIndex(row);
Chris@1643 257 return e.getFrame();
Chris@1643 258 }
Chris@1643 259
Chris@1643 260 int getRowForFrame(sv_frame_t frame) const override {
Chris@1643 261 return m_events.getIndexForEvent(Event(frame));
Chris@1643 262 }
Chris@1643 263
Chris@1643 264 QString getHeading(int column) const override {
Chris@424 265 switch (column) {
Chris@424 266 case 0: return tr("Time");
Chris@424 267 case 1: return tr("Frame");
Chris@424 268 case 2: return tr("Pitch");
Chris@424 269 case 3: return tr("Duration");
Chris@424 270 case 4: return tr("Level");
Chris@424 271 case 5: return tr("Label");
Chris@424 272 default: return tr("Unknown");
Chris@424 273 }
Chris@424 274 }
Chris@424 275
Chris@1643 276 QVariant getData(int row, int column, int role) const override {
Chris@1643 277
Chris@1643 278 if (row < 0 || row >= m_events.count()) {
Chris@1643 279 return QVariant();
Chris@425 280 }
Chris@425 281
Chris@1643 282 Event e = m_events.getEventByIndex(row);
Chris@424 283
Chris@424 284 switch (column) {
Chris@1643 285 case 0: return adaptFrameForRole(e.getFrame(), getSampleRate(), role);
Chris@1643 286 case 1: return int(e.getFrame());
Chris@1643 287 case 2: return adaptValueForRole(e.getValue(), getScaleUnits(), role);
Chris@1643 288 case 3: return int(e.getDuration());
Chris@1643 289 case 4: return e.getLevel();
Chris@1643 290 case 5: return e.getLabel();
Chris@424 291 default: return QVariant();
Chris@424 292 }
Chris@424 293 }
Chris@424 294
Chris@1649 295 Command *getSetDataCommand(int row, int column, const QVariant &value, int role) override {
Chris@1649 296
Chris@1643 297 if (row < 0 || row >= m_events.count()) return nullptr;
Chris@1643 298 if (role != Qt::EditRole) return nullptr;
Chris@1643 299
Chris@1643 300 Event e0 = m_events.getEventByIndex(row);
Chris@1643 301 Event e1;
Chris@1643 302
Chris@1643 303 switch (column) {
Chris@1643 304 case 0: e1 = e0.withFrame(sv_frame_t(round(value.toDouble() *
Chris@1643 305 getSampleRate()))); break;
Chris@1643 306 case 1: e1 = e0.withFrame(value.toInt()); break;
Chris@1643 307 case 2: e1 = e0.withValue(float(value.toDouble())); break;
Chris@1643 308 case 3: e1 = e0.withDuration(value.toInt()); break;
Chris@1643 309 case 4: e1 = e0.withLevel(float(value.toDouble())); break;
Chris@1643 310 case 5: e1 = e0.withLabel(value.toString()); break;
Chris@425 311 }
Chris@425 312
Chris@1742 313 auto command = new ChangeEventsCommand(getId().untyped, tr("Edit Data"));
Chris@1644 314 command->remove(e0);
Chris@1644 315 command->add(e1);
Chris@1644 316 return command->finish();
Chris@424 317 }
Chris@424 318
Chris@1580 319 SortType getSortType(int column) const override
Chris@424 320 {
Chris@424 321 if (column == 5) return SortAlphabetical;
Chris@424 322 return SortNumeric;
Chris@424 323 }
Chris@424 324
Chris@1804 325 bool isEditable() const override { return true; }
Chris@1804 326
Chris@1804 327 Command *getInsertRowCommand(int row) override {
Chris@1804 328 if (row < 0 || row >= m_events.count()) return nullptr;
Chris@1804 329 auto command = new ChangeEventsCommand(getId().untyped,
Chris@1804 330 tr("Add Note"));
Chris@1804 331 Event e = m_events.getEventByIndex(row);
Chris@1804 332 command->add(e);
Chris@1804 333 return command->finish();
Chris@1804 334 }
Chris@1804 335
Chris@1804 336 Command *getRemoveRowCommand(int row) override {
Chris@1804 337 if (row < 0 || row >= m_events.count()) return nullptr;
Chris@1804 338 auto command = new ChangeEventsCommand(getId().untyped,
Chris@1804 339 tr("Delete Note"));
Chris@1804 340 Event e = m_events.getEventByIndex(row);
Chris@1804 341 command->remove(e);
Chris@1804 342 return command->finish();
Chris@1804 343 }
Chris@1804 344
Chris@852 345 /**
Chris@852 346 * NoteExportable methods.
Chris@852 347 */
Chris@852 348
Chris@1580 349 NoteList getNotes() const override {
Chris@1643 350 return getNotesStartingWithin(getStartFrame(),
Chris@1643 351 getEndFrame() - getStartFrame());
Chris@852 352 }
Chris@852 353
Chris@1643 354 NoteList getNotesActiveAt(sv_frame_t frame) const override {
Chris@1643 355
Chris@852 356 NoteList notes;
Chris@1643 357 EventVector ee = m_events.getEventsCovering(frame);
Chris@1643 358 for (const auto &e: ee) {
Chris@1643 359 notes.push_back(e.toNoteData(getSampleRate(),
Chris@1643 360 getScaleUnits() != "Hz"));
Chris@1643 361 }
Chris@1643 362 return notes;
Chris@1643 363 }
Chris@1643 364
Chris@1643 365 NoteList getNotesStartingWithin(sv_frame_t startFrame,
Chris@1643 366 sv_frame_t duration) const override {
Chris@852 367
Chris@1643 368 NoteList notes;
Chris@1643 369 EventVector ee = m_events.getEventsStartingWithin(startFrame, duration);
Chris@1643 370 for (const auto &e: ee) {
Chris@1643 371 notes.push_back(e.toNoteData(getSampleRate(),
Chris@1643 372 getScaleUnits() != "Hz"));
Chris@852 373 }
Chris@852 374 return notes;
Chris@852 375 }
Chris@852 376
Chris@1644 377 /**
Chris@1644 378 * XmlExportable methods.
Chris@1644 379 */
Chris@1644 380
Chris@1644 381 void toXml(QTextStream &out,
Chris@1644 382 QString indent = "",
Chris@1644 383 QString extraAttributes = "") const override {
Chris@1644 384
Chris@1644 385 //!!! what is valueQuantization used for?
Chris@1644 386
Chris@1644 387 Model::toXml
Chris@1644 388 (out,
Chris@1644 389 indent,
Chris@1644 390 QString("type=\"sparse\" dimensions=\"3\" resolution=\"%1\" "
Chris@1647 391 "notifyOnAdd=\"%2\" dataset=\"%3\" subtype=\"%4\" "
Chris@1647 392 "valueQuantization=\"%5\" minimum=\"%6\" maximum=\"%7\" "
Chris@1647 393 "units=\"%8\" %9")
Chris@1644 394 .arg(m_resolution)
Chris@1651 395 .arg("true") // always true after model reaches 100% -
Chris@1651 396 // subsequent events are always notified
Chris@1677 397 .arg(m_events.getExportId())
Chris@1647 398 .arg(m_subtype == FLEXI_NOTE ? "flexinote" : "note")
Chris@1644 399 .arg(m_valueQuantization)
Chris@1644 400 .arg(m_valueMinimum)
Chris@1644 401 .arg(m_valueMaximum)
Chris@1651 402 .arg(encodeEntities(m_units))
Chris@1644 403 .arg(extraAttributes));
Chris@1647 404
Chris@1644 405 m_events.toXml(out, indent, QString("dimensions=\"3\""));
Chris@1644 406 }
Chris@1644 407
Chris@1679 408 QString toDelimitedDataString(QString delimiter,
Chris@1679 409 DataExportOptions options,
Chris@1679 410 sv_frame_t startFrame,
Chris@1679 411 sv_frame_t duration) const override {
Chris@1679 412 return m_events.toDelimitedDataString
Chris@1679 413 (delimiter,
Chris@1679 414 options,
Chris@1679 415 startFrame,
Chris@1679 416 duration,
Chris@1679 417 m_sampleRate,
Chris@1679 418 m_resolution,
Chris@1679 419 Event().withValue(0.f).withDuration(0.f).withLevel(0.f));
Chris@1679 420 }
Chris@1679 421
Chris@147 422 protected:
Chris@1647 423 Subtype m_subtype;
Chris@1643 424 sv_samplerate_t m_sampleRate;
Chris@1643 425 int m_resolution;
Chris@1643 426
Chris@1798 427 std::atomic<float> m_valueMinimum;
Chris@1798 428 std::atomic<float> m_valueMaximum;
Chris@1798 429 std::atomic<bool> m_haveExtents;
Chris@147 430 float m_valueQuantization;
Chris@1643 431 QString m_units;
Chris@1651 432 DeferredNotifier m_notifier;
Chris@1798 433 std::atomic<int> m_completion;
Chris@1643 434
Chris@1643 435 EventSeries m_events;
Chris@147 436 };
Chris@147 437
Chris@147 438 #endif