Mercurial > hg > piper-cpp
comparison bits/RequestOrResponse.h @ 31:b376ab0ce003
Begin server
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Tue, 24 May 2016 16:30:01 +0100 |
parents | |
children | 2d97883d20df |
comparison
equal
deleted
inserted
replaced
30:eb679afcd1bb | 31:b376ab0ce003 |
---|---|
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_REQUEST_OR_RESPONSE_H | |
36 #define VAMPIPE_REQUEST_OR_RESPONSE_H | |
37 | |
38 #include "PreservingPluginHandleMapper.h" | |
39 #include "RequestResponseType.h" | |
40 | |
41 #include <vamp-hostsdk/PluginStaticData.h> | |
42 #include <vamp-hostsdk/RequestResponse.h> | |
43 | |
44 #include <string> | |
45 #include <vector> | |
46 | |
47 namespace vampipe { | |
48 | |
49 class RequestOrResponse | |
50 { | |
51 public: | |
52 enum Direction { | |
53 Request, Response | |
54 }; | |
55 | |
56 RequestOrResponse() : // nothing by default | |
57 direction(Request), | |
58 type(RRType::NotValid), | |
59 success(false), | |
60 finishPlugin(0) { } | |
61 | |
62 Direction direction; | |
63 RRType type; | |
64 bool success; | |
65 std::string errorText; | |
66 | |
67 PreservingPluginHandleMapper mapper; | |
68 | |
69 std::vector<Vamp::HostExt::PluginStaticData> listResponse; | |
70 Vamp::HostExt::LoadRequest loadRequest; | |
71 Vamp::HostExt::LoadResponse loadResponse; | |
72 Vamp::HostExt::ConfigurationRequest configurationRequest; | |
73 Vamp::HostExt::ConfigurationResponse configurationResponse; | |
74 Vamp::HostExt::ProcessRequest processRequest; | |
75 Vamp::HostExt::ProcessResponse processResponse; | |
76 Vamp::Plugin *finishPlugin; | |
77 Vamp::HostExt::ProcessResponse finishResponse; | |
78 }; | |
79 | |
80 } | |
81 | |
82 #endif |