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 This file copyright 2006 Chris Cannam.
|
Chris@147
|
8
|
Chris@147
|
9 This program is free software; you can redistribute it and/or
|
Chris@147
|
10 modify it under the terms of the GNU General Public License as
|
Chris@147
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@147
|
12 License, or (at your option) any later version. See the file
|
Chris@147
|
13 COPYING included with this distribution for more information.
|
Chris@147
|
14 */
|
Chris@147
|
15
|
Chris@147
|
16 #ifndef _SPARSE_MODEL_H_
|
Chris@147
|
17 #define _SPARSE_MODEL_H_
|
Chris@147
|
18
|
Chris@150
|
19 #include "Model.h"
|
Chris@147
|
20 #include "base/Command.h"
|
Chris@147
|
21 #include "base/CommandHistory.h"
|
Chris@147
|
22
|
Chris@147
|
23 #include <iostream>
|
Chris@147
|
24
|
Chris@147
|
25 #include <set>
|
Chris@147
|
26 #include <QMutex>
|
Chris@147
|
27 #include <QTextStream>
|
Chris@147
|
28
|
Chris@147
|
29
|
Chris@147
|
30 /**
|
Chris@147
|
31 * Model containing sparse data (points with some properties). The
|
Chris@147
|
32 * properties depend on the point type.
|
Chris@147
|
33 */
|
Chris@147
|
34
|
Chris@147
|
35 template <typename PointType>
|
Chris@147
|
36 class SparseModel : public Model
|
Chris@147
|
37 {
|
Chris@247
|
38 Q_OBJECT
|
Chris@247
|
39
|
Chris@147
|
40 public:
|
Chris@147
|
41 SparseModel(size_t sampleRate, size_t resolution,
|
Chris@147
|
42 bool notifyOnAdd = true);
|
Chris@147
|
43 virtual ~SparseModel() { }
|
Chris@147
|
44
|
Chris@147
|
45 virtual bool isOK() const { return true; }
|
Chris@147
|
46 virtual size_t getStartFrame() const;
|
Chris@147
|
47 virtual size_t getEndFrame() const;
|
Chris@147
|
48 virtual size_t getSampleRate() const { return m_sampleRate; }
|
Chris@147
|
49
|
Chris@147
|
50 virtual Model *clone() const;
|
Chris@147
|
51
|
Chris@147
|
52 // Number of frames of the underlying sample rate that this model
|
Chris@147
|
53 // is capable of resolving to. For example, if m_resolution == 10
|
Chris@147
|
54 // then every point in this model will be at a multiple of 10
|
Chris@147
|
55 // sample frames and should be considered to cover a window ending
|
Chris@147
|
56 // 10 sample frames later.
|
Chris@147
|
57 virtual size_t getResolution() const {
|
Chris@147
|
58 return m_resolution ? m_resolution : 1;
|
Chris@147
|
59 }
|
Chris@147
|
60 virtual void setResolution(size_t resolution);
|
Chris@147
|
61
|
Chris@147
|
62 typedef PointType Point;
|
Chris@147
|
63 typedef std::multiset<PointType,
|
Chris@147
|
64 typename PointType::OrderComparator> PointList;
|
Chris@147
|
65 typedef typename PointList::iterator PointListIterator;
|
Chris@147
|
66
|
Chris@147
|
67 /**
|
Chris@147
|
68 * Return whether the model is empty or not.
|
Chris@147
|
69 */
|
Chris@147
|
70 virtual bool isEmpty() const;
|
Chris@147
|
71
|
Chris@147
|
72 /**
|
Chris@147
|
73 * Get the total number of points in the model.
|
Chris@147
|
74 */
|
Chris@147
|
75 virtual size_t getPointCount() const;
|
Chris@147
|
76
|
Chris@147
|
77 /**
|
Chris@147
|
78 * Get all of the points in this model between the given
|
Chris@147
|
79 * boundaries (in frames), as well as up to two points before and
|
Chris@147
|
80 * after the boundaries. If you need exact boundaries, check the
|
Chris@147
|
81 * point coordinates in the returned list.
|
Chris@147
|
82 */
|
Chris@147
|
83 virtual PointList getPoints(long start, long end) const;
|
Chris@147
|
84
|
Chris@147
|
85 /**
|
Chris@147
|
86 * Get all points that cover the given frame number, taking the
|
Chris@147
|
87 * resolution of the model into account.
|
Chris@147
|
88 */
|
Chris@147
|
89 virtual PointList getPoints(long frame) const;
|
Chris@147
|
90
|
Chris@147
|
91 /**
|
Chris@147
|
92 * Return all points that share the nearest frame number prior to
|
Chris@147
|
93 * the given one at which there are any points.
|
Chris@147
|
94 */
|
Chris@147
|
95 virtual PointList getPreviousPoints(long frame) const;
|
Chris@147
|
96
|
Chris@147
|
97 /**
|
Chris@147
|
98 * Return all points that share the nearest frame number
|
Chris@147
|
99 * subsequent to the given one at which there are any points.
|
Chris@147
|
100 */
|
Chris@147
|
101 virtual PointList getNextPoints(long frame) const;
|
Chris@147
|
102
|
Chris@147
|
103 /**
|
Chris@147
|
104 * Remove all points.
|
Chris@147
|
105 */
|
Chris@147
|
106 virtual void clear();
|
Chris@147
|
107
|
Chris@147
|
108 /**
|
Chris@147
|
109 * Add a point.
|
Chris@147
|
110 */
|
Chris@147
|
111 virtual void addPoint(const PointType &point);
|
Chris@147
|
112
|
Chris@147
|
113 /**
|
Chris@147
|
114 * Remove a point. Points are not necessarily unique, so this
|
Chris@147
|
115 * function will remove the first point that compares equal to the
|
Chris@147
|
116 * supplied one using Point::Comparator. Other identical points
|
Chris@147
|
117 * may remain in the model.
|
Chris@147
|
118 */
|
Chris@147
|
119 virtual void deletePoint(const PointType &point);
|
Chris@147
|
120
|
Chris@147
|
121 virtual void setCompletion(int completion);
|
Chris@147
|
122 virtual int getCompletion() const { return m_completion; }
|
Chris@147
|
123
|
Chris@147
|
124 virtual bool hasTextLabels() const { return m_hasTextLabels; }
|
Chris@147
|
125
|
Chris@147
|
126 virtual void toXml(QTextStream &out,
|
Chris@147
|
127 QString indent = "",
|
Chris@147
|
128 QString extraAttributes = "") const;
|
Chris@147
|
129
|
Chris@147
|
130 virtual QString toXmlString(QString indent = "",
|
Chris@147
|
131 QString extraAttributes = "") const;
|
Chris@147
|
132
|
Chris@147
|
133 virtual QString toDelimitedDataString(QString delimiter) const
|
Chris@147
|
134 {
|
Chris@147
|
135 QString s;
|
Chris@147
|
136 for (PointListIterator i = m_points.begin(); i != m_points.end(); ++i) {
|
Chris@147
|
137 s += i->toDelimitedDataString(delimiter, m_sampleRate) + "\n";
|
Chris@147
|
138 }
|
Chris@147
|
139 return s;
|
Chris@147
|
140 }
|
Chris@147
|
141
|
Chris@147
|
142 /**
|
Chris@147
|
143 * Command to add a point, with undo.
|
Chris@147
|
144 */
|
Chris@147
|
145 class AddPointCommand : public Command
|
Chris@147
|
146 {
|
Chris@147
|
147 public:
|
Chris@147
|
148 AddPointCommand(SparseModel<PointType> *model,
|
Chris@147
|
149 const PointType &point,
|
Chris@147
|
150 QString name = "") :
|
Chris@147
|
151 m_model(model), m_point(point), m_name(name) { }
|
Chris@147
|
152
|
Chris@147
|
153 virtual QString getName() const {
|
Chris@147
|
154 return (m_name == "" ? tr("Add Point") : m_name);
|
Chris@147
|
155 }
|
Chris@147
|
156
|
Chris@147
|
157 virtual void execute() { m_model->addPoint(m_point); }
|
Chris@147
|
158 virtual void unexecute() { m_model->deletePoint(m_point); }
|
Chris@147
|
159
|
Chris@147
|
160 const PointType &getPoint() const { return m_point; }
|
Chris@147
|
161
|
Chris@147
|
162 private:
|
Chris@147
|
163 SparseModel<PointType> *m_model;
|
Chris@147
|
164 PointType m_point;
|
Chris@147
|
165 QString m_name;
|
Chris@147
|
166 };
|
Chris@147
|
167
|
Chris@147
|
168
|
Chris@147
|
169 /**
|
Chris@147
|
170 * Command to remove a point, with undo.
|
Chris@147
|
171 */
|
Chris@147
|
172 class DeletePointCommand : public Command
|
Chris@147
|
173 {
|
Chris@147
|
174 public:
|
Chris@147
|
175 DeletePointCommand(SparseModel<PointType> *model,
|
Chris@147
|
176 const PointType &point) :
|
Chris@147
|
177 m_model(model), m_point(point) { }
|
Chris@147
|
178
|
Chris@147
|
179 virtual QString getName() const { return tr("Delete Point"); }
|
Chris@147
|
180
|
Chris@147
|
181 virtual void execute() { m_model->deletePoint(m_point); }
|
Chris@147
|
182 virtual void unexecute() { m_model->addPoint(m_point); }
|
Chris@147
|
183
|
Chris@147
|
184 const PointType &getPoint() const { return m_point; }
|
Chris@147
|
185
|
Chris@147
|
186 private:
|
Chris@147
|
187 SparseModel<PointType> *m_model;
|
Chris@147
|
188 PointType m_point;
|
Chris@147
|
189 };
|
Chris@147
|
190
|
Chris@147
|
191
|
Chris@147
|
192 /**
|
Chris@147
|
193 * Command to add or remove a series of points, with undo.
|
Chris@147
|
194 * Consecutive add/remove pairs for the same point are collapsed.
|
Chris@147
|
195 */
|
Chris@147
|
196 class EditCommand : public MacroCommand
|
Chris@147
|
197 {
|
Chris@147
|
198 public:
|
Chris@147
|
199 EditCommand(SparseModel<PointType> *model, QString commandName);
|
Chris@147
|
200
|
Chris@147
|
201 virtual void addPoint(const PointType &point);
|
Chris@147
|
202 virtual void deletePoint(const PointType &point);
|
Chris@147
|
203
|
Chris@147
|
204 /**
|
Chris@147
|
205 * Stack an arbitrary other command in the same sequence.
|
Chris@147
|
206 */
|
Chris@147
|
207 virtual void addCommand(Command *command) { addCommand(command, true); }
|
Chris@147
|
208
|
Chris@147
|
209 /**
|
Chris@147
|
210 * If any points have been added or deleted, add this command
|
Chris@147
|
211 * to the command history. Otherwise delete the command.
|
Chris@147
|
212 */
|
Chris@147
|
213 virtual void finish();
|
Chris@147
|
214
|
Chris@147
|
215 protected:
|
Chris@147
|
216 virtual void addCommand(Command *command, bool executeFirst);
|
Chris@147
|
217
|
Chris@147
|
218 SparseModel<PointType> *m_model;
|
Chris@147
|
219 };
|
Chris@147
|
220
|
Chris@147
|
221
|
Chris@147
|
222 /**
|
Chris@147
|
223 * Command to relabel a point.
|
Chris@147
|
224 */
|
Chris@147
|
225 class RelabelCommand : public Command
|
Chris@147
|
226 {
|
Chris@147
|
227 public:
|
Chris@147
|
228 RelabelCommand(SparseModel<PointType> *model,
|
Chris@147
|
229 const PointType &point,
|
Chris@147
|
230 QString newLabel) :
|
Chris@147
|
231 m_model(model), m_oldPoint(point), m_newPoint(point) {
|
Chris@147
|
232 m_newPoint.label = newLabel;
|
Chris@147
|
233 }
|
Chris@147
|
234
|
Chris@147
|
235 virtual QString getName() const { return tr("Re-Label Point"); }
|
Chris@147
|
236
|
Chris@147
|
237 virtual void execute() {
|
Chris@147
|
238 m_model->deletePoint(m_oldPoint);
|
Chris@147
|
239 m_model->addPoint(m_newPoint);
|
Chris@147
|
240 std::swap(m_oldPoint, m_newPoint);
|
Chris@147
|
241 }
|
Chris@147
|
242
|
Chris@147
|
243 virtual void unexecute() { execute(); }
|
Chris@147
|
244
|
Chris@147
|
245 private:
|
Chris@147
|
246 SparseModel<PointType> *m_model;
|
Chris@147
|
247 PointType m_oldPoint;
|
Chris@147
|
248 PointType m_newPoint;
|
Chris@147
|
249 };
|
Chris@147
|
250
|
Chris@147
|
251
|
Chris@147
|
252
|
Chris@147
|
253 protected:
|
Chris@147
|
254 size_t m_sampleRate;
|
Chris@147
|
255 size_t m_resolution;
|
Chris@147
|
256 bool m_notifyOnAdd;
|
Chris@147
|
257 long m_sinceLastNotifyMin;
|
Chris@147
|
258 long m_sinceLastNotifyMax;
|
Chris@147
|
259 bool m_hasTextLabels;
|
Chris@147
|
260
|
Chris@147
|
261 PointList m_points;
|
Chris@147
|
262 size_t m_pointCount;
|
Chris@147
|
263 mutable QMutex m_mutex;
|
Chris@147
|
264 int m_completion;
|
Chris@147
|
265 };
|
Chris@147
|
266
|
Chris@147
|
267
|
Chris@147
|
268 template <typename PointType>
|
Chris@147
|
269 SparseModel<PointType>::SparseModel(size_t sampleRate,
|
Chris@147
|
270 size_t resolution,
|
Chris@147
|
271 bool notifyOnAdd) :
|
Chris@147
|
272 m_sampleRate(sampleRate),
|
Chris@147
|
273 m_resolution(resolution),
|
Chris@147
|
274 m_notifyOnAdd(notifyOnAdd),
|
Chris@147
|
275 m_sinceLastNotifyMin(-1),
|
Chris@147
|
276 m_sinceLastNotifyMax(-1),
|
Chris@147
|
277 m_hasTextLabels(false),
|
Chris@147
|
278 m_pointCount(0),
|
Chris@147
|
279 m_completion(100)
|
Chris@147
|
280 {
|
Chris@147
|
281 }
|
Chris@147
|
282
|
Chris@147
|
283 template <typename PointType>
|
Chris@147
|
284 size_t
|
Chris@147
|
285 SparseModel<PointType>::getStartFrame() const
|
Chris@147
|
286 {
|
Chris@147
|
287 QMutexLocker locker(&m_mutex);
|
Chris@147
|
288 size_t f = 0;
|
Chris@147
|
289 if (!m_points.empty()) {
|
Chris@147
|
290 f = m_points.begin()->frame;
|
Chris@147
|
291 }
|
Chris@147
|
292 return f;
|
Chris@147
|
293 }
|
Chris@147
|
294
|
Chris@147
|
295 template <typename PointType>
|
Chris@147
|
296 size_t
|
Chris@147
|
297 SparseModel<PointType>::getEndFrame() const
|
Chris@147
|
298 {
|
Chris@147
|
299 QMutexLocker locker(&m_mutex);
|
Chris@147
|
300 size_t f = 0;
|
Chris@147
|
301 if (!m_points.empty()) {
|
Chris@147
|
302 PointListIterator i(m_points.end());
|
Chris@147
|
303 f = (--i)->frame;
|
Chris@147
|
304 }
|
Chris@147
|
305 return f;
|
Chris@147
|
306 }
|
Chris@147
|
307
|
Chris@147
|
308 template <typename PointType>
|
Chris@147
|
309 Model *
|
Chris@147
|
310 SparseModel<PointType>::clone() const
|
Chris@147
|
311 {
|
Chris@147
|
312 SparseModel<PointType> *model =
|
Chris@147
|
313 new SparseModel<PointType>(m_sampleRate, m_resolution, m_notifyOnAdd);
|
Chris@147
|
314 model->m_points = m_points;
|
Chris@147
|
315 model->m_pointCount = m_pointCount;
|
Chris@147
|
316 return model;
|
Chris@147
|
317 }
|
Chris@147
|
318
|
Chris@147
|
319 template <typename PointType>
|
Chris@147
|
320 bool
|
Chris@147
|
321 SparseModel<PointType>::isEmpty() const
|
Chris@147
|
322 {
|
Chris@147
|
323 return m_pointCount == 0;
|
Chris@147
|
324 }
|
Chris@147
|
325
|
Chris@147
|
326 template <typename PointType>
|
Chris@147
|
327 size_t
|
Chris@147
|
328 SparseModel<PointType>::getPointCount() const
|
Chris@147
|
329 {
|
Chris@147
|
330 return m_pointCount;
|
Chris@147
|
331 }
|
Chris@147
|
332
|
Chris@147
|
333 template <typename PointType>
|
Chris@147
|
334 typename SparseModel<PointType>::PointList
|
Chris@147
|
335 SparseModel<PointType>::getPoints(long start, long end) const
|
Chris@147
|
336 {
|
Chris@147
|
337 if (start > end) return PointList();
|
Chris@147
|
338 QMutexLocker locker(&m_mutex);
|
Chris@147
|
339
|
Chris@147
|
340 PointType startPoint(start), endPoint(end);
|
Chris@147
|
341
|
Chris@147
|
342 PointListIterator startItr = m_points.lower_bound(startPoint);
|
Chris@147
|
343 PointListIterator endItr = m_points.upper_bound(endPoint);
|
Chris@147
|
344
|
Chris@147
|
345 if (startItr != m_points.begin()) --startItr;
|
Chris@147
|
346 if (startItr != m_points.begin()) --startItr;
|
Chris@147
|
347 if (endItr != m_points.end()) ++endItr;
|
Chris@147
|
348 if (endItr != m_points.end()) ++endItr;
|
Chris@147
|
349
|
Chris@147
|
350 PointList rv;
|
Chris@147
|
351
|
Chris@147
|
352 for (PointListIterator i = startItr; i != endItr; ++i) {
|
Chris@147
|
353 rv.insert(*i);
|
Chris@147
|
354 }
|
Chris@147
|
355
|
Chris@147
|
356 return rv;
|
Chris@147
|
357 }
|
Chris@147
|
358
|
Chris@147
|
359 template <typename PointType>
|
Chris@147
|
360 typename SparseModel<PointType>::PointList
|
Chris@147
|
361 SparseModel<PointType>::getPoints(long frame) const
|
Chris@147
|
362 {
|
Chris@147
|
363 QMutexLocker locker(&m_mutex);
|
Chris@147
|
364
|
Chris@147
|
365 if (m_resolution == 0) return PointList();
|
Chris@147
|
366
|
Chris@147
|
367 long start = (frame / m_resolution) * m_resolution;
|
Chris@147
|
368 long end = start + m_resolution;
|
Chris@147
|
369
|
Chris@147
|
370 PointType startPoint(start), endPoint(end);
|
Chris@147
|
371
|
Chris@147
|
372 PointListIterator startItr = m_points.lower_bound(startPoint);
|
Chris@147
|
373 PointListIterator endItr = m_points.upper_bound(endPoint);
|
Chris@147
|
374
|
Chris@147
|
375 PointList rv;
|
Chris@147
|
376
|
Chris@147
|
377 for (PointListIterator i = startItr; i != endItr; ++i) {
|
Chris@147
|
378 rv.insert(*i);
|
Chris@147
|
379 }
|
Chris@147
|
380
|
Chris@147
|
381 return rv;
|
Chris@147
|
382 }
|
Chris@147
|
383
|
Chris@147
|
384 template <typename PointType>
|
Chris@147
|
385 typename SparseModel<PointType>::PointList
|
Chris@147
|
386 SparseModel<PointType>::getPreviousPoints(long originFrame) const
|
Chris@147
|
387 {
|
Chris@147
|
388 QMutexLocker locker(&m_mutex);
|
Chris@147
|
389
|
Chris@147
|
390 PointType lookupPoint(originFrame);
|
Chris@147
|
391 PointList rv;
|
Chris@147
|
392
|
Chris@147
|
393 PointListIterator i = m_points.lower_bound(lookupPoint);
|
Chris@147
|
394 if (i == m_points.begin()) return rv;
|
Chris@147
|
395
|
Chris@147
|
396 --i;
|
Chris@147
|
397 long frame = i->frame;
|
Chris@147
|
398 while (i->frame == frame) {
|
Chris@147
|
399 rv.insert(*i);
|
Chris@147
|
400 if (i == m_points.begin()) break;
|
Chris@147
|
401 --i;
|
Chris@147
|
402 }
|
Chris@147
|
403
|
Chris@147
|
404 return rv;
|
Chris@147
|
405 }
|
Chris@147
|
406
|
Chris@147
|
407 template <typename PointType>
|
Chris@147
|
408 typename SparseModel<PointType>::PointList
|
Chris@147
|
409 SparseModel<PointType>::getNextPoints(long originFrame) const
|
Chris@147
|
410 {
|
Chris@147
|
411 QMutexLocker locker(&m_mutex);
|
Chris@147
|
412
|
Chris@147
|
413 PointType lookupPoint(originFrame);
|
Chris@147
|
414 PointList rv;
|
Chris@147
|
415
|
Chris@147
|
416 PointListIterator i = m_points.upper_bound(lookupPoint);
|
Chris@147
|
417 if (i == m_points.end()) return rv;
|
Chris@147
|
418
|
Chris@147
|
419 long frame = i->frame;
|
Chris@147
|
420 while (i != m_points.end() && i->frame == frame) {
|
Chris@147
|
421 rv.insert(*i);
|
Chris@147
|
422 ++i;
|
Chris@147
|
423 }
|
Chris@147
|
424
|
Chris@147
|
425 return rv;
|
Chris@147
|
426 }
|
Chris@147
|
427
|
Chris@147
|
428 template <typename PointType>
|
Chris@147
|
429 void
|
Chris@147
|
430 SparseModel<PointType>::setResolution(size_t resolution)
|
Chris@147
|
431 {
|
Chris@147
|
432 {
|
Chris@147
|
433 QMutexLocker locker(&m_mutex);
|
Chris@147
|
434 m_resolution = resolution;
|
Chris@147
|
435 }
|
Chris@147
|
436 emit modelChanged();
|
Chris@147
|
437 }
|
Chris@147
|
438
|
Chris@147
|
439 template <typename PointType>
|
Chris@147
|
440 void
|
Chris@147
|
441 SparseModel<PointType>::clear()
|
Chris@147
|
442 {
|
Chris@147
|
443 {
|
Chris@147
|
444 QMutexLocker locker(&m_mutex);
|
Chris@147
|
445 m_points.clear();
|
Chris@147
|
446 m_pointCount = 0;
|
Chris@147
|
447 }
|
Chris@147
|
448 emit modelChanged();
|
Chris@147
|
449 }
|
Chris@147
|
450
|
Chris@147
|
451 template <typename PointType>
|
Chris@147
|
452 void
|
Chris@147
|
453 SparseModel<PointType>::addPoint(const PointType &point)
|
Chris@147
|
454 {
|
Chris@147
|
455 // std::cout << "SparseModel<Point>::addPoint(" << point.frame << ", "
|
Chris@147
|
456 // << point.value << ")" << std::endl;
|
Chris@147
|
457
|
Chris@147
|
458 {
|
Chris@147
|
459 QMutexLocker locker(&m_mutex);
|
Chris@147
|
460 m_points.insert(point);
|
Chris@147
|
461 m_pointCount++;
|
Chris@147
|
462 if (point.label != "") m_hasTextLabels = true;
|
Chris@147
|
463 }
|
Chris@147
|
464
|
Chris@147
|
465 // Even though this model is nominally sparse, there may still be
|
Chris@147
|
466 // too many signals going on here (especially as they'll probably
|
Chris@147
|
467 // be queued from one thread to another), which is why we need the
|
Chris@147
|
468 // notifyOnAdd as an option rather than a necessity (the
|
Chris@147
|
469 // alternative is to notify on setCompletion).
|
Chris@147
|
470
|
Chris@147
|
471 if (m_notifyOnAdd) {
|
Chris@147
|
472 emit modelChanged(point.frame, point.frame + m_resolution);
|
Chris@147
|
473 } else {
|
Chris@147
|
474 if (m_sinceLastNotifyMin == -1 ||
|
Chris@147
|
475 point.frame < m_sinceLastNotifyMin) {
|
Chris@147
|
476 m_sinceLastNotifyMin = point.frame;
|
Chris@147
|
477 }
|
Chris@147
|
478 if (m_sinceLastNotifyMax == -1 ||
|
Chris@147
|
479 point.frame > m_sinceLastNotifyMax) {
|
Chris@147
|
480 m_sinceLastNotifyMax = point.frame;
|
Chris@147
|
481 }
|
Chris@147
|
482 }
|
Chris@147
|
483 }
|
Chris@147
|
484
|
Chris@147
|
485 template <typename PointType>
|
Chris@147
|
486 void
|
Chris@147
|
487 SparseModel<PointType>::deletePoint(const PointType &point)
|
Chris@147
|
488 {
|
Chris@147
|
489 {
|
Chris@147
|
490 QMutexLocker locker(&m_mutex);
|
Chris@147
|
491
|
Chris@147
|
492 PointListIterator i = m_points.lower_bound(point);
|
Chris@147
|
493 typename PointType::Comparator comparator;
|
Chris@147
|
494 while (i != m_points.end()) {
|
Chris@147
|
495 if (i->frame > point.frame) break;
|
Chris@147
|
496 if (!comparator(*i, point) && !comparator(point, *i)) {
|
Chris@147
|
497 m_points.erase(i);
|
Chris@147
|
498 m_pointCount--;
|
Chris@147
|
499 break;
|
Chris@147
|
500 }
|
Chris@147
|
501 ++i;
|
Chris@147
|
502 }
|
Chris@147
|
503 }
|
Chris@147
|
504 // std::cout << "SparseOneDimensionalModel: emit modelChanged("
|
Chris@147
|
505 // << point.frame << ")" << std::endl;
|
Chris@147
|
506 emit modelChanged(point.frame, point.frame + m_resolution);
|
Chris@147
|
507 }
|
Chris@147
|
508
|
Chris@147
|
509 template <typename PointType>
|
Chris@147
|
510 void
|
Chris@147
|
511 SparseModel<PointType>::setCompletion(int completion)
|
Chris@147
|
512 {
|
Chris@191
|
513 // std::cerr << "SparseModel::setCompletion(" << completion << ")" << std::endl;
|
Chris@191
|
514
|
Chris@147
|
515 if (m_completion != completion) {
|
Chris@147
|
516 m_completion = completion;
|
Chris@147
|
517
|
Chris@147
|
518 if (completion == 100) {
|
Chris@147
|
519
|
Chris@147
|
520 m_notifyOnAdd = true; // henceforth
|
Chris@147
|
521 emit modelChanged();
|
Chris@147
|
522
|
Chris@147
|
523 } else if (!m_notifyOnAdd) {
|
Chris@147
|
524
|
Chris@147
|
525 if (m_sinceLastNotifyMin >= 0 &&
|
Chris@147
|
526 m_sinceLastNotifyMax >= 0) {
|
Chris@147
|
527 emit modelChanged(m_sinceLastNotifyMin, m_sinceLastNotifyMax);
|
Chris@147
|
528 m_sinceLastNotifyMin = m_sinceLastNotifyMax = -1;
|
Chris@147
|
529 } else {
|
Chris@147
|
530 emit completionChanged();
|
Chris@147
|
531 }
|
Chris@147
|
532 } else {
|
Chris@147
|
533 emit completionChanged();
|
Chris@147
|
534 }
|
Chris@147
|
535 }
|
Chris@147
|
536 }
|
Chris@147
|
537
|
Chris@147
|
538 template <typename PointType>
|
Chris@147
|
539 void
|
Chris@147
|
540 SparseModel<PointType>::toXml(QTextStream &out,
|
Chris@147
|
541 QString indent,
|
Chris@147
|
542 QString extraAttributes) const
|
Chris@147
|
543 {
|
Chris@147
|
544 Model::toXml
|
Chris@147
|
545 (out,
|
Chris@147
|
546 indent,
|
Chris@147
|
547 QString("type=\"sparse\" dimensions=\"%1\" resolution=\"%2\" notifyOnAdd=\"%3\" dataset=\"%4\" %5")
|
Chris@147
|
548 .arg(PointType(0).getDimensions())
|
Chris@147
|
549 .arg(m_resolution)
|
Chris@147
|
550 .arg(m_notifyOnAdd ? "true" : "false")
|
Chris@147
|
551 .arg(getObjectExportId(&m_points))
|
Chris@147
|
552 .arg(extraAttributes));
|
Chris@147
|
553
|
Chris@147
|
554 out << indent;
|
Chris@147
|
555 out << QString("<dataset id=\"%1\" dimensions=\"%2\">\n")
|
Chris@147
|
556 .arg(getObjectExportId(&m_points))
|
Chris@147
|
557 .arg(PointType(0).getDimensions());
|
Chris@147
|
558
|
Chris@147
|
559 for (PointListIterator i = m_points.begin(); i != m_points.end(); ++i) {
|
Chris@147
|
560 out << i->toXmlString(indent + " ");
|
Chris@147
|
561 }
|
Chris@147
|
562
|
Chris@147
|
563 out << indent;
|
Chris@147
|
564 out << "</dataset>\n";
|
Chris@147
|
565 }
|
Chris@147
|
566
|
Chris@147
|
567 template <typename PointType>
|
Chris@147
|
568 QString
|
Chris@147
|
569 SparseModel<PointType>::toXmlString(QString indent,
|
Chris@147
|
570 QString extraAttributes) const
|
Chris@147
|
571 {
|
Chris@147
|
572 QString s;
|
Chris@147
|
573
|
Chris@147
|
574 {
|
Chris@147
|
575 QTextStream out(&s);
|
Chris@147
|
576 toXml(out, indent, extraAttributes);
|
Chris@147
|
577 }
|
Chris@147
|
578
|
Chris@147
|
579 return s;
|
Chris@147
|
580 }
|
Chris@147
|
581
|
Chris@147
|
582 template <typename PointType>
|
Chris@147
|
583 SparseModel<PointType>::EditCommand::EditCommand(SparseModel *model,
|
Chris@147
|
584 QString commandName) :
|
Chris@147
|
585 MacroCommand(commandName),
|
Chris@147
|
586 m_model(model)
|
Chris@147
|
587 {
|
Chris@147
|
588 }
|
Chris@147
|
589
|
Chris@147
|
590 template <typename PointType>
|
Chris@147
|
591 void
|
Chris@147
|
592 SparseModel<PointType>::EditCommand::addPoint(const PointType &point)
|
Chris@147
|
593 {
|
Chris@147
|
594 addCommand(new AddPointCommand(m_model, point), true);
|
Chris@147
|
595 }
|
Chris@147
|
596
|
Chris@147
|
597 template <typename PointType>
|
Chris@147
|
598 void
|
Chris@147
|
599 SparseModel<PointType>::EditCommand::deletePoint(const PointType &point)
|
Chris@147
|
600 {
|
Chris@147
|
601 addCommand(new DeletePointCommand(m_model, point), true);
|
Chris@147
|
602 }
|
Chris@147
|
603
|
Chris@147
|
604 template <typename PointType>
|
Chris@147
|
605 void
|
Chris@147
|
606 SparseModel<PointType>::EditCommand::finish()
|
Chris@147
|
607 {
|
Chris@147
|
608 if (!m_commands.empty()) {
|
Chris@147
|
609 CommandHistory::getInstance()->addCommand(this, false);
|
Chris@147
|
610 } else {
|
Chris@147
|
611 delete this;
|
Chris@147
|
612 }
|
Chris@147
|
613 }
|
Chris@147
|
614
|
Chris@147
|
615 template <typename PointType>
|
Chris@147
|
616 void
|
Chris@147
|
617 SparseModel<PointType>::EditCommand::addCommand(Command *command,
|
Chris@147
|
618 bool executeFirst)
|
Chris@147
|
619 {
|
Chris@147
|
620 if (executeFirst) command->execute();
|
Chris@147
|
621
|
Chris@147
|
622 if (!m_commands.empty()) {
|
Chris@147
|
623 DeletePointCommand *dpc = dynamic_cast<DeletePointCommand *>(command);
|
Chris@147
|
624 if (dpc) {
|
Chris@147
|
625 AddPointCommand *apc = dynamic_cast<AddPointCommand *>
|
Chris@147
|
626 (m_commands[m_commands.size() - 1]);
|
Chris@147
|
627 typename PointType::Comparator comparator;
|
Chris@147
|
628 if (apc) {
|
Chris@147
|
629 if (!comparator(apc->getPoint(), dpc->getPoint()) &&
|
Chris@147
|
630 !comparator(dpc->getPoint(), apc->getPoint())) {
|
Chris@147
|
631 deleteCommand(apc);
|
Chris@147
|
632 return;
|
Chris@147
|
633 }
|
Chris@147
|
634 }
|
Chris@147
|
635 }
|
Chris@147
|
636 }
|
Chris@147
|
637
|
Chris@147
|
638 MacroCommand::addCommand(command);
|
Chris@147
|
639 }
|
Chris@147
|
640
|
Chris@147
|
641
|
Chris@147
|
642 #endif
|
Chris@147
|
643
|
Chris@147
|
644
|
Chris@147
|
645
|