Parent: [991184] (diff)

Child: [50c877] (diff)

Download this file

ohvolume.cxx    185 lines (164 with data), 5.5 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
/* 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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <pwd.h>
#include <string>
#include <iostream>
#include <sstream>
#include <vector>
#include <functional>
#include <set>
using namespace std;
using namespace std::placeholders;
#include "libupnpp/upnpplib.hxx"
#include "libupnpp/soaphelp.hxx"
#include "libupnpp/device.hxx"
#include "libupnpp/log.hxx"
#include "upmpd.hxx"
#include "ohvolume.hxx"
#include "mpdcli.hxx"
#include "upmpdutils.hxx"
#include "renderctl.hxx"
static const string sTpProduct("urn:av-openhome-org:service:Volume:1");
static const string sIdProduct("urn:av-openhome-org:serviceId:Volume");
OHVolume::OHVolume(UpMpd *dev, UpMpdRenderCtl *ctl)
: UpnpService(sTpProduct, sIdProduct, dev), m_dev(dev), m_ctl(ctl)
{
dev->addActionMapping(this,"Characteristics",
bind(&OHVolume::characteristics, this, _1, _2));
dev->addActionMapping(this,"SetVolume",
bind(&OHVolume::setVolume, this, _1, _2));
dev->addActionMapping(this,"Volume",
bind(&OHVolume::volume, this, _1, _2));
dev->addActionMapping(this,"VolumeInc",
bind(&OHVolume::volumeInc, this, _1, _2));
dev->addActionMapping(this,"VolumeDec",
bind(&OHVolume::volumeDec, this, _1, _2));
dev->addActionMapping(this,"VolumeLimit",
bind(&OHVolume::volumeLimit, this, _1, _2));
dev->addActionMapping(this,"Mute",
bind(&OHVolume::mute, this, _1, _2));
dev->addActionMapping(this,"SetMute",
bind(&OHVolume::setMute, this, _1, _2));
}
bool OHVolume::makestate(unordered_map<string, string> &st)
{
st.clear();
st["VolumeMax"] = "100";
st["VolumeLimit"] = "100";
st["VolumeUnity"] = "100";
st["VolumeSteps"] = "100";
st["VolumeMilliDbPerSteps"] = "500";
st["BalanceMax"] = "0";
st["FadeMax"] = "0";
int volume = m_ctl->getvolume_i();
st["Volume"] = SoapArgs::i2s(volume);
st["Mute"] = volume == 0 ? "1" : "0";
return true;
}
bool OHVolume::getEventData(bool all, std::vector<std::string>& names,
std::vector<std::string>& values)
{
//LOGDEB("OHVolume::getEventData" << endl);
unordered_map<string, string> state, changed;
makestate(state);
if (all) {
changed = state;
} else {
changed = diffmaps(m_state, state);
}
m_state = state;
for (auto& member : changed) {
names.push_back(member.first);
values.push_back(member.second);
}
return true;
}
int OHVolume::characteristics(const SoapArgs& sc, SoapData& data)
{
LOGDEB("OHVolume::charact." << endl);
data.addarg("VolumeMax", "100");
data.addarg("VolumeUnity", "100");
data.addarg("VolumeSteps", "100");
data.addarg("VolumeMilliDbPerStep", "500");
data.addarg("BalanceMax", "0");
data.addarg("FadeMax", "0");
return UPNP_E_SUCCESS;
}
int OHVolume::setVolume(const SoapArgs& sc, SoapData& data)
{
LOGDEB("OHVolume::setVolume" << endl);
int volume;
if (!sc.getInt("Value", &volume)) {
return UPNP_E_INVALID_PARAM;
}
m_ctl->setvolume_i(volume);
m_dev->loopWakeup();
return UPNP_E_SUCCESS;
}
int OHVolume::setMute(const SoapArgs& sc, SoapData& data)
{
LOGDEB("OHVolume::setMute" << endl);
bool mute;
if (!sc.getBool("Value", &mute)) {
return UPNP_E_INVALID_PARAM;
}
m_ctl->setmute_i(mute);
return UPNP_E_SUCCESS;
}
int OHVolume::volumeInc(const SoapArgs& sc, SoapData& data)
{
LOGDEB("OHVolume::volumeInc" << endl);
int newvol = m_ctl->getvolume_i() + 1;
if (newvol > 100)
newvol = 100;
m_ctl->setvolume_i(newvol);
m_dev->loopWakeup();
return UPNP_E_SUCCESS;
}
int OHVolume::volumeDec(const SoapArgs& sc, SoapData& data)
{
LOGDEB("OHVolume::volumeDec" << endl);
int newvol = m_ctl->getvolume_i() - 1;
if (newvol < 0)
newvol = 0;
m_ctl->setvolume_i(newvol);
m_dev->loopWakeup();
return UPNP_E_SUCCESS;
}
int OHVolume::volume(const SoapArgs& sc, SoapData& data)
{
LOGDEB("OHVolume::volume" << endl);
data.addarg("Value", SoapArgs::i2s(m_ctl->getvolume_i()));
return UPNP_E_SUCCESS;
}
int OHVolume::mute(const SoapArgs& sc, SoapData& data)
{
LOGDEB("OHVolume::mute" << endl);
bool mute = m_ctl->getvolume_i() == 0;
data.addarg("Value", mute ? "1" : "0");
return UPNP_E_SUCCESS;
}
int OHVolume::volumeLimit(const SoapArgs& sc, SoapData& data)
{
LOGDEB("OHVolume::volumeLimit" << endl);
data.addarg("Value", "100");
return UPNP_E_SUCCESS;
}