Mercurial > hg > piper-cpp
comparison bits/PluginHandleMapper.h @ 51:f4244a2d55ac
Introduce and use output id mappers
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 16 Sep 2016 15:10:57 +0100 |
parents | 55d69b26d4db |
children | 7aec704705c7 |
comparison
equal
deleted
inserted
replaced
50:12e3b396544c | 51:f4244a2d55ac |
---|---|
35 #ifndef VAMPIPE_PLUGIN_HANDLE_MAPPER_H | 35 #ifndef VAMPIPE_PLUGIN_HANDLE_MAPPER_H |
36 #define VAMPIPE_PLUGIN_HANDLE_MAPPER_H | 36 #define VAMPIPE_PLUGIN_HANDLE_MAPPER_H |
37 | 37 |
38 #include <vamp-hostsdk/Plugin.h> | 38 #include <vamp-hostsdk/Plugin.h> |
39 | 39 |
40 #include "PluginOutputIdMapper.h" | |
41 | |
40 namespace vampipe { | 42 namespace vampipe { |
41 | 43 |
42 class PluginHandleMapper | 44 class PluginHandleMapper |
43 { | 45 { |
44 // NB the handle type must fit in a JSON number | 46 // NB the handle type must fit in a JSON number |
45 | 47 |
46 public: | 48 public: |
49 typedef int32_t Handle; | |
50 | |
51 virtual ~PluginHandleMapper() { } | |
52 | |
47 class NotFound : virtual public std::runtime_error { | 53 class NotFound : virtual public std::runtime_error { |
48 public: | 54 public: |
49 NotFound() : runtime_error("plugin or handle not found in mapper") { } | 55 NotFound() : runtime_error("plugin or handle not found in mapper") { } |
50 }; | 56 }; |
51 | 57 |
52 virtual int32_t pluginToHandle(Vamp::Plugin *) const = 0; // may throw NotFound | 58 virtual Handle pluginToHandle(Vamp::Plugin *) const = 0; // may throw NotFound |
53 virtual Vamp::Plugin *handleToPlugin(int32_t) const = 0; // may throw NotFound | 59 virtual Vamp::Plugin *handleToPlugin(Handle) const = 0; // may throw NotFound |
60 | |
61 virtual const PluginOutputIdMapper &pluginToOutputIdMapper(Vamp::Plugin *p) const = 0; // may throw NotFound | |
62 virtual const PluginOutputIdMapper &handleToOutputIdMapper(Handle h) const = 0; // may throw NotFound | |
54 }; | 63 }; |
55 | 64 |
56 } | 65 } |
57 | 66 |
58 #endif | 67 #endif |