comparison bits/PluginHandleMapper.h @ 60:8a4bcb3dc3a6

Replace exceptions throughout the JSON-handling and adapter code with string-arg error handling. No longer need exception handling enabled in Emscripten (with its consequent runtime overhead - though we still need to check whether this error handling regime is actually faster).
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 20 Sep 2016 16:35:47 +0100
parents 7aec704705c7
children
comparison
equal deleted inserted replaced
59:77833938f0f8 60:8a4bcb3dc3a6
40 #include <vamp-hostsdk/Plugin.h> 40 #include <vamp-hostsdk/Plugin.h>
41 #include <memory> 41 #include <memory>
42 42
43 namespace vampipe { 43 namespace vampipe {
44 44
45 /**
46 * Convert plugin pointers to handles within some scope defined by the
47 * individual PluginHandleMapper implementation.
48 *
49 * The special handle 0 and the NULL plugin pointer are both used to
50 * represent "not found" and will be returned in any case where an
51 * unknown handle or plugin is requested.
52 *
53 * Note that the handle type must be representable as a JSON number,
54 * hence the use of a 32-bit rather than 64-bit int.
55 *
56 * This interface also includes methods for obtaining a
57 * PluginOutputIdMapper, \see PluginOutputIdMapper.
58 */
59
45 class PluginHandleMapper 60 class PluginHandleMapper
46 { 61 {
47 // NB the handle type must fit in a JSON number
48
49 public: 62 public:
50 typedef int32_t Handle; 63 typedef int32_t Handle;
64 const Handle INVALID_HANDLE = 0;
51 65
52 virtual ~PluginHandleMapper() { } 66 virtual ~PluginHandleMapper() noexcept { }
53
54 class NotFound : virtual public std::runtime_error {
55 public:
56 NotFound() : runtime_error("plugin or handle not found in mapper") { }
57 };
58
59 virtual Handle pluginToHandle(Vamp::Plugin *) const = 0; // may throw NotFound
60 virtual Vamp::Plugin *handleToPlugin(Handle) const = 0; // may throw NotFound
61 67
68 /**
69 * Look up and return the handle for a given plugin pointer.
70 * If the given pointer is null or not known, return INVALID_HANDLE.
71 */
72 virtual Handle pluginToHandle(Vamp::Plugin *) const noexcept = 0;
73
74 /**
75 * Look up and return the plugin for a given handle.
76 * If the given handle is INVALID_HANDLE or not known, return nullptr.
77 */
78 virtual Vamp::Plugin *handleToPlugin(Handle) const noexcept = 0;
79
80 /**
81 * Return a shared pointer to a PluginOutputIdMapper
82 * implementation for the given plugin pointer. If the given
83 * pointer is null or not known, return the null shared_ptr.
84 */
62 virtual const std::shared_ptr<PluginOutputIdMapper> pluginToOutputIdMapper 85 virtual const std::shared_ptr<PluginOutputIdMapper> pluginToOutputIdMapper
63 (Vamp::Plugin *p) const = 0; // may throw NotFound 86 (Vamp::Plugin *p) const noexcept = 0;
64 87
88 /**
89 * Return a shared pointer to a PluginOutputIdMapper
90 * implementation for the given plugin handle. If the given
91 * handle is INVALID_HANDLE or not known, return the null shared_ptr.
92 */
65 virtual const std::shared_ptr<PluginOutputIdMapper> handleToOutputIdMapper 93 virtual const std::shared_ptr<PluginOutputIdMapper> handleToOutputIdMapper
66 (Handle h) const = 0; // may throw NotFound 94 (Handle h) const noexcept = 0;
67 }; 95 };
68 96
69 } 97 }
70 98
71 #endif 99 #endif