annotate framework/Document.cpp @ 236:dd14baa45847

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