Parent: [a9dfd8] (diff)

Child: [461e79] (diff)

Download this file

device.hxx    228 lines (198 with data), 7.8 kB

  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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/* Copyright (C) 2006-2016 J.F.Dockes
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef _DEVICE_H_X_INCLUDED_
#define _DEVICE_H_X_INCLUDED_
#include "libupnpp/config.h"
#include <pthread.h>
#include <upnp/upnp.h>
#include <functional>
#include <unordered_map>
#include <memory>
#include <string>
#include <vector>
#include "libupnpp/soaphelp.hxx"
namespace UPnPP {
class LibUPnP;
}
namespace UPnPProvider {
class UpnpService;
}
namespace UPnPProvider {
typedef std::function<int (const UPnPP::SoapIncoming&, UPnPP::SoapOutgoing&)>
soapfun;
// Definition of a virtual directory entry: data and mime type
struct VDirContent {
VDirContent(const std::string& ct, const std::string& mt)
: content(ct), mimetype(mt) {}
std::string content;
std::string mimetype;
};
/**
* Interface to link libupnp operations to a device implementation.
* libupnp can only support a single root device per instance.
*/
class UpnpDevice {
public:
/** Construct device object. Do not start it (this is done by the
* eventloop() call when everything is set up).
*
* @param deviceId uuid for device: "uuid:UUIDvalue"
* @param files for a root device, list of path/content pairs to
* be added to the virtual directory.
* The description document *must* be named 'xxx/description.xml'
* The file paths should include a sub-directory component.
* The list must include the description document, but this will not
* be directly served out. Instead a version modified by libupnp
* (with URLBase possibly added/edited) will be served from '/'.
* Of course, the list and the paths in description.xml must be
* consistent, e.g. the paths for the services SCDPURL documents.
*
* The files parameter must be empty for embedded devices: all served
* files must be set with the root device, *including* embedded service
* description files. files.empty() is also how we decide if we
* are building a root or an embedded device. root should be built
* first.
*/
UpnpDevice(const std::string& deviceId,
const std::unordered_map<std::string, VDirContent>& files);
~UpnpDevice();
bool ipv4(std::string *host, unsigned short *port) const;
// We only ever keep one instance of a serviceId. Multiple calls will
// only keep the last one.
void addService(UpnpService *, const std::string& serviceId);
void forgetService(const std::string& serviceId);
/**
* Add mapping from service+action-name to handler function.
*/
void addActionMapping(const UpnpService*,
const std::string& actName, soapfun);
/**
* Main routine. To be called by main() on the root device when done
* with initialization.
*
* This loop mostly polls getEventData and generates an UPnP event if
* there is anything to broadcast. The UPnP action calls happen in
* other threads with which we synchronize, currently using a global lock.
*/
void eventloop();
/**
* To be called from a service action callback to wake up the
* event loop early if something needs to be broadcast without
* waiting for the normal delay.
*
* Will only do something if the previous event is not too recent.
*/
void loopWakeup(); // To trigger an early event
/**
* To be called to get the event loop to return
*/
void shouldExit();
/** Check status */
bool ok();
private:
class Internal;
Internal *m;
class InternalStatic;
static InternalStatic *o;
};
/**
* Upnp service implementation class. This does not do much useful beyond
* encapsulating the service actions and event callback. In most cases, the
* services will need full access to the device state anyway.
*/
class UpnpService {
public:
/**
* The main role of the constructor is to register the service action
* callbacks by calling UpnpDevice::addActionMapping()
*/
UpnpService(const std::string& stp,const std::string& sid, UpnpDevice *dev);
/**
* Constructor added to avoid changing the ABI when the noevents
* parameter was needed.
*
* @param noevents if set, the service will function normally except that
* no calls will be made to libupnp to broadcast events.
* This allows a service object to retain its possible
* internal functions without being externally visible
* (in conjunction with a description doc edit).
*/
UpnpService(const std::string& stp,const std::string& sid,
UpnpDevice *dev, bool noevents);
virtual ~UpnpService();
UpnpDevice *getDevice();
/**
* Poll to retrieve evented data changed since last call (see
* Device::eventLoop).
*
* To be implemented by the derived class if it does generate event data.
* Also called by the library when a control point subscribes, to
* retrieve eventable data.
* Return name/value pairs for changed variables in the data arrays.
*
* @param all if true, treat all state variable as changed (return
* full state)
* @param names names of returned state variable
* @param values array parallel to names, holding the values.
*/
virtual bool getEventData(bool all, std::vector<std::string>& names,
std::vector<std::string>& values);
virtual const std::string& getServiceType() const;
virtual const std::string& getServiceId() const;
/** Get value of the noevents property */
bool noevents() const;
/**
* Error number to string translation. UPnP error code values are
* duplicated and mean different things for different services, so
* this handles the common codes and calls serviceErrString which
* should be overriden by the subclasses.
*/
virtual const std::string errString(int error) const;
virtual const std::string serviceErrString(int) const {
return "Unknown error";
}
// Common (service-type-independant) error codes
enum UPnPError {
UPNP_INVALID_ACTION = 401,
UPNP_INVALID_ARGS = 402,
UPNP_INVALID_VAR = 404,
UPNP_ACTION_FAILED = 501,
/* 600-699 common action errors */
UPNP_ARG_VALUE_INVALID = 600,
UPNP_ARG_VALUE_OUT_OF_RANGE = 601,
UPNP_OPTIONAL_ACTION_NOT_IMPLEMENTED = 602,
UPNP_OUT_OF_MEMORY = 603,
UPNP_HUMAN_INTERVENTION_REQUIRED = 604,
UPNP_STRING_ARGUMENT_TOO_LONG = 605,
UPNP_ACTION_NOT_AUTHORIZED = 606,
UPNP_SIGNATURE_FAILING = 607,
UPNP_SIGNATURE_MISSING = 608,
UPNP_NOT_ENCRYPTED = 609,
UPNP_INVALID_SEQUENCE = 610,
UPNP_INVALID_CONTROL_URLS = 611,
UPNP_NO_SUCH_SESSION = 612,
};
protected:
const std::string m_serviceType;
const std::string m_serviceId;
private:
class Internal;
Internal *m;
};
} // End namespace UPnPProvider
#endif /* _DEVICE_H_X_INCLUDED_ */