c@75
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
c@75
|
2
|
c@75
|
3 /*
|
c@75
|
4 Piper C++
|
c@75
|
5
|
c@75
|
6 Centre for Digital Music, Queen Mary, University of London.
|
c@75
|
7 Copyright 2006-2016 Chris Cannam and QMUL.
|
c@75
|
8
|
c@75
|
9 Permission is hereby granted, free of charge, to any person
|
c@75
|
10 obtaining a copy of this software and associated documentation
|
c@75
|
11 files (the "Software"), to deal in the Software without
|
c@75
|
12 restriction, including without limitation the rights to use, copy,
|
c@75
|
13 modify, merge, publish, distribute, sublicense, and/or sell copies
|
c@75
|
14 of the Software, and to permit persons to whom the Software is
|
c@75
|
15 furnished to do so, subject to the following conditions:
|
c@75
|
16
|
c@75
|
17 The above copyright notice and this permission notice shall be
|
c@75
|
18 included in all copies or substantial portions of the Software.
|
c@75
|
19
|
c@75
|
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
c@75
|
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
c@75
|
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
c@75
|
23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
c@75
|
24 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
c@75
|
25 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
c@75
|
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
c@75
|
27
|
c@75
|
28 Except as contained in this notice, the names of the Centre for
|
c@75
|
29 Digital Music; Queen Mary, University of London; and Chris Cannam
|
c@75
|
30 shall not be used in advertising or otherwise to promote the sale,
|
c@75
|
31 use or other dealings in this Software without prior written
|
c@75
|
32 authorization.
|
c@75
|
33 */
|
c@75
|
34
|
c@75
|
35 #ifndef PIPER_PLUGIN_HANDLE_MAPPER_H
|
c@75
|
36 #define PIPER_PLUGIN_HANDLE_MAPPER_H
|
c@75
|
37
|
c@75
|
38 #include "PluginOutputIdMapper.h"
|
c@75
|
39
|
c@75
|
40 #include <vamp-hostsdk/Plugin.h>
|
salimma@295
|
41 #include <cstdint>
|
c@75
|
42 #include <memory>
|
c@75
|
43
|
c@97
|
44 namespace piper_vamp {
|
c@75
|
45
|
c@75
|
46 /**
|
c@75
|
47 * Convert plugin pointers to handles within some scope defined by the
|
c@75
|
48 * individual PluginHandleMapper implementation.
|
c@75
|
49 *
|
c@75
|
50 * The special handle 0 and the NULL plugin pointer are both used to
|
c@75
|
51 * represent "not found" and will be returned in any case where an
|
c@75
|
52 * unknown handle or plugin is requested.
|
c@75
|
53 *
|
c@75
|
54 * Note that the handle type must be representable as a JSON number,
|
c@75
|
55 * hence the use of a 32-bit rather than 64-bit int.
|
c@75
|
56 *
|
c@75
|
57 * This interface also includes methods for obtaining a
|
c@75
|
58 * PluginOutputIdMapper, \see PluginOutputIdMapper.
|
c@75
|
59 */
|
c@75
|
60
|
c@75
|
61 class PluginHandleMapper
|
c@75
|
62 {
|
c@75
|
63 public:
|
cannam@265
|
64 /**
|
cannam@265
|
65 * The handle type. This is 32-bit rather than 64-bit in order to
|
cannam@265
|
66 * be representable as a JSON number without rounding, and is
|
cannam@265
|
67 * unsigned to avoid C++ undefined behaviour in places where it
|
cannam@265
|
68 * could wrap around.
|
cannam@265
|
69 */
|
cannam@265
|
70 typedef uint32_t Handle;
|
cannam@265
|
71
|
c@75
|
72 const Handle INVALID_HANDLE = 0;
|
c@75
|
73
|
c@75
|
74 virtual ~PluginHandleMapper() noexcept { }
|
c@75
|
75
|
c@75
|
76 /**
|
c@75
|
77 * Look up and return the handle for a given plugin pointer.
|
c@75
|
78 * If the given pointer is null or not known, return INVALID_HANDLE.
|
c@75
|
79 */
|
c@75
|
80 virtual Handle pluginToHandle(Vamp::Plugin *) const noexcept = 0;
|
c@75
|
81
|
c@75
|
82 /**
|
c@75
|
83 * Look up and return the plugin for a given handle.
|
c@75
|
84 * If the given handle is INVALID_HANDLE or not known, return nullptr.
|
c@75
|
85 */
|
cannam@276
|
86 virtual Vamp::Plugin *handleToPlugin(Handle) const noexcept = 0;
|
c@75
|
87
|
c@75
|
88 /**
|
c@75
|
89 * Return a shared pointer to a PluginOutputIdMapper
|
c@75
|
90 * implementation for the given plugin pointer. If the given
|
c@75
|
91 * pointer is null or not known, return the null shared_ptr.
|
c@75
|
92 */
|
c@75
|
93 virtual const std::shared_ptr<PluginOutputIdMapper> pluginToOutputIdMapper
|
c@75
|
94 (Vamp::Plugin *p) const noexcept = 0;
|
c@75
|
95
|
c@75
|
96 /**
|
c@75
|
97 * Return a shared pointer to a PluginOutputIdMapper
|
c@75
|
98 * implementation for the given plugin handle. If the given
|
c@75
|
99 * handle is INVALID_HANDLE or not known, return the null shared_ptr.
|
c@75
|
100 */
|
c@75
|
101 virtual const std::shared_ptr<PluginOutputIdMapper> handleToOutputIdMapper
|
c@75
|
102 (Handle h) const noexcept = 0;
|
c@75
|
103 };
|
c@75
|
104
|
c@75
|
105 }
|
c@75
|
106
|
c@75
|
107 #endif
|
c@75
|
108
|