-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathContext.h
executable file
·144 lines (114 loc) · 4.59 KB
/
Context.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/** @file
@brief Header
@date 2014
@author
Sensics, Inc.
<http://sensics.com/osvr>
*/
// Copyright 2014 Sensics, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef INCLUDED_Context_h_GUID_DD0155F5_61A4_4A76_8C2E_D9614C7A9EBD
#define INCLUDED_Context_h_GUID_DD0155F5_61A4_4A76_8C2E_D9614C7A9EBD
// Internal Includes
#include <osvr/ClientKit/Context_decl.h>
#include <osvr/ClientKit/ContextC.h>
#include <osvr/ClientKit/ParametersC.h>
#include <osvr/ClientKit/Interface.h>
#include <osvr/Util/StringBufferBuilder.h>
// Library/third-party includes
// - none
// Standard includes
#include <string>
#include <stdexcept>
namespace osvr {
namespace clientkit {
inline ClientContext::ClientContext(const char applicationIdentifier[],
uint32_t flags)
: m_context(osvrClientInit(applicationIdentifier, flags)) {}
inline ClientContext::ClientContext(OSVR_ClientContext context)
: m_context(context) {}
inline ClientContext::~ClientContext() { osvrClientShutdown(m_context); }
inline void ClientContext::update() {
OSVR_ReturnCode ret = osvrClientUpdate(m_context);
if (OSVR_RETURN_SUCCESS != ret) {
throw std::runtime_error("Error updating context.");
}
}
inline Interface ClientContext::getInterface(const std::string &path) {
OSVR_ClientInterface interface = NULL;
OSVR_ReturnCode ret =
osvrClientGetInterface(m_context, path.c_str(), &interface);
if (OSVR_RETURN_SUCCESS != ret) {
throw std::runtime_error(
"Couldn't create interface because the path was invalid.");
}
return Interface(*this, interface);
}
inline std::string
ClientContext::getStringParameter(const std::string &path) {
size_t length = 0;
OSVR_ReturnCode ret = osvrClientGetStringParameterLength(
m_context, path.c_str(), &length);
if (OSVR_RETURN_SUCCESS != ret) {
throw std::runtime_error(
"Invalid context or null reference to length variable.");
}
if (0 == length) {
return std::string();
}
util::StringBufferBuilder buf;
ret = osvrClientGetStringParameter(m_context, path.c_str(),
buf.getBufferOfSize(length), length);
if (OSVR_RETURN_SUCCESS != ret) {
throw std::runtime_error("Invalid context, null reference to "
"buffer, or buffer is too small.");
}
return buf.str();
}
inline void ClientContext::free(Interface &iface) {
OSVR_ReturnCode ret = osvrClientFreeInterface(m_context, iface.get());
if (OSVR_RETURN_SUCCESS != ret) {
throw std::logic_error(
"Could not free interface: either null or already freed!");
}
// Null out the interface.
iface = Interface(*this, NULL);
}
inline OSVR_ClientContext ClientContext::get() { return m_context; }
inline bool ClientContext::checkStatus() const {
return osvrClientCheckStatus(m_context) == OSVR_RETURN_SUCCESS;
}
inline std::string ClientContext::getGestureNamefromID(util::StringID id) {
size_t length = 0;
OSVR_ReturnCode ret =
osvrClientGetGestureNameLength(m_context, id.value(), &length);
if (OSVR_RETURN_SUCCESS != ret) {
throw std::runtime_error(
"Invalid context or null reference to length variable.");
}
if (0 == length) {
return std::string();
}
util::StringBufferBuilder buf;
ret = osvrClientGetGestureNameFromID(
m_context, id.value(), buf.getBufferOfSize(length), length);
if (OSVR_RETURN_SUCCESS != ret) {
throw std::runtime_error("Invalid context, null reference to "
"buffer, or buffer is too small.");
}
return buf.str();
}
} // end namespace clientkit
} // end namespace osvr
#endif // INCLUDED_Context_h_GUID_DD0155F5_61A4_4A76_8C2E_D9614C7A9EBD