1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
|
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Sonic Visualiser
An audio file viewer and annotation editor.
Centre for Digital Music, Queen Mary, University of London.
This file copyright 2006 Chris Cannam.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version. See the file
COPYING included with this distribution for more information.
*/
#include "LayerFactory.h"
#include "WaveformLayer.h"
#include "SpectrogramLayer.h"
#include "TimeRulerLayer.h"
#include "TimeInstantLayer.h"
#include "TimeValueLayer.h"
#include "NoteLayer.h"
#include "FlexiNoteLayer.h"
#include "RegionLayer.h"
#include "BoxLayer.h"
#include "TextLayer.h"
#include "ImageLayer.h"
#include "Colour3DPlotLayer.h"
#include "SpectrumLayer.h"
#include "SliceLayer.h"
#include "SliceableLayer.h"
#include "base/Clipboard.h"
#include "data/model/RangeSummarisableTimeValueModel.h"
#include "data/model/DenseTimeValueModel.h"
#include "data/model/SparseOneDimensionalModel.h"
#include "data/model/SparseTimeValueModel.h"
#include "data/model/NoteModel.h"
#include "data/model/RegionModel.h"
#include "data/model/BoxModel.h"
#include "data/model/TextModel.h"
#include "data/model/ImageModel.h"
#include "data/model/DenseThreeDimensionalModel.h"
#include "data/model/WaveFileModel.h"
#include "data/model/WritableWaveFileModel.h"
#include <QDomDocument>
#include <QDomElement>
#include <QDomNamedNodeMap>
#include <QDomAttr>
#include <QSettings>
namespace sv {
LayerFactory *
LayerFactory::m_instance = new LayerFactory;
LayerFactory *
LayerFactory::getInstance()
{
return m_instance;
}
LayerFactory::~LayerFactory()
{
}
QString
LayerFactory::getLayerPresentationName(LayerType type)
{
switch (type) {
case Waveform: return Layer::tr("Waveform");
case Spectrogram: return Layer::tr("Spectrogram");
case TimeRuler: return Layer::tr("Ruler");
case TimeInstants: return Layer::tr("Time Instants");
case TimeValues: return Layer::tr("Time Values");
case Notes: return Layer::tr("Notes");
case FlexiNotes: return Layer::tr("Flexible Notes");
case Regions: return Layer::tr("Regions");
case Boxes: return Layer::tr("Boxes");
case Text: return Layer::tr("Text");
case Image: return Layer::tr("Images");
case Colour3DPlot: return Layer::tr("Colour 3D Plot");
case Spectrum: return Layer::tr("Spectrum");
case Slice: return Layer::tr("Time Slice");
case MelodicRangeSpectrogram:
// The user can change all the parameters of this after the
// fact -- there's nothing permanently melodic-range about it
// that should be encoded in its name
return Layer::tr("Spectrogram");
case PeakFrequencySpectrogram:
// likewise
return Layer::tr("Spectrogram");
case UnknownLayer:
default:
SVCERR << "WARNING: LayerFactory::getLayerPresentationName passed unknown layer" << endl;
return Layer::tr("Unknown Layer");
}
}
bool
LayerFactory::isLayerSliceable(const Layer *layer)
{
if (dynamic_cast<const SliceableLayer *>(layer)) {
if (dynamic_cast<const SpectrogramLayer *>(layer)) {
//!!! We can create slices of spectrograms, but there's a
// problem managing the models. The source model for the
// slice layer has to be one of the spectrogram's FFT
// models -- that's fine, except that we can't store &
// recall the slice layer with a reference to that model
// because the model is internal to the spectrogram layer
// and the document has no record of it. We would need
// some other way of managing models that are used in this
// way. For the moment we just don't allow slices of
// spectrograms -- and provide a spectrum layer for this
// instead.
//
// This business needs a bit more thought -- either come
// up with a sensible way to deal with that stuff, or
// simplify the existing slice layer logic so that it
// doesn't have to deal with models disappearing on it at
// all (and use the normal Document setModel mechanism to
// set its sliceable model instead of the fancy pants
// nonsense it's doing at the moment).
return false;
}
return true;
}
return false;
}
LayerFactory::LayerTypeSet
LayerFactory::getValidLayerTypes(ModelId modelId)
{
LayerTypeSet types;
if (ModelById::getAs<DenseThreeDimensionalModel>(modelId)) {
types.insert(Colour3DPlot);
types.insert(Slice);
}
if (ModelById::getAs<RangeSummarisableTimeValueModel>(modelId)) {
types.insert(Waveform);
}
if (ModelById::getAs<DenseTimeValueModel>(modelId)) {
types.insert(Spectrogram);
types.insert(MelodicRangeSpectrogram);
types.insert(PeakFrequencySpectrogram);
}
if (ModelById::getAs<SparseOneDimensionalModel>(modelId)) {
types.insert(TimeInstants);
}
if (ModelById::getAs<SparseTimeValueModel>(modelId)) {
types.insert(TimeValues);
}
if (ModelById::getAs<NoteModel>(modelId)) {
auto nm = ModelById::getAs<NoteModel>(modelId);
if (nm && nm->getSubtype() == NoteModel::FLEXI_NOTE) {
types.insert(FlexiNotes);
} else {
types.insert(Notes);
}
}
if (ModelById::getAs<RegionModel>(modelId)) {
types.insert(Regions);
}
if (ModelById::getAs<BoxModel>(modelId)) {
types.insert(Boxes);
}
if (ModelById::getAs<TextModel>(modelId)) {
types.insert(Text);
}
if (ModelById::getAs<ImageModel>(modelId)) {
types.insert(Image);
}
if (ModelById::getAs<DenseTimeValueModel>(modelId)) {
types.insert(Spectrum);
}
// We don't count TimeRuler here as it doesn't actually display
// the data, although it can be backed by any model
return types;
}
LayerFactory::LayerTypeSet
LayerFactory::getValidEmptyLayerTypes()
{
LayerTypeSet types;
types.insert(TimeInstants);
types.insert(TimeValues);
// Because this is strictly a UI function -- list the layer types
// to show in a menu -- it should not contain FlexiNotes; the
// layer isn't meaningfully editable in SV
// types.insert(FlexiNotes);
types.insert(Notes);
types.insert(Regions);
types.insert(Boxes);
types.insert(Text);
types.insert(Image);
//!!! and in principle Colour3DPlot -- now that's a challenge
return types;
}
LayerFactory::LayerType
LayerFactory::getLayerType(const Layer *layer)
{
if (dynamic_cast<const WaveformLayer *>(layer)) return Waveform;
if (dynamic_cast<const SpectrogramLayer *>(layer)) return Spectrogram;
if (dynamic_cast<const TimeRulerLayer *>(layer)) return TimeRuler;
if (dynamic_cast<const TimeInstantLayer *>(layer)) return TimeInstants;
if (dynamic_cast<const TimeValueLayer *>(layer)) return TimeValues;
if (dynamic_cast<const FlexiNoteLayer *>(layer)) return FlexiNotes;
if (dynamic_cast<const NoteLayer *>(layer)) return Notes;
if (dynamic_cast<const RegionLayer *>(layer)) return Regions;
if (dynamic_cast<const BoxLayer *>(layer)) return Boxes;
if (dynamic_cast<const TextLayer *>(layer)) return Text;
if (dynamic_cast<const ImageLayer *>(layer)) return Image;
if (dynamic_cast<const Colour3DPlotLayer *>(layer)) return Colour3DPlot;
if (dynamic_cast<const SpectrumLayer *>(layer)) return Spectrum;
if (dynamic_cast<const SliceLayer *>(layer)) return Slice;
return UnknownLayer;
}
QString
LayerFactory::getLayerIconName(LayerType type)
{
switch (type) {
case Waveform: return "waveform";
case Spectrogram: return "spectrogram";
case TimeRuler: return "timeruler";
case TimeInstants: return "instants";
case TimeValues: return "values";
case Notes: return "notes";
case FlexiNotes: return "flexinotes";
case Regions: return "regions";
case Boxes: return "boxes";
case Text: return "text";
case Image: return "image";
case Colour3DPlot: return "colour3d";
case Spectrum: return "spectrum";
case Slice: return "spectrum";
case MelodicRangeSpectrogram: return "spectrogram";
case PeakFrequencySpectrogram: return "spectrogram";
case UnknownLayer:
default:
SVCERR << "WARNING: LayerFactory::getLayerIconName passed unknown layer" << endl;
return "unknown";
}
}
QString
LayerFactory::getLayerTypeName(LayerType type)
{
switch (type) {
case Waveform: return "waveform";
case Spectrogram: return "spectrogram";
case TimeRuler: return "timeruler";
case TimeInstants: return "timeinstants";
case TimeValues: return "timevalues";
case Notes: return "notes";
case FlexiNotes: return "flexinotes";
case Regions: return "regions";
case Boxes: return "boxes";
case Text: return "text";
case Image: return "image";
case Colour3DPlot: return "colour3dplot";
case Spectrum: return "spectrum";
case Slice: return "slice";
case MelodicRangeSpectrogram: return "melodicrange";
case PeakFrequencySpectrogram: return "peakfrequency";
case UnknownLayer:
default:
SVCERR << "WARNING: LayerFactory::getLayerTypeName passed unknown layer" << endl;
return "unknown";
}
}
LayerFactory::LayerType
LayerFactory::getLayerTypeForName(QString name)
{
if (name == "waveform") return Waveform;
if (name == "spectrogram") return Spectrogram;
if (name == "timeruler") return TimeRuler;
if (name == "timeinstants") return TimeInstants;
if (name == "timevalues") return TimeValues;
if (name == "notes") return Notes;
if (name == "flexinotes") return FlexiNotes;
if (name == "regions") return Regions;
if (name == "boxes" || name == "timefrequencybox") return Boxes;
if (name == "text") return Text;
if (name == "image") return Image;
if (name == "colour3dplot") return Colour3DPlot;
if (name == "spectrum") return Spectrum;
if (name == "slice") return Slice;
if (name == "melodicrange") return MelodicRangeSpectrogram;
if (name == "peakfrequency") return PeakFrequencySpectrogram;
return UnknownLayer;
}
void
LayerFactory::setModel(Layer *layer, ModelId model)
{
if (trySetModel<WaveformLayer, WaveFileModel>(layer, model))
return;
if (trySetModel<WaveformLayer, WritableWaveFileModel>(layer, model))
return;
if (trySetModel<SpectrogramLayer, DenseTimeValueModel>(layer, model))
return;
if (trySetModel<TimeRulerLayer, Model>(layer, model))
return;
if (trySetModel<TimeInstantLayer, SparseOneDimensionalModel>(layer, model))
return;
if (trySetModel<TimeValueLayer, SparseTimeValueModel>(layer, model))
return;
if (trySetModel<NoteLayer, NoteModel>(layer, model))
return;
if (trySetModel<FlexiNoteLayer, NoteModel>(layer, model))
return;
if (trySetModel<RegionLayer, RegionModel>(layer, model))
return;
if (trySetModel<BoxLayer, BoxModel>(layer, model))
return;
if (trySetModel<TextLayer, TextModel>(layer, model))
return;
if (trySetModel<ImageLayer, ImageModel>(layer, model))
return;
if (trySetModel<Colour3DPlotLayer, DenseThreeDimensionalModel>(layer, model))
return;
if (trySetModel<SpectrumLayer, DenseTimeValueModel>(layer, model))
return;
}
std::shared_ptr<Model>
LayerFactory::createEmptyModel(LayerType layerType, ModelId baseModelId)
{
auto baseModel = ModelById::get(baseModelId);
if (!baseModel) return {};
sv_samplerate_t rate = baseModel->getSampleRate();
if (layerType == TimeInstants) {
return std::make_shared<SparseOneDimensionalModel>(rate, 1);
} else if (layerType == TimeValues) {
return std::make_shared<SparseTimeValueModel>(rate, 1, true);
} else if (layerType == FlexiNotes) {
return std::make_shared<NoteModel>(rate, 1, true);
} else if (layerType == Notes) {
return std::make_shared<NoteModel>(rate, 1, true);
} else if (layerType == Regions) {
return std::make_shared<RegionModel>(rate, 1, true);
} else if (layerType == Boxes) {
return std::make_shared<BoxModel>(rate, 1, true);
} else if (layerType == Text) {
return std::make_shared<TextModel>(rate, 1, true);
} else if (layerType == Image) {
return std::make_shared<ImageModel>(rate, 1, true);
} else {
return {};
}
}
int
LayerFactory::getChannel(Layer *layer)
{
if (dynamic_cast<WaveformLayer *>(layer)) {
return dynamic_cast<WaveformLayer *>(layer)->getChannel();
}
if (dynamic_cast<SpectrogramLayer *>(layer)) {
return dynamic_cast<SpectrogramLayer *>(layer)->getChannel();
}
return -1;
}
void
LayerFactory::setChannel(Layer *layer, int channel)
{
if (dynamic_cast<WaveformLayer *>(layer)) {
dynamic_cast<WaveformLayer *>(layer)->setChannel(channel);
return;
}
if (dynamic_cast<SpectrogramLayer *>(layer)) {
dynamic_cast<SpectrogramLayer *>(layer)->setChannel(channel);
return;
}
if (dynamic_cast<SpectrumLayer *>(layer)) {
dynamic_cast<SpectrumLayer *>(layer)->setChannel(channel);
return;
}
}
Layer *
LayerFactory::createLayer(LayerType type)
{
Layer *layer = nullptr;
switch (type) {
case Waveform:
layer = new WaveformLayer;
break;
case Spectrogram:
layer = new SpectrogramLayer;
break;
case TimeRuler:
layer = new TimeRulerLayer;
break;
case TimeInstants:
layer = new TimeInstantLayer;
break;
case TimeValues:
layer = new TimeValueLayer;
break;
case FlexiNotes:
layer = new FlexiNoteLayer;
break;
case Notes:
layer = new NoteLayer;
break;
case Regions:
layer = new RegionLayer;
break;
case Boxes:
layer = new BoxLayer;
break;
case Text:
layer = new TextLayer;
break;
case Image:
layer = new ImageLayer;
break;
case Colour3DPlot:
layer = new Colour3DPlotLayer;
break;
case Spectrum:
layer = new SpectrumLayer;
break;
case Slice:
layer = new SliceLayer;
break;
case MelodicRangeSpectrogram:
layer = new SpectrogramLayer(SpectrogramLayer::MelodicRange);
break;
case PeakFrequencySpectrogram:
layer = new SpectrogramLayer(SpectrogramLayer::MelodicPeaks);
break;
case UnknownLayer:
default:
SVCERR << "WARNING: LayerFactory::createLayer passed unknown layer" << endl;
break;
}
if (!layer) {
SVCERR << "LayerFactory::createLayer: Unknown layer type "
<< type << endl;
} else {
// SVDEBUG << "LayerFactory::createLayer: Setting object name "
// << getLayerPresentationName(type) << " on " << layer << endl;
layer->setObjectName(getLayerPresentationName(type));
setLayerDefaultProperties(type, layer);
}
return layer;
}
void
LayerFactory::setLayerDefaultProperties(LayerType type, Layer *layer)
{
// SVDEBUG << "LayerFactory::setLayerDefaultProperties: type " << type << " (name \"" << getLayerTypeName(type) << "\")" << endl;
QSettings settings;
settings.beginGroup("LayerDefaults");
QString defaults = settings.value(getLayerTypeName(type), "").toString();
if (defaults == "") return;
setLayerProperties(layer, defaults);
settings.endGroup();
}
void
LayerFactory::setLayerProperties(Layer *layer, QString newXml)
{
QDomDocument docOld, docNew;
QString oldXml = layer->toXmlString();
#if QT_VERSION < QT_VERSION_CHECK(6, 5, 0)
if (!docOld.setContent(oldXml, false)) {
SVCERR << "LayerFactory::setLayerProperties: Failed to parse XML for existing layer properties! XML string is: " << oldXml << endl;
return;
}
if (!docNew.setContent(newXml, false)) {
SVCERR << "LayerFactory::setLayerProperties: Failed to parse XML: " << newXml << endl;
return;
}
#else
if (!docOld.setContent(oldXml)) {
SVCERR << "LayerFactory::setLayerProperties: Failed to parse XML for existing layer properties! XML string is: " << oldXml << endl;
return;
}
if (!docNew.setContent(newXml)) {
SVCERR << "LayerFactory::setLayerProperties: Failed to parse XML: " << newXml << endl;
return;
}
#endif
LayerAttributes attrs;
QDomElement layerElt = docNew.firstChildElement("layer");
QDomNamedNodeMap attrNodes = layerElt.attributes();
for (int i = 0; i < attrNodes.length(); ++i) {
QDomAttr attr = attrNodes.item(i).toAttr();
if (attr.isNull()) continue;
// SVCERR << "append \"" << attr.name()
// << "\" -> \"" << attr.value() << "\""
// << endl;
attrs[attr.name()] = attr.value();
}
layerElt = docOld.firstChildElement("layer");
attrNodes = layerElt.attributes();
for (int i = 0; i < attrNodes.length(); ++i) {
QDomAttr attr = attrNodes.item(i).toAttr();
if (attr.isNull()) continue;
if (attrs.value(attr.name()) == "") {
// SVCERR << "append \"" << attr.name()
// << "\" -> \"" << attr.value() << "\""
// << endl;
attrs[attr.name()] = attr.value();
}
}
layer->setProperties(attrs);
}
LayerFactory::LayerType
LayerFactory::getLayerTypeForClipboardContents(const Clipboard &clip)
{
const EventVector &contents = clip.getPoints();
bool haveValue = false;
bool haveDuration = false;
bool haveLevel = false;
for (EventVector::const_iterator i = contents.begin();
i != contents.end(); ++i) {
if (i->hasValue()) haveValue = true;
if (i->hasDuration()) haveDuration = true;
if (i->hasLevel()) haveLevel = true;
}
if (haveValue && haveDuration && haveLevel) return Notes;
if (haveValue && haveDuration) return Regions;
if (haveValue) return TimeValues;
return TimeInstants;
}
} // end namespace sv
|