Parent: [991184] (diff)

Child: [281ddf] (diff)

Download this file

ohtime.cxx    111 lines (94 with data), 3.1 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
/* 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 "ohtime.hxx"
#include "mpdcli.hxx"
#include "upmpdutils.hxx"
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)
{
const MpdStatus &mpds = m_dev->getMpdStatus();
trackcount = SoapArgs::i2s(mpds.trackcounter);
bool is_song = (mpds.state == MpdStatus::MPDS_PLAY) ||
(mpds.state == MpdStatus::MPDS_PAUSE);
if (is_song) {
duration = SoapArgs::i2s(mpds.songlenms / 1000);
seconds = SoapArgs::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& member : changed) {
names.push_back(member.first);
values.push_back(member.second);
}
return true;
}
int OHTime::ohtime(const SoapArgs& sc, SoapData& 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;
}