1 # This file implements a class which forms an interface to the .cddb
2 # directory that is maintained by SGI's cdman program.
8 # c = Cddb(r.gettrackinfo())
10 # Now you can use c.artist, c.title and c.track[trackno] (where trackno
11 # starts at 1). When the CD is not recognized, all values will be the empty
13 # It is also possible to set the above mentioned variables to new values.
14 # You can then use c.write() to write out the changed values to the
17 import string
, posix
, os
21 _dbid_map
= '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ@_=+abcdefghijklmnopqrstuvwxyz'
23 if v
>= len(_dbid_map
):
24 return string
.zfill(v
, 2)
29 if type(toc
) == type(''):
31 for i
in range(2, len(toc
), 4):
32 tracklist
.append((None,
37 ntracks
= len(tracklist
)
38 hash = _dbid((ntracks
>> 4) & 0xF) + _dbid(ntracks
& 0xF)
39 if ntracks
<= _DB_ID_NTRACKS
:
42 nidtracks
= _DB_ID_NTRACKS
- 1
45 for track
in tracklist
:
51 hash = hash + _dbid(min) + _dbid(sec
)
52 for i
in range(nidtracks
):
53 start
, length
= tracklist
[i
]
54 hash = hash + _dbid(length
[0]) + _dbid(length
[1])
58 def __init__(self
, tracklist
):
59 if os
.environ
.has_key('CDDB_PATH'):
60 path
= os
.environ
['CDDB_PATH']
61 cddb_path
= path
.split(',')
63 home
= os
.environ
['HOME']
64 cddb_path
= [home
+ '/' + _cddbrc
]
66 self
._get
_id
(tracklist
)
69 file = dir + '/' + self
.id + '.rdb'
76 ntracks
= int(self
.id[:2], 16)
79 self
.track
= [None] + [''] * ntracks
80 self
.trackartist
= [None] + [''] * ntracks
82 if not hasattr(self
, 'file'):
85 reg
= re
.compile(r
'^([^.]*)\.([^:]*):[\t ]+(.*)')
90 match
= reg
.match(line
)
92 print 'syntax error in ' + file
94 name1
, name2
, value
= match
.group(1, 2, 3)
98 elif name2
== 'title':
103 if self
.toc
!= value
:
104 print 'toc\'s don\'t match'
105 elif name2
== 'notes':
106 self
.notes
.append(value
)
107 elif name1
[:5] == 'track':
109 trackno
= int(name1
[5:])
110 except strings
.atoi_error
:
111 print 'syntax error in ' + file
113 if trackno
> ntracks
:
114 print 'track number ' + `trackno`
+ \
115 ' in file ' + file + \
119 self
.track
[trackno
] = value
120 elif name2
== 'artist':
121 self
.trackartist
[trackno
] = value
123 for i
in range(2, len(self
.track
)):
124 track
= self
.track
[i
]
125 # if track title starts with `,', use initial part
126 # of previous track's title
127 if track
and track
[0] == ',':
129 off
= self
.track
[i
- 1].index(',')
133 self
.track
[i
] = self
.track
[i
-1][:off
] \
136 def _get_id(self
, tracklist
):
137 # fill in self.id and self.toc.
138 # if the argument is a string ending in .rdb, the part
139 # upto the suffix is taken as the id.
140 if type(tracklist
) == type(''):
141 if tracklist
[-4:] == '.rdb':
142 self
.id = tracklist
[:-4]
146 for i
in range(2, len(tracklist
), 4):
148 (int(tracklist
[i
:i
+2]), \
149 int(tracklist
[i
+2:i
+4]))))
151 ntracks
= len(tracklist
)
152 self
.id = _dbid((ntracks
>> 4) & 0xF) + _dbid(ntracks
& 0xF)
153 if ntracks
<= _DB_ID_NTRACKS
:
156 nidtracks
= _DB_ID_NTRACKS
- 1
159 for track
in tracklist
:
160 start
, length
= track
161 min = min + length
[0]
162 sec
= sec
+ length
[1]
165 self
.id = self
.id + _dbid(min) + _dbid(sec
)
166 for i
in range(nidtracks
):
167 start
, length
= tracklist
[i
]
168 self
.id = self
.id + _dbid(length
[0]) + _dbid(length
[1])
169 self
.toc
= string
.zfill(ntracks
, 2)
170 for track
in tracklist
:
171 start
, length
= track
172 self
.toc
= self
.toc
+ string
.zfill(length
[0], 2) + \
173 string
.zfill(length
[1], 2)
177 if os
.environ
.has_key('CDDB_WRITE_DIR'):
178 dir = os
.environ
['CDDB_WRITE_DIR']
180 dir = os
.environ
['HOME'] + '/' + _cddbrc
181 file = dir + '/' + self
.id + '.rdb'
182 if posixpath
.exists(file):
184 posix
.rename(file, file + '~')
186 f
.write('album.title:\t' + self
.title
+ '\n')
187 f
.write('album.artist:\t' + self
.artist
+ '\n')
188 f
.write('album.toc:\t' + self
.toc
+ '\n')
189 for note
in self
.notes
:
190 f
.write('album.notes:\t' + note
+ '\n')
192 for i
in range(1, len(self
.track
)):
193 if self
.trackartist
[i
]:
194 f
.write('track'+`i`
+'.artist:\t'+self
.trackartist
[i
]+'\n')
195 track
= self
.track
[i
]
197 off
= track
.index(',')
201 if prevpref
and track
[:off
] == prevpref
:
204 prevpref
= track
[:off
]
205 f
.write('track' + `i`
+ '.title:\t' + track
+ '\n')