Chris@45
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@45
|
2
|
Chris@45
|
3 /*
|
Chris@45
|
4 Sonic Visualiser
|
Chris@45
|
5 An audio file viewer and annotation editor.
|
Chris@45
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@45
|
7 This file copyright 2006 Chris Cannam and QMUL.
|
Chris@45
|
8
|
Chris@45
|
9 This program is free software; you can redistribute it and/or
|
Chris@45
|
10 modify it under the terms of the GNU General Public License as
|
Chris@45
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@45
|
12 License, or (at your option) any later version. See the file
|
Chris@45
|
13 COPYING included with this distribution for more information.
|
Chris@45
|
14 */
|
Chris@45
|
15
|
Chris@45
|
16 #include "Document.h"
|
Chris@45
|
17
|
Chris@45
|
18 #include "data/model/WaveFileModel.h"
|
Chris@45
|
19 #include "data/model/WritableWaveFileModel.h"
|
Chris@45
|
20 #include "data/model/DenseThreeDimensionalModel.h"
|
Chris@45
|
21 #include "data/model/DenseTimeValueModel.h"
|
Chris@45
|
22 #include "layer/Layer.h"
|
Chris@45
|
23 #include "base/CommandHistory.h"
|
Chris@45
|
24 #include "base/Command.h"
|
Chris@45
|
25 #include "view/View.h"
|
Chris@45
|
26 #include "base/PlayParameterRepository.h"
|
Chris@45
|
27 #include "base/PlayParameters.h"
|
Chris@54
|
28 #include "plugin/transform/TransformFactory.h"
|
Chris@54
|
29 #include "plugin/transform/ModelTransformerFactory.h"
|
Chris@45
|
30 #include <QApplication>
|
Chris@45
|
31 #include <QTextStream>
|
Chris@45
|
32 #include <iostream>
|
Chris@45
|
33
|
Chris@45
|
34 // For alignment:
|
Chris@45
|
35 #include "data/model/AggregateWaveModel.h"
|
Chris@45
|
36 #include "data/model/SparseTimeValueModel.h"
|
Chris@45
|
37 #include "data/model/AlignmentModel.h"
|
Chris@45
|
38
|
Chris@81
|
39 //#define DEBUG_DOCUMENT 1
|
Chris@77
|
40
|
Chris@45
|
41 //!!! still need to handle command history, documentRestored/documentModified
|
Chris@45
|
42
|
Chris@45
|
43 Document::Document() :
|
Chris@47
|
44 m_mainModel(0),
|
Chris@47
|
45 m_autoAlignment(false)
|
Chris@45
|
46 {
|
Chris@45
|
47 connect(this, SIGNAL(modelAboutToBeDeleted(Model *)),
|
Chris@54
|
48 ModelTransformerFactory::getInstance(),
|
Chris@45
|
49 SLOT(modelAboutToBeDeleted(Model *)));
|
Chris@45
|
50 }
|
Chris@45
|
51
|
Chris@45
|
52 Document::~Document()
|
Chris@45
|
53 {
|
Chris@45
|
54 //!!! Document should really own the command history. atm we
|
Chris@45
|
55 //still refer to it in various places that don't have access to
|
Chris@45
|
56 //the document, be nice to fix that
|
Chris@45
|
57
|
Chris@77
|
58 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
59 std::cerr << "\n\nDocument::~Document: about to clear command history" << std::endl;
|
Chris@77
|
60 #endif
|
Chris@45
|
61 CommandHistory::getInstance()->clear();
|
Chris@45
|
62
|
Chris@77
|
63 #ifdef DEBUG_DOCUMENT
|
Chris@52
|
64 std::cerr << "Document::~Document: about to delete layers" << std::endl;
|
Chris@77
|
65 #endif
|
Chris@45
|
66 while (!m_layers.empty()) {
|
Chris@45
|
67 deleteLayer(*m_layers.begin(), true);
|
Chris@45
|
68 }
|
Chris@45
|
69
|
Chris@45
|
70 if (!m_models.empty()) {
|
Chris@45
|
71 std::cerr << "Document::~Document: WARNING: "
|
Chris@45
|
72 << m_models.size() << " model(s) still remain -- "
|
Chris@45
|
73 << "should have been garbage collected when deleting layers"
|
Chris@45
|
74 << std::endl;
|
Chris@45
|
75 while (!m_models.empty()) {
|
Chris@45
|
76 Model *model = m_models.begin()->first;
|
Chris@45
|
77 if (model == m_mainModel) {
|
Chris@45
|
78 // just in case!
|
Chris@45
|
79 std::cerr << "Document::~Document: WARNING: Main model is also"
|
Chris@45
|
80 << " in models list!" << std::endl;
|
Chris@45
|
81 } else if (model) {
|
Chris@79
|
82 model->aboutToDelete();
|
Chris@45
|
83 emit modelAboutToBeDeleted(model);
|
Chris@45
|
84 delete model;
|
Chris@45
|
85 }
|
Chris@45
|
86 m_models.erase(m_models.begin());
|
Chris@45
|
87 }
|
Chris@45
|
88 }
|
Chris@45
|
89
|
Chris@77
|
90 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
91 std::cerr << "Document::~Document: About to get rid of main model"
|
Chris@77
|
92 << std::endl;
|
Chris@77
|
93 #endif
|
Chris@45
|
94 if (m_mainModel) {
|
Chris@79
|
95 m_mainModel->aboutToDelete();
|
Chris@45
|
96 emit modelAboutToBeDeleted(m_mainModel);
|
Chris@45
|
97 }
|
Chris@45
|
98
|
Chris@45
|
99 emit mainModelChanged(0);
|
Chris@45
|
100 delete m_mainModel;
|
Chris@45
|
101
|
Chris@45
|
102 }
|
Chris@45
|
103
|
Chris@45
|
104 Layer *
|
Chris@45
|
105 Document::createLayer(LayerFactory::LayerType type)
|
Chris@45
|
106 {
|
Chris@45
|
107 Layer *newLayer = LayerFactory::getInstance()->createLayer(type);
|
Chris@45
|
108 if (!newLayer) return 0;
|
Chris@45
|
109
|
Chris@45
|
110 newLayer->setObjectName(getUniqueLayerName(newLayer->objectName()));
|
Chris@45
|
111
|
Chris@45
|
112 m_layers.insert(newLayer);
|
Chris@52
|
113
|
Chris@77
|
114 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
115 std::cerr << "Document::createLayer: Added layer of type " << type
|
Chris@77
|
116 << ", now have " << m_layers.size() << " layers" << std::endl;
|
Chris@77
|
117 #endif
|
Chris@52
|
118
|
Chris@45
|
119 emit layerAdded(newLayer);
|
Chris@45
|
120
|
Chris@45
|
121 return newLayer;
|
Chris@45
|
122 }
|
Chris@45
|
123
|
Chris@45
|
124 Layer *
|
Chris@45
|
125 Document::createMainModelLayer(LayerFactory::LayerType type)
|
Chris@45
|
126 {
|
Chris@45
|
127 Layer *newLayer = createLayer(type);
|
Chris@45
|
128 if (!newLayer) return 0;
|
Chris@45
|
129 setModel(newLayer, m_mainModel);
|
Chris@45
|
130 return newLayer;
|
Chris@45
|
131 }
|
Chris@45
|
132
|
Chris@45
|
133 Layer *
|
Chris@45
|
134 Document::createImportedLayer(Model *model)
|
Chris@45
|
135 {
|
Chris@45
|
136 LayerFactory::LayerTypeSet types =
|
Chris@45
|
137 LayerFactory::getInstance()->getValidLayerTypes(model);
|
Chris@45
|
138
|
Chris@45
|
139 if (types.empty()) {
|
Chris@45
|
140 std::cerr << "WARNING: Document::importLayer: no valid display layer for model" << std::endl;
|
Chris@45
|
141 return 0;
|
Chris@45
|
142 }
|
Chris@45
|
143
|
Chris@45
|
144 //!!! for now, just use the first suitable layer type
|
Chris@45
|
145 LayerFactory::LayerType type = *types.begin();
|
Chris@45
|
146
|
Chris@45
|
147 Layer *newLayer = LayerFactory::getInstance()->createLayer(type);
|
Chris@45
|
148 if (!newLayer) return 0;
|
Chris@45
|
149
|
Chris@45
|
150 newLayer->setObjectName(getUniqueLayerName(newLayer->objectName()));
|
Chris@45
|
151
|
Chris@45
|
152 addImportedModel(model);
|
Chris@45
|
153 setModel(newLayer, model);
|
Chris@45
|
154
|
Chris@45
|
155 //!!! and all channels
|
Chris@45
|
156 setChannel(newLayer, -1);
|
Chris@45
|
157
|
Chris@45
|
158 m_layers.insert(newLayer);
|
Chris@52
|
159
|
Chris@77
|
160 #ifdef DEBUG_DOCUMENT
|
Chris@52
|
161 std::cerr << "Document::createImportedLayer: Added layer of type " << type
|
Chris@52
|
162 << ", now have " << m_layers.size() << " layers" << std::endl;
|
Chris@77
|
163 #endif
|
Chris@52
|
164
|
Chris@45
|
165 emit layerAdded(newLayer);
|
Chris@45
|
166 return newLayer;
|
Chris@45
|
167 }
|
Chris@45
|
168
|
Chris@45
|
169 Layer *
|
Chris@45
|
170 Document::createEmptyLayer(LayerFactory::LayerType type)
|
Chris@45
|
171 {
|
Chris@61
|
172 if (!m_mainModel) return 0;
|
Chris@61
|
173
|
Chris@45
|
174 Model *newModel =
|
Chris@45
|
175 LayerFactory::getInstance()->createEmptyModel(type, m_mainModel);
|
Chris@45
|
176 if (!newModel) return 0;
|
Chris@45
|
177
|
Chris@45
|
178 Layer *newLayer = createLayer(type);
|
Chris@45
|
179 if (!newLayer) {
|
Chris@45
|
180 delete newModel;
|
Chris@45
|
181 return 0;
|
Chris@45
|
182 }
|
Chris@45
|
183
|
Chris@45
|
184 addImportedModel(newModel);
|
Chris@45
|
185 setModel(newLayer, newModel);
|
Chris@45
|
186
|
Chris@45
|
187 return newLayer;
|
Chris@45
|
188 }
|
Chris@45
|
189
|
Chris@45
|
190 Layer *
|
Chris@45
|
191 Document::createDerivedLayer(LayerFactory::LayerType type,
|
Chris@54
|
192 TransformId transform)
|
Chris@45
|
193 {
|
Chris@45
|
194 Layer *newLayer = createLayer(type);
|
Chris@45
|
195 if (!newLayer) return 0;
|
Chris@45
|
196
|
Chris@45
|
197 newLayer->setObjectName(getUniqueLayerName
|
Chris@54
|
198 (TransformFactory::getInstance()->
|
Chris@54
|
199 getTransformFriendlyName(transform)));
|
Chris@45
|
200
|
Chris@45
|
201 return newLayer;
|
Chris@45
|
202 }
|
Chris@45
|
203
|
Chris@45
|
204 Layer *
|
Chris@72
|
205 Document::createDerivedLayer(const Transform &transform,
|
Chris@72
|
206 const ModelTransformer::Input &input)
|
Chris@45
|
207 {
|
Chris@78
|
208 QString message;
|
Chris@78
|
209 Model *newModel = addDerivedModel(transform, input, message);
|
Chris@45
|
210 if (!newModel) {
|
Chris@78
|
211 emit modelGenerationFailed(transform.getIdentifier(), message);
|
Chris@45
|
212 return 0;
|
Chris@78
|
213 } else if (message != "") {
|
Chris@78
|
214 emit modelGenerationWarning(transform.getIdentifier(), message);
|
Chris@45
|
215 }
|
Chris@45
|
216
|
Chris@45
|
217 LayerFactory::LayerTypeSet types =
|
Chris@45
|
218 LayerFactory::getInstance()->getValidLayerTypes(newModel);
|
Chris@45
|
219
|
Chris@45
|
220 if (types.empty()) {
|
Chris@72
|
221 std::cerr << "WARNING: Document::createLayerForTransformer: no valid display layer for output of transform " << transform.getIdentifier().toStdString() << std::endl;
|
Chris@45
|
222 delete newModel;
|
Chris@45
|
223 return 0;
|
Chris@45
|
224 }
|
Chris@45
|
225
|
Chris@45
|
226 //!!! for now, just use the first suitable layer type
|
Chris@45
|
227
|
Chris@45
|
228 Layer *newLayer = createLayer(*types.begin());
|
Chris@45
|
229 setModel(newLayer, newModel);
|
Chris@45
|
230
|
Chris@45
|
231 //!!! We need to clone the model when adding the layer, so that it
|
Chris@45
|
232 //can be edited without affecting other layers that are based on
|
Chris@45
|
233 //the same model. Unfortunately we can't just clone it now,
|
Chris@45
|
234 //because it probably hasn't been completed yet -- the transform
|
Chris@45
|
235 //runs in the background. Maybe the transform has to handle
|
Chris@45
|
236 //cloning and cacheing models itself.
|
Chris@45
|
237 //
|
Chris@45
|
238 // Once we do clone models here, of course, we'll have to avoid
|
Chris@45
|
239 // leaking them too.
|
Chris@45
|
240 //
|
Chris@45
|
241 // We want the user to be able to add a model to a second layer
|
Chris@45
|
242 // _while it's still being calculated in the first_ and have it
|
Chris@45
|
243 // work quickly. That means we need to put the same physical
|
Chris@45
|
244 // model pointer in both layers, so they can't actually be cloned.
|
Chris@45
|
245
|
Chris@45
|
246 if (newLayer) {
|
Chris@45
|
247 newLayer->setObjectName(getUniqueLayerName
|
Chris@54
|
248 (TransformFactory::getInstance()->
|
Chris@72
|
249 getTransformFriendlyName
|
Chris@72
|
250 (transform.getIdentifier())));
|
Chris@45
|
251 }
|
Chris@45
|
252
|
Chris@45
|
253 emit layerAdded(newLayer);
|
Chris@45
|
254 return newLayer;
|
Chris@45
|
255 }
|
Chris@45
|
256
|
Chris@45
|
257 void
|
Chris@45
|
258 Document::setMainModel(WaveFileModel *model)
|
Chris@45
|
259 {
|
Chris@45
|
260 Model *oldMainModel = m_mainModel;
|
Chris@45
|
261 m_mainModel = model;
|
Chris@45
|
262
|
Chris@45
|
263 emit modelAdded(m_mainModel);
|
Chris@45
|
264
|
Chris@45
|
265 std::vector<Layer *> obsoleteLayers;
|
Chris@53
|
266 std::set<QString> failedTransformers;
|
Chris@45
|
267
|
Chris@45
|
268 // We need to ensure that no layer is left using oldMainModel or
|
Chris@45
|
269 // any of the old derived models as its model. Either replace the
|
Chris@45
|
270 // model, or delete the layer for each layer that is currently
|
Chris@45
|
271 // using one of these. Carry out this replacement before we
|
Chris@45
|
272 // delete any of the models.
|
Chris@45
|
273
|
Chris@77
|
274 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
275 std::cerr << "Document::setMainModel: Have "
|
Chris@77
|
276 << m_layers.size() << " layers" << std::endl;
|
Chris@77
|
277 #endif
|
Chris@52
|
278
|
Chris@45
|
279 for (LayerSet::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
|
Chris@45
|
280
|
Chris@45
|
281 Layer *layer = *i;
|
Chris@45
|
282 Model *model = layer->getModel();
|
Chris@45
|
283
|
Chris@77
|
284 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
285 std::cerr << "Document::setMainModel: inspecting model "
|
Chris@77
|
286 << (model ? model->objectName().toStdString() : "(null)") << " in layer "
|
Chris@77
|
287 << layer->objectName().toStdString() << std::endl;
|
Chris@77
|
288 #endif
|
Chris@45
|
289
|
Chris@70
|
290 if (model == oldMainModel) {
|
Chris@77
|
291 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
292 std::cerr << "... it uses the old main model, replacing" << std::endl;
|
Chris@77
|
293 #endif
|
Chris@45
|
294 LayerFactory::getInstance()->setModel(layer, m_mainModel);
|
Chris@45
|
295 continue;
|
Chris@45
|
296 }
|
Chris@45
|
297
|
Chris@70
|
298 if (model && (m_models.find(model) == m_models.end())) {
|
Chris@45
|
299 std::cerr << "WARNING: Document::setMainModel: Unknown model "
|
Chris@45
|
300 << model << " in layer " << layer << std::endl;
|
Chris@45
|
301 // get rid of this hideous degenerate
|
Chris@45
|
302 obsoleteLayers.push_back(layer);
|
Chris@45
|
303 continue;
|
Chris@45
|
304 }
|
Chris@45
|
305
|
Chris@70
|
306 if (m_models[model].source &&
|
Chris@70
|
307 (m_models[model].source == oldMainModel)) {
|
Chris@45
|
308
|
Chris@77
|
309 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
310 std::cerr << "... it uses a model derived from the old main model, regenerating" << std::endl;
|
Chris@77
|
311 #endif
|
Chris@45
|
312
|
Chris@45
|
313 // This model was derived from the previous main
|
Chris@45
|
314 // model: regenerate it.
|
Chris@45
|
315
|
Chris@72
|
316 const Transform &transform = m_models[model].transform;
|
Chris@72
|
317 QString transformId = transform.getIdentifier();
|
Chris@45
|
318
|
Chris@72
|
319 //!!! We have a problem here if the number of channels in
|
Chris@72
|
320 //the main model has changed.
|
Chris@72
|
321
|
Chris@78
|
322 QString message;
|
Chris@45
|
323 Model *replacementModel =
|
Chris@45
|
324 addDerivedModel(transform,
|
Chris@72
|
325 ModelTransformer::Input
|
Chris@78
|
326 (m_mainModel, m_models[model].channel),
|
Chris@78
|
327 message);
|
Chris@45
|
328
|
Chris@45
|
329 if (!replacementModel) {
|
Chris@45
|
330 std::cerr << "WARNING: Document::setMainModel: Failed to regenerate model for transform \""
|
Chris@72
|
331 << transformId.toStdString() << "\"" << " in layer " << layer << std::endl;
|
Chris@72
|
332 if (failedTransformers.find(transformId)
|
Chris@72
|
333 == failedTransformers.end()) {
|
Chris@45
|
334 emit modelRegenerationFailed(layer->objectName(),
|
Chris@78
|
335 transformId,
|
Chris@78
|
336 message);
|
Chris@72
|
337 failedTransformers.insert(transformId);
|
Chris@45
|
338 }
|
Chris@45
|
339 obsoleteLayers.push_back(layer);
|
Chris@45
|
340 } else {
|
Chris@78
|
341 if (message != "") {
|
Chris@78
|
342 emit modelRegenerationWarning(layer->objectName(),
|
Chris@78
|
343 transformId,
|
Chris@78
|
344 message);
|
Chris@78
|
345 }
|
Chris@77
|
346 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
347 std::cerr << "Replacing model " << model << " (type "
|
Chris@77
|
348 << typeid(*model).name() << ") with model "
|
Chris@77
|
349 << replacementModel << " (type "
|
Chris@77
|
350 << typeid(*replacementModel).name() << ") in layer "
|
Chris@77
|
351 << layer << " (name " << layer->objectName().toStdString() << ")"
|
Chris@77
|
352 << std::endl;
|
Chris@77
|
353 #endif
|
Chris@45
|
354 RangeSummarisableTimeValueModel *rm =
|
Chris@45
|
355 dynamic_cast<RangeSummarisableTimeValueModel *>(replacementModel);
|
Chris@77
|
356 #ifdef DEBUG_DOCUMENT
|
Chris@45
|
357 if (rm) {
|
Chris@45
|
358 std::cerr << "new model has " << rm->getChannelCount() << " channels " << std::endl;
|
Chris@45
|
359 } else {
|
Chris@45
|
360 std::cerr << "new model is not a RangeSummarisableTimeValueModel!" << std::endl;
|
Chris@45
|
361 }
|
Chris@77
|
362 #endif
|
Chris@45
|
363 setModel(layer, replacementModel);
|
Chris@45
|
364 }
|
Chris@45
|
365 }
|
Chris@45
|
366 }
|
Chris@45
|
367
|
Chris@45
|
368 for (size_t k = 0; k < obsoleteLayers.size(); ++k) {
|
Chris@45
|
369 deleteLayer(obsoleteLayers[k], true);
|
Chris@45
|
370 }
|
Chris@45
|
371
|
Chris@48
|
372 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@86
|
373
|
Chris@86
|
374 if (m_autoAlignment) {
|
Chris@86
|
375
|
Chris@86
|
376 alignModel(i->first);
|
Chris@86
|
377
|
Chris@86
|
378 } else if (oldMainModel &&
|
Chris@86
|
379 (i->first->getAlignmentReference() == oldMainModel)) {
|
Chris@86
|
380
|
Chris@48
|
381 alignModel(i->first);
|
Chris@48
|
382 }
|
Chris@48
|
383 }
|
Chris@48
|
384
|
Chris@77
|
385 if (oldMainModel) {
|
Chris@79
|
386 oldMainModel->aboutToDelete();
|
Chris@77
|
387 emit modelAboutToBeDeleted(oldMainModel);
|
Chris@77
|
388 }
|
Chris@77
|
389
|
Chris@86
|
390 if (m_autoAlignment) {
|
Chris@86
|
391 alignModel(m_mainModel);
|
Chris@86
|
392 }
|
Chris@86
|
393
|
Chris@45
|
394 emit mainModelChanged(m_mainModel);
|
Chris@45
|
395
|
Chris@45
|
396 delete oldMainModel;
|
Chris@45
|
397 }
|
Chris@45
|
398
|
Chris@45
|
399 void
|
Chris@72
|
400 Document::addDerivedModel(const Transform &transform,
|
Chris@72
|
401 const ModelTransformer::Input &input,
|
Chris@72
|
402 Model *outputModelToAdd)
|
Chris@45
|
403 {
|
Chris@45
|
404 if (m_models.find(outputModelToAdd) != m_models.end()) {
|
Chris@45
|
405 std::cerr << "WARNING: Document::addDerivedModel: Model already added"
|
Chris@45
|
406 << std::endl;
|
Chris@45
|
407 return;
|
Chris@45
|
408 }
|
Chris@45
|
409
|
Chris@77
|
410 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
411 std::cerr << "Document::addDerivedModel: source is " << input.getModel() << " \"" << input.getModel()->objectName().toStdString() << "\"" << std::endl;
|
Chris@77
|
412 #endif
|
Chris@45
|
413
|
Chris@45
|
414 ModelRecord rec;
|
Chris@72
|
415 rec.source = input.getModel();
|
Chris@72
|
416 rec.channel = input.getChannel();
|
Chris@45
|
417 rec.transform = transform;
|
Chris@45
|
418 rec.refcount = 0;
|
Chris@45
|
419
|
Chris@72
|
420 outputModelToAdd->setSourceModel(input.getModel());
|
Chris@45
|
421
|
Chris@45
|
422 m_models[outputModelToAdd] = rec;
|
Chris@45
|
423
|
Chris@45
|
424 emit modelAdded(outputModelToAdd);
|
Chris@45
|
425 }
|
Chris@45
|
426
|
Chris@45
|
427
|
Chris@45
|
428 void
|
Chris@45
|
429 Document::addImportedModel(Model *model)
|
Chris@45
|
430 {
|
Chris@45
|
431 if (m_models.find(model) != m_models.end()) {
|
Chris@45
|
432 std::cerr << "WARNING: Document::addImportedModel: Model already added"
|
Chris@45
|
433 << std::endl;
|
Chris@45
|
434 return;
|
Chris@45
|
435 }
|
Chris@45
|
436
|
Chris@45
|
437 ModelRecord rec;
|
Chris@45
|
438 rec.source = 0;
|
Chris@45
|
439 rec.refcount = 0;
|
Chris@45
|
440
|
Chris@45
|
441 m_models[model] = rec;
|
Chris@45
|
442
|
Chris@47
|
443 if (m_autoAlignment) alignModel(model);
|
Chris@47
|
444
|
Chris@45
|
445 emit modelAdded(model);
|
Chris@45
|
446 }
|
Chris@45
|
447
|
Chris@45
|
448 Model *
|
Chris@72
|
449 Document::addDerivedModel(const Transform &transform,
|
Chris@78
|
450 const ModelTransformer::Input &input,
|
Chris@78
|
451 QString &message)
|
Chris@45
|
452 {
|
Chris@45
|
453 Model *model = 0;
|
Chris@45
|
454
|
Chris@45
|
455 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@45
|
456 if (i->second.transform == transform &&
|
Chris@72
|
457 i->second.source == input.getModel() &&
|
Chris@72
|
458 i->second.channel == input.getChannel()) {
|
Chris@45
|
459 return i->first;
|
Chris@45
|
460 }
|
Chris@45
|
461 }
|
Chris@45
|
462
|
Chris@78
|
463 model = ModelTransformerFactory::getInstance()->transform
|
Chris@78
|
464 (transform, input, message);
|
Chris@45
|
465
|
Chris@83
|
466 // The transform we actually used was presumably identical to the
|
Chris@83
|
467 // one asked for, except that the version of the plugin may
|
Chris@83
|
468 // differ. It's possible that the returned message contains a
|
Chris@83
|
469 // warning about this; that doesn't concern us here, but we do
|
Chris@83
|
470 // need to ensure that the transform we remember is correct for
|
Chris@83
|
471 // what was actually applied, with the current plugin version.
|
Chris@83
|
472
|
Chris@83
|
473 Transform applied = transform;
|
Chris@83
|
474 applied.setPluginVersion
|
Chris@83
|
475 (TransformFactory::getInstance()->
|
Chris@83
|
476 getDefaultTransformFor(transform.getIdentifier(),
|
Chris@83
|
477 lrintf(transform.getSampleRate()))
|
Chris@83
|
478 .getPluginVersion());
|
Chris@83
|
479
|
Chris@45
|
480 if (!model) {
|
Chris@72
|
481 std::cerr << "WARNING: Document::addDerivedModel: no output model for transform " << transform.getIdentifier().toStdString() << std::endl;
|
Chris@45
|
482 } else {
|
Chris@83
|
483 addDerivedModel(applied, input, model);
|
Chris@45
|
484 }
|
Chris@45
|
485
|
Chris@45
|
486 return model;
|
Chris@45
|
487 }
|
Chris@45
|
488
|
Chris@45
|
489 void
|
Chris@45
|
490 Document::releaseModel(Model *model) // Will _not_ release main model!
|
Chris@45
|
491 {
|
Chris@45
|
492 if (model == 0) {
|
Chris@45
|
493 return;
|
Chris@45
|
494 }
|
Chris@45
|
495
|
Chris@45
|
496 if (model == m_mainModel) {
|
Chris@45
|
497 return;
|
Chris@45
|
498 }
|
Chris@45
|
499
|
Chris@45
|
500 bool toDelete = false;
|
Chris@45
|
501
|
Chris@45
|
502 if (m_models.find(model) != m_models.end()) {
|
Chris@45
|
503
|
Chris@45
|
504 if (m_models[model].refcount == 0) {
|
Chris@45
|
505 std::cerr << "WARNING: Document::releaseModel: model " << model
|
Chris@45
|
506 << " reference count is zero already!" << std::endl;
|
Chris@45
|
507 } else {
|
Chris@45
|
508 if (--m_models[model].refcount == 0) {
|
Chris@45
|
509 toDelete = true;
|
Chris@45
|
510 }
|
Chris@45
|
511 }
|
Chris@45
|
512 } else {
|
Chris@45
|
513 std::cerr << "WARNING: Document::releaseModel: Unfound model "
|
Chris@45
|
514 << model << std::endl;
|
Chris@45
|
515 toDelete = true;
|
Chris@45
|
516 }
|
Chris@45
|
517
|
Chris@45
|
518 if (toDelete) {
|
Chris@45
|
519
|
Chris@45
|
520 int sourceCount = 0;
|
Chris@45
|
521
|
Chris@45
|
522 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@45
|
523 if (i->second.source == model) {
|
Chris@45
|
524 ++sourceCount;
|
Chris@45
|
525 i->second.source = 0;
|
Chris@45
|
526 }
|
Chris@45
|
527 }
|
Chris@45
|
528
|
Chris@45
|
529 if (sourceCount > 0) {
|
Chris@45
|
530 std::cerr << "Document::releaseModel: Deleting model "
|
Chris@45
|
531 << model << " even though it is source for "
|
Chris@45
|
532 << sourceCount << " other derived model(s) -- resetting "
|
Chris@45
|
533 << "their source fields appropriately" << std::endl;
|
Chris@45
|
534 }
|
Chris@45
|
535
|
Chris@79
|
536 model->aboutToDelete();
|
Chris@45
|
537 emit modelAboutToBeDeleted(model);
|
Chris@45
|
538 m_models.erase(model);
|
Chris@45
|
539 delete model;
|
Chris@45
|
540 }
|
Chris@45
|
541 }
|
Chris@45
|
542
|
Chris@45
|
543 void
|
Chris@45
|
544 Document::deleteLayer(Layer *layer, bool force)
|
Chris@45
|
545 {
|
Chris@45
|
546 if (m_layerViewMap.find(layer) != m_layerViewMap.end() &&
|
Chris@45
|
547 m_layerViewMap[layer].size() > 0) {
|
Chris@45
|
548
|
Chris@45
|
549 std::cerr << "WARNING: Document::deleteLayer: Layer "
|
Chris@45
|
550 << layer << " [" << layer->objectName().toStdString() << "]"
|
Chris@45
|
551 << " is still used in " << m_layerViewMap[layer].size()
|
Chris@45
|
552 << " views!" << std::endl;
|
Chris@45
|
553
|
Chris@45
|
554 if (force) {
|
Chris@45
|
555
|
Chris@77
|
556 #ifdef DEBUG_DOCUMENT
|
Chris@45
|
557 std::cerr << "(force flag set -- deleting from all views)" << std::endl;
|
Chris@77
|
558 #endif
|
Chris@45
|
559
|
Chris@45
|
560 for (std::set<View *>::iterator j = m_layerViewMap[layer].begin();
|
Chris@45
|
561 j != m_layerViewMap[layer].end(); ++j) {
|
Chris@45
|
562 // don't use removeLayerFromView, as it issues a command
|
Chris@45
|
563 layer->setLayerDormant(*j, true);
|
Chris@45
|
564 (*j)->removeLayer(layer);
|
Chris@45
|
565 }
|
Chris@45
|
566
|
Chris@45
|
567 m_layerViewMap.erase(layer);
|
Chris@45
|
568
|
Chris@45
|
569 } else {
|
Chris@45
|
570 return;
|
Chris@45
|
571 }
|
Chris@45
|
572 }
|
Chris@45
|
573
|
Chris@45
|
574 if (m_layers.find(layer) == m_layers.end()) {
|
Chris@45
|
575 std::cerr << "Document::deleteLayer: Layer "
|
Chris@45
|
576 << layer << " does not exist, or has already been deleted "
|
Chris@45
|
577 << "(this may not be as serious as it sounds)" << std::endl;
|
Chris@45
|
578 return;
|
Chris@45
|
579 }
|
Chris@45
|
580
|
Chris@45
|
581 m_layers.erase(layer);
|
Chris@45
|
582
|
Chris@52
|
583 std::cerr << "Document::deleteLayer: Removing, now have "
|
Chris@52
|
584 << m_layers.size() << " layers" << std::endl;
|
Chris@52
|
585
|
Chris@45
|
586 releaseModel(layer->getModel());
|
Chris@45
|
587 emit layerRemoved(layer);
|
Chris@45
|
588 emit layerAboutToBeDeleted(layer);
|
Chris@45
|
589 delete layer;
|
Chris@45
|
590 }
|
Chris@45
|
591
|
Chris@45
|
592 void
|
Chris@45
|
593 Document::setModel(Layer *layer, Model *model)
|
Chris@45
|
594 {
|
Chris@45
|
595 if (model &&
|
Chris@45
|
596 model != m_mainModel &&
|
Chris@45
|
597 m_models.find(model) == m_models.end()) {
|
Chris@45
|
598 std::cerr << "ERROR: Document::setModel: Layer " << layer
|
Chris@45
|
599 << " (\"" << layer->objectName().toStdString()
|
Chris@45
|
600 << "\") wants to use unregistered model " << model
|
Chris@45
|
601 << ": register the layer's model before setting it!"
|
Chris@45
|
602 << std::endl;
|
Chris@45
|
603 return;
|
Chris@45
|
604 }
|
Chris@45
|
605
|
Chris@45
|
606 Model *previousModel = layer->getModel();
|
Chris@45
|
607
|
Chris@45
|
608 if (previousModel == model) {
|
Chris@45
|
609 std::cerr << "WARNING: Document::setModel: Layer " << layer << " (\""
|
Chris@45
|
610 << layer->objectName().toStdString()
|
Chris@45
|
611 << "\") is already set to model "
|
Chris@45
|
612 << model << " (\""
|
Chris@45
|
613 << (model ? model->objectName().toStdString() : "(null)")
|
Chris@45
|
614 << "\")" << std::endl;
|
Chris@45
|
615 return;
|
Chris@45
|
616 }
|
Chris@45
|
617
|
Chris@45
|
618 if (model && model != m_mainModel) {
|
Chris@45
|
619 m_models[model].refcount ++;
|
Chris@45
|
620 }
|
Chris@45
|
621
|
Chris@45
|
622 if (model && previousModel) {
|
Chris@45
|
623 PlayParameterRepository::getInstance()->copyParameters
|
Chris@45
|
624 (previousModel, model);
|
Chris@45
|
625 }
|
Chris@45
|
626
|
Chris@45
|
627 LayerFactory::getInstance()->setModel(layer, model);
|
Chris@45
|
628
|
Chris@45
|
629 if (previousModel) {
|
Chris@45
|
630 releaseModel(previousModel);
|
Chris@45
|
631 }
|
Chris@45
|
632 }
|
Chris@45
|
633
|
Chris@45
|
634 void
|
Chris@45
|
635 Document::setChannel(Layer *layer, int channel)
|
Chris@45
|
636 {
|
Chris@45
|
637 LayerFactory::getInstance()->setChannel(layer, channel);
|
Chris@45
|
638 }
|
Chris@45
|
639
|
Chris@45
|
640 void
|
Chris@45
|
641 Document::addLayerToView(View *view, Layer *layer)
|
Chris@45
|
642 {
|
Chris@45
|
643 Model *model = layer->getModel();
|
Chris@45
|
644 if (!model) {
|
Chris@77
|
645 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
646 std::cerr << "Document::addLayerToView: Layer (\""
|
Chris@77
|
647 << layer->objectName().toStdString()
|
Chris@77
|
648 << "\") with no model being added to view: "
|
Chris@77
|
649 << "normally you want to set the model first" << std::endl;
|
Chris@77
|
650 #endif
|
Chris@45
|
651 } else {
|
Chris@45
|
652 if (model != m_mainModel &&
|
Chris@45
|
653 m_models.find(model) == m_models.end()) {
|
Chris@45
|
654 std::cerr << "ERROR: Document::addLayerToView: Layer " << layer
|
Chris@45
|
655 << " has unregistered model " << model
|
Chris@45
|
656 << " -- register the layer's model before adding the layer!" << std::endl;
|
Chris@45
|
657 return;
|
Chris@45
|
658 }
|
Chris@45
|
659 }
|
Chris@45
|
660
|
Chris@45
|
661 CommandHistory::getInstance()->addCommand
|
Chris@45
|
662 (new Document::AddLayerCommand(this, view, layer));
|
Chris@45
|
663 }
|
Chris@45
|
664
|
Chris@45
|
665 void
|
Chris@45
|
666 Document::removeLayerFromView(View *view, Layer *layer)
|
Chris@45
|
667 {
|
Chris@45
|
668 CommandHistory::getInstance()->addCommand
|
Chris@45
|
669 (new Document::RemoveLayerCommand(this, view, layer));
|
Chris@45
|
670 }
|
Chris@45
|
671
|
Chris@45
|
672 void
|
Chris@45
|
673 Document::addToLayerViewMap(Layer *layer, View *view)
|
Chris@45
|
674 {
|
Chris@45
|
675 bool firstView = (m_layerViewMap.find(layer) == m_layerViewMap.end() ||
|
Chris@45
|
676 m_layerViewMap[layer].empty());
|
Chris@45
|
677
|
Chris@45
|
678 if (m_layerViewMap[layer].find(view) !=
|
Chris@45
|
679 m_layerViewMap[layer].end()) {
|
Chris@45
|
680 std::cerr << "WARNING: Document::addToLayerViewMap:"
|
Chris@45
|
681 << " Layer " << layer << " -> view " << view << " already in"
|
Chris@45
|
682 << " layer view map -- internal inconsistency" << std::endl;
|
Chris@45
|
683 }
|
Chris@45
|
684
|
Chris@45
|
685 m_layerViewMap[layer].insert(view);
|
Chris@45
|
686
|
Chris@45
|
687 if (firstView) emit layerInAView(layer, true);
|
Chris@45
|
688 }
|
Chris@45
|
689
|
Chris@45
|
690 void
|
Chris@45
|
691 Document::removeFromLayerViewMap(Layer *layer, View *view)
|
Chris@45
|
692 {
|
Chris@45
|
693 if (m_layerViewMap[layer].find(view) ==
|
Chris@45
|
694 m_layerViewMap[layer].end()) {
|
Chris@45
|
695 std::cerr << "WARNING: Document::removeFromLayerViewMap:"
|
Chris@45
|
696 << " Layer " << layer << " -> view " << view << " not in"
|
Chris@45
|
697 << " layer view map -- internal inconsistency" << std::endl;
|
Chris@45
|
698 }
|
Chris@45
|
699
|
Chris@45
|
700 m_layerViewMap[layer].erase(view);
|
Chris@45
|
701
|
Chris@45
|
702 if (m_layerViewMap[layer].empty()) {
|
Chris@45
|
703 m_layerViewMap.erase(layer);
|
Chris@45
|
704 emit layerInAView(layer, false);
|
Chris@45
|
705 }
|
Chris@45
|
706 }
|
Chris@45
|
707
|
Chris@45
|
708 QString
|
Chris@45
|
709 Document::getUniqueLayerName(QString candidate)
|
Chris@45
|
710 {
|
Chris@45
|
711 for (int count = 1; ; ++count) {
|
Chris@45
|
712
|
Chris@45
|
713 QString adjusted =
|
Chris@45
|
714 (count > 1 ? QString("%1 <%2>").arg(candidate).arg(count) :
|
Chris@45
|
715 candidate);
|
Chris@45
|
716
|
Chris@45
|
717 bool duplicate = false;
|
Chris@45
|
718
|
Chris@45
|
719 for (LayerSet::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
|
Chris@45
|
720 if ((*i)->objectName() == adjusted) {
|
Chris@45
|
721 duplicate = true;
|
Chris@45
|
722 break;
|
Chris@45
|
723 }
|
Chris@45
|
724 }
|
Chris@45
|
725
|
Chris@45
|
726 if (!duplicate) return adjusted;
|
Chris@45
|
727 }
|
Chris@45
|
728 }
|
Chris@45
|
729
|
Chris@45
|
730 std::vector<Model *>
|
Chris@72
|
731 Document::getTransformInputModels()
|
Chris@45
|
732 {
|
Chris@45
|
733 std::vector<Model *> models;
|
Chris@45
|
734
|
Chris@45
|
735 if (!m_mainModel) return models;
|
Chris@45
|
736
|
Chris@45
|
737 models.push_back(m_mainModel);
|
Chris@45
|
738
|
Chris@45
|
739 //!!! This will pick up all models, including those that aren't visible...
|
Chris@45
|
740
|
Chris@45
|
741 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@45
|
742
|
Chris@45
|
743 Model *model = i->first;
|
Chris@45
|
744 if (!model || model == m_mainModel) continue;
|
Chris@45
|
745 DenseTimeValueModel *dtvm = dynamic_cast<DenseTimeValueModel *>(model);
|
Chris@45
|
746
|
Chris@45
|
747 if (dtvm) {
|
Chris@45
|
748 models.push_back(dtvm);
|
Chris@45
|
749 }
|
Chris@45
|
750 }
|
Chris@45
|
751
|
Chris@45
|
752 return models;
|
Chris@45
|
753 }
|
Chris@45
|
754
|
Chris@50
|
755 bool
|
Chris@77
|
756 Document::isKnownModel(const Model *model) const
|
Chris@77
|
757 {
|
Chris@77
|
758 if (model == m_mainModel) return true;
|
Chris@77
|
759 return (m_models.find(const_cast<Model *>(model)) != m_models.end());
|
Chris@77
|
760 }
|
Chris@77
|
761
|
Chris@77
|
762 bool
|
Chris@51
|
763 Document::canAlign()
|
Chris@50
|
764 {
|
Chris@54
|
765 TransformId id = "vamp:match-vamp-plugin:match:path";
|
Chris@54
|
766 TransformFactory *factory = TransformFactory::getInstance();
|
Chris@54
|
767 return factory->haveTransform(id);
|
Chris@50
|
768 }
|
Chris@50
|
769
|
Chris@45
|
770 void
|
Chris@45
|
771 Document::alignModel(Model *model)
|
Chris@45
|
772 {
|
Chris@86
|
773 if (!m_mainModel) return;
|
Chris@45
|
774
|
Chris@45
|
775 RangeSummarisableTimeValueModel *rm =
|
Chris@45
|
776 dynamic_cast<RangeSummarisableTimeValueModel *>(model);
|
Chris@45
|
777 if (!rm) return;
|
Chris@48
|
778
|
Chris@86
|
779 if (rm->getAlignmentReference() == m_mainModel) {
|
Chris@86
|
780 std::cerr << "Document::alignModel: model " << rm << " is already aligned to main model " << m_mainModel << std::endl;
|
Chris@86
|
781 return;
|
Chris@86
|
782 }
|
Chris@45
|
783
|
Chris@86
|
784 if (model == m_mainModel) {
|
Chris@86
|
785 // The reference has an empty alignment to itself. This makes
|
Chris@86
|
786 // it possible to distinguish between the reference and any
|
Chris@86
|
787 // unaligned model just by looking at the model itself,
|
Chris@86
|
788 // without also knowing what the main model is
|
Chris@86
|
789 std::cerr << "Document::alignModel(" << model << "): is main model, setting appropriately" << std::endl;
|
Chris@86
|
790 rm->setAlignment(new AlignmentModel(model, model, 0, 0));
|
Chris@86
|
791 return;
|
Chris@86
|
792 }
|
Chris@86
|
793
|
Chris@45
|
794 // This involves creating three new models:
|
Chris@45
|
795
|
Chris@45
|
796 // 1. an AggregateWaveModel to provide the mixdowns of the main
|
Chris@45
|
797 // model and the new model in its two channels, as input to the
|
Chris@45
|
798 // MATCH plugin
|
Chris@45
|
799
|
Chris@45
|
800 // 2. a SparseTimeValueModel, which is the model automatically
|
Chris@53
|
801 // created by FeatureExtractionPluginTransformer when running the
|
Chris@45
|
802 // MATCH plugin (thus containing the alignment path)
|
Chris@45
|
803
|
Chris@45
|
804 // 3. an AlignmentModel, which stores the path model and carries
|
Chris@45
|
805 // out alignment lookups on it.
|
Chris@45
|
806
|
Chris@45
|
807 // The first two of these are provided as arguments to the
|
Chris@45
|
808 // constructor for the third, which takes responsibility for
|
Chris@45
|
809 // deleting them. The AlignmentModel, meanwhile, is passed to the
|
Chris@45
|
810 // new model we are aligning, which also takes responsibility for
|
Chris@45
|
811 // it. We should not have to delete any of these new models here.
|
Chris@45
|
812
|
Chris@45
|
813 AggregateWaveModel::ChannelSpecList components;
|
Chris@45
|
814
|
Chris@45
|
815 components.push_back(AggregateWaveModel::ModelChannelSpec
|
Chris@45
|
816 (m_mainModel, -1));
|
Chris@45
|
817
|
Chris@45
|
818 components.push_back(AggregateWaveModel::ModelChannelSpec
|
Chris@45
|
819 (rm, -1));
|
Chris@45
|
820
|
Chris@45
|
821 Model *aggregate = new AggregateWaveModel(components);
|
Chris@45
|
822
|
Chris@72
|
823 TransformId id = "vamp:match-vamp-plugin:match:path"; //!!! configure
|
Chris@45
|
824
|
Chris@72
|
825 TransformFactory *tf = TransformFactory::getInstance();
|
Chris@45
|
826
|
Chris@72
|
827 Transform transform = tf->getDefaultTransformFor
|
Chris@72
|
828 (id, aggregate->getSampleRate());
|
Chris@57
|
829
|
Chris@72
|
830 transform.setStepSize(transform.getBlockSize()/2);
|
Chris@72
|
831 transform.setParameter("serialise", 1);
|
Chris@64
|
832
|
Chris@81
|
833 std::cerr << "Document::alignModel: Alignment transform step size " << transform.getStepSize() << ", block size " << transform.getBlockSize() << std::endl;
|
Chris@81
|
834
|
Chris@72
|
835 //!!! QString args = "<plugin param-serialise=\"1\"/>";
|
Chris@72
|
836 // Model *transformOutput = factory->transform(id, aggregate, context, args);
|
Chris@72
|
837
|
Chris@72
|
838 ModelTransformerFactory *mtf = ModelTransformerFactory::getInstance();
|
Chris@72
|
839
|
Chris@78
|
840 QString message;
|
Chris@78
|
841 Model *transformOutput = mtf->transform(transform, aggregate, message);
|
Chris@64
|
842
|
Chris@64
|
843 if (!transformOutput) {
|
Chris@72
|
844 transform.setStepSize(0);
|
Chris@78
|
845 transformOutput = mtf->transform(transform, aggregate, message);
|
Chris@64
|
846 }
|
Chris@45
|
847
|
Chris@45
|
848 SparseTimeValueModel *path = dynamic_cast<SparseTimeValueModel *>
|
Chris@45
|
849 (transformOutput);
|
Chris@45
|
850
|
Chris@45
|
851 if (!path) {
|
Chris@45
|
852 std::cerr << "Document::alignModel: ERROR: Failed to create alignment path (no MATCH plugin?)" << std::endl;
|
Chris@78
|
853 emit alignmentFailed(id, message);
|
Chris@45
|
854 delete transformOutput;
|
Chris@45
|
855 delete aggregate;
|
Chris@45
|
856 return;
|
Chris@45
|
857 }
|
Chris@45
|
858
|
Chris@45
|
859 AlignmentModel *alignmentModel = new AlignmentModel
|
Chris@45
|
860 (m_mainModel, model, aggregate, path);
|
Chris@45
|
861
|
Chris@45
|
862 rm->setAlignment(alignmentModel);
|
Chris@45
|
863 }
|
Chris@45
|
864
|
Chris@45
|
865 void
|
Chris@45
|
866 Document::alignModels()
|
Chris@45
|
867 {
|
Chris@45
|
868 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@45
|
869 alignModel(i->first);
|
Chris@45
|
870 }
|
Chris@86
|
871 alignModel(m_mainModel);
|
Chris@45
|
872 }
|
Chris@45
|
873
|
Chris@45
|
874 Document::AddLayerCommand::AddLayerCommand(Document *d,
|
Chris@45
|
875 View *view,
|
Chris@45
|
876 Layer *layer) :
|
Chris@45
|
877 m_d(d),
|
Chris@45
|
878 m_view(view),
|
Chris@45
|
879 m_layer(layer),
|
Chris@45
|
880 m_name(qApp->translate("AddLayerCommand", "Add %1 Layer").arg(layer->objectName())),
|
Chris@45
|
881 m_added(false)
|
Chris@45
|
882 {
|
Chris@45
|
883 }
|
Chris@45
|
884
|
Chris@45
|
885 Document::AddLayerCommand::~AddLayerCommand()
|
Chris@45
|
886 {
|
Chris@77
|
887 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
888 std::cerr << "Document::AddLayerCommand::~AddLayerCommand" << std::endl;
|
Chris@77
|
889 #endif
|
Chris@45
|
890 if (!m_added) {
|
Chris@45
|
891 m_d->deleteLayer(m_layer);
|
Chris@45
|
892 }
|
Chris@45
|
893 }
|
Chris@45
|
894
|
Chris@45
|
895 void
|
Chris@45
|
896 Document::AddLayerCommand::execute()
|
Chris@45
|
897 {
|
Chris@45
|
898 for (int i = 0; i < m_view->getLayerCount(); ++i) {
|
Chris@45
|
899 if (m_view->getLayer(i) == m_layer) {
|
Chris@45
|
900 // already there
|
Chris@45
|
901 m_layer->setLayerDormant(m_view, false);
|
Chris@45
|
902 m_added = true;
|
Chris@45
|
903 return;
|
Chris@45
|
904 }
|
Chris@45
|
905 }
|
Chris@45
|
906
|
Chris@45
|
907 m_view->addLayer(m_layer);
|
Chris@45
|
908 m_layer->setLayerDormant(m_view, false);
|
Chris@45
|
909
|
Chris@45
|
910 m_d->addToLayerViewMap(m_layer, m_view);
|
Chris@45
|
911 m_added = true;
|
Chris@45
|
912 }
|
Chris@45
|
913
|
Chris@45
|
914 void
|
Chris@45
|
915 Document::AddLayerCommand::unexecute()
|
Chris@45
|
916 {
|
Chris@45
|
917 m_view->removeLayer(m_layer);
|
Chris@45
|
918 m_layer->setLayerDormant(m_view, true);
|
Chris@45
|
919
|
Chris@45
|
920 m_d->removeFromLayerViewMap(m_layer, m_view);
|
Chris@45
|
921 m_added = false;
|
Chris@45
|
922 }
|
Chris@45
|
923
|
Chris@45
|
924 Document::RemoveLayerCommand::RemoveLayerCommand(Document *d,
|
Chris@45
|
925 View *view,
|
Chris@45
|
926 Layer *layer) :
|
Chris@45
|
927 m_d(d),
|
Chris@45
|
928 m_view(view),
|
Chris@45
|
929 m_layer(layer),
|
Chris@45
|
930 m_name(qApp->translate("RemoveLayerCommand", "Delete %1 Layer").arg(layer->objectName())),
|
Chris@45
|
931 m_added(true)
|
Chris@45
|
932 {
|
Chris@45
|
933 }
|
Chris@45
|
934
|
Chris@45
|
935 Document::RemoveLayerCommand::~RemoveLayerCommand()
|
Chris@45
|
936 {
|
Chris@77
|
937 #ifdef DEBUG_DOCUMENT
|
Chris@77
|
938 std::cerr << "Document::RemoveLayerCommand::~RemoveLayerCommand" << std::endl;
|
Chris@77
|
939 #endif
|
Chris@45
|
940 if (!m_added) {
|
Chris@45
|
941 m_d->deleteLayer(m_layer);
|
Chris@45
|
942 }
|
Chris@45
|
943 }
|
Chris@45
|
944
|
Chris@45
|
945 void
|
Chris@45
|
946 Document::RemoveLayerCommand::execute()
|
Chris@45
|
947 {
|
Chris@45
|
948 bool have = false;
|
Chris@45
|
949 for (int i = 0; i < m_view->getLayerCount(); ++i) {
|
Chris@45
|
950 if (m_view->getLayer(i) == m_layer) {
|
Chris@45
|
951 have = true;
|
Chris@45
|
952 break;
|
Chris@45
|
953 }
|
Chris@45
|
954 }
|
Chris@45
|
955
|
Chris@45
|
956 if (!have) { // not there!
|
Chris@45
|
957 m_layer->setLayerDormant(m_view, true);
|
Chris@45
|
958 m_added = false;
|
Chris@45
|
959 return;
|
Chris@45
|
960 }
|
Chris@45
|
961
|
Chris@45
|
962 m_view->removeLayer(m_layer);
|
Chris@45
|
963 m_layer->setLayerDormant(m_view, true);
|
Chris@45
|
964
|
Chris@45
|
965 m_d->removeFromLayerViewMap(m_layer, m_view);
|
Chris@45
|
966 m_added = false;
|
Chris@45
|
967 }
|
Chris@45
|
968
|
Chris@45
|
969 void
|
Chris@45
|
970 Document::RemoveLayerCommand::unexecute()
|
Chris@45
|
971 {
|
Chris@45
|
972 m_view->addLayer(m_layer);
|
Chris@45
|
973 m_layer->setLayerDormant(m_view, false);
|
Chris@45
|
974
|
Chris@45
|
975 m_d->addToLayerViewMap(m_layer, m_view);
|
Chris@45
|
976 m_added = true;
|
Chris@45
|
977 }
|
Chris@45
|
978
|
Chris@45
|
979 void
|
Chris@45
|
980 Document::toXml(QTextStream &out, QString indent, QString extraAttributes) const
|
Chris@45
|
981 {
|
Chris@45
|
982 out << indent + QString("<data%1%2>\n")
|
Chris@45
|
983 .arg(extraAttributes == "" ? "" : " ").arg(extraAttributes);
|
Chris@45
|
984
|
Chris@45
|
985 if (m_mainModel) {
|
Chris@45
|
986 m_mainModel->toXml(out, indent + " ", "mainModel=\"true\"");
|
Chris@45
|
987 }
|
Chris@45
|
988
|
Chris@45
|
989 // Models that are not used in a layer that is in a view should
|
Chris@45
|
990 // not be written. Get our list of required models first.
|
Chris@45
|
991
|
Chris@45
|
992 std::set<const Model *> used;
|
Chris@45
|
993
|
Chris@45
|
994 for (LayerViewMap::const_iterator i = m_layerViewMap.begin();
|
Chris@45
|
995 i != m_layerViewMap.end(); ++i) {
|
Chris@45
|
996
|
Chris@45
|
997 if (i->first && !i->second.empty() && i->first->getModel()) {
|
Chris@45
|
998 used.insert(i->first->getModel());
|
Chris@45
|
999 }
|
Chris@45
|
1000 }
|
Chris@45
|
1001
|
Chris@45
|
1002 for (ModelMap::const_iterator i = m_models.begin();
|
Chris@45
|
1003 i != m_models.end(); ++i) {
|
Chris@45
|
1004
|
Chris@45
|
1005 const Model *model = i->first;
|
Chris@45
|
1006 const ModelRecord &rec = i->second;
|
Chris@45
|
1007
|
Chris@45
|
1008 if (used.find(model) == used.end()) continue;
|
Chris@45
|
1009
|
Chris@45
|
1010 // We need an intelligent way to determine which models need
|
Chris@45
|
1011 // to be streamed (i.e. have been edited, or are small) and
|
Chris@45
|
1012 // which should not be (i.e. remain as generated by a
|
Chris@45
|
1013 // transform, and are large).
|
Chris@45
|
1014 //
|
Chris@45
|
1015 // At the moment we can get away with deciding not to stream
|
Chris@45
|
1016 // dense 3d models or writable wave file models, provided they
|
Chris@45
|
1017 // were generated from a transform, because at the moment there
|
Chris@45
|
1018 // is no way to edit those model types so it should be safe to
|
Chris@45
|
1019 // regenerate them. That won't always work in future though.
|
Chris@45
|
1020 // It would be particularly nice to be able to ask the user,
|
Chris@45
|
1021 // as well as making an intelligent guess.
|
Chris@45
|
1022
|
Chris@45
|
1023 bool writeModel = true;
|
Chris@45
|
1024 bool haveDerivation = false;
|
Chris@45
|
1025
|
Chris@72
|
1026 if (rec.source && rec.transform.getIdentifier() != "") {
|
Chris@45
|
1027 haveDerivation = true;
|
Chris@45
|
1028 }
|
Chris@45
|
1029
|
Chris@45
|
1030 if (haveDerivation) {
|
Chris@45
|
1031 if (dynamic_cast<const WritableWaveFileModel *>(model)) {
|
Chris@45
|
1032 writeModel = false;
|
Chris@45
|
1033 } else if (dynamic_cast<const DenseThreeDimensionalModel *>(model)) {
|
Chris@45
|
1034 writeModel = false;
|
Chris@45
|
1035 }
|
Chris@45
|
1036 }
|
Chris@45
|
1037
|
Chris@45
|
1038 if (writeModel) {
|
Chris@45
|
1039 i->first->toXml(out, indent + " ");
|
Chris@45
|
1040 }
|
Chris@45
|
1041
|
Chris@45
|
1042 if (haveDerivation) {
|
Chris@72
|
1043 writeBackwardCompatibleDerivation(out, indent + " ",
|
Chris@72
|
1044 i->first, rec);
|
Chris@45
|
1045 }
|
Chris@45
|
1046
|
Chris@45
|
1047 //!!! We should probably own the PlayParameterRepository
|
Chris@45
|
1048 PlayParameters *playParameters =
|
Chris@45
|
1049 PlayParameterRepository::getInstance()->getPlayParameters(i->first);
|
Chris@45
|
1050 if (playParameters) {
|
Chris@45
|
1051 playParameters->toXml
|
Chris@45
|
1052 (out, indent + " ",
|
Chris@45
|
1053 QString("model=\"%1\"")
|
Chris@45
|
1054 .arg(XmlExportable::getObjectExportId(i->first)));
|
Chris@45
|
1055 }
|
Chris@45
|
1056 }
|
Chris@45
|
1057
|
Chris@45
|
1058 for (LayerSet::const_iterator i = m_layers.begin();
|
Chris@45
|
1059 i != m_layers.end(); ++i) {
|
Chris@45
|
1060
|
Chris@45
|
1061 (*i)->toXml(out, indent + " ");
|
Chris@45
|
1062 }
|
Chris@45
|
1063
|
Chris@45
|
1064 out << indent + "</data>\n";
|
Chris@45
|
1065 }
|
Chris@45
|
1066
|
Chris@72
|
1067 void
|
Chris@72
|
1068 Document::writeBackwardCompatibleDerivation(QTextStream &out, QString indent,
|
Chris@72
|
1069 Model *targetModel,
|
Chris@72
|
1070 const ModelRecord &rec) const
|
Chris@72
|
1071 {
|
Chris@72
|
1072 // There is a lot of redundancy in the XML we output here, because
|
Chris@72
|
1073 // we want it to work with older SV session file reading code as
|
Chris@72
|
1074 // well.
|
Chris@72
|
1075 //
|
Chris@72
|
1076 // Formerly, a transform was described using a derivation element
|
Chris@72
|
1077 // which set out the source and target models, execution context
|
Chris@72
|
1078 // (step size, input channel etc) and transform id, containing a
|
Chris@72
|
1079 // plugin element which set out the transform parameters and so
|
Chris@72
|
1080 // on. (The plugin element came from a "configurationXml" string
|
Chris@72
|
1081 // obtained from PluginXml.)
|
Chris@72
|
1082 //
|
Chris@72
|
1083 // This has been replaced by a derivation element setting out the
|
Chris@72
|
1084 // source and target models and input channel, containing a
|
Chris@72
|
1085 // transform element which sets out everything in the Transform.
|
Chris@72
|
1086 //
|
Chris@72
|
1087 // In order to retain compatibility with older SV code, however,
|
Chris@72
|
1088 // we have to write out the same stuff into the derivation as
|
Chris@72
|
1089 // before, and manufacture an appropriate plugin element as well
|
Chris@72
|
1090 // as the transform element. In order that newer code knows it's
|
Chris@72
|
1091 // dealing with a newer format, we will also write an attribute
|
Chris@72
|
1092 // 'type="transform"' in the derivation element.
|
Chris@45
|
1093
|
Chris@72
|
1094 const Transform &transform = rec.transform;
|
Chris@72
|
1095
|
Chris@72
|
1096 // Just for reference, this is what we would write if we didn't
|
Chris@72
|
1097 // have to be backward compatible:
|
Chris@72
|
1098 //
|
Chris@72
|
1099 // out << indent
|
Chris@72
|
1100 // << QString("<derivation type=\"transform\" source=\"%1\" "
|
Chris@72
|
1101 // "model=\"%2\" channel=\"%3\">\n")
|
Chris@72
|
1102 // .arg(XmlExportable::getObjectExportId(rec.source))
|
Chris@72
|
1103 // .arg(XmlExportable::getObjectExportId(targetModel))
|
Chris@72
|
1104 // .arg(rec.channel);
|
Chris@72
|
1105 //
|
Chris@72
|
1106 // transform.toXml(out, indent + " ");
|
Chris@72
|
1107 //
|
Chris@72
|
1108 // out << indent << "</derivation>\n";
|
Chris@72
|
1109 //
|
Chris@72
|
1110 // Unfortunately, we can't just do that. So we do this...
|
Chris@72
|
1111
|
Chris@72
|
1112 QString extentsAttributes;
|
Chris@72
|
1113 if (transform.getStartTime() != RealTime::zeroTime ||
|
Chris@72
|
1114 transform.getDuration() != RealTime::zeroTime) {
|
Chris@72
|
1115 extentsAttributes = QString("startFrame=\"%1\" duration=\"%2\" ")
|
Chris@72
|
1116 .arg(RealTime::realTime2Frame(transform.getStartTime(),
|
Chris@72
|
1117 targetModel->getSampleRate()))
|
Chris@72
|
1118 .arg(RealTime::realTime2Frame(transform.getDuration(),
|
Chris@72
|
1119 targetModel->getSampleRate()));
|
Chris@72
|
1120 }
|
Chris@72
|
1121
|
Chris@72
|
1122 out << indent;
|
Chris@72
|
1123 out << QString("<derivation type=\"transform\" source=\"%1\" "
|
Chris@72
|
1124 "model=\"%2\" channel=\"%3\" domain=\"%4\" "
|
Chris@72
|
1125 "stepSize=\"%5\" blockSize=\"%6\" %7windowType=\"%8\" "
|
Chris@72
|
1126 "transform=\"%9\">\n")
|
Chris@72
|
1127 .arg(XmlExportable::getObjectExportId(rec.source))
|
Chris@72
|
1128 .arg(XmlExportable::getObjectExportId(targetModel))
|
Chris@72
|
1129 .arg(rec.channel)
|
Chris@72
|
1130 .arg(TransformFactory::getInstance()->getTransformInputDomain
|
Chris@72
|
1131 (transform.getIdentifier()))
|
Chris@72
|
1132 .arg(transform.getStepSize())
|
Chris@72
|
1133 .arg(transform.getBlockSize())
|
Chris@72
|
1134 .arg(extentsAttributes)
|
Chris@72
|
1135 .arg(int(transform.getWindowType()))
|
Chris@72
|
1136 .arg(XmlExportable::encodeEntities(transform.getIdentifier()));
|
Chris@72
|
1137
|
Chris@72
|
1138 transform.toXml(out, indent + " ");
|
Chris@72
|
1139
|
Chris@72
|
1140 out << indent << " "
|
Chris@72
|
1141 << TransformFactory::getInstance()->getPluginConfigurationXml(transform);
|
Chris@72
|
1142
|
Chris@72
|
1143 out << indent << "</derivation>\n";
|
Chris@72
|
1144 }
|
Chris@72
|
1145
|