Parent: [d47cfc] (diff)

Child: [fd9c1f] (diff)

Download this file

ohpladapt.h    235 lines (212 with data), 7.6 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/* 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.
*/
#ifndef _OHPLADAPT_H_INCLUDED_
#define _OHPLADAPT_H_INCLUDED_
#include <string>
#include <iostream>
using namespace std;
#include <QDebug>
#include <QApplication>
#include "HelperStructs/MetaData.h"
#include "HelperStructs/globals.h"
#include "HelperStructs/PlaylistMode.h"
#include "upqo/ohplaylist_qo.h"
#include "upadapt/upputils.h"
using namespace UPnPP;
class OHPlayer : public OHPlaylistQO {
Q_OBJECT
public:
OHPlayer(UPnPClient::OHPLH ohpl, QObject *parent = 0)
: OHPlaylistQO(ohpl, parent), m_id(-1), m_songsecs(-1),
m_ininsert(false) {
connect(this, SIGNAL(trackArrayChanged()),
this, SLOT(translateMetaData()));
connect(this, SIGNAL(tpStateChanged(int)),
this, SLOT(playerState(int)));
connect(this, SIGNAL(trackIdChanged(int)),
this, SLOT(onTrackIdChanged(int)));
connect(this, SIGNAL(shuffleChanged(bool)),
this, SLOT(onShuffleState(bool)));
connect(this, SIGNAL(repeatChanged(bool)),
this, SLOT(onRepeatState(bool)));
}
public slots:
// Seek to time in percent
void seekPC(int pc) {
if (m_songsecs == -1) {
auto poolit = m_metapool.find(m_id);
if (poolit != m_metapool.end()) {
UPnPClient::UPnPDirObject& ude = poolit->second;
std::string sval;
if (ude.getrprop(0, "duration", sval)) {
m_songsecs = UPnPP::upnpdurationtos(sval);
}
}
}
if (m_songsecs == -1) {
return;
}
int seeksecs = (m_songsecs * pc) / 100;
seekSecondAbsolute(seeksecs);
}
// Insert after idx
void insertTracks(const MetaDataList& meta, int idx) {
while (m_ininsert) {
qDebug() << "OHPlayer::insertTracks: already active";
return;
}
m_ininsert = true;
asyncArrayUpdates(false);
qDebug() << "OHPlayer::insertTracks: afteridx " << idx <<
" idsv size " << m_idsv.size();
if (idx < -1 || idx >= int(m_idsv.size())) {
qDebug() << "OHPlayer::insertTracks: BAD AFTERIDX " << idx <<
" idsv size " << m_idsv.size();
if (idx > 0) {
idx = int(m_idsv.size()-1);
} else {
m_ininsert = false;
return;
}
}
int afterid = idx == -1 ? 0 : m_idsv[idx];
int counter = 0;
for (vector<MetaData>::const_iterator it = meta.begin();
it != meta.end(); it++) {
if (counter++ > 10) {
sync();
qApp->processEvents();
counter = 0;
}
if (!insert(afterid, qs2utf8s(it->filepath),
qs2utf8s(it->didl), &afterid)) {
qDebug() << "OHPlayer::insertTracks: insert failed";
break;
}
}
qDebug() << "OHPlayer::insertTracks: sync at end";
sync();
asyncArrayUpdates(true);
m_ininsert = false;
}
void removeTracks(const QList<int>& lidx) {
//qDebug() << "OHPlayer::removeTracks";
std::vector<int> ids;
ids.reserve(lidx.size());
for (QList<int>::const_iterator it = lidx.begin();
it != lidx.end(); it++) {
if (*it >= 0 && *it < int(m_idsv.size())) {
//qDebug() << "OHPlayer::removeTracks: " << m_idsv[*it];
ids.push_back(m_idsv[*it]);
} else {
qDebug() << "OHPlayer::removeTracks: bad index" << *it;
}
}
int counter = 0;
for (std::vector<int>::const_iterator it = ids.begin();
it != ids.end(); it++) {
if (counter++ > 50) {
qApp->processEvents();
counter = 0;
}
if (!deleteId(*it)) {
qDebug() << "OHPlayer::removeTracks: retrying delete " << *it;
deleteId(*it);
}
}
}
void changeMode(Playlist_Mode mode) {
setRepeat(mode.repAll);
setShuffle(mode.shuffle);
m_mode = mode;
}
private slots:
void playerState(int ps) {
std::string s;
AudioState as = AUDIO_UNKNOWN;
switch (ps) {
case UPnPClient::OHPlaylist::TPS_Unknown:
case UPnPClient::OHPlaylist::TPS_Buffering:
default:
s = "Unknown";
break;
case UPnPClient::OHPlaylist::TPS_Paused:
as = AUDIO_PAUSED;
s = "Paused";
break;
case UPnPClient::OHPlaylist::TPS_Playing:
as = AUDIO_PLAYING;
s = "Playing";
break;
case UPnPClient::OHPlaylist::TPS_Stopped:
as = AUDIO_STOPPED;
s = "Stopped";
break;
}
if (as != AUDIO_UNKNOWN) {
emit audioStateChanged(as, s.c_str());
}
}
void onShuffleState(bool st) {
m_mode.shuffle = st;
emit playlistModeChanged(m_mode);
}
void onRepeatState(bool st) {
m_mode.repAll = st;
emit playlistModeChanged(m_mode);
}
void onTrackIdChanged(int id) {
m_id = id;
m_songsecs = -1;
}
void translateMetaData() {
//qDebug() << "OHPlayer::translateMetaData()";
MetaDataList mdv;
for (auto idit = m_idsv.begin(); idit != m_idsv.end(); idit++) {
auto poolit = m_metapool.find(*idit);
if (poolit == m_metapool.end()) {
qDebug() << "OHPlayer::translateMetaData: "
"no data found for " << *idit << "!!!";
continue;
}
UPnPClient::UPnPDirObject& ude = poolit->second;
if (ude.m_resources.empty()) {
LOGDEB("translateMetadata: no resources for:" <<
ude.dump() << endl);
//continue; does not seem to be an issue in fact. Only used
// for avt. Funny, this is the exact same problem which bubble
// had initially with ohpl tracks added through mpd (no uri)...
}
MetaData md;
udirentToMetadata(&ude, &md);
md.id = *idit;
md.pl_playing = md.id == m_curid;
mdv.push_back(md);
}
emit metadataArrayChanged(mdv);
}
signals:
void audioStateChanged(int as, const char *);
void metadataArrayChanged(const MetaDataList& mdv);
void playlistModeChanged(Playlist_Mode);
private:
int m_id; // Current playing track
int m_songsecs;
Playlist_Mode m_mode;
bool m_ininsert;
};
#endif /* _OHPLADAPT_H_INCLUDED_ */