# HG changeset patch # User Chris Cannam # Date 1474031741 -3600 # Node ID 12e3b396544c3a64ead5e27d60f7b63380613570 # Parent f3f7561233d64adb56f31b8dcf862288f8c9fbbb Simplify diff -r f3f7561233d6 -r 12e3b396544c bits/PluginOutputIdMapper.h --- a/bits/PluginOutputIdMapper.h Fri Sep 16 14:13:21 2016 +0100 +++ b/bits/PluginOutputIdMapper.h Fri Sep 16 14:15:41 2016 +0100 @@ -44,43 +44,29 @@ class PluginOutputIdMapper { -// NB not threadsafe. Does this matter? - -//!!! simplify. A single vector is almost certainly faster. - public: - PluginOutputIdMapper(Vamp::Plugin *p) : m_plugin(p) { } - - class NotFound : virtual public std::runtime_error { - public: - NotFound() : runtime_error("output id or index not found in mapper") { } - }; + PluginOutputIdMapper(Vamp::Plugin *p) { + Vamp::Plugin::OutputList outputs = p->getOutputDescriptors(); + for (const auto &d: outputs) { + m_ids.push_back(d.identifier); + } + } int idToIndex(std::string outputId) const { - if (m_idIndexMap.empty()) populate(); - auto i = m_idIndexMap.find(outputId); - if (i == m_idIndexMap.end()) throw NotFound(); - return i->second; + int n = int(m_ids.size()); + for (int i = 0; i < n; ++i) { + if (outputId == m_ids[i]) { + return i; + } + } } std::string indexToId(int index) const { - if (m_ids.empty()) populate(); - if (index < 0 || size_t(index) >= m_ids.size()) throw NotFound(); return m_ids[index]; } private: - Vamp::Plugin *m_plugin; - mutable std::vector m_ids; - mutable std::map m_idIndexMap; - - void populate() const { - Vamp::Plugin::OutputList outputs = m_plugin->getOutputDescriptors(); - for (const auto &d: outputs) { - m_idIndexMap[d.identifier] = m_ids.size(); - m_ids.push_back(d.identifier); - } - } + std::vector m_ids; }; }