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@420
|
18 #include "Align.h"
|
Chris@420
|
19
|
Chris@45
|
20 #include "data/model/WaveFileModel.h"
|
Chris@45
|
21 #include "data/model/WritableWaveFileModel.h"
|
Chris@45
|
22 #include "data/model/DenseThreeDimensionalModel.h"
|
Chris@45
|
23 #include "data/model/DenseTimeValueModel.h"
|
Chris@588
|
24 #include "data/model/AggregateWaveModel.h"
|
gyorgyf@270
|
25
|
Chris@45
|
26 #include "layer/Layer.h"
|
Chris@105
|
27 #include "widgets/CommandHistory.h"
|
Chris@45
|
28 #include "base/Command.h"
|
Chris@45
|
29 #include "view/View.h"
|
Chris@45
|
30 #include "base/PlayParameterRepository.h"
|
Chris@45
|
31 #include "base/PlayParameters.h"
|
Chris@106
|
32 #include "transform/TransformFactory.h"
|
Chris@106
|
33 #include "transform/ModelTransformerFactory.h"
|
gyorgyf@270
|
34 #include "transform/FeatureExtractionModelTransformer.h"
|
Chris@45
|
35 #include <QApplication>
|
Chris@45
|
36 #include <QTextStream>
|
Chris@90
|
37 #include <QSettings>
|
Chris@45
|
38 #include <iostream>
|
Chris@212
|
39 #include <typeinfo>
|
Chris@45
|
40
|
Chris@45
|
41 #include "data/model/AlignmentModel.h"
|
Chris@423
|
42 #include "Align.h"
|
Chris@45
|
43
|
Chris@297
|
44 using std::vector;
|
Chris@297
|
45
|
Chris@138
|
46 //#define DEBUG_DOCUMENT 1
|
Chris@77
|
47
|
Chris@45
|
48 //!!! still need to handle command history, documentRestored/documentModified
|
Chris@45
|
49
|
Chris@45
|
50 Document::Document() :
|
Chris@636
|
51 m_mainModel(nullptr),
|
Chris@423
|
52 m_autoAlignment(false),
|
Chris@601
|
53 m_align(new Align()),
|
Chris@601
|
54 m_isIncomplete(false)
|
Chris@45
|
55 {
|
Chris@456
|
56 connect(this,
|
Chris@456
|
57 SIGNAL(modelAboutToBeDeleted(Model *)),
|
Chris@54
|
58 ModelTransformerFactory::getInstance(),
|
Chris@45
|
59 SLOT(modelAboutToBeDeleted(Model *)));
|
Chris@456
|
60
|
Chris@456
|
61 connect(ModelTransformerFactory::getInstance(),
|
Chris@456
|
62 SIGNAL(transformFailed(QString, QString)),
|
Chris@456
|
63 this,
|
Chris@456
|
64 SIGNAL(modelGenerationFailed(QString, QString)));
|
Chris@459
|
65
|
Chris@428
|
66 connect(m_align, SIGNAL(alignmentComplete(AlignmentModel *)),
|
Chris@428
|
67 this, SIGNAL(alignmentComplete(AlignmentModel *)));
|
Chris@45
|
68 }
|
Chris@45
|
69
|
Chris@45
|
70 Document::~Document()
|
Chris@45
|
71 {
|
Chris@45
|
72 //!!! Document should really own the command history. atm we
|
Chris@45
|
73 //still refer to it in various places that don't have access to
|
Chris@45
|
74 //the document, be nice to fix that
|
Chris@45
|
75
|
Chris@77
|
76 #ifdef DEBUG_DOCUMENT
|
Chris@293
|
77 cerr << "\n\nDocument::~Document: about to clear command history" << endl;
|
Chris@77
|
78 #endif
|
Chris@45
|
79 CommandHistory::getInstance()->clear();
|
Chris@45
|
80
|
Chris@77
|
81 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
82 SVDEBUG << "Document::~Document: about to delete layers" << endl;
|
Chris@77
|
83 #endif
|
Chris@45
|
84 while (!m_layers.empty()) {
|
Chris@595
|
85 deleteLayer(*m_layers.begin(), true);
|
Chris@45
|
86 }
|
Chris@45
|
87
|
Chris@45
|
88 if (!m_models.empty()) {
|
Chris@595
|
89 SVDEBUG << "Document::~Document: WARNING: "
|
Chris@595
|
90 << m_models.size() << " model(s) still remain -- "
|
Chris@595
|
91 << "should have been garbage collected when deleting layers"
|
Chris@595
|
92 << endl;
|
Chris@595
|
93 while (!m_models.empty()) {
|
Chris@45
|
94 Model *model = m_models.begin()->first;
|
Chris@595
|
95 if (model == m_mainModel) {
|
Chris@595
|
96 // just in case!
|
Chris@595
|
97 SVDEBUG << "Document::~Document: WARNING: Main model is also"
|
Chris@595
|
98 << " in models list!" << endl;
|
Chris@595
|
99 } else if (model) {
|
Chris@79
|
100 model->aboutToDelete();
|
Chris@595
|
101 emit modelAboutToBeDeleted(model);
|
Chris@595
|
102 delete model;
|
Chris@595
|
103 }
|
Chris@595
|
104 m_models.erase(m_models.begin());
|
Chris@595
|
105 }
|
Chris@45
|
106 }
|
Chris@45
|
107
|
Chris@77
|
108 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
109 SVDEBUG << "Document::~Document: About to get rid of main model"
|
Chris@595
|
110 << endl;
|
Chris@77
|
111 #endif
|
Chris@45
|
112 if (m_mainModel) {
|
Chris@79
|
113 m_mainModel->aboutToDelete();
|
Chris@45
|
114 emit modelAboutToBeDeleted(m_mainModel);
|
Chris@45
|
115 }
|
Chris@45
|
116
|
Chris@636
|
117 emit mainModelChanged(nullptr);
|
Chris@45
|
118 delete m_mainModel;
|
Chris@45
|
119 }
|
Chris@45
|
120
|
Chris@45
|
121 Layer *
|
Chris@45
|
122 Document::createLayer(LayerFactory::LayerType type)
|
Chris@45
|
123 {
|
Chris@45
|
124 Layer *newLayer = LayerFactory::getInstance()->createLayer(type);
|
Chris@636
|
125 if (!newLayer) return nullptr;
|
Chris@45
|
126
|
Chris@45
|
127 newLayer->setObjectName(getUniqueLayerName(newLayer->objectName()));
|
Chris@45
|
128
|
Chris@45
|
129 m_layers.insert(newLayer);
|
Chris@52
|
130
|
Chris@77
|
131 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
132 SVDEBUG << "Document::createLayer: Added layer of type " << type
|
Chris@229
|
133 << ", now have " << m_layers.size() << " layers" << endl;
|
Chris@77
|
134 #endif
|
Chris@52
|
135
|
Chris@45
|
136 emit layerAdded(newLayer);
|
Chris@45
|
137
|
Chris@45
|
138 return newLayer;
|
Chris@45
|
139 }
|
Chris@45
|
140
|
Chris@45
|
141 Layer *
|
Chris@45
|
142 Document::createMainModelLayer(LayerFactory::LayerType type)
|
Chris@45
|
143 {
|
Chris@45
|
144 Layer *newLayer = createLayer(type);
|
Chris@636
|
145 if (!newLayer) return nullptr;
|
Chris@45
|
146 setModel(newLayer, m_mainModel);
|
Chris@45
|
147 return newLayer;
|
Chris@45
|
148 }
|
Chris@45
|
149
|
Chris@45
|
150 Layer *
|
Chris@45
|
151 Document::createImportedLayer(Model *model)
|
Chris@45
|
152 {
|
Chris@45
|
153 LayerFactory::LayerTypeSet types =
|
Chris@595
|
154 LayerFactory::getInstance()->getValidLayerTypes(model);
|
Chris@45
|
155
|
Chris@45
|
156 if (types.empty()) {
|
Chris@595
|
157 cerr << "WARNING: Document::importLayer: no valid display layer for model" << endl;
|
Chris@636
|
158 return nullptr;
|
Chris@45
|
159 }
|
Chris@45
|
160
|
Chris@45
|
161 //!!! for now, just use the first suitable layer type
|
Chris@45
|
162 LayerFactory::LayerType type = *types.begin();
|
Chris@45
|
163
|
Chris@45
|
164 Layer *newLayer = LayerFactory::getInstance()->createLayer(type);
|
Chris@636
|
165 if (!newLayer) return nullptr;
|
Chris@45
|
166
|
Chris@45
|
167 newLayer->setObjectName(getUniqueLayerName(newLayer->objectName()));
|
Chris@45
|
168
|
Chris@45
|
169 addImportedModel(model);
|
Chris@45
|
170 setModel(newLayer, model);
|
Chris@45
|
171
|
Chris@45
|
172 //!!! and all channels
|
Chris@45
|
173 setChannel(newLayer, -1);
|
Chris@45
|
174
|
Chris@45
|
175 m_layers.insert(newLayer);
|
Chris@52
|
176
|
Chris@77
|
177 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
178 SVDEBUG << "Document::createImportedLayer: Added layer of type " << type
|
Chris@229
|
179 << ", now have " << m_layers.size() << " layers" << endl;
|
Chris@77
|
180 #endif
|
Chris@52
|
181
|
Chris@45
|
182 emit layerAdded(newLayer);
|
Chris@45
|
183 return newLayer;
|
Chris@45
|
184 }
|
Chris@45
|
185
|
Chris@45
|
186 Layer *
|
Chris@45
|
187 Document::createEmptyLayer(LayerFactory::LayerType type)
|
Chris@45
|
188 {
|
Chris@636
|
189 if (!m_mainModel) return nullptr;
|
Chris@61
|
190
|
Chris@45
|
191 Model *newModel =
|
Chris@595
|
192 LayerFactory::getInstance()->createEmptyModel(type, m_mainModel);
|
Chris@636
|
193 if (!newModel) return nullptr;
|
Chris@45
|
194
|
Chris@45
|
195 Layer *newLayer = createLayer(type);
|
Chris@45
|
196 if (!newLayer) {
|
Chris@595
|
197 delete newModel;
|
Chris@636
|
198 return nullptr;
|
Chris@45
|
199 }
|
Chris@45
|
200
|
Chris@45
|
201 addImportedModel(newModel);
|
Chris@45
|
202 setModel(newLayer, newModel);
|
Chris@45
|
203
|
Chris@45
|
204 return newLayer;
|
Chris@45
|
205 }
|
Chris@45
|
206
|
Chris@45
|
207 Layer *
|
Chris@45
|
208 Document::createDerivedLayer(LayerFactory::LayerType type,
|
Chris@595
|
209 TransformId transform)
|
Chris@45
|
210 {
|
Chris@45
|
211 Layer *newLayer = createLayer(type);
|
Chris@636
|
212 if (!newLayer) return nullptr;
|
Chris@45
|
213
|
Chris@45
|
214 newLayer->setObjectName(getUniqueLayerName
|
Chris@54
|
215 (TransformFactory::getInstance()->
|
Chris@54
|
216 getTransformFriendlyName(transform)));
|
Chris@45
|
217
|
Chris@45
|
218 return newLayer;
|
Chris@45
|
219 }
|
Chris@297
|
220
|
Chris@45
|
221 Layer *
|
Chris@72
|
222 Document::createDerivedLayer(const Transform &transform,
|
Chris@72
|
223 const ModelTransformer::Input &input)
|
Chris@45
|
224 {
|
Chris@297
|
225 Transforms transforms;
|
Chris@297
|
226 transforms.push_back(transform);
|
Chris@297
|
227 vector<Layer *> layers = createDerivedLayers(transforms, input);
|
Chris@636
|
228 if (layers.empty()) return nullptr;
|
Chris@297
|
229 else return layers[0];
|
Chris@297
|
230 }
|
Chris@297
|
231
|
Chris@297
|
232 vector<Layer *>
|
Chris@297
|
233 Document::createDerivedLayers(const Transforms &transforms,
|
Chris@297
|
234 const ModelTransformer::Input &input)
|
Chris@297
|
235 {
|
Chris@78
|
236 QString message;
|
Chris@636
|
237 vector<Model *> newModels = addDerivedModels(transforms, input, message, nullptr);
|
Chris@297
|
238
|
Chris@297
|
239 if (newModels.empty()) {
|
Chris@297
|
240 //!!! This identifier may be wrong!
|
Chris@297
|
241 emit modelGenerationFailed(transforms[0].getIdentifier(), message);
|
Chris@297
|
242 return vector<Layer *>();
|
Chris@78
|
243 } else if (message != "") {
|
Chris@297
|
244 //!!! This identifier may be wrong!
|
Chris@297
|
245 emit modelGenerationWarning(transforms[0].getIdentifier(), message);
|
Chris@45
|
246 }
|
Chris@45
|
247
|
Chris@329
|
248 QStringList names;
|
Chris@366
|
249 for (int i = 0; i < (int)newModels.size(); ++i) {
|
Chris@329
|
250 names.push_back(getUniqueLayerName
|
Chris@329
|
251 (TransformFactory::getInstance()->
|
Chris@329
|
252 getTransformFriendlyName
|
Chris@329
|
253 (transforms[i].getIdentifier())));
|
Chris@329
|
254 }
|
Chris@329
|
255
|
Chris@329
|
256 vector<Layer *> layers = createLayersForDerivedModels(newModels, names);
|
Chris@329
|
257 return layers;
|
Chris@329
|
258 }
|
Chris@329
|
259
|
Chris@329
|
260 class AdditionalModelConverter :
|
Chris@329
|
261 public ModelTransformerFactory::AdditionalModelHandler
|
Chris@329
|
262 {
|
Chris@329
|
263 public:
|
Chris@329
|
264 AdditionalModelConverter(Document *doc,
|
Chris@329
|
265 Document::LayerCreationHandler *handler) :
|
Chris@329
|
266 m_doc(doc),
|
Chris@329
|
267 m_handler(handler) {
|
Chris@329
|
268 }
|
Chris@329
|
269
|
Chris@633
|
270 ~AdditionalModelConverter() override { }
|
Chris@329
|
271
|
Chris@329
|
272 void
|
Chris@329
|
273 setPrimaryLayers(vector<Layer *> layers) {
|
Chris@329
|
274 m_primary = layers;
|
Chris@329
|
275 }
|
Chris@329
|
276
|
Chris@329
|
277 void
|
Chris@633
|
278 moreModelsAvailable(vector<Model *> models) override {
|
Chris@329
|
279 std::cerr << "AdditionalModelConverter::moreModelsAvailable: " << models.size() << " model(s)" << std::endl;
|
Chris@329
|
280 // We can't automatically regenerate the additional models on
|
Chris@329
|
281 // reload -- we should delete them instead
|
Chris@329
|
282 QStringList names;
|
Chris@329
|
283 foreach (Model *model, models) {
|
Chris@329
|
284 m_doc->addAdditionalModel(model);
|
Chris@329
|
285 names.push_back(QString());
|
Chris@329
|
286 }
|
Chris@329
|
287 vector<Layer *> layers = m_doc->createLayersForDerivedModels
|
Chris@329
|
288 (models, names);
|
Chris@363
|
289 m_handler->layersCreated(this, m_primary, layers);
|
Chris@329
|
290 delete this;
|
Chris@329
|
291 }
|
Chris@329
|
292
|
Chris@329
|
293 void
|
Chris@633
|
294 noMoreModelsAvailable() override {
|
Chris@329
|
295 std::cerr << "AdditionalModelConverter::noMoreModelsAvailable" << std::endl;
|
Chris@363
|
296 m_handler->layersCreated(this, m_primary, vector<Layer *>());
|
Chris@329
|
297 delete this;
|
Chris@329
|
298 }
|
Chris@329
|
299
|
Chris@363
|
300 void cancel() {
|
Chris@363
|
301 foreach (Layer *layer, m_primary) {
|
Chris@363
|
302 Model *model = layer->getModel();
|
Chris@363
|
303 if (model) {
|
Chris@363
|
304 model->abandon();
|
Chris@363
|
305 }
|
Chris@363
|
306 }
|
Chris@363
|
307 }
|
Chris@363
|
308
|
Chris@329
|
309 private:
|
Chris@329
|
310 Document *m_doc;
|
Chris@329
|
311 vector<Layer *> m_primary;
|
Chris@329
|
312 Document::LayerCreationHandler *m_handler; //!!! how to handle destruction of this?
|
Chris@329
|
313 };
|
Chris@329
|
314
|
Chris@363
|
315 Document::LayerCreationAsyncHandle
|
Chris@329
|
316 Document::createDerivedLayersAsync(const Transforms &transforms,
|
Chris@329
|
317 const ModelTransformer::Input &input,
|
Chris@329
|
318 LayerCreationHandler *handler)
|
Chris@329
|
319 {
|
Chris@329
|
320 QString message;
|
Chris@329
|
321
|
Chris@329
|
322 AdditionalModelConverter *amc = new AdditionalModelConverter(this, handler);
|
Chris@329
|
323
|
Chris@329
|
324 vector<Model *> newModels = addDerivedModels
|
Chris@329
|
325 (transforms, input, message, amc);
|
Chris@329
|
326
|
Chris@329
|
327 QStringList names;
|
Chris@366
|
328 for (int i = 0; i < (int)newModels.size(); ++i) {
|
Chris@329
|
329 names.push_back(getUniqueLayerName
|
Chris@329
|
330 (TransformFactory::getInstance()->
|
Chris@329
|
331 getTransformFriendlyName
|
Chris@329
|
332 (transforms[i].getIdentifier())));
|
Chris@329
|
333 }
|
Chris@329
|
334
|
Chris@329
|
335 vector<Layer *> layers = createLayersForDerivedModels(newModels, names);
|
Chris@329
|
336 amc->setPrimaryLayers(layers);
|
Chris@329
|
337
|
Chris@329
|
338 if (newModels.empty()) {
|
Chris@329
|
339 //!!! This identifier may be wrong!
|
Chris@329
|
340 emit modelGenerationFailed(transforms[0].getIdentifier(), message);
|
Chris@363
|
341 //!!! what to do with amc?
|
Chris@329
|
342 } else if (message != "") {
|
Chris@329
|
343 //!!! This identifier may be wrong!
|
Chris@329
|
344 emit modelGenerationWarning(transforms[0].getIdentifier(), message);
|
Chris@363
|
345 //!!! what to do with amc?
|
Chris@329
|
346 }
|
Chris@363
|
347
|
Chris@363
|
348 return amc;
|
Chris@363
|
349 }
|
Chris@363
|
350
|
Chris@363
|
351 void
|
Chris@363
|
352 Document::cancelAsyncLayerCreation(Document::LayerCreationAsyncHandle h)
|
Chris@363
|
353 {
|
Chris@363
|
354 AdditionalModelConverter *conv = static_cast<AdditionalModelConverter *>(h);
|
Chris@363
|
355 conv->cancel();
|
Chris@329
|
356 }
|
Chris@329
|
357
|
Chris@329
|
358 vector<Layer *>
|
Chris@329
|
359 Document::createLayersForDerivedModels(vector<Model *> newModels,
|
Chris@329
|
360 QStringList names)
|
Chris@329
|
361 {
|
Chris@297
|
362 vector<Layer *> layers;
|
Chris@329
|
363
|
Chris@297
|
364 for (int i = 0; i < (int)newModels.size(); ++i) {
|
Chris@297
|
365
|
Chris@297
|
366 Model *newModel = newModels[i];
|
Chris@297
|
367
|
Chris@297
|
368 LayerFactory::LayerTypeSet types =
|
Chris@297
|
369 LayerFactory::getInstance()->getValidLayerTypes(newModel);
|
Chris@297
|
370
|
Chris@297
|
371 if (types.empty()) {
|
Chris@329
|
372 cerr << "WARNING: Document::createLayerForTransformer: no valid display layer for output of transform " << names[i] << endl;
|
Chris@297
|
373 //!!! inadequate cleanup:
|
Chris@297
|
374 newModel->aboutToDelete();
|
Chris@297
|
375 emit modelAboutToBeDeleted(newModel);
|
Chris@297
|
376 m_models.erase(newModel);
|
Chris@297
|
377 delete newModel;
|
Chris@297
|
378 return vector<Layer *>();
|
Chris@297
|
379 }
|
Chris@297
|
380
|
Chris@297
|
381 //!!! for now, just use the first suitable layer type
|
Chris@297
|
382
|
Chris@297
|
383 Layer *newLayer = createLayer(*types.begin());
|
Chris@297
|
384 setModel(newLayer, newModel);
|
Chris@297
|
385
|
Chris@297
|
386 //!!! We need to clone the model when adding the layer, so that it
|
Chris@297
|
387 //can be edited without affecting other layers that are based on
|
Chris@297
|
388 //the same model. Unfortunately we can't just clone it now,
|
Chris@297
|
389 //because it probably hasn't been completed yet -- the transform
|
Chris@297
|
390 //runs in the background. Maybe the transform has to handle
|
Chris@297
|
391 //cloning and cacheing models itself.
|
Chris@297
|
392 //
|
Chris@297
|
393 // Once we do clone models here, of course, we'll have to avoid
|
Chris@297
|
394 // leaking them too.
|
Chris@297
|
395 //
|
Chris@297
|
396 // We want the user to be able to add a model to a second layer
|
Chris@297
|
397 // _while it's still being calculated in the first_ and have it
|
Chris@297
|
398 // work quickly. That means we need to put the same physical
|
Chris@297
|
399 // model pointer in both layers, so they can't actually be cloned.
|
Chris@297
|
400
|
Chris@297
|
401 if (newLayer) {
|
Chris@329
|
402 newLayer->setObjectName(names[i]);
|
Chris@297
|
403 }
|
Chris@297
|
404
|
Chris@297
|
405 emit layerAdded(newLayer);
|
Chris@297
|
406 layers.push_back(newLayer);
|
Chris@45
|
407 }
|
Chris@45
|
408
|
Chris@297
|
409 return layers;
|
Chris@45
|
410 }
|
Chris@45
|
411
|
Chris@45
|
412 void
|
Chris@45
|
413 Document::setMainModel(WaveFileModel *model)
|
Chris@45
|
414 {
|
Chris@45
|
415 Model *oldMainModel = m_mainModel;
|
Chris@45
|
416 m_mainModel = model;
|
Chris@160
|
417
|
Chris@45
|
418 emit modelAdded(m_mainModel);
|
Chris@160
|
419 if (model) {
|
Chris@160
|
420 emit activity(tr("Set main model to %1").arg(model->objectName()));
|
Chris@160
|
421 } else {
|
Chris@160
|
422 emit activity(tr("Clear main model"));
|
Chris@160
|
423 }
|
Chris@45
|
424
|
Chris@45
|
425 std::vector<Layer *> obsoleteLayers;
|
Chris@53
|
426 std::set<QString> failedTransformers;
|
Chris@45
|
427
|
Chris@45
|
428 // We need to ensure that no layer is left using oldMainModel or
|
Chris@45
|
429 // any of the old derived models as its model. Either replace the
|
Chris@45
|
430 // model, or delete the layer for each layer that is currently
|
Chris@45
|
431 // using one of these. Carry out this replacement before we
|
Chris@45
|
432 // delete any of the models.
|
Chris@45
|
433
|
Chris@77
|
434 #ifdef DEBUG_DOCUMENT
|
Chris@293
|
435 cerr << "Document::setMainModel: Have "
|
Chris@293
|
436 << m_layers.size() << " layers" << endl;
|
Chris@293
|
437 cerr << "Models now: ";
|
Chris@137
|
438 for (ModelMap::const_iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@293
|
439 cerr << i->first << " ";
|
Chris@137
|
440 }
|
Chris@293
|
441 cerr << endl;
|
Chris@293
|
442 cerr << "Old main model: " << oldMainModel << endl;
|
Chris@77
|
443 #endif
|
Chris@52
|
444
|
Chris@45
|
445 for (LayerSet::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
|
Chris@45
|
446
|
Chris@595
|
447 Layer *layer = *i;
|
Chris@595
|
448 Model *model = layer->getModel();
|
Chris@45
|
449
|
Chris@77
|
450 #ifdef DEBUG_DOCUMENT
|
Chris@293
|
451 cerr << "Document::setMainModel: inspecting model "
|
Chris@229
|
452 << (model ? model->objectName(): "(null)") << " in layer "
|
Chris@293
|
453 << layer->objectName() << endl;
|
Chris@77
|
454 #endif
|
Chris@45
|
455
|
Chris@595
|
456 if (model == oldMainModel) {
|
Chris@77
|
457 #ifdef DEBUG_DOCUMENT
|
Chris@293
|
458 cerr << "... it uses the old main model, replacing" << endl;
|
Chris@77
|
459 #endif
|
Chris@595
|
460 LayerFactory::getInstance()->setModel(layer, m_mainModel);
|
Chris@595
|
461 continue;
|
Chris@595
|
462 }
|
Chris@45
|
463
|
Chris@137
|
464 if (!model) {
|
Chris@293
|
465 cerr << "WARNING: Document::setMainModel: Null model in layer "
|
Chris@293
|
466 << layer << endl;
|
Chris@595
|
467 // get rid of this hideous degenerate
|
Chris@595
|
468 obsoleteLayers.push_back(layer);
|
Chris@595
|
469 continue;
|
Chris@595
|
470 }
|
Chris@137
|
471
|
Chris@595
|
472 if (m_models.find(model) == m_models.end()) {
|
Chris@595
|
473 cerr << "WARNING: Document::setMainModel: Unknown model "
|
Chris@595
|
474 << model << " in layer " << layer << endl;
|
Chris@595
|
475 // and this one
|
Chris@595
|
476 obsoleteLayers.push_back(layer);
|
Chris@595
|
477 continue;
|
Chris@595
|
478 }
|
Chris@595
|
479
|
Chris@595
|
480 if (m_models[model].source &&
|
Chris@70
|
481 (m_models[model].source == oldMainModel)) {
|
Chris@45
|
482
|
Chris@77
|
483 #ifdef DEBUG_DOCUMENT
|
Chris@293
|
484 cerr << "... it uses a model derived from the old main model, regenerating" << endl;
|
Chris@77
|
485 #endif
|
Chris@45
|
486
|
Chris@595
|
487 // This model was derived from the previous main
|
Chris@595
|
488 // model: regenerate it.
|
Chris@595
|
489
|
Chris@595
|
490 const Transform &transform = m_models[model].transform;
|
Chris@72
|
491 QString transformId = transform.getIdentifier();
|
Chris@595
|
492
|
Chris@72
|
493 //!!! We have a problem here if the number of channels in
|
Chris@72
|
494 //the main model has changed.
|
Chris@72
|
495
|
Chris@78
|
496 QString message;
|
Chris@595
|
497 Model *replacementModel =
|
Chris@45
|
498 addDerivedModel(transform,
|
Chris@72
|
499 ModelTransformer::Input
|
Chris@78
|
500 (m_mainModel, m_models[model].channel),
|
Chris@78
|
501 message);
|
Chris@595
|
502
|
Chris@595
|
503 if (!replacementModel) {
|
Chris@595
|
504 cerr << "WARNING: Document::setMainModel: Failed to regenerate model for transform \""
|
Chris@595
|
505 << transformId << "\"" << " in layer " << layer << endl;
|
Chris@72
|
506 if (failedTransformers.find(transformId)
|
Chris@72
|
507 == failedTransformers.end()) {
|
Chris@45
|
508 emit modelRegenerationFailed(layer->objectName(),
|
Chris@78
|
509 transformId,
|
Chris@78
|
510 message);
|
Chris@72
|
511 failedTransformers.insert(transformId);
|
Chris@45
|
512 }
|
Chris@595
|
513 obsoleteLayers.push_back(layer);
|
Chris@595
|
514 } else {
|
Chris@78
|
515 if (message != "") {
|
Chris@78
|
516 emit modelRegenerationWarning(layer->objectName(),
|
Chris@78
|
517 transformId,
|
Chris@78
|
518 message);
|
Chris@78
|
519 }
|
Chris@77
|
520 #ifdef DEBUG_DOCUMENT
|
Chris@293
|
521 cerr << "Replacing model " << model << " (type "
|
Chris@77
|
522 << typeid(*model).name() << ") with model "
|
Chris@77
|
523 << replacementModel << " (type "
|
Chris@77
|
524 << typeid(*replacementModel).name() << ") in layer "
|
Chris@228
|
525 << layer << " (name " << layer->objectName() << ")"
|
Chris@293
|
526 << endl;
|
Chris@366
|
527
|
Chris@45
|
528 RangeSummarisableTimeValueModel *rm =
|
Chris@45
|
529 dynamic_cast<RangeSummarisableTimeValueModel *>(replacementModel);
|
Chris@45
|
530 if (rm) {
|
Chris@293
|
531 cerr << "new model has " << rm->getChannelCount() << " channels " << endl;
|
Chris@45
|
532 } else {
|
Chris@293
|
533 cerr << "new model " << replacementModel << " is not a RangeSummarisableTimeValueModel!" << endl;
|
Chris@45
|
534 }
|
Chris@77
|
535 #endif
|
Chris@595
|
536 setModel(layer, replacementModel);
|
Chris@595
|
537 }
|
Chris@595
|
538 }
|
Chris@45
|
539 }
|
Chris@45
|
540
|
Chris@45
|
541 for (size_t k = 0; k < obsoleteLayers.size(); ++k) {
|
Chris@595
|
542 deleteLayer(obsoleteLayers[k], true);
|
Chris@45
|
543 }
|
Chris@45
|
544
|
Chris@48
|
545 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@329
|
546 if (i->second.additional) {
|
Chris@329
|
547 Model *m = i->first;
|
Chris@588
|
548 m->aboutToDelete();
|
Chris@329
|
549 emit modelAboutToBeDeleted(m);
|
Chris@329
|
550 delete m;
|
Chris@329
|
551 }
|
Chris@329
|
552 }
|
Chris@329
|
553
|
Chris@329
|
554 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@86
|
555
|
Chris@137
|
556 Model *m = i->first;
|
Chris@137
|
557
|
Chris@137
|
558 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
559 SVDEBUG << "considering alignment for model " << m << " (name \""
|
Chris@229
|
560 << m->objectName() << "\")" << endl;
|
Chris@137
|
561 #endif
|
Chris@137
|
562
|
Chris@86
|
563 if (m_autoAlignment) {
|
Chris@86
|
564
|
Chris@137
|
565 alignModel(m);
|
Chris@86
|
566
|
Chris@86
|
567 } else if (oldMainModel &&
|
Chris@137
|
568 (m->getAlignmentReference() == oldMainModel)) {
|
Chris@86
|
569
|
Chris@137
|
570 alignModel(m);
|
Chris@48
|
571 }
|
Chris@48
|
572 }
|
Chris@48
|
573
|
Chris@77
|
574 if (oldMainModel) {
|
Chris@79
|
575 oldMainModel->aboutToDelete();
|
Chris@77
|
576 emit modelAboutToBeDeleted(oldMainModel);
|
Chris@77
|
577 }
|
Chris@77
|
578
|
Chris@86
|
579 if (m_autoAlignment) {
|
Chris@387
|
580 SVDEBUG << "Document::setMainModel: auto-alignment is on, aligning model if possible" << endl;
|
Chris@86
|
581 alignModel(m_mainModel);
|
Chris@86
|
582 }
|
Chris@86
|
583
|
Chris@45
|
584 emit mainModelChanged(m_mainModel);
|
Chris@45
|
585
|
Chris@45
|
586 delete oldMainModel;
|
Chris@45
|
587 }
|
Chris@45
|
588
|
Chris@45
|
589 void
|
Chris@329
|
590 Document::addAlreadyDerivedModel(const Transform &transform,
|
Chris@329
|
591 const ModelTransformer::Input &input,
|
Chris@329
|
592 Model *outputModelToAdd)
|
Chris@45
|
593 {
|
Chris@45
|
594 if (m_models.find(outputModelToAdd) != m_models.end()) {
|
Chris@595
|
595 cerr << "WARNING: Document::addAlreadyDerivedModel: Model already added"
|
Chris@595
|
596 << endl;
|
Chris@595
|
597 return;
|
Chris@45
|
598 }
|
Chris@45
|
599
|
Chris@77
|
600 #ifdef DEBUG_DOCUMENT
|
Chris@248
|
601 if (input.getModel()) {
|
Chris@329
|
602 cerr << "Document::addAlreadyDerivedModel: source is " << input.getModel() << " \"" << input.getModel()->objectName() << "\"" << endl;
|
Chris@248
|
603 } else {
|
Chris@329
|
604 cerr << "Document::addAlreadyDerivedModel: source is " << input.getModel() << endl;
|
Chris@248
|
605 }
|
Chris@77
|
606 #endif
|
Chris@45
|
607
|
Chris@45
|
608 ModelRecord rec;
|
Chris@72
|
609 rec.source = input.getModel();
|
Chris@72
|
610 rec.channel = input.getChannel();
|
Chris@45
|
611 rec.transform = transform;
|
Chris@329
|
612 rec.additional = false;
|
Chris@45
|
613 rec.refcount = 0;
|
Chris@45
|
614
|
Chris@72
|
615 outputModelToAdd->setSourceModel(input.getModel());
|
Chris@45
|
616
|
Chris@45
|
617 m_models[outputModelToAdd] = rec;
|
Chris@45
|
618
|
Chris@137
|
619 #ifdef DEBUG_DOCUMENT
|
Chris@329
|
620 cerr << "Document::addAlreadyDerivedModel: Added model " << outputModelToAdd << endl;
|
Chris@293
|
621 cerr << "Models now: ";
|
Chris@137
|
622 for (ModelMap::const_iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@293
|
623 cerr << i->first << " ";
|
Chris@137
|
624 }
|
Chris@293
|
625 cerr << endl;
|
Chris@137
|
626 #endif
|
Chris@137
|
627
|
Chris@45
|
628 emit modelAdded(outputModelToAdd);
|
Chris@45
|
629 }
|
Chris@45
|
630
|
Chris@45
|
631
|
Chris@45
|
632 void
|
Chris@45
|
633 Document::addImportedModel(Model *model)
|
Chris@45
|
634 {
|
Chris@45
|
635 if (m_models.find(model) != m_models.end()) {
|
Chris@595
|
636 cerr << "WARNING: Document::addImportedModel: Model already added"
|
Chris@595
|
637 << endl;
|
Chris@595
|
638 return;
|
Chris@45
|
639 }
|
Chris@45
|
640
|
Chris@45
|
641 ModelRecord rec;
|
Chris@636
|
642 rec.source = nullptr;
|
Chris@408
|
643 rec.channel = 0;
|
Chris@45
|
644 rec.refcount = 0;
|
Chris@329
|
645 rec.additional = false;
|
Chris@45
|
646
|
Chris@45
|
647 m_models[model] = rec;
|
Chris@45
|
648
|
Chris@137
|
649 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
650 SVDEBUG << "Document::addImportedModel: Added model " << model << endl;
|
Chris@293
|
651 cerr << "Models now: ";
|
Chris@137
|
652 for (ModelMap::const_iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@293
|
653 cerr << i->first << " ";
|
Chris@137
|
654 }
|
Chris@293
|
655 cerr << endl;
|
Chris@137
|
656 #endif
|
Chris@137
|
657
|
Chris@387
|
658 if (m_autoAlignment) {
|
Chris@387
|
659 SVDEBUG << "Document::addImportedModel: auto-alignment is on, aligning model if possible" << endl;
|
Chris@387
|
660 alignModel(model);
|
Chris@387
|
661 } else {
|
Chris@387
|
662 SVDEBUG << "Document(" << this << "): addImportedModel: auto-alignment is off" << endl;
|
Chris@387
|
663 }
|
Chris@47
|
664
|
Chris@45
|
665 emit modelAdded(model);
|
Chris@45
|
666 }
|
Chris@45
|
667
|
Chris@329
|
668 void
|
Chris@329
|
669 Document::addAdditionalModel(Model *model)
|
Chris@329
|
670 {
|
Chris@329
|
671 if (m_models.find(model) != m_models.end()) {
|
Chris@595
|
672 cerr << "WARNING: Document::addAdditionalModel: Model already added"
|
Chris@595
|
673 << endl;
|
Chris@595
|
674 return;
|
Chris@329
|
675 }
|
Chris@329
|
676
|
Chris@329
|
677 ModelRecord rec;
|
Chris@636
|
678 rec.source = nullptr;
|
Chris@408
|
679 rec.channel = 0;
|
Chris@329
|
680 rec.refcount = 0;
|
Chris@329
|
681 rec.additional = true;
|
Chris@329
|
682
|
Chris@329
|
683 m_models[model] = rec;
|
Chris@329
|
684
|
Chris@329
|
685 #ifdef DEBUG_DOCUMENT
|
Chris@329
|
686 SVDEBUG << "Document::addAdditionalModel: Added model " << model << endl;
|
Chris@329
|
687 cerr << "Models now: ";
|
Chris@329
|
688 for (ModelMap::const_iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@329
|
689 cerr << i->first << " ";
|
Chris@329
|
690 }
|
Chris@329
|
691 cerr << endl;
|
Chris@329
|
692 #endif
|
Chris@329
|
693
|
Chris@387
|
694 if (m_autoAlignment) {
|
Chris@387
|
695 SVDEBUG << "Document::addAdditionalModel: auto-alignment is on, aligning model if possible" << endl;
|
Chris@387
|
696 alignModel(model);
|
Chris@387
|
697 }
|
Chris@329
|
698
|
Chris@329
|
699 emit modelAdded(model);
|
Chris@329
|
700 }
|
Chris@329
|
701
|
Chris@588
|
702 void
|
Chris@588
|
703 Document::addAggregateModel(AggregateWaveModel *model)
|
Chris@588
|
704 {
|
Chris@588
|
705 connect(model, SIGNAL(modelInvalidated()),
|
Chris@588
|
706 this, SLOT(aggregateModelInvalidated()));
|
Chris@588
|
707 m_aggregateModels.insert(model);
|
Chris@655
|
708 SVDEBUG << "Document::addAggregateModel(" << model << ")" << endl;
|
Chris@588
|
709 }
|
Chris@588
|
710
|
Chris@588
|
711 void
|
Chris@588
|
712 Document::aggregateModelInvalidated()
|
Chris@588
|
713 {
|
Chris@588
|
714 QObject *s = sender();
|
Chris@588
|
715 AggregateWaveModel *aggregate = qobject_cast<AggregateWaveModel *>(s);
|
Chris@655
|
716 SVDEBUG << "Document::aggregateModelInvalidated(" << aggregate << ")" << endl;
|
Chris@588
|
717 if (aggregate) releaseModel(aggregate);
|
Chris@588
|
718 }
|
Chris@588
|
719
|
Chris@45
|
720 Model *
|
Chris@72
|
721 Document::addDerivedModel(const Transform &transform,
|
Chris@78
|
722 const ModelTransformer::Input &input,
|
Chris@296
|
723 QString &message)
|
Chris@45
|
724 {
|
Chris@45
|
725 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@297
|
726 if (i->second.transform == transform &&
|
Chris@297
|
727 i->second.source == input.getModel() &&
|
Chris@72
|
728 i->second.channel == input.getChannel()) {
|
Chris@297
|
729 std::cerr << "derived model taken from map " << std::endl;
|
Chris@297
|
730 return i->first;
|
Chris@297
|
731 }
|
Chris@45
|
732 }
|
Chris@45
|
733
|
Chris@297
|
734 Transforms tt;
|
Chris@297
|
735 tt.push_back(transform);
|
Chris@636
|
736 vector<Model *> mm = addDerivedModels(tt, input, message, nullptr);
|
Chris@636
|
737 if (mm.empty()) return nullptr;
|
Chris@297
|
738 else return mm[0];
|
Chris@297
|
739 }
|
Chris@45
|
740
|
Chris@297
|
741 vector<Model *>
|
Chris@297
|
742 Document::addDerivedModels(const Transforms &transforms,
|
Chris@297
|
743 const ModelTransformer::Input &input,
|
Chris@329
|
744 QString &message,
|
Chris@329
|
745 AdditionalModelConverter *amc)
|
Chris@297
|
746 {
|
Chris@297
|
747 vector<Model *> mm =
|
Chris@297
|
748 ModelTransformerFactory::getInstance()->transformMultiple
|
Chris@329
|
749 (transforms, input, message, amc);
|
Chris@83
|
750
|
Chris@297
|
751 for (int j = 0; j < (int)mm.size(); ++j) {
|
Chris@83
|
752
|
Chris@297
|
753 Model *model = mm[j];
|
Chris@297
|
754
|
Chris@297
|
755 // The transform we actually used was presumably identical to
|
Chris@297
|
756 // the one asked for, except that the version of the plugin
|
Chris@297
|
757 // may differ. It's possible that the returned message
|
Chris@297
|
758 // contains a warning about this; that doesn't concern us
|
Chris@297
|
759 // here, but we do need to ensure that the transform we
|
Chris@297
|
760 // remember is correct for what was actually applied, with the
|
Chris@297
|
761 // current plugin version.
|
Chris@297
|
762
|
Chris@536
|
763 //!!! would be nice to short-circuit this -- the version is
|
Chris@536
|
764 //!!! static data, shouldn't have to construct a plugin for it
|
Chris@536
|
765 //!!! (which may be expensive in Piper-world)
|
Chris@536
|
766
|
Chris@297
|
767 Transform applied = transforms[j];
|
Chris@297
|
768 applied.setPluginVersion
|
Chris@297
|
769 (TransformFactory::getInstance()->
|
Chris@297
|
770 getDefaultTransformFor(applied.getIdentifier(),
|
Chris@436
|
771 applied.getSampleRate())
|
Chris@297
|
772 .getPluginVersion());
|
Chris@297
|
773
|
Chris@297
|
774 if (!model) {
|
Chris@297
|
775 cerr << "WARNING: Document::addDerivedModel: no output model for transform " << applied.getIdentifier() << endl;
|
Chris@297
|
776 } else {
|
Chris@329
|
777 addAlreadyDerivedModel(applied, input, model);
|
Chris@297
|
778 }
|
Chris@45
|
779 }
|
Chris@595
|
780
|
Chris@297
|
781 return mm;
|
Chris@45
|
782 }
|
Chris@45
|
783
|
Chris@45
|
784 void
|
Chris@45
|
785 Document::releaseModel(Model *model) // Will _not_ release main model!
|
Chris@45
|
786 {
|
Chris@636
|
787 if (model == nullptr) {
|
Chris@595
|
788 return;
|
Chris@45
|
789 }
|
Chris@45
|
790
|
Chris@45
|
791 if (model == m_mainModel) {
|
Chris@595
|
792 return;
|
Chris@45
|
793 }
|
Chris@45
|
794
|
Chris@45
|
795 bool toDelete = false;
|
Chris@45
|
796
|
Chris@45
|
797 if (m_models.find(model) != m_models.end()) {
|
Chris@595
|
798 if (m_models[model].refcount == 0) {
|
Chris@595
|
799 SVCERR << "WARNING: Document::releaseModel: model " << model
|
Chris@588
|
800 << " reference count is zero already!" << endl;
|
Chris@595
|
801 } else {
|
Chris@595
|
802 if (--m_models[model].refcount == 0) {
|
Chris@595
|
803 toDelete = true;
|
Chris@595
|
804 }
|
Chris@595
|
805 }
|
Chris@588
|
806 } else if (m_aggregateModels.find(model) != m_aggregateModels.end()) {
|
Chris@588
|
807 SVDEBUG << "Document::releaseModel: is an aggregate model" << endl;
|
Chris@588
|
808 toDelete = true;
|
Chris@45
|
809 } else {
|
Chris@595
|
810 SVCERR << "WARNING: Document::releaseModel: Unfound model "
|
Chris@588
|
811 << model << endl;
|
Chris@595
|
812 toDelete = true;
|
Chris@45
|
813 }
|
Chris@45
|
814
|
Chris@45
|
815 if (toDelete) {
|
Chris@45
|
816
|
Chris@595
|
817 int sourceCount = 0;
|
Chris@45
|
818
|
Chris@595
|
819 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@595
|
820 if (i->second.source == model) {
|
Chris@595
|
821 ++sourceCount;
|
Chris@636
|
822 i->second.source = nullptr;
|
Chris@595
|
823 }
|
Chris@595
|
824 }
|
Chris@45
|
825
|
Chris@595
|
826 if (sourceCount > 0) {
|
Chris@595
|
827 SVDEBUG << "Document::releaseModel: Deleting model "
|
Chris@588
|
828 << model << " even though it is source for "
|
Chris@588
|
829 << sourceCount << " other derived model(s) -- resetting "
|
Chris@588
|
830 << "their source fields appropriately" << endl;
|
Chris@595
|
831 }
|
Chris@45
|
832
|
Chris@79
|
833 model->aboutToDelete();
|
Chris@595
|
834 emit modelAboutToBeDeleted(model);
|
Chris@595
|
835 m_models.erase(model);
|
Chris@137
|
836
|
Chris@137
|
837 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
838 SVDEBUG << "Document::releaseModel: Deleted model " << model << endl;
|
Chris@293
|
839 cerr << "Models now: ";
|
Chris@137
|
840 for (ModelMap::const_iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@293
|
841 cerr << i->first << " ";
|
Chris@137
|
842 }
|
Chris@293
|
843 cerr << endl;
|
Chris@137
|
844 #endif
|
Chris@137
|
845
|
Chris@595
|
846 delete model;
|
Chris@45
|
847 }
|
Chris@45
|
848 }
|
Chris@45
|
849
|
Chris@45
|
850 void
|
Chris@45
|
851 Document::deleteLayer(Layer *layer, bool force)
|
Chris@45
|
852 {
|
Chris@45
|
853 if (m_layerViewMap.find(layer) != m_layerViewMap.end() &&
|
Chris@595
|
854 m_layerViewMap[layer].size() > 0) {
|
Chris@45
|
855
|
Chris@595
|
856 cerr << "WARNING: Document::deleteLayer: Layer "
|
Chris@595
|
857 << layer << " [" << layer->objectName() << "]"
|
Chris@595
|
858 << " is still used in " << m_layerViewMap[layer].size()
|
Chris@595
|
859 << " views!" << endl;
|
Chris@45
|
860
|
Chris@595
|
861 if (force) {
|
Chris@45
|
862
|
Chris@77
|
863 #ifdef DEBUG_DOCUMENT
|
Chris@595
|
864 cerr << "(force flag set -- deleting from all views)" << endl;
|
Chris@77
|
865 #endif
|
Chris@45
|
866
|
Chris@595
|
867 for (std::set<View *>::iterator j = m_layerViewMap[layer].begin();
|
Chris@595
|
868 j != m_layerViewMap[layer].end(); ++j) {
|
Chris@595
|
869 // don't use removeLayerFromView, as it issues a command
|
Chris@595
|
870 layer->setLayerDormant(*j, true);
|
Chris@595
|
871 (*j)->removeLayer(layer);
|
Chris@595
|
872 }
|
Chris@595
|
873
|
Chris@595
|
874 m_layerViewMap.erase(layer);
|
Chris@45
|
875
|
Chris@595
|
876 } else {
|
Chris@595
|
877 return;
|
Chris@595
|
878 }
|
Chris@45
|
879 }
|
Chris@45
|
880
|
Chris@45
|
881 if (m_layers.find(layer) == m_layers.end()) {
|
Chris@595
|
882 SVDEBUG << "Document::deleteLayer: Layer "
|
Chris@212
|
883 << layer << " (" << typeid(layer).name() <<
|
Chris@212
|
884 ") does not exist, or has already been deleted "
|
Chris@595
|
885 << "(this may not be as serious as it sounds)" << endl;
|
Chris@595
|
886 return;
|
Chris@45
|
887 }
|
Chris@45
|
888
|
Chris@45
|
889 m_layers.erase(layer);
|
Chris@45
|
890
|
Chris@132
|
891 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
892 SVDEBUG << "Document::deleteLayer: Removing, now have "
|
Chris@229
|
893 << m_layers.size() << " layers" << endl;
|
Chris@132
|
894 #endif
|
Chris@52
|
895
|
Chris@45
|
896 releaseModel(layer->getModel());
|
Chris@45
|
897 emit layerRemoved(layer);
|
Chris@45
|
898 emit layerAboutToBeDeleted(layer);
|
Chris@45
|
899 delete layer;
|
Chris@45
|
900 }
|
Chris@45
|
901
|
Chris@45
|
902 void
|
Chris@45
|
903 Document::setModel(Layer *layer, Model *model)
|
Chris@45
|
904 {
|
Chris@45
|
905 if (model &&
|
Chris@595
|
906 model != m_mainModel &&
|
Chris@595
|
907 m_models.find(model) == m_models.end()) {
|
Chris@595
|
908 cerr << "ERROR: Document::setModel: Layer " << layer
|
Chris@595
|
909 << " (\"" << layer->objectName()
|
Chris@45
|
910 << "\") wants to use unregistered model " << model
|
Chris@595
|
911 << ": register the layer's model before setting it!"
|
Chris@595
|
912 << endl;
|
Chris@595
|
913 return;
|
Chris@45
|
914 }
|
Chris@45
|
915
|
Chris@45
|
916 Model *previousModel = layer->getModel();
|
Chris@45
|
917
|
Chris@45
|
918 if (previousModel == model) {
|
Chris@233
|
919 SVDEBUG << "NOTE: Document::setModel: Layer " << layer << " (\""
|
Chris@229
|
920 << layer->objectName() << "\") is already set to model "
|
Chris@45
|
921 << model << " (\""
|
Chris@229
|
922 << (model ? model->objectName(): "(null)")
|
Chris@229
|
923 << "\")" << endl;
|
Chris@45
|
924 return;
|
Chris@45
|
925 }
|
Chris@45
|
926
|
Chris@45
|
927 if (model && model != m_mainModel) {
|
Chris@595
|
928 m_models[model].refcount ++;
|
Chris@45
|
929 }
|
Chris@45
|
930
|
Chris@45
|
931 if (model && previousModel) {
|
Chris@45
|
932 PlayParameterRepository::getInstance()->copyParameters
|
Chris@45
|
933 (previousModel, model);
|
Chris@45
|
934 }
|
Chris@45
|
935
|
Chris@45
|
936 LayerFactory::getInstance()->setModel(layer, model);
|
Chris@595
|
937 // std::cerr << "layer type: " << LayerFactory::getInstance()->getLayerTypeName(LayerFactory::getInstance()->getLayerType(layer)) << std::endl;
|
Chris@45
|
938
|
Chris@45
|
939 if (previousModel) {
|
Chris@45
|
940 releaseModel(previousModel);
|
Chris@45
|
941 }
|
Chris@45
|
942 }
|
Chris@45
|
943
|
Chris@45
|
944 void
|
Chris@45
|
945 Document::setChannel(Layer *layer, int channel)
|
Chris@45
|
946 {
|
Chris@45
|
947 LayerFactory::getInstance()->setChannel(layer, channel);
|
Chris@45
|
948 }
|
Chris@45
|
949
|
Chris@45
|
950 void
|
Chris@45
|
951 Document::addLayerToView(View *view, Layer *layer)
|
Chris@45
|
952 {
|
Chris@45
|
953 Model *model = layer->getModel();
|
Chris@45
|
954 if (!model) {
|
Chris@77
|
955 #ifdef DEBUG_DOCUMENT
|
Chris@595
|
956 SVDEBUG << "Document::addLayerToView: Layer (\""
|
Chris@229
|
957 << layer->objectName() << "\") with no model being added to view: "
|
Chris@229
|
958 << "normally you want to set the model first" << endl;
|
Chris@77
|
959 #endif
|
Chris@45
|
960 } else {
|
Chris@595
|
961 if (model != m_mainModel &&
|
Chris@595
|
962 m_models.find(model) == m_models.end()) {
|
Chris@595
|
963 cerr << "ERROR: Document::addLayerToView: Layer " << layer
|
Chris@595
|
964 << " has unregistered model " << model
|
Chris@595
|
965 << " -- register the layer's model before adding the layer!" << endl;
|
Chris@595
|
966 return;
|
Chris@595
|
967 }
|
Chris@45
|
968 }
|
Chris@45
|
969
|
Chris@45
|
970 CommandHistory::getInstance()->addCommand
|
Chris@595
|
971 (new Document::AddLayerCommand(this, view, layer));
|
Chris@45
|
972 }
|
Chris@45
|
973
|
Chris@45
|
974 void
|
Chris@45
|
975 Document::removeLayerFromView(View *view, Layer *layer)
|
Chris@45
|
976 {
|
Chris@45
|
977 CommandHistory::getInstance()->addCommand
|
Chris@595
|
978 (new Document::RemoveLayerCommand(this, view, layer));
|
Chris@45
|
979 }
|
Chris@45
|
980
|
Chris@45
|
981 void
|
Chris@45
|
982 Document::addToLayerViewMap(Layer *layer, View *view)
|
Chris@45
|
983 {
|
Chris@45
|
984 bool firstView = (m_layerViewMap.find(layer) == m_layerViewMap.end() ||
|
Chris@45
|
985 m_layerViewMap[layer].empty());
|
Chris@45
|
986
|
Chris@45
|
987 if (m_layerViewMap[layer].find(view) !=
|
Chris@595
|
988 m_layerViewMap[layer].end()) {
|
Chris@595
|
989 cerr << "WARNING: Document::addToLayerViewMap:"
|
Chris@595
|
990 << " Layer " << layer << " -> view " << view << " already in"
|
Chris@595
|
991 << " layer view map -- internal inconsistency" << endl;
|
Chris@45
|
992 }
|
Chris@45
|
993
|
Chris@45
|
994 m_layerViewMap[layer].insert(view);
|
Chris@45
|
995
|
Chris@45
|
996 if (firstView) emit layerInAView(layer, true);
|
Chris@45
|
997 }
|
Chris@45
|
998
|
Chris@45
|
999 void
|
Chris@45
|
1000 Document::removeFromLayerViewMap(Layer *layer, View *view)
|
Chris@45
|
1001 {
|
Chris@45
|
1002 if (m_layerViewMap[layer].find(view) ==
|
Chris@595
|
1003 m_layerViewMap[layer].end()) {
|
Chris@595
|
1004 cerr << "WARNING: Document::removeFromLayerViewMap:"
|
Chris@595
|
1005 << " Layer " << layer << " -> view " << view << " not in"
|
Chris@595
|
1006 << " layer view map -- internal inconsistency" << endl;
|
Chris@45
|
1007 }
|
Chris@45
|
1008
|
Chris@45
|
1009 m_layerViewMap[layer].erase(view);
|
Chris@45
|
1010
|
Chris@45
|
1011 if (m_layerViewMap[layer].empty()) {
|
Chris@45
|
1012 m_layerViewMap.erase(layer);
|
Chris@45
|
1013 emit layerInAView(layer, false);
|
Chris@45
|
1014 }
|
Chris@45
|
1015 }
|
Chris@45
|
1016
|
Chris@45
|
1017 QString
|
Chris@45
|
1018 Document::getUniqueLayerName(QString candidate)
|
Chris@45
|
1019 {
|
Chris@45
|
1020 for (int count = 1; ; ++count) {
|
Chris@45
|
1021
|
Chris@45
|
1022 QString adjusted =
|
Chris@45
|
1023 (count > 1 ? QString("%1 <%2>").arg(candidate).arg(count) :
|
Chris@45
|
1024 candidate);
|
Chris@45
|
1025
|
Chris@45
|
1026 bool duplicate = false;
|
Chris@45
|
1027
|
Chris@45
|
1028 for (LayerSet::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
|
Chris@45
|
1029 if ((*i)->objectName() == adjusted) {
|
Chris@45
|
1030 duplicate = true;
|
Chris@45
|
1031 break;
|
Chris@45
|
1032 }
|
Chris@45
|
1033 }
|
Chris@45
|
1034
|
Chris@45
|
1035 if (!duplicate) return adjusted;
|
Chris@45
|
1036 }
|
Chris@45
|
1037 }
|
Chris@45
|
1038
|
Chris@45
|
1039 std::vector<Model *>
|
Chris@72
|
1040 Document::getTransformInputModels()
|
Chris@45
|
1041 {
|
Chris@45
|
1042 std::vector<Model *> models;
|
Chris@45
|
1043
|
Chris@45
|
1044 if (!m_mainModel) return models;
|
Chris@45
|
1045
|
Chris@45
|
1046 models.push_back(m_mainModel);
|
Chris@45
|
1047
|
Chris@45
|
1048 //!!! This will pick up all models, including those that aren't visible...
|
Chris@45
|
1049
|
Chris@45
|
1050 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@45
|
1051
|
Chris@45
|
1052 Model *model = i->first;
|
Chris@45
|
1053 if (!model || model == m_mainModel) continue;
|
Chris@45
|
1054 DenseTimeValueModel *dtvm = dynamic_cast<DenseTimeValueModel *>(model);
|
Chris@45
|
1055
|
Chris@45
|
1056 if (dtvm) {
|
Chris@45
|
1057 models.push_back(dtvm);
|
Chris@45
|
1058 }
|
Chris@45
|
1059 }
|
Chris@45
|
1060
|
Chris@45
|
1061 return models;
|
Chris@45
|
1062 }
|
Chris@45
|
1063
|
Chris@50
|
1064 bool
|
Chris@77
|
1065 Document::isKnownModel(const Model *model) const
|
Chris@77
|
1066 {
|
Chris@77
|
1067 if (model == m_mainModel) return true;
|
Chris@77
|
1068 return (m_models.find(const_cast<Model *>(model)) != m_models.end());
|
Chris@77
|
1069 }
|
Chris@77
|
1070
|
Chris@428
|
1071 bool
|
Chris@428
|
1072 Document::canAlign()
|
Chris@90
|
1073 {
|
Chris@428
|
1074 return Align::canAlign();
|
Chris@50
|
1075 }
|
Chris@50
|
1076
|
Chris@45
|
1077 void
|
Chris@45
|
1078 Document::alignModel(Model *model)
|
Chris@45
|
1079 {
|
Chris@387
|
1080 SVDEBUG << "Document::alignModel(" << model << ")" << endl;
|
Chris@387
|
1081
|
Chris@387
|
1082 if (!m_mainModel) {
|
Chris@387
|
1083 SVDEBUG << "(no main model to align to)" << endl;
|
Chris@387
|
1084 return;
|
Chris@387
|
1085 }
|
Chris@45
|
1086
|
Chris@45
|
1087 RangeSummarisableTimeValueModel *rm =
|
Chris@45
|
1088 dynamic_cast<RangeSummarisableTimeValueModel *>(model);
|
Chris@387
|
1089 if (!rm) {
|
Chris@387
|
1090 SVDEBUG << "(main model is not alignable-to)" << endl;
|
Chris@387
|
1091 return;
|
Chris@387
|
1092 }
|
Chris@48
|
1093
|
Chris@86
|
1094 if (rm->getAlignmentReference() == m_mainModel) {
|
Chris@387
|
1095 SVDEBUG << "(model " << rm << " is already aligned to main model " << m_mainModel << ")" << endl;
|
Chris@86
|
1096 return;
|
Chris@86
|
1097 }
|
Chris@45
|
1098
|
Chris@86
|
1099 if (model == m_mainModel) {
|
Chris@86
|
1100 // The reference has an empty alignment to itself. This makes
|
Chris@86
|
1101 // it possible to distinguish between the reference and any
|
Chris@86
|
1102 // unaligned model just by looking at the model itself,
|
Chris@86
|
1103 // without also knowing what the main model is
|
Chris@233
|
1104 SVDEBUG << "Document::alignModel(" << model << "): is main model, setting appropriately" << endl;
|
Chris@636
|
1105 rm->setAlignment(new AlignmentModel(model, model, nullptr, nullptr));
|
Chris@86
|
1106 return;
|
Chris@86
|
1107 }
|
Chris@86
|
1108
|
Chris@423
|
1109 if (!m_align->alignModel(m_mainModel, rm)) {
|
Chris@423
|
1110 cerr << "Alignment failed: " << m_align->getError() << endl;
|
Chris@423
|
1111 emit alignmentFailed(m_align->getError());
|
Chris@64
|
1112 }
|
Chris@45
|
1113 }
|
Chris@45
|
1114
|
Chris@45
|
1115 void
|
Chris@45
|
1116 Document::alignModels()
|
Chris@45
|
1117 {
|
Chris@45
|
1118 for (ModelMap::iterator i = m_models.begin(); i != m_models.end(); ++i) {
|
Chris@45
|
1119 alignModel(i->first);
|
Chris@45
|
1120 }
|
Chris@86
|
1121 alignModel(m_mainModel);
|
Chris@45
|
1122 }
|
Chris@45
|
1123
|
Chris@45
|
1124 Document::AddLayerCommand::AddLayerCommand(Document *d,
|
Chris@595
|
1125 View *view,
|
Chris@595
|
1126 Layer *layer) :
|
Chris@45
|
1127 m_d(d),
|
Chris@45
|
1128 m_view(view),
|
Chris@45
|
1129 m_layer(layer),
|
Chris@45
|
1130 m_name(qApp->translate("AddLayerCommand", "Add %1 Layer").arg(layer->objectName())),
|
Chris@45
|
1131 m_added(false)
|
Chris@45
|
1132 {
|
Chris@45
|
1133 }
|
Chris@45
|
1134
|
Chris@45
|
1135 Document::AddLayerCommand::~AddLayerCommand()
|
Chris@45
|
1136 {
|
Chris@77
|
1137 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
1138 SVDEBUG << "Document::AddLayerCommand::~AddLayerCommand" << endl;
|
Chris@77
|
1139 #endif
|
Chris@45
|
1140 if (!m_added) {
|
Chris@595
|
1141 m_d->deleteLayer(m_layer);
|
Chris@45
|
1142 }
|
Chris@45
|
1143 }
|
Chris@45
|
1144
|
Chris@159
|
1145 QString
|
Chris@159
|
1146 Document::AddLayerCommand::getName() const
|
Chris@159
|
1147 {
|
Chris@165
|
1148 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
1149 SVDEBUG << "Document::AddLayerCommand::getName(): Name is "
|
Chris@229
|
1150 << m_name << endl;
|
Chris@165
|
1151 #endif
|
Chris@159
|
1152 return m_name;
|
Chris@159
|
1153 }
|
Chris@159
|
1154
|
Chris@45
|
1155 void
|
Chris@45
|
1156 Document::AddLayerCommand::execute()
|
Chris@45
|
1157 {
|
Chris@45
|
1158 for (int i = 0; i < m_view->getLayerCount(); ++i) {
|
Chris@595
|
1159 if (m_view->getLayer(i) == m_layer) {
|
Chris@595
|
1160 // already there
|
Chris@595
|
1161 m_layer->setLayerDormant(m_view, false);
|
Chris@595
|
1162 m_added = true;
|
Chris@595
|
1163 return;
|
Chris@595
|
1164 }
|
Chris@45
|
1165 }
|
Chris@45
|
1166
|
Chris@45
|
1167 m_view->addLayer(m_layer);
|
Chris@45
|
1168 m_layer->setLayerDormant(m_view, false);
|
Chris@45
|
1169
|
Chris@45
|
1170 m_d->addToLayerViewMap(m_layer, m_view);
|
Chris@45
|
1171 m_added = true;
|
Chris@45
|
1172 }
|
Chris@45
|
1173
|
Chris@45
|
1174 void
|
Chris@45
|
1175 Document::AddLayerCommand::unexecute()
|
Chris@45
|
1176 {
|
Chris@45
|
1177 m_view->removeLayer(m_layer);
|
Chris@45
|
1178 m_layer->setLayerDormant(m_view, true);
|
Chris@45
|
1179
|
Chris@45
|
1180 m_d->removeFromLayerViewMap(m_layer, m_view);
|
Chris@45
|
1181 m_added = false;
|
Chris@45
|
1182 }
|
Chris@45
|
1183
|
Chris@45
|
1184 Document::RemoveLayerCommand::RemoveLayerCommand(Document *d,
|
Chris@595
|
1185 View *view,
|
Chris@595
|
1186 Layer *layer) :
|
Chris@45
|
1187 m_d(d),
|
Chris@45
|
1188 m_view(view),
|
Chris@45
|
1189 m_layer(layer),
|
Chris@339
|
1190 m_wasDormant(layer->isLayerDormant(view)),
|
Chris@45
|
1191 m_name(qApp->translate("RemoveLayerCommand", "Delete %1 Layer").arg(layer->objectName())),
|
Chris@45
|
1192 m_added(true)
|
Chris@45
|
1193 {
|
Chris@45
|
1194 }
|
Chris@45
|
1195
|
Chris@45
|
1196 Document::RemoveLayerCommand::~RemoveLayerCommand()
|
Chris@45
|
1197 {
|
Chris@77
|
1198 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
1199 SVDEBUG << "Document::RemoveLayerCommand::~RemoveLayerCommand" << endl;
|
Chris@77
|
1200 #endif
|
Chris@45
|
1201 if (!m_added) {
|
Chris@595
|
1202 m_d->deleteLayer(m_layer);
|
Chris@45
|
1203 }
|
Chris@45
|
1204 }
|
Chris@45
|
1205
|
Chris@159
|
1206 QString
|
Chris@159
|
1207 Document::RemoveLayerCommand::getName() const
|
Chris@159
|
1208 {
|
Chris@171
|
1209 #ifdef DEBUG_DOCUMENT
|
Chris@233
|
1210 SVDEBUG << "Document::RemoveLayerCommand::getName(): Name is "
|
Chris@229
|
1211 << m_name << endl;
|
Chris@171
|
1212 #endif
|
Chris@159
|
1213 return m_name;
|
Chris@159
|
1214 }
|
Chris@159
|
1215
|
Chris@45
|
1216 void
|
Chris@45
|
1217 Document::RemoveLayerCommand::execute()
|
Chris@45
|
1218 {
|
Chris@45
|
1219 bool have = false;
|
Chris@45
|
1220 for (int i = 0; i < m_view->getLayerCount(); ++i) {
|
Chris@595
|
1221 if (m_view->getLayer(i) == m_layer) {
|
Chris@595
|
1222 have = true;
|
Chris@595
|
1223 break;
|
Chris@595
|
1224 }
|
Chris@45
|
1225 }
|
Chris@45
|
1226
|
Chris@45
|
1227 if (!have) { // not there!
|
Chris@595
|
1228 m_layer->setLayerDormant(m_view, true);
|
Chris@595
|
1229 m_added = false;
|
Chris@595
|
1230 return;
|
Chris@45
|
1231 }
|
Chris@45
|
1232
|
Chris@45
|
1233 m_view->removeLayer(m_layer);
|
Chris@45
|
1234 m_layer->setLayerDormant(m_view, true);
|
Chris@45
|
1235
|
Chris@45
|
1236 m_d->removeFromLayerViewMap(m_layer, m_view);
|
Chris@45
|
1237 m_added = false;
|
Chris@45
|
1238 }
|
Chris@45
|
1239
|
Chris@45
|
1240 void
|
Chris@45
|
1241 Document::RemoveLayerCommand::unexecute()
|
Chris@45
|
1242 {
|
Chris@45
|
1243 m_view->addLayer(m_layer);
|
Chris@339
|
1244 m_layer->setLayerDormant(m_view, m_wasDormant);
|
Chris@45
|
1245
|
Chris@45
|
1246 m_d->addToLayerViewMap(m_layer, m_view);
|
Chris@45
|
1247 m_added = true;
|
Chris@45
|
1248 }
|
Chris@45
|
1249
|
Chris@45
|
1250 void
|
Chris@45
|
1251 Document::toXml(QTextStream &out, QString indent, QString extraAttributes) const
|
Chris@45
|
1252 {
|
Chris@226
|
1253 toXml(out, indent, extraAttributes, false);
|
Chris@226
|
1254 }
|
Chris@226
|
1255
|
Chris@226
|
1256 void
|
Chris@226
|
1257 Document::toXmlAsTemplate(QTextStream &out, QString indent, QString extraAttributes) const
|
Chris@226
|
1258 {
|
Chris@226
|
1259 toXml(out, indent, extraAttributes, true);
|
Chris@226
|
1260 }
|
Chris@226
|
1261
|
Chris@226
|
1262 void
|
Chris@226
|
1263 Document::toXml(QTextStream &out, QString indent, QString extraAttributes,
|
Chris@226
|
1264 bool asTemplate) const
|
Chris@226
|
1265 {
|
Chris@45
|
1266 out << indent + QString("<data%1%2>\n")
|
Chris@45
|
1267 .arg(extraAttributes == "" ? "" : " ").arg(extraAttributes);
|
Chris@45
|
1268
|
Chris@45
|
1269 if (m_mainModel) {
|
Chris@108
|
1270
|
Chris@226
|
1271 if (asTemplate) {
|
Chris@226
|
1272 writePlaceholderMainModel(out, indent + " ");
|
Chris@226
|
1273 } else {
|
Chris@226
|
1274 m_mainModel->toXml(out, indent + " ", "mainModel=\"true\"");
|
Chris@226
|
1275 }
|
Chris@108
|
1276
|
Chris@108
|
1277 PlayParameters *playParameters =
|
Chris@108
|
1278 PlayParameterRepository::getInstance()->getPlayParameters(m_mainModel);
|
Chris@108
|
1279 if (playParameters) {
|
Chris@108
|
1280 playParameters->toXml
|
Chris@108
|
1281 (out, indent + " ",
|
Chris@108
|
1282 QString("model=\"%1\"")
|
Chris@108
|
1283 .arg(XmlExportable::getObjectExportId(m_mainModel)));
|
Chris@108
|
1284 }
|
Chris@45
|
1285 }
|
Chris@45
|
1286
|
Chris@45
|
1287 // Models that are not used in a layer that is in a view should
|
Chris@45
|
1288 // not be written. Get our list of required models first.
|
Chris@45
|
1289
|
Chris@45
|
1290 std::set<const Model *> used;
|
Chris@45
|
1291
|
Chris@45
|
1292 for (LayerViewMap::const_iterator i = m_layerViewMap.begin();
|
Chris@45
|
1293 i != m_layerViewMap.end(); ++i) {
|
Chris@45
|
1294
|
Chris@589
|
1295 if (i->first && !i->second.empty()) { // Layer exists, is in views
|
Chris@589
|
1296 Model *m = i->first->getModel();
|
Chris@589
|
1297 if (m) {
|
Chris@589
|
1298 used.insert(m);
|
Chris@589
|
1299 if (m->getSourceModel()) {
|
Chris@589
|
1300 used.insert(m->getSourceModel());
|
Chris@589
|
1301 }
|
Chris@589
|
1302 }
|
Chris@45
|
1303 }
|
Chris@45
|
1304 }
|
Chris@45
|
1305
|
Chris@589
|
1306 // Write aggregate models first, so that when re-reading
|
Chris@589
|
1307 // derivations we already know about their existence. But only
|
Chris@589
|
1308 // those that are actually used
|
Chris@629
|
1309 //
|
Chris@629
|
1310 // Later note: This turns out not to be a great idea - we can't
|
Chris@629
|
1311 // use an aggregate model to drive a derivation unless its
|
Chris@629
|
1312 // component models have all also already been loaded. So we
|
Chris@629
|
1313 // really should have written non-aggregate read-only
|
Chris@629
|
1314 // (i.e. non-derived) wave-type models first, then aggregate
|
Chris@629
|
1315 // models, then models that have derivations. But we didn't do
|
Chris@629
|
1316 // that, so existing sessions will always have the aggregate
|
Chris@629
|
1317 // models first and we might as well stick with that.
|
Chris@589
|
1318
|
Chris@589
|
1319 for (std::set<Model *>::iterator i = m_aggregateModels.begin();
|
Chris@589
|
1320 i != m_aggregateModels.end(); ++i) {
|
Chris@589
|
1321
|
Chris@589
|
1322 SVDEBUG << "checking aggregate model " << *i << endl;
|
Chris@589
|
1323
|
Chris@589
|
1324 AggregateWaveModel *aggregate = qobject_cast<AggregateWaveModel *>(*i);
|
Chris@589
|
1325 if (!aggregate) continue;
|
Chris@589
|
1326 if (used.find(aggregate) == used.end()) {
|
Chris@589
|
1327 SVDEBUG << "(unused, skipping)" << endl;
|
Chris@589
|
1328 continue;
|
Chris@589
|
1329 }
|
Chris@589
|
1330
|
Chris@589
|
1331 SVDEBUG << "(used, writing)" << endl;
|
Chris@589
|
1332
|
Chris@589
|
1333 aggregate->toXml(out, indent + " ");
|
Chris@589
|
1334 }
|
Chris@589
|
1335
|
Chris@111
|
1336 std::set<Model *> written;
|
Chris@111
|
1337
|
Chris@629
|
1338 // Now write the other models in two passes: first the models that
|
Chris@629
|
1339 // aren't derived from anything (in case they are source
|
Chris@629
|
1340 // components for an aggregate model, in which case we need to
|
Chris@629
|
1341 // have seen them before we see any models derived from aggregates
|
Chris@629
|
1342 // that use them - see the lament above) and then the models that
|
Chris@629
|
1343 // have derivations.
|
Chris@45
|
1344
|
Chris@629
|
1345 const int nonDerivedPass = 0, derivedPass = 1;
|
Chris@629
|
1346 for (int pass = nonDerivedPass; pass <= derivedPass; ++pass) {
|
Chris@629
|
1347
|
Chris@629
|
1348 for (ModelMap::const_iterator i = m_models.begin();
|
Chris@629
|
1349 i != m_models.end(); ++i) {
|
Chris@45
|
1350
|
Chris@629
|
1351 Model *model = i->first;
|
Chris@629
|
1352 const ModelRecord &rec = i->second;
|
Chris@629
|
1353
|
Chris@629
|
1354 if (used.find(model) == used.end()) continue;
|
Chris@45
|
1355
|
Chris@629
|
1356 // We need an intelligent way to determine which models
|
Chris@629
|
1357 // need to be streamed (i.e. have been edited, or are
|
Chris@629
|
1358 // small) and which should not be (i.e. remain as
|
Chris@629
|
1359 // generated by a transform, and are large).
|
Chris@629
|
1360 //
|
Chris@629
|
1361 // At the moment we can get away with deciding not to
|
Chris@629
|
1362 // stream dense 3d models or writable wave file models,
|
Chris@629
|
1363 // provided they were generated from a transform, because
|
Chris@629
|
1364 // at the moment there is no way to edit those model types
|
Chris@629
|
1365 // so it should be safe to regenerate them. That won't
|
Chris@629
|
1366 // always work in future though. It would be particularly
|
Chris@629
|
1367 // nice to be able to ask the user, as well as making an
|
Chris@629
|
1368 // intelligent guess.
|
Chris@45
|
1369
|
Chris@629
|
1370 bool writeModel = true;
|
Chris@629
|
1371 bool haveDerivation = false;
|
Chris@629
|
1372
|
Chris@629
|
1373 if (rec.source && rec.transform.getIdentifier() != "") {
|
Chris@629
|
1374 haveDerivation = true;
|
Chris@629
|
1375 }
|
Chris@45
|
1376
|
Chris@629
|
1377 if (pass == nonDerivedPass) {
|
Chris@629
|
1378 if (haveDerivation) {
|
Chris@629
|
1379 SVDEBUG << "skipping derived model " << model->objectName() << " during nonDerivedPass" << endl;
|
Chris@629
|
1380 continue;
|
Chris@629
|
1381 }
|
Chris@629
|
1382 } else {
|
Chris@629
|
1383 if (!haveDerivation) {
|
Chris@629
|
1384 SVDEBUG << "skipping non-derived model " << model->objectName() << " during derivedPass" << endl;
|
Chris@629
|
1385 continue;
|
Chris@629
|
1386 }
|
Chris@629
|
1387 }
|
Chris@45
|
1388
|
Chris@629
|
1389 if (haveDerivation) {
|
Chris@629
|
1390 if (dynamic_cast<const WritableWaveFileModel *>(model)) {
|
Chris@629
|
1391 writeModel = false;
|
Chris@629
|
1392 } else if (dynamic_cast<const DenseThreeDimensionalModel *>(model)) {
|
Chris@629
|
1393 writeModel = false;
|
Chris@629
|
1394 }
|
Chris@629
|
1395 }
|
Chris@629
|
1396
|
Chris@629
|
1397 if (writeModel) {
|
Chris@629
|
1398 model->toXml(out, indent + " ");
|
Chris@629
|
1399 written.insert(model);
|
Chris@629
|
1400 }
|
Chris@629
|
1401
|
Chris@629
|
1402 if (haveDerivation) {
|
Chris@629
|
1403 writeBackwardCompatibleDerivation(out, indent + " ",
|
Chris@629
|
1404 model, rec);
|
Chris@629
|
1405 }
|
Chris@629
|
1406
|
Chris@629
|
1407 //!!! We should probably own the PlayParameterRepository
|
Chris@629
|
1408 PlayParameters *playParameters =
|
Chris@629
|
1409 PlayParameterRepository::getInstance()->getPlayParameters(model);
|
Chris@629
|
1410 if (playParameters) {
|
Chris@629
|
1411 playParameters->toXml
|
Chris@629
|
1412 (out, indent + " ",
|
Chris@629
|
1413 QString("model=\"%1\"")
|
Chris@629
|
1414 .arg(XmlExportable::getObjectExportId(model)));
|
Chris@45
|
1415 }
|
Chris@45
|
1416 }
|
Chris@45
|
1417 }
|
Chris@111
|
1418
|
Chris@111
|
1419 // We should write out the alignment models here. AlignmentModel
|
Chris@111
|
1420 // needs a toXml that writes out the export IDs of its reference
|
Chris@111
|
1421 // and aligned models, and then streams its path model. Note that
|
Chris@111
|
1422 // this will only work when the alignment is complete, so we
|
Chris@111
|
1423 // should probably wait for it if it isn't already by this point.
|
Chris@111
|
1424
|
Chris@111
|
1425 for (std::set<Model *>::const_iterator i = written.begin();
|
Chris@595
|
1426 i != written.end(); ++i) {
|
Chris@111
|
1427
|
Chris@111
|
1428 const Model *model = *i;
|
Chris@111
|
1429 const AlignmentModel *alignment = model->getAlignment();
|
Chris@111
|
1430 if (!alignment) continue;
|
Chris@111
|
1431
|
Chris@111
|
1432 alignment->toXml(out, indent + " ");
|
Chris@111
|
1433 }
|
Chris@111
|
1434
|
Chris@45
|
1435 for (LayerSet::const_iterator i = m_layers.begin();
|
Chris@595
|
1436 i != m_layers.end(); ++i) {
|
Chris@45
|
1437
|
Chris@595
|
1438 (*i)->toXml(out, indent + " ");
|
Chris@45
|
1439 }
|
Chris@45
|
1440
|
Chris@45
|
1441 out << indent + "</data>\n";
|
Chris@45
|
1442 }
|
Chris@45
|
1443
|
Chris@72
|
1444 void
|
Chris@226
|
1445 Document::writePlaceholderMainModel(QTextStream &out, QString indent) const
|
Chris@226
|
1446 {
|
Chris@226
|
1447 out << indent;
|
Chris@226
|
1448 out << QString("<model id=\"%1\" name=\"placeholder\" sampleRate=\"%2\" type=\"wavefile\" file=\":samples/silent.wav\" mainModel=\"true\"/>\n")
|
Chris@226
|
1449 .arg(getObjectExportId(m_mainModel))
|
Chris@226
|
1450 .arg(m_mainModel->getSampleRate());
|
Chris@226
|
1451 }
|
Chris@226
|
1452
|
Chris@226
|
1453 void
|
Chris@72
|
1454 Document::writeBackwardCompatibleDerivation(QTextStream &out, QString indent,
|
Chris@72
|
1455 Model *targetModel,
|
Chris@72
|
1456 const ModelRecord &rec) const
|
Chris@72
|
1457 {
|
Chris@72
|
1458 // There is a lot of redundancy in the XML we output here, because
|
Chris@72
|
1459 // we want it to work with older SV session file reading code as
|
Chris@72
|
1460 // well.
|
Chris@72
|
1461 //
|
Chris@72
|
1462 // Formerly, a transform was described using a derivation element
|
Chris@72
|
1463 // which set out the source and target models, execution context
|
Chris@72
|
1464 // (step size, input channel etc) and transform id, containing a
|
Chris@72
|
1465 // plugin element which set out the transform parameters and so
|
Chris@72
|
1466 // on. (The plugin element came from a "configurationXml" string
|
Chris@72
|
1467 // obtained from PluginXml.)
|
Chris@72
|
1468 //
|
Chris@72
|
1469 // This has been replaced by a derivation element setting out the
|
Chris@72
|
1470 // source and target models and input channel, containing a
|
Chris@72
|
1471 // transform element which sets out everything in the Transform.
|
Chris@72
|
1472 //
|
Chris@72
|
1473 // In order to retain compatibility with older SV code, however,
|
Chris@72
|
1474 // we have to write out the same stuff into the derivation as
|
Chris@72
|
1475 // before, and manufacture an appropriate plugin element as well
|
Chris@72
|
1476 // as the transform element. In order that newer code knows it's
|
Chris@72
|
1477 // dealing with a newer format, we will also write an attribute
|
Chris@72
|
1478 // 'type="transform"' in the derivation element.
|
Chris@45
|
1479
|
Chris@72
|
1480 const Transform &transform = rec.transform;
|
Chris@72
|
1481
|
Chris@72
|
1482 // Just for reference, this is what we would write if we didn't
|
Chris@72
|
1483 // have to be backward compatible:
|
Chris@72
|
1484 //
|
Chris@72
|
1485 // out << indent
|
Chris@72
|
1486 // << QString("<derivation type=\"transform\" source=\"%1\" "
|
Chris@72
|
1487 // "model=\"%2\" channel=\"%3\">\n")
|
Chris@72
|
1488 // .arg(XmlExportable::getObjectExportId(rec.source))
|
Chris@72
|
1489 // .arg(XmlExportable::getObjectExportId(targetModel))
|
Chris@72
|
1490 // .arg(rec.channel);
|
Chris@72
|
1491 //
|
Chris@72
|
1492 // transform.toXml(out, indent + " ");
|
Chris@72
|
1493 //
|
Chris@72
|
1494 // out << indent << "</derivation>\n";
|
Chris@72
|
1495 //
|
Chris@72
|
1496 // Unfortunately, we can't just do that. So we do this...
|
Chris@72
|
1497
|
Chris@72
|
1498 QString extentsAttributes;
|
Chris@72
|
1499 if (transform.getStartTime() != RealTime::zeroTime ||
|
Chris@72
|
1500 transform.getDuration() != RealTime::zeroTime) {
|
Chris@72
|
1501 extentsAttributes = QString("startFrame=\"%1\" duration=\"%2\" ")
|
Chris@72
|
1502 .arg(RealTime::realTime2Frame(transform.getStartTime(),
|
Chris@72
|
1503 targetModel->getSampleRate()))
|
Chris@72
|
1504 .arg(RealTime::realTime2Frame(transform.getDuration(),
|
Chris@72
|
1505 targetModel->getSampleRate()));
|
Chris@72
|
1506 }
|
Chris@595
|
1507
|
Chris@72
|
1508 out << indent;
|
Chris@72
|
1509 out << QString("<derivation type=\"transform\" source=\"%1\" "
|
Chris@72
|
1510 "model=\"%2\" channel=\"%3\" domain=\"%4\" "
|
Chris@72
|
1511 "stepSize=\"%5\" blockSize=\"%6\" %7windowType=\"%8\" "
|
Chris@72
|
1512 "transform=\"%9\">\n")
|
Chris@72
|
1513 .arg(XmlExportable::getObjectExportId(rec.source))
|
Chris@72
|
1514 .arg(XmlExportable::getObjectExportId(targetModel))
|
Chris@72
|
1515 .arg(rec.channel)
|
Chris@72
|
1516 .arg(TransformFactory::getInstance()->getTransformInputDomain
|
Chris@72
|
1517 (transform.getIdentifier()))
|
Chris@72
|
1518 .arg(transform.getStepSize())
|
Chris@72
|
1519 .arg(transform.getBlockSize())
|
Chris@72
|
1520 .arg(extentsAttributes)
|
Chris@72
|
1521 .arg(int(transform.getWindowType()))
|
Chris@72
|
1522 .arg(XmlExportable::encodeEntities(transform.getIdentifier()));
|
Chris@72
|
1523
|
Chris@72
|
1524 transform.toXml(out, indent + " ");
|
Chris@72
|
1525
|
Chris@72
|
1526 out << indent << " "
|
Chris@72
|
1527 << TransformFactory::getInstance()->getPluginConfigurationXml(transform);
|
Chris@72
|
1528
|
Chris@72
|
1529 out << indent << "</derivation>\n";
|
Chris@72
|
1530 }
|
Chris@72
|
1531
|