Parent: [f295b9] (diff)

Child: [0285c5] (diff)

Download this file

upmpd.hxx    73 lines (61 with data), 2.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
/* 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 _UPMPD_H_X_INCLUDED_
#define _UPMPD_H_X_INCLUDED_
using namespace UPnPProvider;
class MPDCli;
class MpdStatus;
// The UPnP MPD frontend device with its 3 services
class UpMpd : public UpnpDevice {
public:
friend class UpMpdRenderCtl;
friend class UpMpdAVTransport;
friend class OHInfo;
friend class OHPlaylist;
enum Options {
upmpdNone,
// If set, the MPD queue belongs to us, we shall clear
// it as we like.
upmpdOwnQueue,
// Export OpenHome services
upmpdDoOH,
// Save queue metadata to disk for persistence across restarts
// (mpd does it)
upmpdOhMetaPersist
};
UpMpd(const string& deviceid, const string& friendlyname,
const unordered_map<string, string>& xmlfiles,
MPDCli *mpdcli, unsigned int opts, const std::string& cachefn);
~UpMpd();
const MpdStatus &getMpdStatus();
const MpdStatus &getMpdStatusNoUpdate()
{
return *m_mpds;
}
const string& getMetaCacheFn()
{
return m_mcachefn;
}
private:
MPDCli *m_mpdcli;
const MpdStatus *m_mpds;
unsigned int m_options;
string m_mcachefn;
vector<UpnpService*> m_services;
};
extern string upmpdProtocolInfo;
#endif /* _UPMPD_H_X_INCLUDED_ */