Parent: [360a6a] (diff)

Child: [a42160] (diff)

Download this file

renderingcontrol.cxx    232 lines (208 with data), 8.2 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
228
229
230
231
/* Copyright (C) 2014 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "libupnpp/control/renderingcontrol.hxx"
#include <stdlib.h> // for atoi
#include <upnp/upnp.h> // for UPNP_E_BAD_RESPONSE, etc
#include <math.h>
#include <functional> // for _Bind, bind, _1
#include <ostream> // for basic_ostream, endl, etc
#include <string> // for string, operator<<, etc
#include <utility> // for pair
#include "libupnpp/control/description.hxx"
#include "libupnpp/control/avlastchg.hxx" // for decodeAVLastChange
#include "libupnpp/control/service.hxx" // for VarEventReporter, Service
#include "libupnpp/log.hxx" // for LOGERR, LOGDEB1, LOGINF
#include "libupnpp/soaphelp.hxx" // for SoapOutgoing, etc
#include "libupnpp/upnpp_p.hxx" // for stringToBool
using namespace std;
using namespace std::placeholders;
using namespace UPnPP;
namespace UPnPClient {
const string
RenderingControl::SType("urn:schemas-upnp-org:service:RenderingControl:1");
// Check serviceType string (while walking the descriptions. We don't
// include a version in comparisons, as we are satisfied with version1
bool RenderingControl::isRDCService(const string& st)
{
const string::size_type sz(SType.size()-2);
return !SType.compare(0, sz, st, 0, sz);
}
RenderingControl::RenderingControl(const UPnPDeviceDesc& device,
const UPnPServiceDesc& service)
: Service(device, service), m_volmin(0), m_volmax(100), m_volstep(1)
{
UPnPServiceDesc::Parsed sdesc;
if (service.fetchAndParseDesc(device.URLBase, sdesc)) {
auto it = sdesc.stateTable.find("Volume");
if (it != sdesc.stateTable.end() && it->second.hasValueRange) {
setVolParams(it->second.minimum, it->second.maximum,
it->second.step);
}
}
registerCallback();
}
RenderingControl::~RenderingControl()
{
unregisterCallback();
}
// Translate device volume to 0-100
int RenderingControl::devVolTo0100(int dev_vol)
{
int volume;
if (dev_vol < m_volmin)
dev_vol = m_volmin;
if (dev_vol > m_volmax)
dev_vol = m_volmax;
if (m_volmin != 0 || m_volmax != 100) {
double fact = double(m_volmax - m_volmin) / 100.0;
if (fact <= 0.0) // ??
fact = 1.0;
volume = int((dev_vol - m_volmin) / fact);
} else {
volume = dev_vol;
}
return volume;
}
void RenderingControl::evtCallback(
const std::unordered_map<std::string, std::string>& props)
{
LOGDEB1("RenderingControl::evtCallback: getReporter() " << getReporter() << endl);
for (auto it = props.begin(); it != props.end(); it++) {
if (!it->first.compare("LastChange")) {
std::unordered_map<std::string, std::string> props1;
if (!decodeAVLastChange(it->second, props1)) {
LOGERR("RenderingControl::evtCallback: bad LastChange value: "
<< it->second << endl);
return;
}
for (auto it1 = props1.begin(); it1 != props1.end(); it1++) {
LOGDEB1(" " << it1->first << " -> " <<
it1->second << endl);
if (!it1->first.compare("Volume")) {
int vol = devVolTo0100(atoi(it1->second.c_str()));
if (getReporter()) {
getReporter()->changed(it1->first.c_str(), vol);
}
} else if (!it1->first.compare("Mute")) {
bool mute;
if (getReporter() && stringToBool(it1->second, &mute))
getReporter()->changed(it1->first.c_str(), mute);
}
}
} else {
LOGINF("RenderingControl:event: var not lastchange: "
<< it->first << " -> " << it->second << endl;);
}
}
}
void RenderingControl::registerCallback()
{
Service::registerCallback(bind(&RenderingControl::evtCallback, this, _1));
}
void RenderingControl::setVolParams(int min, int max, int step)
{
LOGDEB("RenderingControl::setVolParams: min " << min << " max " << max <<
" step " << step << endl);
m_volmin = min >= 0 ? min : 0;
m_volmax = max > 0 ? max : 100;
m_volstep = step > 0 ? step : 1;
}
// Translate 0-100 scale to device scale, then set device volume
int RenderingControl::setVolume(int ivol, const string& channel)
{
// Input is always 0-100. Translate to actual range
if (ivol < 0)
ivol = 0;
if (ivol > 100)
ivol = 100;
// Volumes 0-100
int desiredVolume = ivol;
int currentVolume = getVolume("Master");
if (desiredVolume == currentVolume) {
return UPNP_E_SUCCESS;
}
bool goingUp = desiredVolume > currentVolume;
if (m_volmin != 0 || m_volmax != 100) {
double fact = double(m_volmax - m_volmin) / 100.0;
// Round up when going up, down when going down. Else the user
// will be surprised by the GUI control going back if he does
// not go a full step
desiredVolume = m_volmin +
goingUp ? int(ceil(ivol * fact)) : int(floor(ivol * fact));
}
// Insure integer number of steps (are there devices where step != 1?)
int remainder = (desiredVolume - m_volmin) % m_volstep;
if (remainder) {
if (goingUp)
desiredVolume += m_volstep - remainder;
else
desiredVolume -= remainder;
}
LOGDEB("RenderingControl::setVolume: ivol " << ivol <<
" m_volmin " << m_volmin << " m_volmax " << m_volmax <<
" m_volstep " << m_volstep << " computed desiredVolume " <<
desiredVolume << endl);
SoapOutgoing args(getServiceType(), "SetVolume");
args("InstanceID", "0")("Channel", channel)
("DesiredVolume", SoapHelp::i2s(desiredVolume));
SoapIncoming data;
return runAction(args, data);
}
int RenderingControl::getVolume(const string& channel)
{
SoapOutgoing args(getServiceType(), "GetVolume");
args("InstanceID", "0")("Channel", channel);
SoapIncoming data;
int ret = runAction(args, data);
if (ret != UPNP_E_SUCCESS) {
return ret;
}
int dev_volume;
if (!data.get("CurrentVolume", &dev_volume)) {
LOGERR("RenderingControl:getVolume: missing CurrentVolume in response"
<< endl);
return UPNP_E_BAD_RESPONSE;
}
// Output is always 0-100. Translate from device range
return devVolTo0100(dev_volume);
}
int RenderingControl::setMute(bool mute, const string& channel)
{
SoapOutgoing args(getServiceType(), "SetMute");
args("InstanceID", "0")("Channel", channel)
("DesiredMute", SoapHelp::i2s(mute?1:0));
SoapIncoming data;
return runAction(args, data);
}
bool RenderingControl::getMute(const string& channel)
{
SoapOutgoing args(getServiceType(), "GetMute");
args("InstanceID", "0")("Channel", channel);
SoapIncoming data;
int ret = runAction(args, data);
if (ret != UPNP_E_SUCCESS) {
return ret;
}
bool mute;
if (!data.get("CurrentMute", &mute)) {
LOGERR("RenderingControl:getMute: missing CurrentMute in response"
<< endl);
return UPNP_E_BAD_RESPONSE;
}
return mute;
}
} // End namespace UPnPClient