annotate data/model/AggregateWaveModel.h @ 1086:9f4505ac9072

Tidy dense time-value model API a bit; add first simple unit test for FFT model
author Chris Cannam
date Wed, 10 Jun 2015 17:06:02 +0100
parents 0fd3661bcfff
children 4d9816ba0ebe
rev   line source
Chris@297 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@297 2
Chris@297 3 /*
Chris@297 4 Sonic Visualiser
Chris@297 5 An audio file viewer and annotation editor.
Chris@297 6 Centre for Digital Music, Queen Mary, University of London.
Chris@297 7 This file copyright 2007 QMUL.
Chris@297 8
Chris@297 9 This program is free software; you can redistribute it and/or
Chris@297 10 modify it under the terms of the GNU General Public License as
Chris@297 11 published by the Free Software Foundation; either version 2 of the
Chris@297 12 License, or (at your option) any later version. See the file
Chris@297 13 COPYING included with this distribution for more information.
Chris@297 14 */
Chris@297 15
Chris@297 16 #ifndef _AGGREGATE_WAVE_MODEL_H_
Chris@297 17 #define _AGGREGATE_WAVE_MODEL_H_
Chris@297 18
Chris@297 19 #include "RangeSummarisableTimeValueModel.h"
Chris@297 20 #include "PowerOfSqrtTwoZoomConstraint.h"
Chris@297 21
Chris@297 22 #include <vector>
Chris@297 23
Chris@297 24 class AggregateWaveModel : public RangeSummarisableTimeValueModel
Chris@297 25 {
Chris@297 26 Q_OBJECT
Chris@297 27
Chris@297 28 public:
Chris@297 29 struct ModelChannelSpec
Chris@297 30 {
Chris@297 31 ModelChannelSpec(RangeSummarisableTimeValueModel *m, int c) :
Chris@297 32 model(m), channel(c) { }
Chris@297 33 RangeSummarisableTimeValueModel *model;
Chris@297 34 int channel;
Chris@297 35 };
Chris@297 36
Chris@297 37 typedef std::vector<ModelChannelSpec> ChannelSpecList;
Chris@297 38
Chris@297 39 AggregateWaveModel(ChannelSpecList channelSpecs);
Chris@297 40 ~AggregateWaveModel();
Chris@297 41
Chris@297 42 bool isOK() const;
Chris@297 43 bool isReady(int *) const;
Chris@297 44
Chris@345 45 QString getTypeName() const { return tr("Aggregate Wave"); }
Chris@345 46
Chris@929 47 int getComponentCount() const;
Chris@929 48 ModelChannelSpec getComponent(int c) const;
Chris@297 49
Chris@297 50 const ZoomConstraint *getZoomConstraint() const { return &m_zoomConstraint; }
Chris@297 51
Chris@1038 52 sv_frame_t getFrameCount() const;
Chris@929 53 int getChannelCount() const;
Chris@1040 54 sv_samplerate_t getSampleRate() const;
Chris@297 55
Chris@297 56 float getValueMinimum() const { return -1.0f; }
Chris@297 57 float getValueMaximum() const { return 1.0f; }
Chris@297 58
Chris@1038 59 virtual sv_frame_t getStartFrame() const { return 0; }
Chris@1038 60 virtual sv_frame_t getEndFrame() const { return getFrameCount(); }
Chris@297 61
Chris@1038 62 virtual sv_frame_t getData(int channel, sv_frame_t start, sv_frame_t count,
Chris@1086 63 float *buffer) const;
Chris@297 64
Chris@1086 65 virtual sv_frame_t getMultiChannelData(int fromchannel, int tochannel,
Chris@1086 66 sv_frame_t start, sv_frame_t count,
Chris@1086 67 float **buffer) const;
Chris@363 68
Chris@929 69 virtual int getSummaryBlockSize(int desired) const;
Chris@377 70
Chris@1038 71 virtual void getSummaries(int channel, sv_frame_t start, sv_frame_t count,
Chris@300 72 RangeBlock &ranges,
Chris@929 73 int &blockSize) const;
Chris@297 74
Chris@1038 75 virtual Range getSummary(int channel, sv_frame_t start, sv_frame_t count) const;
Chris@297 76
Chris@297 77 virtual void toXml(QTextStream &out,
Chris@297 78 QString indent = "",
Chris@297 79 QString extraAttributes = "") const;
Chris@297 80
Chris@297 81 signals:
Chris@297 82 void modelChanged();
Chris@1038 83 void modelChangedWithin(sv_frame_t, sv_frame_t);
Chris@297 84 void completionChanged();
Chris@297 85
Chris@297 86 protected slots:
Chris@297 87 void componentModelChanged();
Chris@1038 88 void componentModelChangedWithin(sv_frame_t, sv_frame_t);
Chris@297 89 void componentModelCompletionChanged();
Chris@297 90
Chris@297 91 protected:
Chris@297 92 ChannelSpecList m_components;
Chris@297 93 static PowerOfSqrtTwoZoomConstraint m_zoomConstraint;
Chris@297 94 };
Chris@297 95
Chris@297 96 #endif
Chris@297 97