comparison bits/ConstantPluginHandleMapper.h @ 19:f379b0e9a8e1

Add (but don't yet use) the constant plugin handle mapper
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 20 May 2016 10:25:01 +0100
parents
children
comparison
equal deleted inserted replaced
18:071c55f52c7d 19:f379b0e9a8e1
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2
3 /*
4 Vampipe
5
6 Centre for Digital Music, Queen Mary, University of London.
7 Copyright 2006-2016 Chris Cannam and QMUL.
8
9 Permission is hereby granted, free of charge, to any person
10 obtaining a copy of this software and associated documentation
11 files (the "Software"), to deal in the Software without
12 restriction, including without limitation the rights to use, copy,
13 modify, merge, publish, distribute, sublicense, and/or sell copies
14 of the Software, and to permit persons to whom the Software is
15 furnished to do so, subject to the following conditions:
16
17 The above copyright notice and this permission notice shall be
18 included in all copies or substantial portions of the Software.
19
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
24 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
25 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
28 Except as contained in this notice, the names of the Centre for
29 Digital Music; Queen Mary, University of London; and Chris Cannam
30 shall not be used in advertising or otherwise to promote the sale,
31 use or other dealings in this Software without prior written
32 authorization.
33 */
34
35 #ifndef VAMPIPE_CONSTANT_PLUGIN_HANDLE_MAPPER_H
36 #define VAMPIPE_CONSTANT_PLUGIN_HANDLE_MAPPER_H
37
38 #include "PluginHandleMapper.h"
39
40 namespace vampipe {
41
42 /**
43 * A trivial PluginHandleMapper, to be used for tests and for
44 * translating between protocols that contain handles without actually
45 * loading any plugins.
46 *
47 * This mapper only knows about one handle, and if it is asked for
48 * that one, it returns a fixed plugin pointer (which might never be
49 * dereferenced, depending on the context in which this class is
50 * used). The idea would be to create one of these on the fly each
51 * time a new handle needs to be translated.
52 */
53 class ConstantPluginHandleMapper : public PluginHandleMapper
54 {
55 public:
56 ConstantPluginHandleMapper(Vamp::Plugin *plugin, int32_t handle) :
57 m_plugin(plugin), m_handle(handle) { }
58
59 virtual int32_t pluginToHandle(Vamp::Plugin *p) {
60 if (p == m_plugin) return m_handle;
61 else throw NotFound();
62 }
63
64 virtual Vamp::Plugin *handleToPlugin(int32_t h) {
65 if (h == m_handle) return m_plugin;
66 else throw NotFound();
67 }
68
69 private:
70 Vamp::Plugin *m_plugin;
71 int32_t m_handle;
72 };
73
74 }
75
76 #endif