comparison vamp-support/RdfTypes.h @ 225:025b3e2f7c17

Minor adjustment
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 09 Jun 2017 16:40:56 +0100
parents 16655424db89
children c6aed932318d
comparison
equal deleted inserted replaced
224:16655424db89 225:025b3e2f7c17
62 pluginKey) { 62 pluginKey) {
63 63
64 StaticOutputInfo info; 64 StaticOutputInfo info;
65 SordModel *model = sord_new(m_world, SORD_SPO|SORD_OPS|SORD_POS, false); 65 SordModel *model = sord_new(m_world, SORD_SPO|SORD_OPS|SORD_POS, false);
66 if (loadRdf(model, candidateRdfFilesFor(pluginKey))) { 66 if (loadRdf(model, candidateRdfFilesFor(pluginKey))) {
67 // we want to find a graph like 67 loadStaticOutputInfoFromModel(model, pluginKey, info);
68 // :plugin a vamp:Plugin
69 // :plugin vamp:identifier "pluginId"
70 // :library vamp:available_plugin :plugin
71 // :library vamp:identifier "libraryId"
72 // :plugin vamp:output :output1
73 // :plugin vamp:output :output2
74 // :plugin vamp:output :output3
75 // :output1 vamp:computes_event_type :event
76 // :output2 vamp:computes_feature :feature
77 // :output3 vamp:computes_signal_type :signal
78 // and where pluginKey == libraryId + ":" + pluginId
79 } 68 }
80 sord_free(model); 69 sord_free(model);
81 return info; 70 return info;
82 } 71 }
83 72
135 candidates.push_back(withoutSuffix + "." + suffix); 124 candidates.push_back(withoutSuffix + "." + suffix);
136 } 125 }
137 126
138 return candidates; 127 return candidates;
139 } 128 }
129
130 void
131 loadStaticOutputInfoFromModel(SordModel *model, std::string pluginKey,
132 StaticOutputInfo &info) {
133 // we want to find a graph like
134 // :plugin a vamp:Plugin
135 // :plugin vamp:identifier "pluginId"
136 // :library vamp:available_plugin :plugin
137 // :library vamp:identifier "libraryId"
138 // :plugin vamp:output :output1
139 // :plugin vamp:output :output2
140 // :plugin vamp:output :output3
141 // :output1 vamp:computes_event_type :event
142 // :output2 vamp:computes_feature :feature
143 // :output3 vamp:computes_signal_type :signal
144 // and where pluginKey == libraryId + ":" + pluginId
145
146 std::string libraryId, pluginId;
147 decomposePluginKey(pluginKey, libraryId, pluginId);
148
149 //!!!
150 }
151
152 bool decomposePluginKey(std::string pluginKey,
153 std::string &libraryId,
154 std::string &pluginId) {
155 auto i = pluginKey.find(':');
156 if (i == std::string::npos || i == 0 || i + 1 == pluginKey.length()) {
157 return false;
158 }
159 libraryId = pluginKey.substr(0, i);
160 pluginId = pluginKey.substr(i + 1);
161 return true;
162 }
163
140 }; 164 };
141 165
142 } 166 }
143 167
144 #endif 168 #endif