-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase_wrapper.py
More file actions
1335 lines (992 loc) · 25 KB
/
Copy pathdatabase_wrapper.py
File metadata and controls
1335 lines (992 loc) · 25 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
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
"""
A wrapper for the sqlite database
"""
import sqlite3
import MySQLdb as mdb
import sys
class DatabaseWrapper:
"""
Wrapper for the sqlite database
"""
database = "database/meuse.db"
username = "cs205user"
password = "ithaca"
database = "meuse2"
A2S_DECAY = 0.95
con = None
cur = None
def connect(self):
"""
connects to the mysql database
"""
try:
self.con = mdb.connect("localhost", self.username, self.password, self.database, use_unicode=True)
self.cur = self.con.cursor()
except _mysql.Error, e:
print "Error %d: %s" % (e.args[0], e.args[1])
def disconnect(self):
"""
disconnects from database
"""
if (self.con):
self.con.close()
def decayA2S(self):
"""
decays the a2s score by multiplying each a2s score by
0.95
"""
try:
self.connect()
self.cur.execute("update A2S a\
set a.score = a.score * %d", self.A2S_DECAY)
except mdb.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0],e.args[1])
finally:
self.disconnect()
def addStationForArtist(self, artist, station):
"""
adds a station for the given artist
parameters
----------
artist: name of the artist
station: 3 tuple
name of the station,
id of the station
listen count
"""
stationName = station[0]
stationId = station[1]
stationLC = station[2]
# add station to db
self.addStation(stationName, stationLC, stationId)
stationID = self.getStationIDWithLFMId(stationId)
artistID = self.getArtistID(artist)
if (self.checkIfA2SExists(artistID, stationID)):
self.updateA2S(artistID, stationID)
else:
# add A2S entry
self.addArtistToA2S(artistID, stationID, 0)
def getStationSetForArtist(self, artist):
"""
***TOO SLOW***
gets a dataset for clustering for a given
artist. The dataset is as follows:
parameters
----------
artist - the artist whose stations to return
returns
-------
dictionary of all the stations for the artists
passed in.
"labels" = list of stations for each set
"data" = list of artist for each station
"""
dataset = {"labels" : [], "data" : []}
artists = []
stations = self.getStationsForArtist(artist)
for station in stations:
artists = []
#get data from dataset and convert into a long string
artistsForStation = self.getArtistsForStation(station)
for artist in artistsForStation:
artists.append(artist)
dataset["data"].append(artists)
dataset["labels"].append(station)
return dataset
def getTagsForStation(self, lastfmID):
"""
gets the top tags for a station
parameters
----------
lastfmid: lastfm id of the station
"""
data = []
output = []
try:
self.connect()
self.cur.execute("SELECT tags.name\
FROM tags\
INNER JOIN a2t ON tags.id = a2t.tagid\
INNER JOIN a2s ON a2t.artistid = a2s.artistid\
INNER JOIN station ON a2s.stationid = station.id\
WHERE station.lastfmid = %s\
and tags.isActive=True", lastfmID)
data = self.cur.fetchall()
#turn data from tuples into list of items
for item in data:
output.append(item[0])
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
return output
def getTagsForArtist(self, artist):
"""
gets the list of top tags for the artist
artist: the name of the artist
"""
data = []
output = []
try:
self.connect()
self.cur.execute("select tags.name \
from artist, tags, a2t \
where artist.name=%s and\
tags.id = a2t.tagid and\
artist.id = a2t.artistid", artist)
data = self.cur.fetchall()
#turn data from tuples into list of items
for item in data:
output.append(item[0])
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
return output
def getStationTuplesForArtist(self, artist):
"""
gets the list of stations which have
played the given artist
the stations are ordered by the score
for the givne artist
parameters
----------
artist: the name of the artist
returns
-------
a list of tuples. Each tuple contains (name, lastfmid)
"""
data = []
output = []
try:
self.connect()
self.cur.execute("select station.name, station.lastfmid \
from artist, station, a2s \
where artist.name=%s and\
station.id = a2s.stationid and\
artist.id = a2s.artistid \
order by a2s.score, station.popularity \
limit 0, 30", artist)
data = self.cur.fetchall()
#turn data from tuples into list of items
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
return data
def getStationsForArtist(self, artist):
"""
gets the list of stations which have
played the given artist
artist: the name of the artist
"""
data = []
output = []
try:
self.connect()
self.cur.execute("select station.name \
from artist, station, a2s \
where artist.name=%s and\
station.id = a2s.stationid and\
artist.id = a2s.artistid \
order by station.popularity", artist)
data = self.cur.fetchall()
#turn data from tuples into list of items
for item in data:
output.append(item[0])
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
return output
def getArtistsForStationID(self, stationID):
"""
gets the list of artists who have been
played on the given station
parameters
----------
stationID: id of the station
"""
data = []
output = []
try:
self.connect()
self.cur.execute("select artist.name, a2s.score \
from artist, station, a2s \
where station.lastfmid=%s and\
station.id = a2s.stationid and\
artist.id = a2s.artistid \
order by artist.popularity \
limit 0, 30", stationID)
data = self.cur.fetchall()
output = data
"""
#turn data from tuples into list of items
for item in data:
output.append(item[0])
"""
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
return output
def getArtistsForStation(self, station):
"""
gets the list of artists who have been
played on the given station
parameters
----------
station: name of the station
"""
data = []
output = []
try:
self.connect()
self.cur.execute("select artist.name \
from artist, station, a2s \
where station.name=%s and\
station.id = a2s.stationid and\
artist.id = a2s.artistid", station)
data = self.cur.fetchall()
#turn data from tuples into list of items
for item in data:
output.append(item[0])
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
return output
def addTags(self, artistsAndTags):
"""
adds tags to the database. updates tag table
and the a2t table
artistAndTags is a dict where
dict[artist] = list of tags
"""
artistID = 0
tagID = 0
a2tID = 0
listOfTags = []
for artist in artistsAndTags:
#check if artist exists
artistID = self.getArtistID(artist)
if (artistID == 0):
self.addArtists([artist])
artistID = self.getArtistID(artist)
listOfTags = artistsAndTags[artist]
for tag in listOfTags:
tagName = tag[0]
tagScore = tag[1]
tagID = self.getTagID(tagName)
#if tag does not exist, add to tags
if (tagID == 0):
self.addTag(tagName)
tagID = self.getTagID(tagName)
#if a2t entry does not exist, add it
if (self.checkIfA2TExists(artistID, tagID) == 0):
self.addA2T(artistID, tagID, tagScore)
else:
self.updateA2T(artistID, tagID, tagScore)
def checkIfStationExists(self, lastfmid):
"""
checks if a station exists in the database
parameters
----------
lastfmid: the last fm id of the station
"""
output = None
try:
self.connect()
self.cur.execute("select id from station \
where lastfmid = %s",
lastfmid)
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
con = sqlite3.connect(self.database)
data = []
output = 0
def checkIfArtistExists(self, artist):
"""
checks if the given artist exists
parameters
----------
artist: name of the artist
return
------
0 if there are no artists with the name
"""
output = None
try:
self.connect()
self.cur.execute("select id from artist \
where name = %s",
artist)
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
def checkIfA2AExists(self, artistID, simartistID):
"""
checks if an a2A entry exists
parameters
----------
artistID - id of the artist
simartistID - id of the similar artist
returns
-------
0 if the a2a entry does not exist, or the score
if it does
"""
output = None
try:
self.connect()
self.cur.execute("select id from a2a \
where artist1ID = %s and artist2ID = %s",
(artistID, simartistID))
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
def checkIfA2SExists(self, artistID, stationID):
"""
checks if an a2t entry exists
parameters
----------
artistID: id of the artist
stationID: id of the station
"""
output = None
try:
self.connect()
self.cur.execute("select id from a2s \
where artistID = %s and stationID = %s",
(artistID, stationID))
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
def checkIfA2TExists(self, artistID, tagID):
"""
checks if an a2t entry exists
parameters
----------
artistID: id of the artist
tagID: id of the tag
"""
output = None
try:
self.connect()
self.cur.execute("select id from a2t \
where artistID = %s and tagID = %s",
(artistID, tagID))
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
def addTag(self, tagName):
"""
inserts a tag into the database
parameters
----------
tagname: name of the tag
"""
try:
self.connect()
self.cur.execute("insert into tags(id, name, isactive) \
values (DEFAULT, %s, FALSE)",tagName)
except (mdb.Error, UnicodeEncodeError) , e:
print "Error!"
finally:
self.disconnect()
con = sqlite3.connect(self.database)
def getTagID(self, tagName):
"""
returns the ID for a tag, or 0 if it does not
exist
parameters
----------
tagName: name of the tag
"""
output = None
try:
self.connect()
self.cur.execute("select id from tags where name = %s",
tagName)
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %s: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
def getArtistToStationScore(self, artist, station):
"""
gets the score of an artist in the A2S table
parameters
----------
artistID: id of artist
stationID: id of station
"""
output = None
try:
self.connect()
self.cur.execute("select score from a2s \
where artistID = %s and stationID = %s",
(artist, station))
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %s: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
def addArtistsToStation(self, artistsAndStations):
"""
populates station and artistToStation database. score
for each artist starts at 0 and is incremented
parameters
----------
artistToStation: a dictionary where artist is mapped
to a list of (station, listencount)
"""
for artist in artistsAndStations:
stations = artistsAndStations[artist]
for stationTuple in stations:
station = stationTuple[0]
popularity = stationTuple[1]
lastfmid = stationTuple[2]
#check if station exists
if (self.checkIfStationExists(lastfmid)==0):
#put station in to the list
self.addStation(station, popularity, lastfmid)
#otherwise, update the station popularity
else:
self.updateStationPopularity(station, popularity)
#get station id
stationID = self.getStationID(station)
#get artist id
artistID = self.getArtistID(artist)
#get current station score
score = self.getArtistToStationScore(artistID, stationID)
if score == 0:
#create new row
self.addArtistToA2S(artistID, stationID, 1)
else:
#update row
self.updateArtistToA2S(artistID, stationID, score + 1)
def getStationIDWithLFMId(self, stationID):
"""
gets the id for the station passed in using the last fm id of station
parameters
----------
stationID: lastfm id of the station
"""
output = None
try:
self.connect()
self.cur.execute("select id from station where lastfmid = %s",
stationID)
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
def getStationID(self, station):
"""
gets the id for the station passed in
parameters
----------
station: name of the station
"""
output = None
try:
self.connect()
self.cur.execute("select id from station where name = %s",
station)
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
def getArtistID(self, artist):
"""
gets the id for the artist passed in
station: name of the artist
"""
output = None
try:
self.connect()
self.cur.execute("select id from artist where name = %s",
artist)
data = self.cur.fetchone()
#turn data from tuples into list of items
output = data[0]
except _mysql.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0], e.args[1])
finally:
self.disconnect()
if output == None:
return 0
return output
def updateTagPopularity(self, tagID, newPopularity):
"""
updates the popularity of a tag as follows
popularity = (currentPop + oldPop) / 2
parameters
----------
tag: name of the tag
newPopularity: popularity of the tag
"""
try:
self.connect()
self.cur.execute("update tags \
set popularity = ((tags.popularity + %s)/2) \
where id = %s",(newPopularity, tagID))
except mdb.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0],e.args[1])
finally:
self.disconnect()
def updateStationPopularity(self, station, newPopularity):
"""
updates the popularity of a station as follows
popularity = (currentPop + oldPop) / 2
parameters
----------
station: name of the station
newPopularity: popularity of the station
"""
try:
self.connect()
self.cur.execute("update station \
set popularity = ((station.popularity + %s)/2) \
where name = %s",
(newPopularity, station))
except mdb.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0],e.args[1])
finally:
self.disconnect()
def activateTag(self, tagID):
"""
activates the tag whose id is passed
in
"""
try:
self.connect()
self.cur.execute("update tags\
set isActive = True\
where id = %s", tagID)
except mdb.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0],e.args[1])
finally:
self.disconnect()
def updateA2S(self, artistID, stationID):
"""
Updates the score of a a2s score as follows
popularity = score = score + 1
parameters
----------
artistID: id of the artist
stationID: id of the station
score: score for the a2s
"""
try:
self.connect()
self.cur.execute("update A2s \
set score = (a2s.score + 1) \
where artistID = %s and stationID =%s",
(artistID, stationID))
except mdb.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0],e.args[1])
finally:
self.disconnect()
def updateA2T(self, artistID, tagID, score):
"""
Updates the score of a tag as follows
popularity = (currentPop + oldPop) / 2
parameters
----------
artistID: id of the artist
tagID: id of the tag
score: score for the tag
"""
try:
self.connect()
self.cur.execute("update A2T \
set score = ((a2t.score + %s) / 2) \
where artistID = %s and tagID =%s",
(score, artistID, tagID))
except mdb.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0],e.args[1])
finally:
self.disconnect()
def updateArtistPopularity(self, artist, newPopularity):
"""
updates the popularity of an artist as follows
popularity = (currentPop + oldPop) / 2
parameters
----------
artist: name of the artist
newPopularity: popularity of the station
"""
try:
self.connect()
self.cur.execute("update artist \
set popularity = ((artist.popularity + %s) / 2) \
where name = %s",
(newPopularity, artist))
except mdb.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0],e.args[1])
finally:
self.disconnect()
def updateA2A(self, artist1ID, artist2ID, score):
"""
updates a row of the artistToStation table with a new
score.
parameters
----------
artist1ID: id of the artist
artist2ID: id of the similar artist
score: new score for the relationship
"""
try:
self.connect()
self.cur.execute("update a2a \
set score = %s \
where artist1ID = %s and artist2ID = %s",
(score, artist1ID, artist2ID))
except mdb.Error, e:
print "Error!"
print "Error %d: %s" % (e.args[0],e.args[1])
finally:
self.disconnect()
def updateArtistToA2S(self, artistID, stationID, score):
"""
updates a row of the artistToStation table with a new
score.
parameters
----------
artistID: id of the artist
stationID: id of the
score: score for the relationship
"""
try:
self.connect()
self.cur.execute("update a2s \
set score = %s \
where artistID = %s and stationID = %s",