Parent: [77c5cf] (diff)

Child: [775da0] (diff)

Download this file

ohinfo.cxx    158 lines (134 with data), 5.4 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
/* 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 "ohinfo.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 SoapOutgoing, i2s, SoapIncoming
#include "mpdcli.hxx" // for MpdStatus, etc
#include "upmpd.hxx" // for UpMpd
#include "upmpdutils.hxx" // for didlmake, diffmaps
using namespace std;
using namespace std::placeholders;
static const string sTpProduct("urn:av-openhome-org:service:Info:1");
static const string sIdProduct("urn:av-openhome-org:serviceId:Info");
OHInfo::OHInfo(UpMpd *dev)
: OHService(sTpProduct, sIdProduct, dev)
{
dev->addActionMapping(this, "Counters",
bind(&OHInfo::counters, this, _1, _2));
dev->addActionMapping(this, "Track",
bind(&OHInfo::track, this, _1, _2));
dev->addActionMapping(this, "Details",
bind(&OHInfo::details, this, _1, _2));
dev->addActionMapping(this, "Metatext",
bind(&OHInfo::metatext, this, _1, _2));
}
void OHInfo::urimetadata(string& uri, string& metadata)
{
const MpdStatus &mpds = m_dev->getMpdStatusNoUpdate();
bool is_song = (mpds.state == MpdStatus::MPDS_PLAY) ||
(mpds.state == MpdStatus::MPDS_PAUSE);
if (is_song) {
uri = mpds.currentsong.uri;
metadata = didlmake(mpds.currentsong);
} else {
uri.clear();
metadata.clear();
}
}
void OHInfo::makedetails(string &duration, string& bitrate,
string& bitdepth, string& samplerate)
{
const MpdStatus &mpds = m_dev->getMpdStatusNoUpdate();
bool is_song = (mpds.state == MpdStatus::MPDS_PLAY) ||
(mpds.state == MpdStatus::MPDS_PAUSE);
if (is_song) {
duration = SoapHelp::i2s(mpds.songlenms / 1000);
bitrate = SoapHelp::i2s(mpds.kbrate * 1000);
bitdepth = SoapHelp::i2s(mpds.bitdepth);
samplerate = SoapHelp::i2s(mpds.sample_rate);
} else {
duration = bitrate = bitdepth = samplerate = "0";
}
}
bool OHInfo::makestate(unordered_map<string, string> &st)
{
st.clear();
st["TrackCount"] = SoapHelp::i2s(m_dev->m_mpds ?
m_dev->m_mpds->trackcounter : 0);
st["DetailsCount"] = SoapHelp::i2s(m_dev->m_mpds ?
m_dev->m_mpds->detailscounter : 0);
st["MetatextCount"] = "0";
string uri, metadata;
urimetadata(uri, metadata);
st["Uri"] = uri;
st["Metadata"] = metadata;
makedetails(st["Duration"], st["BitRate"], st["BitDepth"],st["SampleRate"]);
st["Lossless"] = "0";
st["CodecName"] = "";
st["Metatext"] = m_metatext;
return true;
}
int OHInfo::counters(const SoapIncoming& sc, SoapOutgoing& data)
{
LOGDEB("OHInfo::counters" << endl);
data.addarg("TrackCount", SoapHelp::i2s(m_dev->m_mpds ?
m_dev->m_mpds->trackcounter : 0));
data.addarg("DetailsCount", SoapHelp::i2s(m_dev->m_mpds ?
m_dev->m_mpds->detailscounter:0));
data.addarg("MetatextCount", "0");
return UPNP_E_SUCCESS;
}
int OHInfo::track(const SoapIncoming& sc, SoapOutgoing& data)
{
LOGDEB("OHInfo::track" << endl);
string uri, metadata;
urimetadata(uri, metadata);
data.addarg("Uri", uri);
data.addarg("Metadata", metadata);
return UPNP_E_SUCCESS;
}
int OHInfo::details(const SoapIncoming& sc, SoapOutgoing& data)
{
LOGDEB("OHInfo::details" << endl);
string duration, bitrate, bitdepth, samplerate;
makedetails(duration, bitrate, bitdepth, samplerate);
data.addarg("Duration", duration);
data.addarg("BitRate", bitrate);
data.addarg("BitDepth", bitdepth);
data.addarg("SampleRate", samplerate);
data.addarg("Lossless", "0");
data.addarg("CodecName", "");
return UPNP_E_SUCCESS;
}
int OHInfo::metatext(const SoapIncoming& sc, SoapOutgoing& data)
{
LOGDEB("OHInfo::metatext" << endl);
data.addarg("Value", m_state["Metatext"]);
return UPNP_E_SUCCESS;
}
void OHInfo::setMetatext(const string& metatext)
{
//LOGDEB1("OHInfo::setMetatext: " << metatext << endl);
m_metatext = metatext;
}