summaryrefslogtreecommitdiff
path: root/mg_db.c
blob: 6f365fc14836d5304a3c116786e58ce0b088e28a (plain)
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
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
/*!
 * \file mg_db.c
 * \brief A database interface to the GiantDisc
 *
 * \version $Revision: 1.0 $
 * \date    $Date: 2004-12-07 10:10:35 +0200 (Tue, 07 Dec 2004) $
 * \author  Wolfgang Rohdewald
 * \author  Responsible author: $Author: wr $
 *
 */

#include "mg_db.h"
#include "vdr_setup.h"
#include "mg_tools.h"

/*! \brief a RAM copy of the genres table for faster access
 * and in order to avoid having to use genre as genre 1 etc.
 */
static map < string, string > genres;

//! \brief adds string n to string s, using string sep to separate them
static string addsep (string & s, string sep, string n);

//! \brief adds string n to string s, using a comma to separate them
static string comma (string & s, string n);

//! \brief adds string n to string s, using AND to separate them
static string und (string & s, string n);

/*! \brief returns a random integer within some range
 */
unsigned int
randrange (const unsigned int high)
{
    unsigned int result=0;
    result = random () % high;
    return result;
}


//! \brief adds n1=n2 to string s, using AND to separate several such items
static string
undequal (string & s, string n1, string op, string n2)
{
    if (n1.compare (n2) || op != "=")
        return addsep (s, " AND ", n1 + op + n2);
    else
        return s;
}

static string
comma (string & s, string n)
{
    return addsep (s, ",", n);
}


static string
und (string & s, string n)
{
    return addsep (s, " AND ", n);
}


static string
commalist (string prefix,list < string > v,bool sort=true)
{
    string result = "";
    if (sort) v.sort ();
    v.unique ();
    for (list < string >::iterator it = v.begin (); it != v.end (); it++)
    {
        comma (result, *it);
    }
    if (!result.empty())
	    result.insert(0," "+prefix+" ");
    return result;
}

//! \brief converts long to string
string
itos (int i)
{
    stringstream s;
    s << i;
    return s.str ();
}

//! \brief convert long to string
string
ltos (long l)
{
    stringstream s;
    s << l;
    return s.str ();
}

static string zerostring;

size_t
mgSelection::mgSelStrings::size()
{
	if (!m_sel)
		mgError("mgSelStrings: m_sel is NULL");
	m_sel->refreshValues();
	return strings.size();
}

string&
mgSelection::mgSelStrings::operator[](unsigned int idx)
{
	if (!m_sel)
		mgError("mgSelStrings: m_sel is NULL");
	m_sel->refreshValues();
	if (idx>=strings.size()) return zerostring;
	return strings[idx];
}

void
mgSelection::mgSelStrings::setOwner(mgSelection* sel)
{
	m_sel = sel;
}

mgValmap::mgValmap(const char *key) {
	m_key = key;
}

void mgValmap::Read(FILE *f) {
	char *line=(char*)malloc(1000);
	char *prefix=(char*)malloc(strlen(m_key)+2);
	strcpy(prefix,m_key);
	strcat(prefix,".");
	rewind(f);
	while (fgets(line,1000,f)) {
		if (strncmp(line,prefix,strlen(prefix))) continue;
		if (line[strlen(line)-1]=='\n')
				line[strlen(line)-1]=0;
		char *name = line + strlen(prefix);
		char *eq = strchr(name,'=');
		if (!eq) continue;
		*(eq-1)=0;
		char *value = eq + 2;
		(*this)[string(name)]=string(value);
	}
	free(prefix);
	free(line);
}

void mgValmap::Write(FILE *f) {
	for (mgValmap::const_iterator it=begin();it!=end();++it) {
		char b[1000];
		sprintf(b,"%s.%s = %s\n",
			m_key,it->first.c_str(),
			it->second.c_str());
		fputs(b,f);
	}
}

void mgValmap::put(const char* name, const string value) {
	if (value.empty() || value==EMPTY) return;
	(*this)[string(name)] = value;
}

void mgValmap::put(const char* name, const char* value) {
	if (!value || *value==0) return;
	(*this)[string(name)] = value;
}

void mgValmap::put(const char* name, const int value) {
	put(name,ltos(value));
}

void mgValmap::put(const char* name, const unsigned int value) {
	put(name,ltos(value));
}

void mgValmap::put(const char* name, const long value) {
	put(name,ltos(value));
}

void mgValmap::put(const char* name, const bool value) {
	string s;
	if (value)
		s = "true";
	else
		s = "false";
	put(name,s);
}


void
mgSelection::clearCache()
{
        m_current_values = "";
        m_current_tracks = "";
}

string
mgSelection::getCurrentValue()
{
	return values[gotoPosition()];
}

MYSQL_RES *
mgSelection::exec_sql (string query)
{
    mgDebug(3,query.c_str());
    if (!m_db) return NULL;
    if (mysql_query (m_db, (query + ';').c_str ()))
    {
        mgError("SQL Error in %s: %s",query.c_str(),mysql_error (m_db));
        return NULL;
    }
    return mysql_store_result (m_db);
}


/*! \brief executes a query and returns the first columnu of the
 * first row.
 * \param query the SQL query string to be executed
 */
string mgSelection::get_col0 (string query)
{
    MYSQL_RES * sql_result = exec_sql (query);
    if (!sql_result)
	    return "NULL";
    MYSQL_ROW row = mysql_fetch_row (sql_result);
    string result;
    if (row == NULL)
        result = "NULL";
    else if (row[0] == NULL)
        result = "NULL";
    else
        result = row[0];
    mysql_free_result (sql_result);
    return result;
}


unsigned long
mgSelection::exec_count (string query)
{
    return atol (get_col0 (query).c_str ());
}


/*! \brief extract table names. All words preceding a . are supposed to be
 * table names. Table names are supposed to only contain letters. That is
 * sufficient for GiantDisc
 * \par spar the SQL command
 * \return a list of table names
 * \todo is this thread safe?
 */
static list < string >
tables (const string spar)
{
    list < string > result;
    string s = spar;
    string::size_type dot;
    while ((dot = s.rfind ('.')) != string::npos)
    {
        s.erase (dot, string::npos);              // cut the rest
        string::size_type lword = s.size ();
        while (strchr
            ("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
            s[lword - 1]))
        {
            lword--;
            if (lword == 0)
                break;
        }
        result.push_back (s.substr (lword));
    }
    return result;
}


/*! \brief if the SQL command works on only 1 table, remove all table
 * qualifiers. Example: SELECT tracks.title FROM tracks becomes SELECT title
 * FROM tracks
 * \param spar the sql command. It will be edited in place
 * \return the new sql command is also returned
 */
static string
optimize (string & spar)
{
    string s = spar;
    string::size_type tmp = s.find (" WHERE");
    if (tmp != string::npos)
        s.erase (tmp, 9999);
    tmp = s.find (" ORDER");
    if (tmp != string::npos)
        s.erase (tmp, 9999);
    string::size_type frompos = s.find (" FROM ") + 6;
    if (s.substr (frompos).find (",") == string::npos)
    {
        string from = s.substr (frompos, 999) + '.';
        string::size_type track;
        while ((track = spar.find (from)) != string::npos)
        {
            spar.erase (track, from.size ());
        }
    }
    return spar;
}

string keyfield::sql_string(const string s) const
{
	return selection->sql_string(s);
}

keyfield::keyfield (const string choice)
{
    if (choice.empty()) 
	    mgError("keyfield::keyfield: choice is empty");
    m_choice = choice;
    m_id = EMPTY;
    m_value = "";
    m_filter = "";
}


string
mgSelection::sql_string (const string s) const
{
    char *buf = (char *) malloc (s.size () * 2 + 1);
    mysql_real_escape_string (m_db, buf, s.c_str (), s.size ());
    string result = "'" + std::string (buf) + "'";
    free (buf);
    return result;
}


string keyfield::restrict (string & result) const
{
    string id = "";
    string op;
    if (m_id == EMPTY)
        return result;
    if (m_id == "NULL")
    {
        op = " is ";
        id = "NULL";
    }
    else
    {
        op = "=";
        id = sql_string (m_id);
    }
    if (idfield () == valuefield ())
        undequal (result, idfield (), op, id);
    else
        undequal (result, basefield (), op, id);
    return result;
}


string keyfield::join () const
{
    string result;
    if (need_join ())
        return undequal (result, basefield (), "=", idfield ());
    else
        return "";
}


bool keyfield::need_join () const
{
    return lookup;
}

void
keyfield::set(const string id,const string value)
{
    if (id != EMPTY)
	if (m_id == id && m_value == value) return;
    m_id = id;
    m_value = value;
    if (selection) 
	    selection->clearCache();
}

void
keyfield::writeAt (ostream & s) const
{
    if (m_id == EMPTY)
        s << choice () << '/';
    else
        s << choice () << '=' << m_id;
}


const char *
toCString (mgSelection::ShuffleMode m)
{
    static const char *modes[] =
    {
        "SM_NONE", "SM_NORMAL", "SM_PARTY"
    };
    return modes[m];
}


string
toString (mgSelection::ShuffleMode m)
{
    return toCString (m);
}

//! \brief dump keyfield
ostream & operator<< (ostream & s, keyfield & k)
{
    k.writeAt (s);
    return s;
}


string
addsep (string & s, string sep, string n)
{
    if (!n.empty ())
    {
        if (!s.empty ())
            s.append (sep);
        s.append (n);
    }
    return s;
}


mgContentItem *
mgSelection::getTrack (unsigned int position)
{
    if (position >= getNumTracks ())
        return NULL;
    return &(m_tracks[position]);
}


void
mgSelection::loadgenres ()
{
    MYSQL_RES *rows = exec_sql ("select id,genre from genre;");
    if (rows) 
    {
    	MYSQL_ROW row;
    	while ((row = mysql_fetch_row (rows)) != NULL)
    	{
        	genres[row[0]] = row[1];
    	}
    	mysql_free_result (rows);
    }
}


string mgContentItem::getGenre1 ()
{
    return genres[m_genre1];
}


string mgContentItem::getGenre2 ()
{
    return genres[m_genre2];
}


mgSelection::ShuffleMode mgSelection::toggleShuffleMode ()
{
    m_shuffle_mode = (m_shuffle_mode == SM_PARTY) ? SM_NONE : ShuffleMode (m_shuffle_mode + 1);
    unsigned int tracksize = getNumTracks();
    switch (m_shuffle_mode)
    {
        case SM_NONE:
        {
    	    long id = m_tracks[m_tracks_position].getId ();
            m_current_tracks = "";                // force a reload
    	    for (unsigned int i = 0; i < tracksize; i++)
        	if (m_tracks[i].getId () == id)
    		{
        		m_tracks_position = i;
        		break;
    		}
        }
        break;
        case SM_PARTY:
        case SM_NORMAL:
        {
	    // play all, beginning with current track:
            mgContentItem tmp = m_tracks[m_tracks_position];
	    m_tracks[m_tracks_position]=m_tracks[0];
	    m_tracks[0]=tmp;
	    m_tracks_position=0;
	    // randomize all other tracks
            for (unsigned int i = 1; i < tracksize; i++)
            {
                unsigned int j = 1+randrange (tracksize-1);
                tmp = m_tracks[i];
                m_tracks[i] = m_tracks[j];
                m_tracks[j] = tmp;
            }
        } break;
/*
 * das kapiere ich nicht... (wolfgang)
 - Party mode (see iTunes)
 - initialization
 - find 15 titles according to the scheme below
 - playing
 - before entering next title perform track selection
 - track selection
 - generate a random uid
 - if file exists:
 - determine maximum playcount of all tracks
- generate a random number n
- if n < playcount / max. playcount
- add the file to the end of the list
*/
    }
    return m_shuffle_mode;
}


mgSelection::LoopMode mgSelection::toggleLoopMode ()
{
    m_loop_mode = (m_loop_mode == LM_FULL) ? LM_NONE : LoopMode (m_loop_mode + 1);
    return m_loop_mode;
}


unsigned int
mgSelection::AddToCollection (const string Name)
{
    if (!m_db) return 0;
    CreateCollection(Name);
    string listid = sql_string (get_col0
        ("SELECT id FROM playlist WHERE title=" + sql_string (Name)));
    string tmp =
        get_col0 ("SELECT MAX(tracknumber) FROM playlistitem WHERE playlist=" +
        listid);
    int high;
    if (tmp == "NULL")
        high = 0;
    else
        high = atol (tmp.c_str ());
    unsigned int tracksize = getNumTracks ();
    const char *sql_prefix = "INSERT INTO playlistitem VALUES ";
    string sql = "";
    for (unsigned int i = 0; i < tracksize; i++)
    {
	string value = "(" + listid + "," + ltos (high + 1 + i) + "," +
            ltos (m_tracks[i].getId ()) + ")";
	comma(sql, value);
	if ((i%100)==99)
	{
    		exec_sql (sql_prefix+sql);
		sql = "";
	}
    }
    if (!sql.empty()) exec_sql (sql_prefix+sql);
    if (inCollection(Name)) clearCache ();
    return tracksize;
}


unsigned int
mgSelection::RemoveFromCollection (const string Name)
{
    if (!m_db) return 0;
    string listid = get_col0
        ("SELECT id FROM playlist WHERE title=" + sql_string (Name));
    where();
    m_fromtables.push_back("playlistitem");
    m_fromtables.push_back("playlist");
    string sql = "DELETE playlistitem" + commalist("FROM",m_fromtables)
	    + m_where + " AND tracks.id = playlistitem.trackid "
	    " AND playlistitem.playlist = " + listid;
    exec_sql (sql);
    unsigned int removed = mysql_affected_rows (m_db);
    if (inCollection(Name)) clearCache ();
    return removed;
}


bool mgSelection::DeleteCollection (const string Name)
{
    if (!m_db) return false;
    exec_sql ("DELETE FROM playlist WHERE title=" + sql_string (Name));
    if (isCollectionlist()) clearCache ();
    return (mysql_affected_rows (m_db) == 1);
}


void mgSelection::ClearCollection (const string Name)
{
    if (!m_db) return;
    exec_sql ("DELETE playlistitem FROM playlist,playlistitem "
	      "WHERE playlistitem.playlist=playlist.id "
	      " AND playlist.title=" + sql_string (Name));
    if (inCollection(Name)) clearCache ();
}


bool mgSelection::CreateCollection(const string Name)
{
    if (!m_db) return false;
    string name = sql_string(Name);
    if (exec_count("SELECT count(title) FROM playlist WHERE title = " + name)>0) 
	return false;
    exec_sql ("INSERT playlist VALUES(" + name + ",'VDR',NULL,NULL,NULL)");
    if (isCollectionlist()) clearCache ();
    return true;
}


string mgSelection::exportM3U ()
{

// open a file for writing
    string fn = m_Directory + '/' + ListFilename () + ".m3u";
    FILE * listfile = fopen (fn.c_str (), "w");
    if (!listfile)
        return "";
    fprintf (listfile, "#EXTM3U");
    unsigned int tracksize = getNumTracks ();
    for (unsigned i = 0; i < tracksize; i++)
    {
        mgContentItem* t = &m_tracks[i];
        fprintf (listfile, "#EXTINF:%d,%s\n", t->getDuration (),
            t->getTitle ().c_str ());
        fprintf (listfile, "%s", t->getSourceFile ().c_str ());
    }
    fclose (listfile);
    return fn;
}

bool
mgSelection::empty()
{
    if (m_level>= keys.size ()-1)
	return ( getNumTracks () == 0);
    else
	return ( values.size () == 0);
}

void
mgSelection::setPosition (unsigned int position)
{
    if (m_level < keys.size ())
        m_position[m_level] = position;
    if (m_level >= keys.size ()-1)
        m_tracks_position = position;
}


void
mgSelection::setTrack (unsigned int position)
{
    m_tracks_position = position;
}


unsigned int
mgSelection::getPosition (unsigned int level) const
{
    if (level == keys.size ())
        return getTrackPosition();
    else
        return m_position[m_level];
}

unsigned int
mgSelection::gotoPosition (unsigned int level)
{
    if (level>keys.size()) 
	    mgError("mgSelection::gotoPosition: level %u > keys.size %u",
	 	level,keys.size());
    if (level == keys.size ())
        return gotoTrackPosition();
    else
    {
    	unsigned int valsize = values.size();
    	if (valsize==0)
		m_position[m_level] = 0;
    	else if (m_position[m_level] >= valsize)
        	m_position[m_level] = valsize -1;
        return m_position[m_level];
    }
}

unsigned int
mgSelection::getTrackPosition() const
{
    return m_tracks_position;
}

unsigned int
mgSelection::gotoTrackPosition()
{
    unsigned int tracksize = getNumTracks ();
    if (tracksize == 0)
	m_tracks_position = 0;
    else if (m_tracks_position >= tracksize)
        m_tracks_position = tracksize -1;
    return m_tracks_position;
}

bool mgSelection::skipTracks (int steps)
{
    unsigned int tracksize = getNumTracks();
    if (tracksize == 0)
        return false;
    if (m_loop_mode == LM_SINGLE)
        return true;
    unsigned int old_pos = getTrackPosition();
    unsigned int new_pos;
    if (old_pos + steps < 0)
    {
        if (m_loop_mode == LM_NONE)
            return false;
        new_pos = tracksize - 1;
    }
    else
	new_pos = old_pos + steps;
    if (new_pos >= tracksize)
    {
	clearCache();
        tracksize = getNumTracks();
    	if (new_pos >= tracksize)
    	{
        	if (m_loop_mode == LM_NONE)
            	return false;
        	new_pos = 0;
	}
    }
    setTrack (new_pos);
    return (new_pos == gotoTrackPosition());
}


unsigned long
mgSelection::getLength ()
{
    unsigned long result = 0;
    unsigned int tracksize = getNumTracks ();
    for (unsigned int i = 0; i < tracksize; i++)
        result += m_tracks[i].getDuration ();
    return result;
}


unsigned long
mgSelection::getCompletedLength ()
{
    unsigned long result = 0;
    tracks ();                                    // make sure they are loaded
    for (unsigned int i = 0; i < m_tracks_position; i++)
        result += m_tracks[i].getDuration ();
    return result;
}


string mgSelection::getListname ()
{
    string
        result = "";
    for (unsigned int i = 0; i < m_level; i++)
        addsep (result, ":", keys[i]->value ());
    if (result.empty ())
        result = string(tr(keys[0]->choice ().c_str()));
    return result;
}


string mgSelection::ListFilename ()
{
    string res = getListname ();
#if 0
    geht so noch gar
        nicht ... while (string::size_type p = res.find (" "))
    res.replace (p, "");
    while (string::size_type p = res.find ("/"))
        res.replace (p, '-');
    while (string::size_type p = res.find ("\\"))
        res.replace (p, '-');
#endif
    return res;
}

void
mgSelection::AddOrder(const string sql,list<string>& orderlist, const string item)
{
    string::size_type dot = item.rfind ('.');
    string itemtable = item.substr(0,dot);
    if (sql.find(itemtable) != string::npos)
	    orderlist.push_back(item);
}

const vector < mgContentItem > &
mgSelection::tracks ()
{
    list < string > orderby;
    orderby.clear();
    if (keys.empty())
	mgError("mgSelection::tracks(): keys is empty");
    if (genres.size () == 0)
        loadgenres ();
    string sql = "SELECT tracks.id, tracks.title, tracks.mp3file, "
        "tracks.artist, album.title, tracks.genre1, tracks.genre2, "
        "tracks.bitrate, tracks.year, tracks.rating, "
        "tracks.length, tracks.samplerate, tracks.channels ";
    sql += where (true);
    for (unsigned int i = m_level; i<keys.size(); i++)
    {
	AddOrder(sql,orderby,keys[i]->order ());
}
    if (m_level>= keys.size ()-1)
        if (inCollection())
		AddOrder(sql,orderby,"playlistitem.tracknumber");
        else
		AddOrder(sql,orderby,"tracks.title");
   
    
    sql += commalist("ORDER BY",orderby,false);

    optimize (sql);
    if (m_current_tracks != sql)
    {
        m_current_tracks = sql;
        m_tracks.clear ();
        MYSQL_RES *rows = exec_sql (sql);
        if (rows)
        {
        	MYSQL_ROW row;
           	while ((row = mysql_fetch_row (rows)) != NULL)
           	{
               		m_tracks.push_back (mgContentItem (row, m_ToplevelDir));
            	}
            	mysql_free_result (rows);
	}
	if (m_tracks_position>=m_tracks.size())
		if (m_tracks.size()==0)
			m_tracks_position=0;
		else
			m_tracks_position = m_tracks.size()-1;
    }
    return m_tracks;
}


mgContentItem::mgContentItem (const mgContentItem* c)
{
    m_id = c->m_id;
    m_title = c->m_title;
    m_mp3file = c->m_mp3file;
    m_artist = c->m_artist;
    m_albumtitle = c->m_albumtitle;
    m_genre1 = c->m_genre1;
    m_genre2 = c->m_genre2;
    m_bitrate = c->m_bitrate;
    m_year = c->m_year;
    m_rating = c->m_rating;
    m_duration = c->m_duration;
    m_samplerate = c->m_samplerate;
    m_channels = c->m_channels;
}

mgContentItem::mgContentItem (const MYSQL_ROW row, const string ToplevelDir)
{
    m_id = atol (row[0]);
    m_title = row[1];
    m_mp3file = ToplevelDir + row[2];
    m_artist = row[3];
    m_albumtitle = row[4];
    m_genre1 = row[5];
    m_genre2 = row[6];
    m_bitrate = row[7];
    m_year = atol (row[8]);
    if (row[9])
        m_rating = atol (row[9]);
    m_duration = atol (row[10]);
    m_samplerate = atol (row[11]);
    m_channels = atol (row[12]);
};

string mgContentItem::getAlbum ()
{
    return m_albumtitle;
}


string mgContentItem::getImageFile ()
{
    return "Name of Imagefile";
}


void
mgSelection::initkey (keyfield & f)
{
    f.setOwner(this);
    all_keys[f.choice ()] = &f;
    trall_keys[string(tr(f.choice ().c_str()))] = &f;
}

void mgSelection::InitSelection() {
	m_Directory=".";
    	m_ToplevelDir = string("/");
	InitDatabase();
    	m_level = 0;
        m_position.reserve (20);
    	m_tracks_position = 0;
    	m_trackid = -1;
    	m_shuffle_mode = SM_NONE;
    	m_loop_mode = LM_NONE;
    	clearCache();
    	initkey (kartist);
    	initkey (kgenre1);
    	initkey (kgenre2);
    	initkey (klanguage);
    	initkey (krating);
    	initkey (kyear);
    	initkey (kdecade);
    	initkey (ktitle);
    	initkey (ktrack);
    	initkey (kalbum);
    	initkey (kcollection);
    	initkey (kcollectionitem);
	keys.clear();
    	keys.push_back (&kartist);
    	keys.push_back (&kalbum);
    	keys.push_back (&ktitle);
	values.setOwner(this);
}

mgSelection::mgSelection()
{
    m_db = NULL;
    m_Host = "";
    m_User = "";
    m_Password = "";
    InitSelection ();
    m_fall_through = false;
}

mgSelection::mgSelection (const string Host, const string User, const string Password, const bool fall_through)
{
    m_db = NULL;
    m_Host = Host;
    m_User = User;
    m_Password = Password;
    InitSelection ();
    m_fall_through = fall_through;
}

mgSelection::mgSelection (const mgSelection &s)
{
    m_db = NULL;
    InitFrom(&s);
}

mgSelection::mgSelection (const mgSelection* s)
{
    m_db = NULL;
    InitFrom(s);
}

mgSelection::mgSelection (mgValmap& nv)
{
	// this is analog to the copy constructor, please keep in sync.
	
    m_db = NULL;
    InitFrom(nv);
}

void
mgSelection::InitFrom(mgValmap& nv)
{
	m_Host = nv.getstr("Host");
	m_User = nv.getstr("User");
	m_Password = nv.getstr("Password");
	InitSelection();
	m_fall_through = nv.getbool("FallThrough");
    	m_Directory = nv.getstr("Directory");
    	m_ToplevelDir = nv.getstr("ToplevelDir");
	for (unsigned int i = 0; i < 99 ; i++)
	{
		char *idx;
		asprintf(&idx,"Keys.%u.Choice",i);
		string v = nv.getstr(idx);
		free(idx);
		if (v.empty()) break;
        	setKey (i,v );
	}
	while (m_level < nv.getuint("Level"))
	{
		char *idx;
		asprintf(&idx,"Keys.%u.Position",m_level);
        	unsigned int newpos = nv.getuint(idx);
		free(idx);
        	if (!enter (newpos))
            		if (!select (newpos)) break;
	}
	m_trackid = nv.getlong("TrackId");
	// TODO do we really need Position AND TrackPosition in muggle.state?
	setPosition(nv.getlong("Position"));
	if (m_level>=keys.size()-1) 
		setTrack(nv.getlong("TrackPosition"));
	setShuffleMode(ShuffleMode(nv.getuint("ShuffleMode")));
	setLoopMode(LoopMode(nv.getuint("LoopMode")));
}


mgSelection::~mgSelection ()
{
    mysql_close (m_db);
}

void mgSelection::InitFrom(const mgSelection* s)
{
    m_Host = s->m_Host;	 
    m_User = s->m_User;	 
    m_Password = s->m_Password;	 
    InitSelection();
    m_fall_through = s->m_fall_through;
    m_Directory = s->m_Directory;
    m_ToplevelDir = s->m_ToplevelDir;
    keys.clear();
    for (unsigned int i = 0; i < s->keys.size (); i++)
    {
        keys.push_back(findKey(s->keys[i]->choice()));
	keys[i]->set(s->keys[i]->id(),s->keys[i]->value());
    }
    m_level = s->m_level;
    m_position.reserve (s->m_position.capacity());
    for (unsigned int i = 0; i < s->m_position.capacity(); i++)
    	m_position[i] = s->m_position[i];
    m_trackid = s->m_trackid;
    m_tracks_position = s->m_tracks_position;
    setShuffleMode (s->getShuffleMode ());
    setLoopMode (s->getLoopMode ());
}

const mgSelection& mgSelection::operator=(const mgSelection &s)
{
    if ((&m_Host)==&(s.m_Host)) {	// prevent s = s
	    return *this;
    }
    InitFrom(&s);
    return *this;
}


void
mgSelection::writeAt (ostream & s)
{
    for (unsigned int i = 0; i < keys.size (); i++)
    {
        if (i == level ())
            s << '*';
        s << *keys[i] << ' ';
        if (i == level ())
        {
            for (unsigned int j = 0; j < values.size (); j++)
            {
                s << values[j];
                if (values[j] != m_ids[j])
                    s << '(' << m_ids[j] << ")";
                s << ", ";
                if (j == 7)
                {
                    s << "(von " << values.size () << ") ";
                    break;
                }
            }
        }
    }
    s << endl;
}


ostream & operator<< (ostream & s, mgSelection & sl)
{
    sl.writeAt (s);
    return s;
}


unsigned int
mgSelection::size ()
{
    return keys.size ();
}


unsigned int
mgSelection::valindex (const string val,const bool second_try)
{
    for (unsigned int i = 0; i < values.size (); i++)
    {
        if (values[i] == val)
            return i;
    }
    // nochmal mit neuen Werten:
    clearCache();
    if (second_try) {
    	mgWarning("valindex: Gibt es nicht:%s",val.c_str());
    	return 0;
    }
    else
        return valindex(val,true);
}


string mgSelection::where (bool want_trackinfo)
{
    m_from = "";
    m_where = "";
    m_fromtables.clear();
    if (m_level < keys.size ())
    {
        for (unsigned int i = 0; i <= m_level; i++)
        {
            keyfield * k = keys[i];
            k->lookup = want_trackinfo || (i == m_level);
            list < string > l = tables (k->join () + ' ' + k->basefield ());
            m_fromtables.merge (l);
            und (m_where, k->join ());
            k->restrict (m_where);
        }
    }
    else
    {
        m_fromtables.push_back ("tracks");
        m_where = "tracks.id='" + ltos (m_trackid) + "'";
    }
    if (want_trackinfo)
    {
        if (m_level == keys.size () || !UsedBefore (&kalbum, m_level + 1))
        {
            kalbum.lookup = false;
            list < string > l =
                tables (kalbum.join () + ' ' + kalbum.basefield ());
            m_fromtables.merge (l);
            und (m_where, kalbum.join ());
        }
    }
    m_from = commalist ("FROM",m_fromtables);
    if (!m_where.empty ())
        m_where.insert (0, " WHERE ");
    return m_from + m_where;
}


void
mgSelection::refreshValues ()
{
    if (m_current_values.empty())
    {
        m_current_values = sql_values();
        values.strings.clear ();
        m_ids.clear ();
        MYSQL_RES *rows = exec_sql (m_current_values);
        if (rows)
        {
            	unsigned int num_fields = mysql_num_fields(rows);
		MYSQL_ROW row;
            	while ((row = mysql_fetch_row (rows)) != NULL)
            	{
                	values.strings.push_back (row[0]);
			if (num_fields==2)
                		m_ids.push_back (row[1]);
			else
                		m_ids.push_back (row[0]);
            	}
            	mysql_free_result (rows);
        }
	if (m_position[m_level]>=values.size())
		if (values.size()==0)
			m_position[m_level]=0;
		else
			m_position[m_level] = values.size()-1;
    }
}


string mgSelection::sql_values ()
{
    if (keys.empty())
	mgError("mgSelection::sql_values(): keys is empty");
    string result;
    if (m_level < keys.size ())
    {
        keyfield * last = keys[m_level];
	result = "SELECT ";
	if (m_level<keys.size()-1) result += "DISTINCT ";
        result += last->valuefield ();
	if (last->valuefield() != last->idfield())
		result += ',' + last->idfield ();
	result += where (false);
        result += " ORDER BY " + last->order ();
    }
    else
    {
        result = "SELECT title,id from tracks where id='" + ltos (m_trackid) + "'";
    }
    optimize (result);
    return result;
}


unsigned int
mgSelection::count ()
{
    return values.size ();
}


void
mgSelection::InitDatabase ()
{
    if (m_db) 
    {
       mysql_close (m_db);
       m_db = NULL;
    }
    if (m_Host == "") return;
    m_db = mysql_init (0);
    if (m_db == NULL)
        return;
    if (mysql_real_connect (m_db, m_Host.c_str (), m_User.c_str (), m_Password.c_str (),
        "GiantDisc", 0, NULL, 0) == NULL) {
	    mgWarning("Failed to connect to host '%s' as User '%s', Password '%s': Error: %s",
			    m_Host.c_str(),m_User.c_str(),m_Password.c_str(),mysql_error(m_db));
        mysql_close (m_db);
	m_db = NULL;
	return;
    }
    return;
}


string keyfield::KeyCountquery ()
{
    lookup = false;
    string from;
    from = commalist ("FROM",tables (countfield () + ' ' + countjoin ()));
    string query = "SELECT COUNT(DISTINCT " + countfield () + ") " + from;
    if (!countjoin ().empty ())
        query += " WHERE " + countjoin ();
    optimize (query);
    return query;
}

keyfield* mgSelection::findKey(const string name) 
{
	if (all_keys.find(name) != all_keys.end())
		return all_keys.find(name)->second;
	if (trall_keys.find(name) != trall_keys.end())
		return trall_keys.find(name)->second;
	return NULL;
}

void
mgSelection::setKey (const unsigned int level, const string name)
{
    keyfield *newkey = findKey(name);
    if (newkey == NULL) 
	mgError("mgSelection::setKey(%u,%s): keyname wrong",
	      level,name.c_str());
    if (level == 0 && newkey == &kcollection)
    {
        keys.clear ();
        keys.push_back (&kcollection);
        keys.push_back (&kcollectionitem);
        return;
    }
    if (level == keys.size ())
    {
        keys.push_back (newkey);
    }
    else
    {
	if (level >= keys.size())
	  mgError("mgSelection::setKey(%u,%s): level greater than keys.size() %u",
	      level,name.c_str(),keys.size());
        keys[level] = newkey;
// remove this key from following lines:
        for (unsigned int i = level + 1; i < keys.size (); i++)
            if (keys[i] == keys[level])
                keys.erase (keys.begin () + i);
    }

// remove redundant lines:
    bool album_found = false;
    bool track_found = false;
    bool title_found = false;
    for (unsigned int i = 0; i < keys.size (); i++)
    {
        album_found |= (keys[i] == &kalbum);
        track_found |= (keys[i] == &ktrack);
        title_found |= (keys[i] == &ktitle);
        if (track_found || (album_found && title_found))
        {
            keys.erase (keys.begin () + i + 1, keys.end ());
            break;
        }
    }

// clear values for this and following levels (needed for copy constructor)
    for (unsigned int i = level; i < keys.size (); i++)
        keys[i]->set (EMPTY, "");

    if (m_level > level)
        m_level = level;
    if (m_level == level) setPosition(0);
}


bool mgSelection::enter (unsigned int position)
{
    if (keys.empty())
	mgError("mgSelection::enter(%u): keys is empty", position);
    if (empty())
	return false;
    setPosition (position);
    position = gotoPosition();		// reload adjusted position
    string value = values[position];
    string id = m_ids[position];
    while (1)
    {
        mgDebug(2,"enter(level=%u,pos=%u, value=%s)",m_level,position,value.c_str());
        if (m_level >= keys.size () - 1)
            return false;
        keys[m_level++]->set (id, value);
	if (m_level >= keys.size())
	  mgError("mgSelection::enter(%u): level greater than keys.size() %u",
	      m_level,keys.size());
        if (m_position.capacity () == m_position.size ())
            m_position.reserve (m_position.capacity () + 10);
        m_position[m_level] = 0;
        if (!m_fall_through)
            break;
        if (count () > 1)
            break;
        if (count () == 1)
        {
            id = m_ids[0];
            value = values[0];
        }
    }
    return true;
}


bool mgSelection::select (unsigned int position)
{
    mgDebug(2,"select(pos=%u)",position);
    if (m_level == keys.size () - 1)
    {
        if (getNumTracks () <= position)
            return false;
        m_level++;
        m_trackid = m_tracks[position].getId ();
	clearCache();
        return true;
    }
    else
        return enter (position);
}


bool mgSelection::leave ()
{
    if (keys.empty())
	mgError("mgSelection::leave(): keys is empty");
    if (m_level == keys.size ())
    {
        m_level--;
        m_trackid = -1;
	clearCache();
        return true;
    }
    while (1)
    {
        if (m_level < 1)
            return false;
        keys[--m_level]->set (EMPTY, "");
        if (!m_fall_through)
            break;
        if (count () > 1)
            break;
    }
    return true;
}


bool mgSelection::UsedBefore (keyfield const *k, unsigned int level)
{
    if (level >= keys.size ())
        level = keys.size () - 1;
    for (unsigned int i = 0; i < level; i++)
        if (keys[i] == k)
            return true;
    return false;
}


bool mgSelection::isCollectionlist ()
{
    return (keys[0] == &kcollection && m_level == 0);
}

bool
mgSelection::inCollection(const string Name)
{
    bool result = (keys[0] == &kcollection && m_level == 1);
    if (result)
	    if (keys[1] != &kcollectionitem)
		    mgError("inCollection: key[1] is not kcollectionitem");
    if (!Name.empty())
    	result &= (keys[0]->value() == Name);
    return result;
}


const strvector &
mgSelection::keychoice (const unsigned int level)
{
    m_keychoice.clear ();
    if (level > keys.size ())
        return m_keychoice;
    map < string, keyfield * >::iterator it;
    map < string, keyfield * > possible_keys;
    for (it = all_keys.begin (); it != all_keys.end (); it++)
    {
	keyfield*f = (*it).second;
    	if (keycounts.find (f->choice ()) == keycounts.end ())
    	{
            keycounts[f->choice ()] = exec_count (f->KeyCountquery ());
    	}
    	unsigned int i = keycounts[f->choice ()];
        if ((&(*f) != &kcollection) && (&(*f) != &kcollectionitem) && (i < 2))
		;
	else
           possible_keys[string(tr(f->choice ().c_str()))] = &(*f);
    }

    for (it = possible_keys.begin (); it != possible_keys.end (); it++)
    {
        keyfield *k = (*it).second;
        if (level != 0 && k == &kcollection)
            continue;
        if (level != 1 && k == &kcollectionitem)
            continue;
        if (level == 1 && keys[0] != &kcollection && k == &kcollectionitem)
            continue;
        if (level == 1 && keys[0] == &kcollection && k != &kcollectionitem)
            continue;
        if (level > 1 && keys[0] == &kcollection)
            break;
        if (k == &kdecade && UsedBefore (&kyear, level))
            continue;
        if (!UsedBefore (k, level))
            m_keychoice.push_back (string(tr((*it).second->choice ().c_str())));
    }
    return m_keychoice;
}


void mgSelection::DumpState(mgValmap& nv)
{
	nv.put("Host",m_Host);
	nv.put("User",m_User);
	nv.put("Password",m_Password);
	nv.put("FallThrough",m_fall_through);
	nv.put("ShuffleMode",int(m_shuffle_mode));
	nv.put("LoopMode",int(m_loop_mode));
	nv.put("Directory",m_Directory);
	nv.put("ToplevelDir",m_ToplevelDir);
	nv.put("Level",int(m_level));
    	for (unsigned int i=0;i<keys.size();i++)
    	{
		char *n;
		asprintf(&n,"Keys.%d.Choice",i);
		nv.put(n,keys[i]->choice());
		asprintf(&n,"Keys.%d.Filter",i);
		nv.put(n,keys[i]->filter());
		if (i<m_level) {
			asprintf(&n,"Keys.%d.Position",i);
			nv.put(n,m_position[i]);
		}
	}
	nv.put("TrackId",m_trackid);
    	if (m_level == keys.size ())
		nv.put("Position",m_tracks_position);
	else
		nv.put("Position",m_position[m_level]);
	nv.put("TrackPosition",m_tracks_position);
}

map <string, string> *
mgSelection::UsedKeyValues()
{
	map <string, string> *result = new map<string, string>;
	for (unsigned int idx = 0 ; idx < level() ; idx++)
	{
		(*result)[keys[idx]->choice()] = keys[idx]->value();
	}
	if (level() < keys.size()-1)
	{
		string ch =  keys[level()]->choice();
		(*result)[ch] = getCurrentValue();
	}
	return result;
}