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
16 from warnings
import warnpy3k
17 warnpy3k("the cddb module has been removed in Python 3.0", stacklevel
=2)
20 import string
, posix
, os
24 _dbid_map
= '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ@_=+abcdefghijklmnopqrstuvwxyz'
26 if v
>= len(_dbid_map
):
27 return string
.zfill(v
, 2)
32 if type(toc
) == type(''):
34 for i
in range(2, len(toc
), 4):
35 tracklist
.append((None,
40 ntracks
= len(tracklist
)
41 hash = _dbid((ntracks
>> 4) & 0xF) + _dbid(ntracks
& 0xF)
42 if ntracks
<= _DB_ID_NTRACKS
:
45 nidtracks
= _DB_ID_NTRACKS
- 1
48 for track
in tracklist
:
54 hash = hash + _dbid(min) + _dbid(sec
)
55 for i
in range(nidtracks
):
56 start
, length
= tracklist
[i
]
57 hash = hash + _dbid(length
[0]) + _dbid(length
[1])
61 def __init__(self
, tracklist
):
62 if os
.environ
.has_key('CDDB_PATH'):
63 path
= os
.environ
['CDDB_PATH']
64 cddb_path
= path
.split(',')
66 home
= os
.environ
['HOME']
67 cddb_path
= [home
+ '/' + _cddbrc
]
69 self
._get
_id
(tracklist
)
72 file = dir + '/' + self
.id + '.rdb'
79 ntracks
= int(self
.id[:2], 16)
82 self
.track
= [None] + [''] * ntracks
83 self
.trackartist
= [None] + [''] * ntracks
85 if not hasattr(self
, 'file'):
88 reg
= re
.compile(r
'^([^.]*)\.([^:]*):[\t ]+(.*)')
93 match
= reg
.match(line
)
95 print 'syntax error in ' + file
97 name1
, name2
, value
= match
.group(1, 2, 3)
101 elif name2
== 'title':
106 if self
.toc
!= value
:
107 print 'toc\'s don\'t match'
108 elif name2
== 'notes':
109 self
.notes
.append(value
)
110 elif name1
[:5] == 'track':
112 trackno
= int(name1
[5:])
113 except strings
.atoi_error
:
114 print 'syntax error in ' + file
116 if trackno
> ntracks
:
117 print 'track number %r in file %r out of range' % (trackno
, file)
120 self
.track
[trackno
] = value
121 elif name2
== 'artist':
122 self
.trackartist
[trackno
] = value
124 for i
in range(2, len(self
.track
)):
125 track
= self
.track
[i
]
126 # if track title starts with `,', use initial part
127 # of previous track's title
128 if track
and track
[0] == ',':
130 off
= self
.track
[i
- 1].index(',')
134 self
.track
[i
] = self
.track
[i
-1][:off
] \
137 def _get_id(self
, tracklist
):
138 # fill in self.id and self.toc.
139 # if the argument is a string ending in .rdb, the part
140 # upto the suffix is taken as the id.
141 if type(tracklist
) == type(''):
142 if tracklist
[-4:] == '.rdb':
143 self
.id = tracklist
[:-4]
147 for i
in range(2, len(tracklist
), 4):
149 (int(tracklist
[i
:i
+2]), \
150 int(tracklist
[i
+2:i
+4]))))
152 ntracks
= len(tracklist
)
153 self
.id = _dbid((ntracks
>> 4) & 0xF) + _dbid(ntracks
& 0xF)
154 if ntracks
<= _DB_ID_NTRACKS
:
157 nidtracks
= _DB_ID_NTRACKS
- 1
160 for track
in tracklist
:
161 start
, length
= track
162 min = min + length
[0]
163 sec
= sec
+ length
[1]
166 self
.id = self
.id + _dbid(min) + _dbid(sec
)
167 for i
in range(nidtracks
):
168 start
, length
= tracklist
[i
]
169 self
.id = self
.id + _dbid(length
[0]) + _dbid(length
[1])
170 self
.toc
= string
.zfill(ntracks
, 2)
171 for track
in tracklist
:
172 start
, length
= track
173 self
.toc
= self
.toc
+ string
.zfill(length
[0], 2) + \
174 string
.zfill(length
[1], 2)
178 if os
.environ
.has_key('CDDB_WRITE_DIR'):
179 dir = os
.environ
['CDDB_WRITE_DIR']
181 dir = os
.environ
['HOME'] + '/' + _cddbrc
182 file = dir + '/' + self
.id + '.rdb'
183 if posixpath
.exists(file):
185 posix
.rename(file, file + '~')
187 f
.write('album.title:\t' + self
.title
+ '\n')
188 f
.write('album.artist:\t' + self
.artist
+ '\n')
189 f
.write('album.toc:\t' + self
.toc
+ '\n')
190 for note
in self
.notes
:
191 f
.write('album.notes:\t' + note
+ '\n')
193 for i
in range(1, len(self
.track
)):
194 if self
.trackartist
[i
]:
195 f
.write('track%r.artist:\t%s\n' % (i
, self
.trackartist
[i
]))
196 track
= self
.track
[i
]
198 off
= track
.index(',')
202 if prevpref
and track
[:off
] == prevpref
:
205 prevpref
= track
[:off
]
206 f
.write('track%r.title:\t%s\n' % (i
, track
))