Chris@320
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@320
|
2
|
Chris@320
|
3 /*
|
Chris@320
|
4 Sonic Visualiser
|
Chris@320
|
5 An audio file viewer and annotation editor.
|
Chris@320
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@328
|
7 This file copyright 2006-2007 Chris Cannam and QMUL.
|
Chris@320
|
8
|
Chris@320
|
9 This program is free software; you can redistribute it and/or
|
Chris@320
|
10 modify it under the terms of the GNU General Public License as
|
Chris@320
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@320
|
12 License, or (at your option) any later version. See the file
|
Chris@320
|
13 COPYING included with this distribution for more information.
|
Chris@320
|
14 */
|
Chris@320
|
15
|
Chris@320
|
16 #ifndef _TRANSFORM_H_
|
Chris@320
|
17 #define _TRANSFORM_H_
|
Chris@320
|
18
|
Chris@328
|
19 #include "base/XmlExportable.h"
|
Chris@328
|
20 #include "base/Window.h"
|
Chris@350
|
21 #include "base/RealTime.h"
|
Chris@328
|
22
|
Chris@486
|
23 #include <vamp-hostsdk/PluginBase.h>
|
Chris@486
|
24
|
Chris@328
|
25 #include <QString>
|
Chris@320
|
26
|
Chris@400
|
27 #include <map>
|
Chris@400
|
28
|
Chris@320
|
29 typedef QString TransformId;
|
Chris@320
|
30
|
Chris@350
|
31 class QXmlAttributes;
|
Chris@350
|
32
|
Chris@328
|
33 class Transform : public XmlExportable
|
Chris@320
|
34 {
|
Chris@320
|
35 public:
|
Chris@350
|
36 /**
|
Chris@350
|
37 * Construct a new Transform with default data and no identifier.
|
Chris@350
|
38 * The Transform object will be meaningless until some data and an
|
Chris@350
|
39 * identifier have been set on it.
|
Chris@350
|
40 *
|
Chris@350
|
41 * To construct a Transform for use with a particular transform
|
Chris@350
|
42 * identifier, use TransformFactory::getDefaultTransformFor.
|
Chris@350
|
43 */
|
Chris@328
|
44 Transform();
|
Chris@350
|
45
|
Chris@350
|
46 /**
|
Chris@350
|
47 * Construct a Transform by parsing the given XML data string.
|
Chris@350
|
48 * This is the inverse of toXml.
|
Chris@350
|
49 */
|
Chris@350
|
50 Transform(QString xml);
|
Chris@350
|
51
|
Chris@320
|
52 virtual ~Transform();
|
Chris@320
|
53
|
Chris@350
|
54 /**
|
Chris@350
|
55 * Compare two Transforms. They only compare equal if every data
|
Chris@350
|
56 * element matches.
|
Chris@350
|
57 */
|
Chris@400
|
58 bool operator==(const Transform &) const;
|
Chris@400
|
59
|
Chris@400
|
60 /**
|
Chris@400
|
61 * Order two Transforms, so that they can be used as keys in
|
Chris@400
|
62 * containers.
|
Chris@400
|
63 */
|
Chris@400
|
64 bool operator<(const Transform &) const;
|
Chris@350
|
65
|
Chris@350
|
66 void setIdentifier(TransformId id);
|
Chris@350
|
67 TransformId getIdentifier() const;
|
Chris@320
|
68
|
Chris@328
|
69 enum Type { FeatureExtraction, RealTimeEffect };
|
Chris@328
|
70
|
Chris@328
|
71 Type getType() const;
|
Chris@328
|
72 QString getPluginIdentifier() const;
|
Chris@328
|
73 QString getOutput() const;
|
Chris@353
|
74
|
Chris@353
|
75 void setPluginIdentifier(QString pluginIdentifier);
|
Chris@353
|
76 void setOutput(QString output);
|
Chris@353
|
77
|
Chris@353
|
78 // Turn a plugin ID and output name into a transform ID. Note
|
Chris@353
|
79 // that our pluginIdentifier is the same thing as the Vamp SDK's
|
Chris@353
|
80 // PluginLoader::PluginKey.
|
Chris@353
|
81 static TransformId getIdentifierForPluginOutput(QString pluginIdentifier,
|
Chris@353
|
82 QString output = "");
|
Chris@328
|
83
|
Chris@328
|
84 typedef std::map<QString, float> ParameterMap;
|
Chris@328
|
85
|
Chris@350
|
86 const ParameterMap &getParameters() const;
|
Chris@350
|
87 void setParameters(const ParameterMap &pm);
|
Chris@350
|
88 void setParameter(QString name, float value);
|
Chris@328
|
89
|
Chris@328
|
90 typedef std::map<QString, QString> ConfigurationMap;
|
Chris@328
|
91
|
Chris@350
|
92 const ConfigurationMap &getConfiguration() const;
|
Chris@350
|
93 void setConfiguration(const ConfigurationMap &cm);
|
Chris@350
|
94 void setConfigurationValue(QString name, QString value);
|
Chris@328
|
95
|
Chris@508
|
96 enum SummaryType {
|
Chris@508
|
97
|
Chris@508
|
98 // This is the same as Vamp::PluginSummarisingAdapter::SummaryType
|
Chris@508
|
99 // except with NoSummary instead of UnknownSummaryType
|
Chris@508
|
100
|
Chris@508
|
101 Minimum = 0,
|
Chris@508
|
102 Maximum = 1,
|
Chris@508
|
103 Mean = 2,
|
Chris@508
|
104 Median = 3,
|
Chris@508
|
105 Mode = 4,
|
Chris@508
|
106 Sum = 5,
|
Chris@508
|
107 Variance = 6,
|
Chris@508
|
108 StandardDeviation = 7,
|
Chris@508
|
109 Count = 8,
|
Chris@508
|
110
|
Chris@508
|
111 NoSummary = 999
|
Chris@508
|
112 };
|
Chris@508
|
113 SummaryType getSummaryType() const;
|
Chris@508
|
114 void setSummaryType(SummaryType type);
|
Chris@508
|
115
|
Chris@366
|
116 QString getPluginVersion() const;
|
Chris@366
|
117 void setPluginVersion(QString version);
|
Chris@366
|
118
|
Chris@350
|
119 QString getProgram() const;
|
Chris@350
|
120 void setProgram(QString program);
|
Chris@328
|
121
|
Chris@350
|
122 size_t getStepSize() const;
|
Chris@350
|
123 void setStepSize(size_t s);
|
Chris@328
|
124
|
Chris@350
|
125 size_t getBlockSize() const;
|
Chris@350
|
126 void setBlockSize(size_t s);
|
Chris@328
|
127
|
Chris@350
|
128 WindowType getWindowType() const;
|
Chris@350
|
129 void setWindowType(WindowType type);
|
Chris@350
|
130
|
Chris@350
|
131 RealTime getStartTime() const;
|
Chris@350
|
132 void setStartTime(RealTime t);
|
Chris@350
|
133
|
Chris@350
|
134 RealTime getDuration() const; // 0 -> all
|
Chris@350
|
135 void setDuration(RealTime d);
|
Chris@350
|
136
|
Chris@350
|
137 float getSampleRate() const; // 0 -> as input
|
Chris@350
|
138 void setSampleRate(float rate);
|
Chris@328
|
139
|
Chris@328
|
140 void toXml(QTextStream &stream, QString indent = "",
|
Chris@328
|
141 QString extraAttributes = "") const;
|
Chris@328
|
142
|
Chris@350
|
143 /**
|
Chris@350
|
144 * Set the main transform data from the given XML attributes.
|
Chris@350
|
145 * This does not set the parameters or configuration, which are
|
Chris@350
|
146 * exported to separate XML elements rather than attributes of the
|
Chris@350
|
147 * transform element.
|
Chris@366
|
148 *
|
Chris@366
|
149 * Note that this only sets those attributes which are actually
|
Chris@366
|
150 * present in the argument. Any attributes not defined in the
|
Chris@366
|
151 * attribute will remain unchanged in the Transform. If your aim
|
Chris@366
|
152 * is to create a transform exactly matching the given attributes,
|
Chris@366
|
153 * ensure you start from an empty transform rather than one that
|
Chris@366
|
154 * has already been configured.
|
Chris@350
|
155 */
|
Chris@350
|
156 void setFromXmlAttributes(const QXmlAttributes &);
|
Chris@320
|
157
|
Chris@508
|
158 static SummaryType stringToSummaryType(QString);
|
Chris@508
|
159 static QString summaryTypeToString(SummaryType);
|
Chris@508
|
160
|
Chris@320
|
161 protected:
|
Chris@328
|
162 TransformId m_id; // pluginid:output, that is type:soname:label:output
|
Chris@328
|
163
|
Chris@328
|
164 static QString createIdentifier
|
Chris@328
|
165 (QString type, QString soName, QString label, QString output);
|
Chris@320
|
166
|
Chris@328
|
167 static void parseIdentifier
|
Chris@328
|
168 (QString identifier,
|
Chris@328
|
169 QString &type, QString &soName, QString &label, QString &output);
|
Chris@328
|
170
|
Chris@400
|
171 template <typename A, typename B>
|
Chris@400
|
172 bool mapLessThan(const std::map<A, B> &a, const std::map<A, B> &b) const {
|
Chris@400
|
173 // Return true if a is "less than" b. Ordering doesn't have
|
Chris@400
|
174 // to be meaningful, just consistent.
|
Chris@400
|
175 typename std::map<A, B>::const_iterator i;
|
Chris@400
|
176 typename std::map<A, B>::const_iterator j;
|
Chris@400
|
177 for (i = a.begin(), j = b.begin(); i != a.end(); ++i) {
|
Chris@400
|
178 if (j == b.end()) return false; // a is longer than b
|
Chris@400
|
179 if (i->first != j->first) return i->first < j->first;
|
Chris@400
|
180 if (i->second != j->second) return i->second < j->second;
|
Chris@400
|
181 }
|
Chris@400
|
182 if (j != b.end()) return true; // a is shorter than b
|
Chris@400
|
183 return false; // equal
|
Chris@400
|
184 }
|
Chris@400
|
185
|
Chris@328
|
186 ParameterMap m_parameters;
|
Chris@328
|
187 ConfigurationMap m_configuration;
|
Chris@508
|
188 SummaryType m_summaryType;
|
Chris@366
|
189 QString m_pluginVersion;
|
Chris@328
|
190 QString m_program;
|
Chris@328
|
191 size_t m_stepSize;
|
Chris@328
|
192 size_t m_blockSize;
|
Chris@328
|
193 WindowType m_windowType;
|
Chris@350
|
194 RealTime m_startTime;
|
Chris@350
|
195 RealTime m_duration;
|
Chris@328
|
196 float m_sampleRate;
|
Chris@320
|
197 };
|
Chris@320
|
198
|
Chris@320
|
199 #endif
|
Chris@328
|
200
|