forked from flindroth/netmd.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibnetmd.py
More file actions
1223 lines (1122 loc) · 43.4 KB
/
libnetmd.py
File metadata and controls
1223 lines (1122 loc) · 43.4 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
import libusb1
from cStringIO import StringIO
from time import sleep
from struct import pack
try:
from Crypto.Cipher import DES
from Crypto.Cipher import DES3
except ImportError:
DES = None
DES3 = None
import array
import random
def dump(data):
if isinstance(data, basestring):
result = ' '.join(['%02x' % (ord(x), ) for x in data])
else:
result = repr(data)
return result
class defaultUploadEvents:
def progress(self, current):
print 'Done: %x/%x (%.02f%%)' % (current, self.total,
current/float(self.total) * 100)
def trackinfo(self, frames, bytes, format):
self.total = bytes;
KNOWN_USB_ID_SET = frozenset([
(0x04dd, 0x7202), # Sharp IM-MT899H
(0x054c, 0x0075), # Sony MZ-N1
(0x054c, 0x0080), # Sony LAM-1
(0x054c, 0x0081), # Sony MDS-JB980
(0x054c, 0x0084), # Sony MZ-N505
(0x054c, 0x0085), # Sony MZ-S1
(0x054c, 0x0086), # Sony MZ-N707
(0x054c, 0x00c6), # Sony MZ-N10
(0x054c, 0x00c7), # Sony MZ-N910
(0x054c, 0x00c8), # Sony MZ-N710/NF810
(0x054c, 0x00c9), # Sony MZ-N510/N610
(0x054c, 0x00ca), # Sony MZ-NE410/NF520D
(0x054c, 0x00eb), # Sony MZ-NE810/NE910
(0x054c, 0x0101), # Sony LAM-10
(0x054c, 0x0113), # Aiwa AM-NX1
(0x054c, 0x014c), # Aiwa AM-NX9
(0x054c, 0x017e), # Sony MZ-NH1
(0x054c, 0x0180), # Sony MZ-NH3D
(0x054c, 0x0182), # Sony MZ-NH900
(0x054c, 0x0184), # Sony MZ-NH700/NH800
(0x054c, 0x0186), # Sony MZ-NH600/NH600D
(0x054c, 0x0188), # Sony MZ-N920
(0x054c, 0x018a), # Sony LAM-3
(0x054c, 0x01e9), # Sony MZ-DH10P
(0x054c, 0x0219), # Sony MZ-RH10
(0x054c, 0x021b), # Sony MZ-RH710/MZ-RH910
(0x054c, 0x022c), # Sony CMT-AH10 (stereo set with integrated MD)
(0x054c, 0x023c), # Sony DS-HMD1 (device without analog music rec/playback)
(0x054c, 0x0286), # Sony MZ-RH1
])
def iterdevices(usb_context, bus=None, device_address=None):
"""
Iterator for plugged-in NetMD devices.
Parameters:
usb_context (usb1.LibUSBContext)
Some usb1.LibUSBContext instance.
bus (None, int)
Only scan this bus.
device_address (None, int)
Only scan devices at this address on each scanned bus.
Returns (yields) NetMD instances.
"""
for device in usb_context.getDeviceList():
if bus is not None and bus != device.getBusNumber():
continue
if device_address is not None and \
device_address != device.getDeviceAddress():
continue
if (device.getVendorID(), device.getProductID()) in KNOWN_USB_ID_SET:
yield NetMD(device.open())
# XXX: Endpoints numbers are hardcoded
BULK_WRITE_ENDPOINT = 0x02
BULK_READ_ENDPOINT = 0x81
# NetMD Protocol return status (first byte of request)
STATUS_CONTROL = 0x00
STATUS_STATUS = 0x01
STATUS_SPECIFIC_INQUIRY = 0x02
STATUS_NOTIFY = 0x03
STATUS_GENERAL_INQUIRY = 0x04
# ... (first byte of response)
STATUS_NOT_IMPLEMENTED = 0x08
STATUS_ACCEPTED = 0x09
STATUS_REJECTED = 0x0a
STATUS_IN_TRANSITION = 0x0b
STATUS_IMPLEMENTED = 0x0c
STATUS_CHANGED = 0x0d
STATUS_INTERIM = 0x0f
class NetMDException(Exception):
"""
Base exception for all NetMD exceptions.
"""
pass
class NetMDNotImplemented(NetMDException):
"""
NetMD protocol "operation not implemented" exception.
"""
pass
class NetMDRejected(NetMDException):
"""
NetMD protocol "operation rejected" exception.
"""
pass
class NetMD(object):
"""
Low-level interface for a NetMD device.
"""
def __init__(self, usb_handle, interface=0):
"""
usb_handle (usb1.USBDeviceHandle)
USB device corresponding to a NetMD player.
interface (int)
USB interface implementing NetMD protocol on the USB device.
"""
self.usb_handle = usb_handle
self.interface = interface
usb_handle.setConfiguration(1)
usb_handle.claimInterface(interface)
if self._getReplyLength() != 0:
self.readReply()
def __del__(self):
try:
self.usb_handle.resetDevice()
self.usb_handle.releaseInterface(self.interface)
except: # Should specify an usb exception
pass
def _getReplyLength(self):
reply = self.usb_handle.controlRead(libusb1.LIBUSB_TYPE_VENDOR | \
libusb1.LIBUSB_RECIPIENT_INTERFACE,
0x01, 0, 0, 4)
return ord(reply[2])
def sendCommand(self, command):
"""
Send a raw binary command to device.
command (str)
Binary command to send.
"""
#print '%04i> %s' % (len(command), dump(command))
self.usb_handle.controlWrite(libusb1.LIBUSB_TYPE_VENDOR | \
libusb1.LIBUSB_RECIPIENT_INTERFACE,
0x80, 0, 0, command)
def readReply(self):
"""
Get a raw binary reply from device.
Returns the reply.
"""
reply_length = 0
while reply_length == 0:
reply_length = self._getReplyLength()
if reply_length == 0: sleep(0.1)
reply = self.usb_handle.controlRead(libusb1.LIBUSB_TYPE_VENDOR | \
libusb1.LIBUSB_RECIPIENT_INTERFACE,
0x81, 0, 0, reply_length)
#print '%04i< %s' % (len(reply), dump(reply))
return reply
def readBulk(self, length):
"""
Read bulk data from device.
length (int)
Length of data to read.
Returns data read.
"""
result = StringIO()
self.readBulkToFile(length, result)
return result.getvalue()
def readBulkToFile(self, length, outfile, chunk_size=0x10000, callback=lambda(a):None):
"""
Read bulk data from device, and write it to a file.
length (int)
Length of data to read.
outfile (str)
Path to output file.
chunk_size (int)
Keep this much data in memory before flushing it to file.
"""
done = 0
while done < length:
received = self.usb_handle.bulkRead(BULK_READ_ENDPOINT,
min((length - done), chunk_size))
done += len(received)
outfile.write(received)
callback(done)
def writeBulk(self, data):
"""
Write data to device.
data (str)
Data to write.
"""
self.usb_handle.bulkWrite(BULK_WRITE_ENDPOINT, data)
ACTION_PLAY = 0x75
ACTION_PAUSE = 0x7d
ACTION_FASTFORWARD = 0x39
ACTION_REWIND = 0x49
TRACK_PREVIOUS = 0x0002
TRACK_NEXT = 0x8001
TRACK_RESTART = 0x0001
ENCODING_SP = 0x90
ENCODING_LP2 = 0x92
ENCODING_LP4 = 0x93
CHANNELS_MONO = 0x01
CHANNELS_STEREO = 0x00
CHANNEL_COUNT_DICT = {
CHANNELS_MONO: 1,
CHANNELS_STEREO: 2
}
OPERATING_STATUS_USB_RECORDING = 0x56ff
OPERATING_STATUS_RECORDING = 0xc275
OPERATING_STATUS_RECORDING_PAUSED = 0xc27d
OPERATING_STATUS_FAST_FORWARDING = 0xc33f
OPERATING_STATUS_REWINDING = 0xc34f
OPERATING_STATUS_PLAYING = 0xc375
OPERATING_STATUS_PAUSED = 0xc37d
OPERATING_STATUS_STOPPED = 0xc5ff
TRACK_FLAG_PROTECTED = 0x03
DISC_FLAG_WRITABLE = 0x10
DISC_FLAG_WRITE_PROTECTED = 0x40
DISKFORMAT_LP4 = 0
DISKFORMAT_LP2 = 2
DISKFORMAT_SP_MONO = 4
DISKFORMAT_SP_STEREO = 6
WIREFORMAT_PCM = 0
WIREFORMAT_105KBPS = 0x90
WIREFORMAT_LP2 = 0x94
WIREFORMAT_LP4 = 0xA8
_FORMAT_TYPE_LEN_DICT = {
'b': 1, # byte
'w': 2, # word
'd': 4, # doubleword
'q': 8, # quadword
}
def BCD2int(bcd):
"""
Convert BCD number of an arbitrary length to an int.
bcd (int)
bcd number
Returns the same number as an int.
"""
value = 0
nibble = 0
while bcd:
nibble_value = bcd & 0xf
bcd >>= 4
value += nibble_value * (10 ** nibble)
nibble += 1
return value
def int2BCD(value, length=1):
"""
Convert an int into a BCD number.
value (int)
Integer value.
length (int)
Length limit for output number, in bytes.
Returns the same value in BCD.
"""
if value > 10 ** (length * 2 - 1):
raise ValueError('Value %r cannot fit in %i bytes in BCD' %
(value, length))
bcd = 0
nibble = 0
while value:
value, nibble_value = divmod(value, 10)
bcd |= nibble_value << (4 * nibble)
nibble += 1
return bcd
class NetMDInterface(object):
"""
High-level interface for a NetMD device.
Notes:
Track numbering starts at 0.
First song position is 0:0:0'1 (0 hours, 0 minutes, 0 second, 1 sample)
wchar titles are probably shift-jis encoded (hint only, nothing relies
on this in this file)
"""
def __init__(self, net_md):
"""
net_md (NetMD)
Interface to the NetMD device to use.
"""
self.net_md = net_md
def send_query(self, query, test=False):
# XXX: to be removed (replaced by 2 separate calls)
self.sendCommand(query, test=test)
return self.readReply()
def sendCommand(self, query, test=False):
if test:
query = [STATUS_SPECIFIC_INQUIRY, ] + query
else:
query = [STATUS_CONTROL, ] + query
binquery = ''.join(chr(x) for x in query)
self.net_md.sendCommand(binquery)
def readReply(self):
result = self.net_md.readReply()
status = ord(result[0])
if status == STATUS_NOT_IMPLEMENTED:
raise NetMDNotImplemented('Not implemented')
elif status == STATUS_REJECTED:
raise NetMDRejected('Rejected')
elif status not in (STATUS_ACCEPTED, STATUS_IMPLEMENTED,
STATUS_INTERIM):
raise NotImplementedError('Unknown returned status: %02X' %
(status, ))
return result[1:]
def formatQuery(self, format, *args):
result = []
append = result.append
extend = result.extend
half = None
def hexAppend(value):
append(int(value, 16))
escaped = False
arg_stack = list(args)
for char in format:
if escaped:
escaped = False
value = arg_stack.pop(0)
if char in _FORMAT_TYPE_LEN_DICT:
for byte in xrange(_FORMAT_TYPE_LEN_DICT[char] - 1, -1, -1):
append((value >> (byte * 8)) & 0xff)
# String ('s' is 0-terminated, 'x' is not)
elif char in ('s', 'x'):
length = len(value)
if char == 's':
length += 1
append((length >> 8) & 0xff)
append(length & 0xff)
extend(ord(x) for x in value)
if char == 's':
append(0)
elif char == '*':
extend(ord(x) for x in value)
else:
raise ValueError('Unrecognised format char: %r' % (char, ))
continue
if char == '%':
assert half is None
escaped = True
continue
if char == ' ':
continue
if half is None:
half = char
else:
hexAppend(half + char)
half = None
assert len(arg_stack) == 0
return result
def scanQuery(self, query, format):
result = []
append = result.append
half = None
escaped = False
input_stack = list(query)
def pop():
return ord(input_stack.pop(0))
for char in format:
if escaped:
escaped = False
if char == '?':
pop()
continue
if char in _FORMAT_TYPE_LEN_DICT:
value = 0
for byte in xrange(_FORMAT_TYPE_LEN_DICT[char] - 1, -1, -1):
value |= (pop() << (byte * 8))
append(value)
# String ('s' is 0-terminated, 'x' is not)
elif char in ('s', 'x'):
length = pop() << 8 | pop()
value = ''.join(input_stack[:length])
input_stack = input_stack[length:]
if char == 's':
append(value[:-1])
else:
append(value)
# Fetch the remainder of the query in one value
elif char == '*':
value = ''.join(input_stack)
input_stack = []
append(value)
else:
raise ValueError('Unrecognised format char: %r' % (char, ))
continue
if char == '%':
assert half is None
escaped = True
continue
if char == ' ':
continue
if half is None:
half = char
else:
input_value = pop()
format_value = int(half + char, 16)
if format_value != input_value:
raise ValueError('Format and input mismatch at %i: '
'expected %02x, got %02x' % (
len(query) - len(input_stack) - 1,
format_value, input_value))
half = None
assert len(input_stack) == 0
return result
def acquire(self):
"""
Exclusive access to device.
XXX: what does it mean ?
"""
query = self.formatQuery('ff 010c ffff ffff ffff ffff ffff ffff')
reply = self.send_query(query)
self.scanQuery(reply, 'ff 010c ffff ffff ffff ffff ffff ffff')
def release(self):
"""
Release device previously acquired for exclusive access.
XXX: what does it mean ?
"""
query = self.formatQuery('ff 0100 ffff ffff ffff ffff ffff ffff')
reply = self.send_query(query)
self.scanQuery(reply, 'ff 0100 ffff ffff ffff ffff ffff ffff')
def getStatus(self):
"""
Get device status.
Returns device response (content meaning is largely unknown).
"""
query = self.formatQuery('1809 8001 0230 8800 0030 8804 00 ff00 ' \
'00000000')
reply = self.send_query(query)
return self.scanQuery(reply, '1809 8001 0230 8800 0030 8804 00 ' \
'1000 000900000 %x')[0]
def isDiskPresent(self):
"""
Is a disk present in device ?
Returns a boolean:
True: disk present
False: no disk
"""
status = self.getStatus()
return status[4] == 0x40
def getOperatingStatus(self):
query = self.formatQuery('1809 8001 0330 8802 0030 8805 0030 8806 ' \
'00 ff00 00000000')
reply = self.send_query(query)
return self.scanQuery(reply, '1809 8001 0330 8802 0030 8805 0030 ' \
'8806 00 1000 00%?0000 0006 8806 0002 %w')[0]
def _getPlaybackStatus(self, p1, p2):
query = self.formatQuery('1809 8001 0330 %w 0030 8805 0030 %w 00 ' \
'ff00 00000000',
p1, p2)
reply = self.send_query(query)
return self.scanQuery(reply, '1809 8001 0330 %?%? %?%? %?%? %?%? ' \
'%?%? %? 1000 00%?0000 %x')[0]
def getPlaybackStatus1(self):
return self._getPlaybackStatus(0x8801, 0x8807)
def getPlaybackStatus2(self):
# XXX: duplicate of getOperatingStatus
return self._getPlaybackStatus(0x8802, 0x8806)
def getPosition(self):
query = self.formatQuery('1809 8001 0430 8802 0030 8805 0030 0003 ' \
'0030 0002 00 ff00 00000000')
try:
reply = self.send_query(query)
except NetMDRejected: # No disc
result = None
else:
result = self.scanQuery(reply, '1809 8001 0430 %?%? %?%? %?%? ' \
'%?%? %?%? %?%? %?%? %? %?00 00%?0000 ' \
'000b 0002 0007 00 %w %b %b %b %b')
result[1] = BCD2int(result[1])
result[2] = BCD2int(result[2])
result[3] = BCD2int(result[3])
result[4] = BCD2int(result[4])
return result
def _play(self, action):
query = self.formatQuery('18c3 ff %b 000000', action)
reply = self.send_query(query)
self.scanQuery(reply, '18c3 00 %b 000000')
def play(self):
"""
Start playback on device.
"""
self._play(ACTION_PLAY)
def fast_forward(self):
"""
Fast-forward device.
"""
self._play(ACTION_FASTFORWARD)
def rewind(self):
"""
Rewind device.
"""
self._play(ACTION_REWIND)
def pause(self):
"""
Pause device.
"""
self._play(ACTION_PAUSE)
def stop(self):
"""
Stop playback on device.
"""
query = self.formatQuery('18c5 ff 00000000')
reply = self.send_query(query)
self.scanQuery(reply, '18c5 00 00000000')
def gotoTrack(self, track):
"""
Seek to begining of given track number on device.
"""
query = self.formatQuery('1850 ff010000 0000 %w', track)
reply = self.send_query(query)
return self.scanQuery(reply, '1850 00010000 0000 %w')[0]
def gotoTime(self, track, hour=0, minute=0, second=0, frame=0):
"""
Seek to given time of given track.
"""
query = self.formatQuery('1850 ff000000 0000 %w %b%b%b%b', track,
int2BCD(hour), int2BCD(minute),
int2BCD(second), int2BCD(frame))
reply = self.send_query(query)
return self.scanQuery(reply, '1850 00000000 %?%? %w %b%b%b%b')
def _trackChange(self, direction):
query = self.formatQuery('1850 ff10 00000000 %w', direction)
reply = self.send_query(query)
return self.scanQuery(reply, '1850 0010 00000000 %?%?')
def nextTrack(self):
"""
Go to begining of next track.
"""
self._trackChange(TRACK_NEXT)
def previousTrack(self):
"""
Go to begining of previous track.
"""
self._trackChange(TRACK_PREVIOUS)
def restartTrack(self):
"""
Go to begining of current track.
"""
self._trackChange(TRACK_RESTART)
def eraseDisc(self):
"""
Erase disc.
This is reported not to check for any track protection, and
unconditionaly earses everything.
"""
# XXX: test to see if it honors read-only disc mode.
query = self.formatQuery('1840 ff 0000')
reply = self.send_query(query)
self.scanQuery(reply, '1840 00 0000')
def syncTOC(self):
query = self.formatQuery('1808 10180200 00')
reply = self.send_query(query)
return self.scanQuery(reply, '1808 10180200 00')
def cacheTOC(self):
query = self.formatQuery('1808 10180203 00')
reply = self.send_query(query)
return self.scanQuery(reply, '1808 10180203 00')
def getDiscFlags(self):
"""
Get disc flags.
Returns a bitfield (see DISC_FLAG_* constants).
"""
query = self.formatQuery('1806 01101000 ff00 0001000b')
reply = self.send_query(query)
return self.scanQuery(reply, '1806 01101000 1000 0001000b %b')[0]
def getTrackCount(self):
"""
Get the number of disc tracks.
"""
query = self.formatQuery('1806 02101001 3000 1000 ff00 00000000')
reply = self.send_query(query)
data = self.scanQuery(reply, '1806 02101001 %?%? %?%? 1000 00%?0000 ' \
'%x')[0]
assert len(data) == 6, len(data)
assert data[:5] == '\x00\x10\x00\x02\x00', data[:5]
return ord(data[5])
def _getDiscTitle(self, wchar=False):
# XXX: long title support untested.
if wchar:
wchar_value = 1
else:
wchar_value = 0
done = 0
remaining = 0
total = 1
result = []
while done < total:
query = self.formatQuery('1806 02201801 00%b 3000 0a00 ff00 %w%w',
wchar_value, remaining, done)
reply = self.send_query(query)
if remaining == 0:
chunk_size, total, chunk = self.scanQuery(reply,
'1806 02201801 00%? 3000 0a00 1000 %w0000 %?%?000a %w %*')
chunk_size -= 6
else:
chunk_size, chunk = self.scanQuery(reply,
'1806 02201801 00%? 3000 0a00 1000 %w%?%? %*')
assert chunk_size == len(chunk)
result.append(chunk)
done += chunk_size
remaining = total - done
#if not wchar and len(result):
# assert result[-1] == '\x00'
# result = result[:-1]
return ''.join(result)
def getDiscTitle(self, wchar=False):
"""
Return disc title.
wchar (bool)
If True, return the content of wchar title.
If False, return the ASCII title.
"""
title = self._getDiscTitle(wchar=wchar)
if title.endswith('//'):
# this is a grouped minidisc which may have a disc title
# The disc title is always stored in the first entry and
# applied to the imaginary track 0
firstentry = title.split('//')[0]
if firstentry.startswith('0;'):
title = firstentry[2:len(firstentry)];
else:
title = '';
return title
def getTrackGroupList(self):
"""
Return a list representing track groups.
This list is composed of 2-tuples:
group title
track number list
"""
raw_title = self._getDiscTitle()
group_list = raw_title.split('//')
track_dict = {}
track_count = self.getTrackCount()
result = []
append = result.append
for group_index, group in enumerate(group_list):
if group == '': # (only ?) last group might be delimited but empty.
continue
if group[0] == '0' or ';' not in group: # Disk title
continue
track_range, group_name = group.split(';', 1)
if '-' in track_range:
track_min, track_max = track_range.split('-')
else:
track_min = track_max = track_range
track_min, track_max = int(track_min), int(track_max)
assert 0 <= track_min <= track_max <= track_count, (
track_min, track_max, track_count)
track_list = []
track_append = track_list.append
for track in xrange(track_min - 1, track_max):
if track in track_dict:
raise ValueError('Track %i is in 2 groups: %r[%i] & '
'%r[%i]' % (track, track_dict[track][0],
track_dict[track][1], group_name, group_index))
track_dict[track] = group_name, group_index
track_append(track)
append((group_name, track_list))
track_list = [x for x in xrange(track_count) if x not in track_dict]
if len(track_list):
append((None, track_list))
return result
def getTrackTitle(self, track, wchar=False):
"""
Return track title.
track (int)
Track number.
wchar (bool)
If True, return the content of wchar title.
If False, return the ASCII title.
"""
if wchar:
wchar_value = 3
else:
wchar_value = 2
query = self.formatQuery('1806 022018%b %w 3000 0a00 ff00 00000000',
wchar_value, track)
reply = self.send_query(query)
result = self.scanQuery(reply, '1806 022018%? %?%? %?%? %?%? 1000 ' \
'00%?0000 00%?000a %x')[0]
#if not wchar and len(result):
# assert result[-1] == '\x00'
# result = result[:-1]
return result
def setDiscTitle(self, title, wchar=False):
"""
Set disc title.
title (str)
The new title.
wchar (bool)
If True, return the content of wchar title.
If False, return the ASCII title.
"""
if wchar:
wchar = 1
else:
wchar = 0
old_len = len(self.getDiscTitle())
query = self.formatQuery('1807 02201801 00%b 3000 0a00 5000 %w 0000 ' \
'%w %s', wchar, len(title), old_len, title)
reply = self.send_query(query)
self.scanQuery(reply, '1807 02201801 00%? 3000 0a00 5000 %?%? 0000 ' \
'%?%?')
def setTrackTitle(self, track, title, wchar=False):
"""
Set track title.
track (int)
Track to retitle.
title (str)
The new title.
wchar (bool)
If True, return the content of wchar title.
If False, return the ASCII title.
"""
if wchar:
wchar = 3
else:
wchar = 2
try:
old_len = len(self.getTrackTitle(track))
except NetMDRejected:
old_len = 0
query = self.formatQuery('1807 022018%b %w 3000 0a00 5000 %w 0000 ' \
'%w %*', wchar, track, len(title), old_len,
title)
reply = self.send_query(query)
self.scanQuery(reply, '1807 022018%? %?%? 3000 0a00 5000 %?%? 0000 ' \
'%?%?')
def eraseTrack(self, track):
"""
Remove a track.
track (int)
Track to remove.
"""
query = self.formatQuery('1840 ff01 00 201001 %w', track)
reply = self.send_query(query)
self.scanQuery(reply, '1840 1001 00 201001 %?%?')
def moveTrack(self, source, dest):
"""
Move a track.
source (int)
Track position before moving.
dest (int)
Track position after moving.
"""
query = self.formatQuery('1843 ff00 00 201001 00 %w 201001 %w', source,
dest)
reply = self.send_query(query)
self.scanQuery(reply, '1843 0000 00 201001 00 %?%? 201001 %?%?')
def _getTrackInfo(self, track, p1, p2):
query = self.formatQuery('1806 02201001 %w %w %w ff00 00000000', track,
p1, p2)
reply = self.send_query(query)
return self.scanQuery(reply, '1806 02201001 %?%? %?%? %?%? 1000 ' \
'00%?0000 %x')[0]
def getTrackLength(self, track):
"""
Get track duration.
track (int)
Track to fetch information from.
Returns a list of 4 elements:
- hours
- minutes
- seconds
- samples (512 per second)
"""
raw_value = self._getTrackInfo(track, 0x3000, 0x0100)
result = self.scanQuery(raw_value, '0001 0006 0000 %b %b %b %b')
result[0] = BCD2int(result[0])
result[1] = BCD2int(result[1])
result[2] = BCD2int(result[2])
result[3] = BCD2int(result[3])
return result
def getTrackEncoding(self, track):
"""
Get track encoding parameters.
track (int)
Track to fetch information from.
Returns a list of 2 elements:
- codec (see ENCODING_* constants)
- channel number (see CHANNELS_* constants)
"""
return self.scanQuery(self._getTrackInfo(track, 0x3080, 0x0700),
'8007 0004 0110 %b %b')
def getTrackFlags(self, track):
"""
Get track flags.
track (int)
Track to fetch information from.
Returns a bitfield (See TRACK_FLAG_* constants).
"""
query = self.formatQuery('1806 01201001 %w ff00 00010008', track)
reply = self.send_query(query)
return self.scanQuery(reply, '1806 01201001 %?%? 10 00 00010008 %b') \
[0]
def getDiscCapacity(self):
"""
Get disc capacity.
Returns a list of 3 lists of 4 elements each (see getTrackLength).
The first list is the recorded duration.
The second list is the total disc duration (*).
The third list is the available disc duration (*).
(*): This result depends on current recording parameters.
"""
query = self.formatQuery('1806 02101000 3080 0300 ff00 00000000')
reply = self.send_query(query)
raw_result = self.scanQuery(reply, '1806 02101000 3080 0300 1000 ' \
'001d0000 001b 8003 0017 8000 0005 %w ' \
'%b %b %b 0005 %w %b %b %b 0005 %w %b ' \
'%b %b')
result = []
for offset in xrange(3):
offset *= 4
result.append([
BCD2int(raw_result[offset + 0]),
BCD2int(raw_result[offset + 1]),
BCD2int(raw_result[offset + 2]),
BCD2int(raw_result[offset + 3])])
return result
def getRecordingParameters(self):
"""
Get the current recording parameters.
See getTrackEncoding.
"""
query = self.formatQuery('1809 8001 0330 8801 0030 8805 0030 8807 ' \
'00 ff00 00000000')
reply = self.send_query(query)
return self.scanQuery(reply, '1809 8001 0330 8801 0030 8805 0030 ' \
'8807 00 1000 000e0000 000c 8805 0008 80e0 ' \
'0110 %b %b 4000')
def saveTrackToStream(self, track, outstream, events=defaultUploadEvents()):
"""
Digitaly dump a track to file.
This is only available on MZ-RH1.
track (int)
Track to extract.
outfile_name (str)
Path of file to save extracted data in.
"""
track += 1
query = self.formatQuery('1800 080046 f003010330 ff00 1001 %w', track)
reply = self.send_query(query)
(frames,codec,length) = self.scanQuery(reply, '1800 080046 f003010330 0000 1001 ' \
'%w %b %d')
events.trackinfo(frames, length, codec);
self.net_md.readBulkToFile(length, outstream, callback=events.progress)
reply = self.readReply()
self.scanQuery(reply, '1800 080046 f003010330 0000 1001 %?%? 0000')
# Prevent firmware lockups on successive saveTrackToStream calls
sleep(0.01)
def disableNewTrackProtection(self):
"""
NetMD downloaded tracks are usually protected from modification
at the MD device to prevent loosing the check-out license. This
setting can be changed on some later models to have them record
unprotected tracks, like Simple Burner does.
The setting stays in effect until endSecureSession, where it
is reset to 0.
val (int)
zero enables protection of future downloaded tracks, one
disables protection for these tracks.
"""
query = self.formatQuery('1800 080046 f0030103 2b ff %w', 1)
reply = self.send_query(query)
return self.scanQuery(reply, '1800 080046 f0030103 2b 00 %?%?')
def enterSecureSession(self):
"""
Enter a session secured by a root key found in an EKB. The
EKB for this session has to be download after entering the
session.
"""
query = self.formatQuery('1800 080046 f0030103 80 ff')
reply = self.send_query(query)
return self.scanQuery(reply, '1800 080046 f0030103 80 00')
def leaveSecureSession(self):
"""
Forget the key material from the EKB used in the secure
session.
"""
query = self.formatQuery('1800 080046 f0030103 81 ff')
reply = self.send_query(query)
return self.scanQuery(reply, '1800 080046 f0030103 81 00')
def getLeafID(self):
"""
Read the leaf ID of the present NetMD device. The leaf ID tells
which keys the device posesses, which is needed to find out which
parts of the EKB needs to be sent to the device for it to decrypt
the root key.
The leaf ID is a 8-byte constant
"""
query = self.formatQuery('1800 080046 f0030103 11 ff')
reply = self.send_query(query)
return self.scanQuery(reply, '1800 080046 f0030103 11 00 %*')[0]
def sendKeyData(self, ekbid, keychain, depth, ekbsignature):
"""
Send key data to the device. The device uses it's builtin key
to decrypt the root key from an EKB.
ekbid (int)
The ID of the EKB.
keychain (list of 16-byte str)
A chain of encrypted keys. The one end of the chain is the
encrypted root key, the other end is a key encrypted by a key
the device has in it's key set. The direction of the chain is
not yet known.
depth (str)
Selects which key from the devices keyset has to be used to
start decrypting the chain. Each key in the key set corresponds
to a specific depth in the tree of device IDs.
ekbsignature
A 24 byte signature of the root key. Used to verify integrity
of the decrypted root key by the device.
"""