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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
|
/*!
* \file gd_content_interface.c
* \brief Data Objects for content (e.g. mp3 files, movies) for the vdr muggle plugin
* \ingroup giantdisc
*
* \version $Revision: 1.27 $
* \date $Date$
* \author Ralf Klueber, Lars von Wedel, Andreas Kellner
* \author Responsible author: $Author$
*
* Implements main classes of for content items and interfaces to SQL databases
*
* This file implements the following classes
* - GdPlaylist a playlist
* - mgGdTrack a single track (content item). e.g. an mp3 file
* - mgSelection a set of tracks (e.g. a database subset matching certain criteria)
*/
#define DEBUG
#include "gd_content_interface.h"
#include "mg_tools.h"
#include "mg_database.h"
#include "vdr_setup.h"
#include "i18n.h"
#define GD_PLAYLIST_TYPE 0 //< listtype for giant disc db
// some dummies to keep the compiler happy
#define DUMMY_CONDITION true // we use that as dummy condition to satisfy C++ syntax
#define DUMMY
/*!
* \brief initialize a database used by Giantdisc
*
* \todo should be a static function in some Gd class
*/
int GdInitDatabase( MYSQL *db )
{
if( mysql_init(db) == NULL )
{
return -1;
}
if (the_setup.DbSocket != NULL)
{
mgDebug(1,"Using sockets for connecting to Database.");
//mgDebug(3,"Socket is: '%s'",the_setup.DbSocket);
//mgDebug(3,"DbUser is: '%s'",the_setup.DbUser);
//mgDebug(3,"DbPassword is: '%s'",the_setup.DbPass);
if( mysql_real_connect( db,
"",
the_setup.DbUser,
the_setup.DbPass,
the_setup.DbName,
0,
the_setup.DbSocket, 0 ) == NULL )
{
return -2;
} // if mysql_real_connect
} //if DbSocket
else
{
mgDebug(1,"Using TCP-host for connecting to Database.");
if( mysql_real_connect( db,
the_setup.DbHost,
the_setup.DbUser,
the_setup.DbPass,
the_setup.DbName,
the_setup.DbPort,
NULL, 0 ) == NULL )
{
return -2;
} // if mysql_real_connect
} // else (if DbSocket)
return 0;
}
std::vector<std::string> *GdGetStoredPlaylists(MYSQL db)
{
std::vector<std::string>* list = new std::vector<std::string>();
MYSQL_RES *result;
MYSQL_ROW row;
result = mgSqlReadQuery(&db, "SELECT title FROM playlist");
while( (row = mysql_fetch_row(result) ) != NULL )
{
list->push_back(row[0]);
}
return list;
}
gdFilterSets::gdFilterSets()
{
mgFilter* filter;
std::vector<mgFilter*>* set;
std::vector<std::string>* rating;
m_titles.push_back( tr("Track Search") );
// create an initial set of filters with empty values
set = new std::vector<mgFilter*>();
rating = new std::vector<std::string>();
rating->push_back("-");
rating->push_back("O");
rating->push_back("+");
rating->push_back("++");
// year-from
filter = new mgFilterInt(tr("year (from)"), 1901, 1900, 2100); set->push_back(filter);
// year-to
filter = new mgFilterInt(tr("year (to)"), 2099, 1900, 2100); set->push_back(filter);
// title
filter = new mgFilterString(tr("title"), ""); set->push_back(filter);
// artist
filter = new mgFilterString(tr("artist"), ""); set->push_back(filter);
// genre
filter = new mgFilterString(tr("genre"), ""); set->push_back(filter);
// rating. TODO: Currently buggy. LVW
// filter = new mgFilterChoice(tr("rating"), 1, rating); set->push_back(filter);
m_sets.push_back(set);
m_titles.push_back(tr("Album Search"));
set = new std::vector<mgFilter*>();
// year-from
filter = new mgFilterInt(tr("year (from)"), 1901, 1900, 2100); set->push_back(filter);
// year-to
filter = new mgFilterInt(tr("year (to)"), 2099, 1900, 2100); set->push_back(filter);
// title
filter = new mgFilterString(tr("album title"), ""); set->push_back(filter);
// artist
filter = new mgFilterString(tr("album artist"), ""); set->push_back(filter);
// genre
filter = new mgFilterString(tr("genre"), ""); set->push_back(filter);
// rating
filter = new mgFilterChoice(tr("rating"), 1, rating); set->push_back(filter);
m_sets.push_back(set);
m_titles.push_back(tr("Playlist Search"));
set = new std::vector<mgFilter*>();
// year-from
filter = new mgFilterInt(tr("year (from)"), 1901, 1900, 2100); set->push_back(filter);
// year-to
filter = new mgFilterInt(tr("year (to)"), 2099, 1900, 2100); set->push_back(filter);
// title
filter = new mgFilterString(tr("playlist title"), ""); set->push_back(filter);
// artist
filter = new mgFilterString(tr("playlist author"), ""); set->push_back(filter);
// title
filter = new mgFilterString(tr("title"), ""); set->push_back(filter);
// artist
filter = new mgFilterString(tr("artist"), ""); set->push_back(filter);
// genre
filter = new mgFilterString(tr("genre"), ""); set->push_back(filter);
// rating
filter = new mgFilterChoice(tr("rating"), 1, rating); set->push_back(filter);
m_sets.push_back(set);
m_activeSetId = 0;
m_activeSet = m_sets[m_activeSetId];
}
gdFilterSets::~gdFilterSets()
{
// everything is done in the destructor of the base class
}
std::string gdFilterSets::computeRestriction(int *viewPrt)
{
std::string sql_str = "1";
switch( m_activeSetId )
{
case 0:
{
// tracks (flatlist for mountain man ;-))
*viewPrt = 100;
} break;
case 1:
{
// album -> tracks
*viewPrt = 101;
} break;
case 2:
{
// playlist -> tracks
*viewPrt = 102;
} break;
default:
{
mgWarning( "Ignoring Filter Set %i", m_activeSetId );
} break;
}
for( std::vector<mgFilter*>::iterator iter = m_activeSet->begin();
iter != m_activeSet->end();
iter++ )
{
if( (*iter)->isSet() )
{
if( strcmp((*iter)->getName(), tr("playlist title") ) == 0 )
{
sql_str = sql_str + " AND playlist.title like '%%"
+ (*iter)->getStrVal() + "%%'";
}
else if(strcmp( (*iter)->getName(), tr("playlist author") ) == 0 )
{
sql_str = sql_str + " AND playlist.author like '%%"
+ (*iter)->getStrVal() + "%%'";
}
else if(strcmp((*iter)->getName(), tr("album title")) == 0 )
{
sql_str = sql_str + " AND album.title like '%%"
+ (*iter)->getStrVal() + "%%'";
}
else if(strcmp((*iter)->getName(), tr("album artist")) == 0 )
{
sql_str = sql_str + " AND album.artist like '%%"
+ (*iter)->getStrVal() + "%%'";
}
else if(strcmp((*iter)->getName(), tr("title")) == 0 )
{
sql_str = sql_str + " AND tracks.title like '%%"
+ (*iter)->getStrVal() + "%%'";
}
else if(strcmp((*iter)->getName(), tr("artist")) == 0 )
{
sql_str = sql_str + " AND tracks.artist like '%%"
+ (*iter)->getStrVal() + "%%'";
}
else if(strcmp((*iter)->getName(), tr("genre")) == 0 )
{
sql_str = sql_str + " AND (genre1.genre like '"
+ (*iter)->getStrVal() + "'";
sql_str = sql_str + " OR genre2.genre like '"
+ (*iter)->getStrVal() + "')";
}
else if(strcmp((*iter)->getName(), tr("year (from)")) == 0 )
{
sql_str = sql_str + " AND tracks.year >= " + (*iter)->getStrVal();
}
else if(strcmp((*iter)->getName(), tr("year (to)")) == 0 )
{
sql_str = sql_str + " AND tracks.year <= " + (*iter)->getStrVal();
}
else if(strcmp((*iter)->getName(), tr("rating")) == 0 )
{
if ((*iter)->getStrVal() == "-")
{
sql_str = sql_str + " AND tracks.rating >= 0 ";
}
else if ((*iter)->getStrVal() == "O")
{
sql_str = sql_str + " AND tracks.rating >= 1 ";
}
else if ((*iter)->getStrVal() == "+")
{
sql_str = sql_str + " AND tracks.rating >= 2 ";
}
else if ((*iter)->getStrVal() == "++")
{
sql_str = sql_str + " AND tracks.rating >= 3 ";
}
}
else
{
mgWarning( "Ignoring unknown filter %s", (*iter)->getName() );
}
}
}
mgDebug(1, "Applying sql std::string %s (view=%d)", sql_str.c_str(), *viewPrt );
return sql_str;
}
mgGdTrack mgGdTrack::UNDEFINED = mgGdTrack();
mgGdTrack::mgGdTrack( int sqlIdentifier, MYSQL dbase )
{
m_uniqID = sqlIdentifier;
m_db = dbase;
m_retrieved = false;
}
mgGdTrack::mgGdTrack(const mgGdTrack& org)
{
m_uniqID = org.m_uniqID;
m_db = org.m_db;
m_retrieved = org.m_retrieved;
if( m_retrieved )
{
m_artist = org.m_artist;
m_title = org.m_title;
m_mp3file = org.m_mp3file;
m_album = org.m_album;
m_genre = org.m_genre;
m_year = org.m_year;
m_rating = org.m_rating;
m_length = org.m_length;
}
}
mgGdTrack::~mgGdTrack()
{
// nothing to be done
}
bool mgGdTrack::readData()
{
MYSQL_RES *result;
int nrows, nfields;
// note: this does not work with empty album or genre fields
result = mgSqlReadQuery( &m_db,
"SELECT tracks.artist, album.title, tracks.title, "
"tracks.mp3file, genre.genre, tracks.year, "
"tracks.rating, tracks.length, tracks.samplerate, tracks.channels, tracks.bitrate "
"FROM tracks, album, genre "
"WHERE tracks.id = %d "
"AND album.cddbid = tracks.sourceid AND "
"genre.id = tracks.genre1",
m_uniqID );
nrows = mysql_num_rows(result);
nfields = mysql_num_fields(result);
if( nrows == 0 )
{
mgWarning( "No entries found \n" );
return false;
}
else
{
if( nrows > 1 )
{
mgWarning("mgGdTrack::readData: More than one entry found. Using first entry.");
}
MYSQL_ROW row = mysql_fetch_row( result );
m_artist = row[0];
m_album = row[1];
m_title = row[2];
m_mp3file = std::string( the_setup.ToplevelDir ) + row[3];
m_genre = row[4];
if( sscanf( row[5], "%d", &m_year) != 1 )
{
mgError("Invalid year '%s' in database", row [5]);
}
if( row[6] && sscanf( row[6], "%d", &m_rating ) != 1 )
{
mgError( "Invalid rating '%s' in database", row [6] );
}
if( row[7] && sscanf( row[7], "%d", &m_length) != 1 )
{
mgError( "Invalid duration '%s' in database", row [7]);
}
if( row[8] && sscanf( row[8], "%d", &m_samplerate ) != 1 )
{
mgError( "Invalid samplerate '%s' in database", row [7]);
}
if( row[9] && sscanf( row[9], "%d", &m_channels ) != 1 )
{
mgError( "Invalid channels '%s' in database", row [7]);
}
m_bitrate = row[10];
}
m_retrieved = true;
return true;
}
std::string mgGdTrack::getSourceFile()
{
if( !m_retrieved )
{
readData();
}
return m_mp3file;
}
std::string mgGdTrack::getTitle()
{
if( !m_retrieved )
{
readData();
}
return m_title;
}
std::string mgGdTrack::getArtist()
{
if(!m_retrieved)
{
readData();
}
return m_artist;
}
int mgGdTrack::getLength()
{
if( !m_retrieved )
{
readData();
}
return m_length;
}
std::string mgGdTrack::getLabel(int col)
{
if( !m_retrieved )
{
readData();
}
switch(col)
{
case 0:
return m_title;
case 1:
return m_artist;
case 2:
return m_album;
case 3:
return m_genre;
default:
return "";
}
}
std::vector<mgFilter*> *mgGdTrack::getTrackInfo()
{
return new std::vector<mgFilter*>();
}
bool mgGdTrack::setTrackInfo(std::vector<mgFilter*> *info)
{
return false;
}
std::string mgGdTrack::getAlbum()
{
if( !m_retrieved )
{
readData();
}
return m_album;
}
std::string mgGdTrack::getGenre()
{
if(!m_retrieved)
{
readData();
}
return m_genre;
}
int mgGdTrack::getYear()
{
if(!m_retrieved)
{
readData();
}
return m_year;
}
int mgGdTrack::getRating()
{
if(!m_retrieved)
{
readData();
}
return m_rating;
}
int mgGdTrack::getDuration()
{
if(!m_retrieved)
{
readData();
}
return m_rating;
}
int mgGdTrack::getSampleRate()
{
if(!m_retrieved)
{
readData();
}
return m_samplerate;
}
int mgGdTrack::getChannels()
{
if(!m_retrieved)
{
readData();
}
return m_channels;
}
std::string mgGdTrack::getBitrate()
{
if(!m_retrieved)
{
readData();
}
return m_bitrate;
}
std::string mgGdTrack::getImageFile()
{
return "dummyImg.jpg";
}
void mgGdTrack::setTitle(std::string new_title)
{
m_title = new_title;
}
void mgGdTrack::setArtist(std::string new_artist)
{
m_artist = new_artist;
}
void mgGdTrack::setAlbum(std::string new_album)
{
m_album = new_album;
}
void mgGdTrack::setGenre(std::string new_genre)
{
m_genre = new_genre;
}
void mgGdTrack::setYear(int new_year)
{
m_year = new_year;
}
void mgGdTrack::setRating(int new_rating)
{
m_rating = new_rating;
}
bool mgGdTrack::writeData()
{
mgSqlWriteQuery( &m_db, "UPDATE tracks "
"SET artist=\"%s\", title=\"%s\", year=%d, rating=%d "
"WHERE id=%d",
m_artist.c_str(), m_title.c_str(),
m_year, m_rating, m_uniqID);
return true;
}
GdTracklist::GdTracklist(MYSQL db_handle, std::string restrictions)
{
MYSQL_RES *result;
MYSQL_ROW row;
int trackid;
result = mgSqlReadQuery( &db_handle,
"SELECT tracks.id "
" FROM tracks, album, genre WHERE %s"
" AND album.cddbid=tracks.sourceid "
" AND genre.id=tracks.genre1",
restrictions.c_str());
while( ( row = mysql_fetch_row(result) ) != NULL )
{
// row[0] is the trackid
if(sscanf(row[0], "%d", &trackid) != 1)
{
mgError("Can not extract integer track id from '%s'",
row[0]);
}
m_list.push_back(new mgGdTrack(trackid, db_handle));
}
}
GdPlaylist::GdPlaylist(std::string listname, MYSQL db_handle)
{
MYSQL_RES *result;
MYSQL_ROW row;
int nrows;
m_db = db_handle;
//
// check, if the playlist already exists
//
result = mgSqlReadQuery(&m_db,
"SELECT id,author FROM playlist where title=\"%s\"",
listname.c_str());
nrows = mysql_num_rows(result);
if( nrows == 0 )
{
mgDebug(3, "No playlist with name %s found. Creating new playlist\n",
listname.c_str());
// create new database entry
mgSqlWriteQuery( &m_db, "INSERT into playlist "
"SET title=\"%s\", author=\"%s\"",
listname.c_str(),
"VDR", // default author
""); // creates current time as timestamp
m_author = "VDR";
m_listname = listname;
// now read thenew list to get the id
result = mgSqlReadQuery( &m_db,
"SELECT id,author FROM playlist where title=\"%s\"",
listname.c_str() );
nrows = mysql_num_rows(result);
row = mysql_fetch_row(result);
if( sscanf(row [0], "%d", & m_sqlId) !=1 )
{
mgError("Invalid id '%s' in database", row [5]);
}
}
else
{ // playlist exists, read data
row = mysql_fetch_row(result);
if( sscanf(row[0], "%d", & m_sqlId) !=1 )
{
mgError("Invalid id '%s' in database", row [5]);
}
m_author = row[1];
m_listname = listname;
// now read allentries of the playlist and
// write them into the tracklist
insertDataFromSQL();
} // end 'else (playlist exists)
m_listtype = GD_PLAYLIST_TYPE; // GiantDB list type for playlists
}
GdPlaylist::~GdPlaylist()
{
}
void GdPlaylist::setListname(std::string name)
{
m_listname = name;
m_sqlId = -1;
}
int GdPlaylist::insertDataFromSQL()
{
MYSQL_RES *result;
MYSQL_ROW row;
mgGdTrack* trackptr;
int id;
int nrows;
result = mgSqlReadQuery( &m_db,
"SELECT tracknumber, trackid FROM playlistitem "
"WHERE playlist = %d ORDER BY tracknumber",
m_sqlId);
nrows = mysql_num_rows(result);
while( (row = mysql_fetch_row(result) ) != NULL )
{
// add antry to tracklist
if( sscanf( row[1], "%d", &id ) !=1 )
{
mgWarning( "Track id '%s' is not an integer. Ignoring \n", row[1] );
}
else
{
trackptr = new mgGdTrack( id, m_db );
m_list.push_back( trackptr );
}
}
return nrows;
}
bool GdPlaylist::storePlaylist()
{
std::vector<mgContentItem*>::iterator iter;
int num;
MYSQL_RES *result;
MYSQL_ROW row;
int nrows;
if( m_listname == " " )
{
mgWarning("Can not store Tracklist without name");
return false;
}
if(m_sqlId >= 0)
{
// playlist alreay exists in SQL database
// remove old items first
// cout << " GdPlaylist::storePlaylist: removing items from " << m_sqlId << flush;
// remove old playlist items from db
mgSqlWriteQuery(&m_db,
"DELETE FROM playlistitem WHERE playlist = %d",
m_sqlId);
}
else
{
// create new database entry
mgSqlWriteQuery(&m_db, "INSERT into playlist "
"SET title=\"%s\", author=\"%s\"",
m_listname.c_str(),
"VDR", // default author
""); // creates current time as timestamp
m_author = "VDR";
// now read thenew list to get the id
result=mgSqlReadQuery(&m_db,
"SELECT id,author FROM playlist where title=\"%s\"",
m_listname.c_str());
nrows = mysql_num_rows(result);
row = mysql_fetch_row(result);
if( sscanf( row [0], "%d", & m_sqlId ) !=1 )
{
mgError("Invalid id '%s' in database", row [5]);
}
}
// add new playlist items to db
for( iter=m_list.begin(), num=0;
iter != m_list.end();
iter++, num++)
{
mgSqlWriteQuery(&m_db,
"INSERT into playlistitem "
"SET tracknumber=\"%d\", trackid=\"%d\", playlist=%d",
num, (*iter)->getId(), m_sqlId);
}
return true;
}
/*!
* \brief returns the total duration of all songs in the list in seconds
*/
int GdPlaylist::getPlayTime()
{
//DUMMY
// go over all entries in the playlist and accumulate their playtime
return 0;
}
/*!
* \brief returns the duration of all remaining songs in the list in seconds
*/
int GdPlaylist::getPlayTimeRemaining()
{
//DUMMY
// go over all remaining entries in the playlist and accumulate their
// playtime
// The remaining playtime of the current song is only known by the mplayer
return 0; // dummy
}
/*!
* \brief constructor
*/
GdTreeNode::GdTreeNode(MYSQL db, int view, std::string filters)
: mgSelectionTreeNode(db, view)
{
// create a root node
// everything is done in the parent class
m_restriction = filters;
m_view = view;
m_label = tr("Browser");
}
GdTreeNode::GdTreeNode( mgSelectionTreeNode* parent,
std::string id,
std::string label,
std::string restriction )
: mgSelectionTreeNode(parent, id, label)
{
m_restriction = restriction;
// everything else is done in the parent class
}
/*!
* \brief destructor
*/
GdTreeNode::~GdTreeNode()
{
// _children.clear();
}
/*!
* \brief checks if this node can be further expandded or not
* \true, if node ia leaf node, false if node can be expanded
*/
bool GdTreeNode::isLeafNode()
{
if( m_level == 0 )
{
return false;
}
switch(m_view)
{
case 1: // artist -> album -> title
if( m_level <= 3 )
{
return false;
}
break;
case 2: // genre -> artist -> album -> track
if( m_level <= 3 )
{
return false;
}
break;
case 3: // Artist -> Track
if( m_level <= 2 )
{
return false;
}
break;
case 4:
if( m_level <= 2 )
{
return false;
}
break;
case 5:
if( m_level <= 1 )
{
return false;
}
break;
case 100:
if( m_level <= 0 )
{
return false;
}
break;
case 101:
if( m_level <= 1 )
{
return false;
}
break;
case 102:
if( m_level <= 1 )
{
return false;
}
break;
default:
mgError("View '%d' not yet implemented", m_view);
}
return true;
}
/*!
* \brief compute children on the fly
*
* \return: true, if the node could be expanded (or was already), false,of
* node can not be expanded any further
*
* retrieves all entries for the next level that satisfy the restriction of
* the current level and create a child-arc for each distinct entry
*
* \todo use asnprintf!
*/
bool GdTreeNode::expand()
{
MYSQL_ROW row;
MYSQL_RES *result;
int nrows;
int nfields;
char sqlbuff[1024]; /* hope it's big enough ! */
char idbuf[255];
int numchild;
std::string labelfield; // human readable db field for the column to be expanded
std::string idfield; // unique id field for the column to be expanded
std::string new_restriction_field; // field to be restricted by the new level
std::string new_restriction; // complete restriction str for the current child
std::string new_label;
GdTreeNode* new_child;
std::string tables; // stores the db tables used
#define FROMJOIN " FROM tracks, genre as genre1, genre as genre2, album WHERE tracks.sourceid=album.cddbid AND genre1.id=tracks.genre1 AND genre2.id=tracks.genre2 AND %s "
if( m_expanded )
{
mgWarning("Node already expanded\n");
return true;
}
if( m_level == 1 && m_view < 100 )
{
m_view = atoi( m_id.c_str() );
}
mgDebug( 5, "Expanding level %d view %d\n", m_level, m_view );
if( m_level > 0 )
{
switch( m_view )
{
case 1:
{ // artist -> album -> title
if( m_level == 1 )
{
sprintf( sqlbuff,
"SELECT DISTINCT album.artist,album.artist"
FROMJOIN
" ORDER BY album.artist"
, m_restriction.c_str() );
idfield = "album.artist";
}
else if( m_level == 2 )
{ // artist -> album
sprintf(sqlbuff,
"SELECT DISTINCT album.title,album.cddbid"
FROMJOIN
" ORDER BY album.title"
, m_restriction.c_str() );
idfield = "album.cddbid";
}
else if(m_level == 3)
{ // album -> title
sprintf(sqlbuff,
"SELECT tracks.title,tracks.id"
FROMJOIN
" ORDER BY tracks.tracknb"
, m_restriction.c_str() );
idfield = "tracks.id";
}
else
{
mgWarning("View #%d level %d' not yet implemented", m_view, m_level);
m_expanded = false;
return false;
}
} break;
case 2:
{ // genre -> artist -> album -> track
if( m_level == 1 )
{ // genre
sprintf(sqlbuff,
"SELECT DISTINCT genre1.genre,tracks.genre1"
FROMJOIN
" ORDER BY genre1.id"
, m_restriction.c_str());
idfield = "tracks.genre1";
}
else if( m_level == 2 )
{ // genre -> artist
sprintf(sqlbuff,
"SELECT DISTINCT album.artist,album.artist"
FROMJOIN
" ORDER BY album.artist",
m_restriction.c_str());
idfield = "album.artist";
}
else if( m_level == 3 )
{ // genre -> artist -> album
sprintf(sqlbuff,
"SELECT DISTINCT album.title,tracks.sourceid"
FROMJOIN
" ORDER BY album.title"
, m_restriction.c_str());
idfield = "tracks.sourceid";
}
else if( m_level == 4 )
{ // genre -> artist -> album -> track
sprintf(sqlbuff,
"SELECT DISTINCT tracks.title, tracks.id"
FROMJOIN
" ORDER BY tracks.tracknb"
, m_restriction.c_str());
idfield = "tracks.id";
}
else
{
mgWarning("View #%d level %d' not yet implemented", m_view, m_level);
m_expanded = false;
return false;
}
} break;
case 3:
{ // Artist -> Track
if( m_level ==1 )
{
sprintf( sqlbuff,
"SELECT DISTINCT tracks.artist,tracks.artist"
FROMJOIN
" ORDER BY tracks.artist",
m_restriction.c_str());
idfield = "tracks.artist";
}
else if( m_level == 2)
{ // Track
sprintf(sqlbuff,
"SELECT DISTINCT tracks.title,tracks.id"
FROMJOIN
" ORDER BY tracks.title",
m_restriction.c_str());
idfield = "tracks.id";
}
else
{
mgWarning("View #%d level %d' not yet implemented", m_view, m_level);
m_expanded = false;
return false;
}
} break;
case 4:
{ // Genre -> Year -> Track
if( m_level == 1 )
{ // Genre
sprintf(sqlbuff,
"SELECT DISTINCT genre1.genre,tracks.genre1"
FROMJOIN
" ORDER BY genre1.genre",
m_restriction.c_str());
idfield = "tracks.genre1";
}
else if (m_level == 2)
{ // Year
sprintf(sqlbuff,
"SELECT DISTINCT tracks.year,tracks.year"
FROMJOIN
" ORDER BY tracks.year"
, m_restriction.c_str());
idfield = "tracks.year";
}
else if( m_level == 3 )
{ // Track
sprintf(sqlbuff,
"SELECT DISTINCT"
" CONCAT(tracks.artist,' - ',tracks.title) AS title"
" ,tracks.id"
FROMJOIN
" ORDER BY title",
//" ORDER BY tracks.title",
m_restriction.c_str());
idfield = "tracks.id";
}
else
{
mgWarning("View #%d level %d' not yet implemented", m_view, m_level);
m_expanded = false;
return false;
}
} break;
case 5: // Album -> Tracks
if( m_level == 1 )
{ // Album
sprintf(sqlbuff,
"SELECT DISTINCT"
" CONCAT(album.artist,' - ',album.title) AS title,"
" album.cddbid"
FROMJOIN
" ORDER BY title"
, m_restriction.c_str());
idfield = "tracks.sourceid";
}
else if (m_level == 2)
{ // Track
sprintf(sqlbuff,
"SELECT DISTINCT tracks.title, tracks.id"
FROMJOIN
" ORDER BY tracks.tracknb",
m_restriction.c_str());
idfield = "tracks.id";
}
else
{
mgWarning("View #%d level %d' not yet implemented", m_view, m_level);
m_expanded = false;
return false;
}
break;
case 100:
if (m_level == 1)
{
sprintf(sqlbuff,
"SELECT CONCAT(tracks.artist,' - ',tracks.title),"
" tracks.id"
FROMJOIN
" ORDER BY CONCAT(tracks.artist,' - ',tracks.title)"
, m_restriction.c_str());
idfield = "tracks.id";
}
else
{
mgWarning( "View #%d level %d' not yet implemented", m_view, m_level );
m_expanded = false;
return false;
}
break;
case 101:
{ // Albumsearch result
if( m_level == 1 )
{
sprintf(sqlbuff,
"SELECT DISTINCT"
" CONCAT(album.artist,' - ',album.title) as title,"
" album.cddbid"
FROMJOIN
" ORDER BY CONCAT(album.artist,' - ',album.title)",
m_restriction.c_str());
idfield = "tracks.sourceid";
}
else if( m_level == 2 )
{
sprintf(sqlbuff,
"SELECT tracks.title,tracks.id"
FROMJOIN
" ORDER BY tracks.tracknb",
m_restriction.c_str());
idfield = "tracks.id";
}
else
{
mgWarning("View #%d level %d' not yet implemented", m_view, m_level);
m_expanded = false;
return false;
}
} break;
case 102:
{
if (m_level == 1)
{
sprintf(sqlbuff,
"SELECT DISTINCT playlist.title,"
" playlist.id"
" FROM playlist,playlistitem,tracks,genre as genre1,genre as genre2"
" WHERE playlist.id=playlistitem.playlist AND"
" playlistitem.trackid=tracks.id AND"
" genre1.id=tracks.genre1 AND"
" genre2.id=tracks.genre2 AND"
" %s"
" ORDER BY playlist.title,",
m_restriction.c_str());
idfield = "playlist.id";
}
else if (m_level == 2)
{
sprintf(sqlbuff,
"SELECT CONCAT(tracks.artist,' - ',tracks.title),"
" tracks.id"
" FROM playlist,playlistitem,tracks"
" WHERE playlist.id=playlistitem.playlist AND"
" playlistitem.trackid=tracks.id AND"
" %s"
" ORDER BY playlistitem.tracknumber",
m_restriction.c_str());
idfield = "tracks.id";
}
else
{
mgWarning("View #%d level %d' not yet implemented", m_view, m_level);
m_expanded = false;
return false;
}
} break;
default:
{
mgError("View '%d' not yet implemented", m_view);
}
}
// now get all childrean of the current node fromthe database
result = mgSqlReadQuery( &m_db, sqlbuff );
nrows = mysql_num_rows( result );
nfields = mysql_num_fields(result);
numchild = 1;
while( (row = mysql_fetch_row(result) ) != NULL )
{
// row[0] is the printable label for the new child
// row[1] is the unique id for the new child
sprintf( idbuf, "%s_%03d", m_id.c_str(), numchild );
// Zweite ebene zeigt alle Tracks des Albums und nicht nur
// diese die den Filterkriterien entsprechen.
// das betrifft nur die Search Views!
std::string row0 = mgDB::escape_string( &m_db, std::string( row[0] ) );
std::string row1 = mgDB::escape_string( &m_db, std::string( row[1] ) );
if( m_view < 100 )
{
new_restriction = m_restriction + " AND "
+ idfield + "='" + row1 + "'";
}
else
{
new_restriction = idfield + "='" + row1 + "'";
}
new_child = new GdTreeNode(this, // parent
(std::string) idbuf, // id
// row[0], // label,
row0,
new_restriction);
m_children.push_back(new_child);
numchild++;
}
}
else if (m_view <100)
{
new_child = new GdTreeNode(this, // parent
"1" , // id
tr("Artist -> Album -> Track"), // label,
m_restriction);
m_children.push_back(new_child);
new_child = new GdTreeNode(this, // parent
"2" , // id
tr("Genre -> Artist -> Album -> Track") , // label,
m_restriction);
m_children.push_back(new_child);
new_child = new GdTreeNode(this, // parent
"3" , // id
tr("Artist -> Track") , // label,
m_restriction);
m_children.push_back(new_child);
new_child = new GdTreeNode(this, // parent
"4" , // id
tr("Genre -> Year -> Track") , // label,
m_restriction);
m_children.push_back(new_child);
new_child = new GdTreeNode(this, // parent
"5" , // id
tr("Album -> Track") , // label,
m_restriction);
m_children.push_back(new_child);
}
else
{
new_child = new GdTreeNode(this, // parent
"" , // id
tr("Search Result"), // label,
m_restriction);
m_children.push_back(new_child);
}
m_expanded = true;
mgDebug(5, "%d children expanded\n", m_children.size());
return true;
}
/*!
* \brief iterate all children recursively to find the tracks
*/
std::vector<mgContentItem*>* GdTreeNode::getTracks()
{
MYSQL_ROW row;
MYSQL_RES *result;
int nrows;
int nfields;
std::vector<mgContentItem*>* retlist;
int trackid;
retlist = new std::vector<mgContentItem*>();
// get all tracks satisying the restrictions of this node
mgDebug(5, "getTracks(): query '%s'", m_restriction.c_str());
result = mgSqlReadQuery(&m_db,
"SELECT tracks.id FROM tracks, album, genre WHERE %s"
" AND album.cddbid=tracks.sourceid AND genre.id=tracks.genre1",
m_restriction.c_str());
nrows = mysql_num_rows(result);
nfields = mysql_num_fields(result);
while((row = mysql_fetch_row(result)) != NULL)
{
// row[0] is the trackid
if(sscanf(row[0], "%d", &trackid) != 1)
{
mgError("Can not extract integer track id from '%s'",
row[0]);
}
retlist->push_back(new mgGdTrack(trackid, m_db));
}
return retlist;
}
/*!
*****************************************************************************
* \brief returns the first track matchin the restrictions of this node
* assuming we are in a leaf node, this returns the track represented by the
* the leaf
****************************************************************************/
mgContentItem* GdTreeNode::getSingleTrack()
{
MYSQL_ROW row;
MYSQL_RES *result;
int nrows;
int nfields;
mgContentItem* track = NULL;
int trackid;
// get all tracks satisying the restrictions of this node
mgDebug(5, "getTracks(): query '%s'", m_restriction.c_str());
result = mgSqlReadQuery(&m_db,
"SELECT tracks.id FROM tracks, album, genre WHERE %s"
" AND album.cddbid=tracks.sourceid AND genre.id=tracks.genre1",
m_restriction.c_str());
nrows = mysql_num_rows(result);
nfields = mysql_num_fields(result);
if( nrows != 1 )
{
mgWarning( "GdTreeNode::getSingleTrack() :SQL call returned %d tracks, using only the first",
nrows );
}
// get the first row
if( ( row = mysql_fetch_row(result)) != NULL )
{
// row[0] is the trackid
if(sscanf(row[0], "%d", &trackid) != 1)
{
mgError("Can not extract integer track id from '%s'",
row[0]);
}
track = new mgGdTrack(trackid, m_db);
}
return track;
}
|