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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
|
/*! \file mg_content_interface.h
* \brief data Objects for content (e.g. mp3 files, movies) for the vdr muggle plugin
*
* \version $Revision: 1.4 $
* \date $Date$
* \author Ralf Klueber, Lars von Wedel, Andreas Kellner
* \author file owner: $Author$
*
* Declares generic classes of for content items and interfaces to SQL databases
*
* This file defines the following classes
* - mgMediaMplayer
* - mgContentItem
* - mgTracklist
* - mgSelectionTreeNode
*/
/* makes sure we dont parse the same declarations twice */
#ifndef _CONTENT_INTERFACE_H
#define _CONTENT_INTERFACE_H
#include <string>
#include <vector>
#include <mysql/mysql.h>
#define ILLEGAL_ID -1
class mgFilter;
class mgPlaylist;
/*!
* \class mgMediaPlayer
* \brief dummy player class
*/
class mgMediaPlayer
{
public:
mgMediaPlayer()
{ }
~mgMediaPlayer()
{ }
};
/*!
* \brief Generic class that represents a single content item.
*
* This is the parent class from which classes like mgGdTrack are derived
*
*/
class mgContentItem
{
public:
typedef enum contentType
{
ABSTRACT =0,
GD_AUDIO,
EPG
};
protected:
int m_uniqID; // internal identifier to uniquely identify a content item;
public:
/*! \brief default constructor
*/
mgContentItem()
: m_uniqID( -1 )
{ }
/*! \brief constructor with explicit id
*/
mgContentItem( int id )
: m_uniqID( id )
{ }
/*! \brief copy constructor
*/
mgContentItem( const mgContentItem& org )
: m_uniqID( org.m_uniqID )
{ }
/*! \brief destructor
*/
virtual ~mgContentItem()
{ };
/*! \brief acess unique id
*/
int getId()
{
return m_uniqID;
}
/*! \brief determine what type of content are we looking at (e.g. audio, video, epg)
*/
virtual contentType getContentType()
{
return ABSTRACT;
}
/*! \brief return a (global?) object that is used to play content items
* \todo What for? Interesting properties? Last state, play info, ...?
*/
virtual mgMediaPlayer getPlayer()
{
return mgMediaPlayer();
}
//@{
/*! \brief return a specific label
*/
virtual std::string getLabel(int col = 0)
{
return "";
}
/*! \brief return the title
*/
virtual std::string getTitle()
{
return "";
}
/*! \brief get the "file" (or URL) that is passed to the player
*/
virtual std::string getSourceFile()
{
return "";
}
/*! \brief return a short textual description
*/
virtual std::string getDescription()
{
return "";
}
/*! \brief obtain the genre to which the track belongs
*/
virtual std::string getGenre()
{
return "";
}
/*! \brief obtain the rating of the title
*/
virtual int getRating()
{
return 0;
}
/*! \brief obtain the samplerate of the track
*/
virtual int getSampleRate()
{
return 0;
}
/*! \brief obtain the length of the track (in seconds)
*/
virtual int getLength()
{
return 0;
}
/*! \brief obtain the number of audio channels of the track
*/
virtual int getChannels()
{
return 0;
}
/*! \brief obtain the bitrate of the track
*/
virtual std::string getBitrate()
{
return "";
}
/*! \brief obtain track information in aggregated form
*/
virtual std::vector<mgFilter*> *getTrackInfo()
{
return NULL;
}
//@}
virtual bool updateTrackInfo(std::vector<mgFilter*>*)
{
return false;
}
virtual bool operator == (mgContentItem o)
{
return m_uniqID == o.m_uniqID;
}
// check, if usable
virtual bool isValid()
{
return ( m_uniqID >= 0 );
}
static mgContentItem UNDEFINED;
};
class mgTracklist
{
protected:
std::vector<mgContentItem*> m_list;
std::vector<int> m_columns;
int sorting;
public:
mgTracklist(); // creates empty tracklist;
virtual ~mgTracklist();
std::vector<mgContentItem*> *getAll();
unsigned int getNumItems();
virtual void shuffle();
virtual void sortBy(int col, bool direction);
void setDisplayColumns(std::vector<int> cols);
unsigned int getNumColumns();
virtual std::string getLabel(unsigned int position, const std::string separator);
virtual mgContentItem* mgTracklist::getItem(unsigned int position);
virtual int remove(mgContentItem* item); // remove all occurences of item
virtual bool remove(unsigned int position); // remove item at position
};
/*!
* \brief represent a node in a tree of selections
* \ingroup muggle
*/
class mgSelectionTreeNode
{
protected:
MYSQL m_db;
bool m_expanded; // already expanded ?
std::string m_restriction; // list of active restrictions at this level
std::string m_id; // ID of the node, used for further expand
int m_level; // depth of tree (0 = root)
int m_view;
std::string m_label;
// std::vector<std::string> _labels; // Labels used for interaction with the user
// about this node
// vector<mgSelectionTreeNode> _children; // if expanded the links to the
// children are stopred here
mgSelectionTreeNode* m_parent;
std::vector <mgSelectionTreeNode*> m_children;
public:
/*==== constructors ====*/
mgSelectionTreeNode(MYSQL db, int view);
mgSelectionTreeNode(mgSelectionTreeNode* parent, std::string id, std::string label);
/*==== destructor ====*/
virtual ~mgSelectionTreeNode();
// compute children on the fly
virtual bool isLeafNode()=0;
virtual bool expand()=0;
virtual void collapse(); // removes all children (recursively)
mgSelectionTreeNode* getParent();
// access children
virtual std::vector<mgSelectionTreeNode*> &getChildren();
// access data in current node
bool isExpanded(){return m_expanded;}
int getLevel(){return m_level;} // for debugging
std::string getID();
virtual std::string getRestrictions();
std::string getLabel();
virtual std::string getLabel(int n);
#if 0
virtual std::string viewTitle(int level)=0;
virtual std::vector<std::string> viewChoices(int level, int choice);
#endif
// returns all tracks below this node
// Note: This function allocates memory for the vector and for all elements of the vector
// The calling function is in charge of releasing this memory
virtual std::vector<mgContentItem*>* getTracks()=0;
virtual mgContentItem* getSingleTrack()=0;
};
/* -------------------- begin CVS log ---------------------------------
* $Log: mg_content_interface.h,v $
* Revision 1.4 2004/05/28 15:29:18 lvw
* Merged player branch back on HEAD branch.
*
* Revision 1.3.2.4 2004/05/25 00:10:45 lvw
* Code cleanup and added use of real database source files
*
* Revision 1.3.2.3 2004/04/01 21:35:32 lvw
* Minor corrections, some debugging aid.
*
* Revision 1.3.2.2 2004/03/08 21:42:22 lvw
* Added count method. Some comments for further todos added.
*
* Revision 1.3.2.1 2004/03/08 07:14:28 lvw
* Preliminary changes to muggle player
*
* Revision 1.3 2004/02/09 19:27:52 MountainMan
* filter set implemented
*
* Revision 1.2 2004/02/02 22:48:04 MountainMan
* added CVS $Log
*
*
* --------------------- end CVS log ----------------------------------
*/
#endif /* END _CONTENT_INTERFACE_H */
|