Parent: [434355] (diff)

Child: [9dbf56] (diff)

Download this file

ohtime.cxx    108 lines (89 with data), 3.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
/* 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 "ohtime.hxx"
#include <upnp/upnp.h> // for UPNP_E_SUCCESS
#include <functional> // for _Bind, bind, _1, _2
#include <iostream> // for endl
#include <string> // for string
#include <unordered_map> // for unordered_map, etc
#include <utility> // for pair
#include <vector> // for vector
#include "libupnpp/log.hxx" // for LOGDEB
#include "libupnpp/soaphelp.hxx" // for i2s, SoapOutgoing, SoapIncoming
#include "mpdcli.hxx" // for MpdStatus, etc
#include "upmpd.hxx" // for UpMpd
#include "upmpdutils.hxx" // for diffmaps
using namespace std;
using namespace std::placeholders;
static const string sTpProduct("urn:av-openhome-org:service:Time:1");
static const string sIdProduct("urn:av-openhome-org:serviceId:Time");
OHTime::OHTime(UpMpd *dev)
: UpnpService(sTpProduct, sIdProduct, dev), m_dev(dev)
{
dev->addActionMapping(this, "Time", bind(&OHTime::ohtime, this, _1, _2));
}
void OHTime::getdata(string& trackcount, string &duration,
string& seconds)
{
// We're relying on AVTransport to have updated the status for us
const MpdStatus& mpds = m_dev->getMpdStatusNoUpdate();
trackcount = SoapHelp::i2s(mpds.trackcounter);
bool is_song = (mpds.state == MpdStatus::MPDS_PLAY) ||
(mpds.state == MpdStatus::MPDS_PAUSE);
if (is_song) {
duration = SoapHelp::i2s(mpds.songlenms / 1000);
seconds = SoapHelp::i2s(mpds.songelapsedms / 1000);
} else {
duration = "0";
seconds = "0";
}
}
bool OHTime::makestate(unordered_map<string, string> &st)
{
st.clear();
getdata(st["TrackCount"], st["Duration"], st["Seconds"]);
return true;
}
bool OHTime::getEventData(bool all, std::vector<std::string>& names,
std::vector<std::string>& values)
{
//LOGDEB("OHTime::getEventData" << endl);
unordered_map<string, string> state;
makestate(state);
unordered_map<string, string> changed;
if (all) {
changed = state;
} else {
changed = diffmaps(m_state, state);
}
m_state = state;
for (auto it = changed.begin(); it != changed.end(); it++) {
names.push_back(it->first);
values.push_back(it->second);
}
return true;
}
int OHTime::ohtime(const SoapIncoming& sc, SoapOutgoing& data)
{
LOGDEB("OHTime::ohtime" << endl);
string trackcount, duration, seconds;
getdata(trackcount, duration, seconds);
data.addarg("TrackCount", trackcount);
data.addarg("Duration", duration);
data.addarg("Seconds", seconds);
return UPNP_E_SUCCESS;
}