annotate base/EventSeries.h @ 1632:0890c10e5129 single-point

Add some more handy methods
author Chris Cannam
date Tue, 12 Mar 2019 14:52:11 +0000
parents b2048f350906
children 6ac92836cd86
rev   line source
Chris@1612 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@1612 2
Chris@1612 3 /*
Chris@1612 4 Sonic Visualiser
Chris@1612 5 An audio file viewer and annotation editor.
Chris@1612 6 Centre for Digital Music, Queen Mary, University of London.
Chris@1612 7
Chris@1612 8 This program is free software; you can redistribute it and/or
Chris@1612 9 modify it under the terms of the GNU General Public License as
Chris@1612 10 published by the Free Software Foundation; either version 2 of the
Chris@1612 11 License, or (at your option) any later version. See the file
Chris@1612 12 COPYING included with this distribution for more information.
Chris@1612 13 */
Chris@1612 14
Chris@1615 15 #ifndef SV_EVENT_SERIES_H
Chris@1615 16 #define SV_EVENT_SERIES_H
Chris@1612 17
Chris@1615 18 #include "Event.h"
Chris@1631 19 #include "XmlExportable.h"
Chris@1612 20
Chris@1612 21 #include <set>
Chris@1612 22
Chris@1615 23 //#define DEBUG_EVENT_SERIES 1
Chris@1614 24
Chris@1615 25 /**
Chris@1615 26 * Container storing a series of events, with or without durations,
Chris@1616 27 * and supporting the ability to query which events are active at a
Chris@1616 28 * given frame or within a span of frames.
Chris@1616 29 *
Chris@1616 30 * To that end, in addition to the series of events, it stores a
Chris@1616 31 * series of "seams", which are frame positions at which the set of
Chris@1616 32 * simultaneous events changes (i.e. an event of non-zero duration
Chris@1616 33 * starts or ends) associated with a set of the events that are active
Chris@1616 34 * at or from that position. These are updated when an event is added
Chris@1616 35 * or removed.
Chris@1618 36 *
Chris@1632 37 * This class is highly optimised for inserting events in increasing
Chris@1632 38 * order of start frame. Inserting (or deleting) events in the middle
Chris@1632 39 * does work, and should be acceptable in interactive use, but it is
Chris@1632 40 * very slow in bulk.
Chris@1615 41 */
Chris@1631 42 class EventSeries : public XmlExportable
Chris@1612 43 {
Chris@1612 44 public:
Chris@1631 45 EventSeries() { }
Chris@1616 46 ~EventSeries() =default;
Chris@1616 47
Chris@1616 48 EventSeries(const EventSeries &) =default;
Chris@1616 49 EventSeries &operator=(const EventSeries &) =default;
Chris@1616 50 EventSeries &operator=(EventSeries &&) =default;
Chris@1616 51
Chris@1616 52 bool operator==(const EventSeries &other) const {
Chris@1616 53 return m_events == other.m_events;
Chris@1616 54 }
Chris@1612 55
Chris@1631 56 void clear();
Chris@1632 57 void add(const Event &e);
Chris@1632 58 void remove(const Event &e);
Chris@1632 59 bool contains(const Event &e) const;
Chris@1631 60 bool isEmpty() const;
Chris@1631 61 int count() const;
Chris@1612 62
Chris@1612 63 /**
Chris@1616 64 * Retrieve all events any part of which falls within the span in
Chris@1616 65 * frames defined by the given frame f and duration d.
Chris@1616 66 *
Chris@1616 67 * - An event without duration is within the span if its own frame
Chris@1616 68 * is greater than or equal to f and less than f + d.
Chris@1616 69 *
Chris@1616 70 * - An event with duration is within the span if its start frame
Chris@1616 71 * is less than f + d and its start frame plus its duration is
Chris@1616 72 * greater than f.
Chris@1616 73 *
Chris@1619 74 * Note: Passing a duration of zero is seldom useful here; you
Chris@1619 75 * probably want getEventsCovering instead. getEventsSpanning(f,
Chris@1619 76 * 0) is not equivalent to getEventsCovering(f). The latter
Chris@1619 77 * includes durationless events at f and events starting at f,
Chris@1619 78 * both of which are excluded from the former.
Chris@1616 79 */
Chris@1617 80 EventVector getEventsSpanning(sv_frame_t frame,
Chris@1631 81 sv_frame_t duration) const;
Chris@1616 82
Chris@1616 83 /**
Chris@1616 84 * Retrieve all events that cover the given frame. An event without
Chris@1616 85 * duration covers a frame if its own frame is equal to it. An event
Chris@1616 86 * with duration covers a frame if its start frame is less than or
Chris@1612 87 * equal to it and its end frame (start + duration) is greater
Chris@1612 88 * than it.
Chris@1612 89 */
Chris@1631 90 EventVector getEventsCovering(sv_frame_t frame) const;
Chris@1614 91
Chris@1631 92 /**
Chris@1632 93 * If e is in the series and is not the first event in it, set
Chris@1632 94 * preceding to the event immediate preceding it according to the
Chris@1632 95 * standard event ordering and return true. Otherwise leave
Chris@1632 96 * preceding unchanged and return false.
Chris@1632 97 *
Chris@1632 98 * If there are multiple events identical to e in the series,
Chris@1632 99 * assume that the event passed in is the first one (i.e. never
Chris@1632 100 * set preceding equal to e).
Chris@1632 101 */
Chris@1632 102 bool getEventPreceding(const Event &e, Event &preceding) const;
Chris@1632 103
Chris@1632 104 /**
Chris@1632 105 * If e is in the series and is not the final event in it, set
Chris@1632 106 * following to the event immediate following it according to the
Chris@1632 107 * standard event ordering and return true. Otherwise leave
Chris@1632 108 * following unchanged and return false.
Chris@1632 109 *
Chris@1632 110 * If there are multiple events identical to e in the series,
Chris@1632 111 * assume that the event passed in is the last one (i.e. never set
Chris@1632 112 * following equal to e).
Chris@1632 113 */
Chris@1632 114 bool getEventFollowing(const Event &e, Event &following) const;
Chris@1632 115
Chris@1632 116 /**
Chris@1632 117 * Return the event at the given numerical index in the series,
Chris@1632 118 * where 0 = the first event and count()-1 = the last.
Chris@1632 119 */
Chris@1632 120 Event getEventByIndex(int index) const;
Chris@1632 121
Chris@1632 122 /**
Chris@1631 123 * Emit to XML as a dataset element.
Chris@1631 124 */
Chris@1631 125 void toXml(QTextStream &out,
Chris@1631 126 QString indent,
Chris@1631 127 QString extraAttributes) const override;
Chris@1631 128
Chris@1612 129 private:
Chris@1616 130 /**
Chris@1631 131 * This vector contains all events in the series, in the normal
Chris@1631 132 * sort order. For backward compatibility we must support series
Chris@1631 133 * containing multiple instances of identical events, so
Chris@1631 134 * consecutive events in this vector will not always be distinct.
Chris@1631 135 * The vector is used in preference to a multiset or map<Event,
Chris@1631 136 * int> in order to allow indexing by "row number" as well as by
Chris@1631 137 * properties such as frame.
Chris@1631 138 *
Chris@1631 139 * Because events are immutable, we do not have to worry about the
Chris@1631 140 * order changing once an event is inserted - we only add or
Chris@1631 141 * delete them.
Chris@1616 142 */
Chris@1631 143 typedef std::vector<Event> Events;
Chris@1616 144 Events m_events;
Chris@1631 145
Chris@1616 146 /**
Chris@1616 147 * The FrameEventMap maps from frame number to a set of events. In
Chris@1616 148 * the seam map this is used to represent the events that are
Chris@1616 149 * active at that frame, either because they begin at that frame
Chris@1616 150 * or because they are continuing from an earlier frame. There is
Chris@1616 151 * an entry here for each frame at which an event starts or ends,
Chris@1616 152 * with the event appearing in all entries from its start time
Chris@1616 153 * onward and disappearing again at its end frame.
Chris@1616 154 *
Chris@1616 155 * Only events with duration appear in this map; point events
Chris@1627 156 * appear only in m_events. Note that unlike m_events, we only
Chris@1627 157 * store one instance of each event here, even if we hold many -
Chris@1627 158 * we refer back to m_events when we need to know how many
Chris@1627 159 * identical copies of a given event we have.
Chris@1616 160 */
Chris@1627 161 typedef std::map<sv_frame_t, std::vector<Event>> FrameEventMap;
Chris@1616 162 FrameEventMap m_seams;
Chris@1614 163
Chris@1614 164 /** Create a seam at the given frame, copying from the prior seam
Chris@1614 165 * if there is one. If a seam already exists at the given frame,
Chris@1614 166 * leave it untouched.
Chris@1614 167 */
Chris@1614 168 void createSeam(sv_frame_t frame) {
Chris@1625 169 auto itr = m_seams.lower_bound(frame);
Chris@1625 170 if (itr == m_seams.end() || itr->first > frame) {
Chris@1614 171 if (itr != m_seams.begin()) {
Chris@1614 172 --itr;
Chris@1614 173 }
Chris@1614 174 }
Chris@1614 175 if (itr == m_seams.end()) {
Chris@1614 176 m_seams[frame] = {};
Chris@1625 177 } else if (itr->first < frame) {
Chris@1625 178 m_seams[frame] = itr->second;
Chris@1625 179 } else if (itr->first > frame) { // itr must be begin()
Chris@1614 180 m_seams[frame] = {};
Chris@1614 181 }
Chris@1614 182 }
Chris@1614 183
Chris@1627 184 bool seamsEqual(const std::vector<Event> &s1,
Chris@1627 185 const std::vector<Event> &s2) const {
Chris@1627 186
Chris@1627 187 if (s1.size() != s2.size()) {
Chris@1627 188 return false;
Chris@1627 189 }
Chris@1627 190
Chris@1627 191 // precondition: no event appears more than once in s1 or more
Chris@1627 192 // than once in s2
Chris@1627 193
Chris@1627 194 #ifdef DEBUG_EVENT_SERIES
Chris@1627 195 for (int i = 0; in_range_for(s1, i); ++i) {
Chris@1627 196 for (int j = i + 1; in_range_for(s1, j); ++j) {
Chris@1627 197 if (s1[i] == s1[j] || s2[i] == s2[j]) {
Chris@1627 198 throw std::runtime_error
Chris@1627 199 ("debug error: duplicate event in s1 or s2");
Chris@1627 200 }
Chris@1627 201 }
Chris@1627 202 }
Chris@1627 203 #endif
Chris@1627 204
Chris@1627 205 std::set<Event> ee;
Chris@1627 206 for (const auto &e: s1) {
Chris@1627 207 ee.insert(e);
Chris@1627 208 }
Chris@1627 209 for (const auto &e: s2) {
Chris@1627 210 if (ee.find(e) == ee.end()) {
Chris@1627 211 return false;
Chris@1627 212 }
Chris@1627 213 }
Chris@1627 214 return true;
Chris@1627 215 }
Chris@1627 216
Chris@1615 217 #ifdef DEBUG_EVENT_SERIES
Chris@1615 218 void dumpEvents() const {
Chris@1618 219 std::cerr << "EVENTS (" << m_events.size() << ") [" << std::endl;
Chris@1616 220 for (const auto &i: m_events) {
Chris@1631 221 std::cerr << " " << i.toXmlString();
Chris@1614 222 }
Chris@1614 223 std::cerr << "]" << std::endl;
Chris@1614 224 }
Chris@1614 225
Chris@1614 226 void dumpSeams() const {
Chris@1618 227 std::cerr << "SEAMS (" << m_seams.size() << ") [" << std::endl;
Chris@1614 228 for (const auto &s: m_seams) {
Chris@1614 229 std::cerr << " " << s.first << " -> {" << std::endl;
Chris@1614 230 for (const auto &p: s.second) {
Chris@1614 231 std::cerr << p.toXmlString(" ");
Chris@1614 232 }
Chris@1614 233 std::cerr << " }" << std::endl;
Chris@1614 234 }
Chris@1614 235 std::cerr << "]" << std::endl;
Chris@1614 236 }
Chris@1614 237 #endif
Chris@1612 238 };
Chris@1612 239
Chris@1612 240 #endif