Parent: [aa50e8] (diff)

Download this file

ohtime.cxx    108 lines (93 with data), 3.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
/* 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
*/
#include "libupnpp/control/ohtime.hxx"
#include <stdlib.h> // for atoi
#include <string.h> // for strcmp
#include <upnp/upnp.h> // for UPNP_E_BAD_RESPONSE, etc
#include <functional> // for _Bind, bind, _1
#include <ostream> // for endl, basic_ostream, etc
#include <string> // for string, basic_string, etc
#include "libupnpp/control/service.hxx" // for VarEventReporter, Service
#include "libupnpp/log.hxx" // for LOGERR, LOGDEB1, LOGINF
#include "libupnpp/soaphelp.hxx" // for SoapIncoming, etc
#include "libupnpp/upnpp_p.hxx" // for stringToBool
using namespace std;
using namespace std::placeholders;
using namespace UPnPP;
namespace UPnPClient {
const string OHTime::SType("urn:av-openhome-org:service:Time:1");
// Check serviceType string (while walking the descriptions. We don't
// include a version in comparisons, as we are satisfied with version1
bool OHTime::isOHTMService(const string& st)
{
const string::size_type sz(SType.size()-2);
return !SType.compare(0, sz, st, 0, sz);
}
bool OHTime::serviceTypeMatch(const std::string& tp)
{
return isOHTMService(tp);
}
void OHTime::evtCallback(
const std::unordered_map<std::string, std::string>& props)
{
VarEventReporter *reporter = getReporter();
LOGDEB1("OHTime::evtCallback: reporter: " << reporter << endl);
for (const auto& ent : props) {
if (!reporter) {
LOGDEB1("OHTime::evtCallback: " << ent.first << " -> "
<< ent.second << endl);
continue;
}
if (!ent.first.compare("TrackCount") ||
!ent.first.compare("Duration") ||
!ent.first.compare("Seconds")) {
reporter->changed(ent.first.c_str(), atoi(ent.second.c_str()));
} else {
LOGERR("OHTime event: unknown variable: name [" <<
ent.first << "] value [" << ent.second << endl);
reporter->changed(ent.first.c_str(), ent.second.c_str());
}
}
}
void OHTime::registerCallback()
{
Service::registerCallback(bind(&OHTime::evtCallback, this, _1));
}
int OHTime::time(Time& out)
{
SoapOutgoing args(getServiceType(), "Time");
SoapIncoming data;
int ret = runAction(args, data);
if (ret != UPNP_E_SUCCESS) {
return ret;
}
if (!data.get("TrackCount", &out.trackCount)) {
LOGERR("OHPlaylist::insert: missing 'TrackCount' in response" << endl);
return UPNP_E_BAD_RESPONSE;
}
if (!data.get("Duration", &out.duration)) {
LOGERR("OHPlaylist::insert: missing 'Duration' in response" << endl);
return UPNP_E_BAD_RESPONSE;
}
if (!data.get("Seconds", &out.seconds)) {
LOGERR("OHPlaylist::insert: missing 'Seconds' in response" << endl);
return UPNP_E_BAD_RESPONSE;
}
return UPNP_E_SUCCESS;
}
} // End namespace UPnPClient