annotate bits/PluginHandleMapper.h @ 57:7aec704705c7

Make the output ID mapper stuff safer by using shared_ptr
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 19 Sep 2016 14:43:32 +0100
parents f4244a2d55ac
children 8a4bcb3dc3a6
rev   line source
c@10 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
c@10 2
c@10 3 /*
c@10 4 Vampipe
c@10 5
c@10 6 Centre for Digital Music, Queen Mary, University of London.
c@10 7 Copyright 2006-2016 Chris Cannam and QMUL.
c@10 8
c@10 9 Permission is hereby granted, free of charge, to any person
c@10 10 obtaining a copy of this software and associated documentation
c@10 11 files (the "Software"), to deal in the Software without
c@10 12 restriction, including without limitation the rights to use, copy,
c@10 13 modify, merge, publish, distribute, sublicense, and/or sell copies
c@10 14 of the Software, and to permit persons to whom the Software is
c@10 15 furnished to do so, subject to the following conditions:
c@10 16
c@10 17 The above copyright notice and this permission notice shall be
c@10 18 included in all copies or substantial portions of the Software.
c@10 19
c@10 20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
c@10 21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
c@10 22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
c@10 23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
c@10 24 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
c@10 25 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
c@10 26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
c@10 27
c@10 28 Except as contained in this notice, the names of the Centre for
c@10 29 Digital Music; Queen Mary, University of London; and Chris Cannam
c@10 30 shall not be used in advertising or otherwise to promote the sale,
c@10 31 use or other dealings in this Software without prior written
c@10 32 authorization.
c@10 33 */
c@10 34
c@10 35 #ifndef VAMPIPE_PLUGIN_HANDLE_MAPPER_H
c@10 36 #define VAMPIPE_PLUGIN_HANDLE_MAPPER_H
c@10 37
c@57 38 #include "PluginOutputIdMapper.h"
c@57 39
c@10 40 #include <vamp-hostsdk/Plugin.h>
c@57 41 #include <memory>
c@51 42
c@10 43 namespace vampipe {
c@19 44
c@10 45 class PluginHandleMapper
c@10 46 {
c@32 47 // NB the handle type must fit in a JSON number
c@32 48
c@10 49 public:
c@51 50 typedef int32_t Handle;
c@51 51
c@51 52 virtual ~PluginHandleMapper() { }
c@51 53
c@10 54 class NotFound : virtual public std::runtime_error {
c@10 55 public:
c@10 56 NotFound() : runtime_error("plugin or handle not found in mapper") { }
c@10 57 };
c@10 58
c@51 59 virtual Handle pluginToHandle(Vamp::Plugin *) const = 0; // may throw NotFound
c@51 60 virtual Vamp::Plugin *handleToPlugin(Handle) const = 0; // may throw NotFound
c@51 61
c@57 62 virtual const std::shared_ptr<PluginOutputIdMapper> pluginToOutputIdMapper
c@57 63 (Vamp::Plugin *p) const = 0; // may throw NotFound
c@57 64
c@57 65 virtual const std::shared_ptr<PluginOutputIdMapper> handleToOutputIdMapper
c@57 66 (Handle h) const = 0; // may throw NotFound
c@10 67 };
c@19 68
c@10 69 }
c@10 70
c@10 71 #endif
c@10 72