forked from ratal/mdfreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataRead.pyx
More file actions
733 lines (715 loc) · 32.3 KB
/
Copy pathdataRead.pyx
File metadata and controls
733 lines (715 loc) · 32.3 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
import numpy as np
cimport numpy as np
from sys import byteorder
#cimport cython
from cpython.bytes cimport PyBytes_AsString
from libc.string cimport memcpy
#@cython.boundscheck(False)
#@cython.wraparound(False)
def dataRead(bytes tmp, unsigned short bitCount,
unsigned short signalDataType, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned char bitOffset,
unsigned long posByteBeg, unsigned long posByteEnd, array):
"""dataRead function to read in cython a channel from a byte stream
Parameters
------------
tmp : bytes
byte stream
bitCount : unsigned short
number of bit taken by the channel in the record
signalDataType : unsigned short
int to describe data type
RecordFormat : string
basic numpy dtype description of data type, used to create
returned numpy ndarray
numberOfRecords : unsigned long long
number of records in byte stream
record_byte_size : unsigned long
number of bytes taken by one record repeated in byte stream
bitOffset : unsigned char
bit offset of data in C aligned bytes
posByteBeg : unsigned long
beginning byte position of channel in record
posByteEnd : unsigned long
ending byte position of channel in record
array : boolean
reads an array, not a vector
Return
-------
ndarray of type RecordFormat with numberOfRecords records.
Byte order is swapped if necessary to match machine byte order before bits offset and masking
"""
cdef char* bita = PyBytes_AsString(tmp)
if not array:
if 'V' in RecordFormat or 'S' in RecordFormat or RecordFormat is None:
return dataReadByte(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, posByteEnd, bitCount, bitOffset)
elif signalDataType in (4, 5) and bitCount == 32: # float
if (byteorder == 'little' and signalDataType == 4) or \
(byteorder == 'big' and signalDataType == 5):
return dataReadFloat(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, 0)
else: # swap bytes
return dataReadFloat(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, 1)
elif signalDataType in (4, 5) and bitCount == 64: # double
if (byteorder == 'little' and signalDataType == 4) or \
(byteorder == 'big' and signalDataType == 5):
return dataReadDouble(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, 0)
else: # swap bytes
return dataReadDouble(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, 1)
elif signalDataType in (0, 1, 13) and bitCount <= 8: # unsigned char
return dataReadUChar(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset)
elif signalDataType in (2, 3) and bitCount <= 8: # signed char
return dataReadChar(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset)
elif signalDataType in (0, 1, 13, 14) and bitCount <=16: # unsigned short
if (byteorder == 'little' and signalDataType == 0) or \
(byteorder == 'big' and signalDataType == 1):
return dataReadUShort(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 0)
else: # swap bytes
return dataReadUShort(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 1)
elif signalDataType in (2, 3) and bitCount <= 16: # signed short
if (byteorder == 'little' and signalDataType == 2) or \
(byteorder == 'big' and signalDataType == 3):
return dataReadShort(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 0)
else: # swap bytes
return dataReadShort(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 1)
elif signalDataType in (0, 1, 14) and bitCount <=32: # unsigned int
if (byteorder == 'little' and signalDataType == 0) or \
(byteorder == 'big' and signalDataType == 1):
return dataReadUInt(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 0)
else: # swap bytes
return dataReadUInt(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 1)
elif signalDataType in (2, 3) and bitCount <= 32: # signed int
if (byteorder == 'little' and signalDataType == 2) or \
(byteorder == 'big' and signalDataType == 3):
return dataReadInt(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 0)
else: # swap bytes
return dataReadInt(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 1)
elif signalDataType in (0, 1) and bitCount <=64: # unsigned long long
if (byteorder == 'little' and signalDataType == 0) or \
(byteorder == 'big' and signalDataType == 1):
return dataReadULongLong(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 0)
else: # swap bytes
return dataReadULongLong(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 1)
elif signalDataType in (2, 3) and bitCount <= 64: # signed long long
if (byteorder == 'little' and signalDataType == 0) or \
(byteorder == 'big' and signalDataType == 1):
return dataReadLongLong(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 0)
else: # swap bytes
return dataReadLongLong(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, bitCount, bitOffset, 1)
else:
return dataReadByte(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, posByteEnd, bitCount, bitOffset)
else: # array
if (byteorder == 'little' and signalDataType in (0, 2, 4)) or \
(byteorder == 'big' and signalDataType in (1, 3, 5)):
return dataReadArray(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, posByteEnd, bitCount, bitOffset, 0)
else: # swap bytes
return dataReadArray(bita, RecordFormat, numberOfRecords,
record_byte_size, posByteBeg, posByteEnd, bitCount, bitOffset, 1)
cdef inline dataReadFloat(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg, unsigned char swap):
cdef np.ndarray[np.float32_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef float tempfloat = 0
cdef char temp[4]
for i in range(numberOfRecords):
memcpy(&tempfloat, &bita[posByteBeg + record_byte_size * i], 4)
buf[i] = tempfloat
if swap == 0:
return buf
else:
return buf.byteswap()
cdef inline dataReadDouble(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg, unsigned char swap):
cdef np.ndarray[np.float64_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef double tempDouble = 0
cdef char temp[8]
for i in range(numberOfRecords):
memcpy(&tempDouble, &bita[posByteBeg + record_byte_size * i], 8)
buf[i] = tempDouble
if swap == 0:
return buf
else:
return buf.byteswap()
cdef inline dataReadUChar(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg,
unsigned long bitCount, unsigned char bitOffset):
cdef np.ndarray[np.uint8_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef unsigned char mask = ((1 << bitCount) - 1)
cdef unsigned char temp1byte = 0
if bitCount == 8:
for i in range(numberOfRecords):
memcpy(&temp1byte, &bita[posByteBeg + record_byte_size * i], 1)
buf[i] = temp1byte
else:
for i in range(numberOfRecords):
memcpy(&temp1byte, &bita[posByteBeg + record_byte_size * i], 1)
# right shift
if bitOffset > 0:
temp1byte = temp1byte >> bitOffset
# mask left part
temp1byte &= mask
buf[i] = temp1byte
return buf
cdef inline dataReadChar(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg,
unsigned long bitCount, unsigned char bitOffset):
cdef np.ndarray[np.int8_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef char mask = ((1 << bitCount) - 1)
cdef char temp1byte = 0
cdef char signBit = 0
cdef char signBitMask = (1 << (bitCount-1))
cdef char signExtend = ((1 << (8 - bitCount)) - 1) << bitCount
if bitCount == 8:
for i in range(numberOfRecords):
memcpy(&temp1byte, &bita[posByteBeg + record_byte_size * i], 1)
buf[i] = temp1byte
else:
for i in range(numberOfRecords):
memcpy(&temp1byte, &bita[posByteBeg + record_byte_size * i], 1)
# right shift
if bitOffset > 0:
temp1byte = temp1byte >> bitOffset
# mask left part
temp1byte &= mask
signBit = temp1byte & signBitMask
if signBit: # negative value, sign extend
temp1byte |= signExtend
buf[i] = temp1byte
return buf
cdef inline dataReadUShort(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg,
unsigned long bitCount, unsigned char bitOffset, unsigned char swap):
cdef np.ndarray[np.uint16_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef unsigned short mask = ((1 << bitCount) - 1)
cdef unsigned short temp2byte = 0
cdef char temp[2]
if bitCount == 16:
for i in range(numberOfRecords):
memcpy(&temp2byte, &bita[posByteBeg + record_byte_size * i], 2)
buf[i] = temp2byte
if swap == 0:
return buf
else:
return buf.byteswap()
else:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp2byte, &bita[posByteBeg + record_byte_size * i], 2)
# right shift
if bitOffset > 0:
temp2byte = temp2byte >> bitOffset
# mask left part
if bitCount < 16:
temp2byte &= mask
buf[i] = temp2byte
else:
for i in range(numberOfRecords):
memcpy(&temp, &bita[posByteBeg + record_byte_size * i], 2)
temp2byte = temp[0]<<8 | temp[1] # swap bytes
# right shift
if bitOffset > 0:
temp2byte = temp2byte >> bitOffset
# mask left part
if bitCount < 16:
temp2byte &= mask
buf[i] = temp2byte
return buf
cdef inline dataReadShort(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg,
unsigned long bitCount, unsigned char bitOffset, unsigned char swap):
cdef np.ndarray[np.int16_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef short mask = ((1 << bitCount) - 1)
cdef short temp2byte = 0
cdef short signBit = 0
cdef short signBitMask = (1 << (bitCount-1))
cdef short signExtend = ((1 << (16 - bitCount)) - 1) << bitCount
cdef char temp[2]
if bitCount == 16:
for i in range(numberOfRecords):
memcpy(&temp2byte, &bita[posByteBeg + record_byte_size * i], 2)
buf[i] = temp2byte
if swap == 0:
return buf
else:
return buf.byteswap()
else:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp2byte, &bita[posByteBeg + record_byte_size * i], 2)
# right shift
if bitOffset > 0:
temp2byte = temp2byte >> bitOffset
# mask left part
temp2byte &= mask
signBit = temp2byte & signBitMask
if signBit: # negative value, sign extend
temp2byte |= signExtend
buf[i] = temp2byte
else:
for i in range(numberOfRecords):
memcpy(&temp, &bita[posByteBeg + record_byte_size * i], 2)
temp2byte = temp[0]<<8 | temp[1] # swap bytes
# right shift
if bitOffset > 0:
temp2byte = temp2byte >> bitOffset
# mask left part
temp2byte &= mask
signBit = temp2byte & signBitMask
if signBit: # negative value, sign extend
temp2byte |= signExtend
buf[i] = temp2byte
return buf
cdef inline dataReadUInt(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg,
unsigned long bitCount, unsigned char bitOffset, unsigned char swap):
cdef np.ndarray[np.uint32_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef unsigned int mask = ((1 << bitCount) - 1)
cdef unsigned int temp4byte = 0
cdef unsigned char nBytes = 0
cdef char temp4[4]
cdef char temp3[3]
if bitCount > 24:
nBytes = 4
else:
nBytes = 3
if bitCount == 32:
for i in range(numberOfRecords):
memcpy(&temp4byte, &bita[posByteBeg + record_byte_size * i], 2)
buf[i] = temp4byte
if swap == 0:
return buf
else:
return buf.byteswap()
elif nBytes == 4:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp4byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp4byte = temp4byte >> bitOffset
# mask left part
if bitCount < 32:
temp4byte &= mask
buf[i] = temp4byte
else:
for i in range(numberOfRecords):
memcpy(&temp4, &bita[posByteBeg + record_byte_size * i], nBytes)
temp4byte = temp4[0]<<24 | temp4[1]<<16 | temp4[2]<<8 | temp4[3] # swap bytes
# right shift
if bitOffset > 0:
temp4byte = temp4byte >> bitOffset
# mask left part
if bitCount < 32:
temp4byte &= mask
buf[i] = temp4byte
return buf
else: # on 3 bytes
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp4byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp4byte = temp4byte >> bitOffset
# mask left part
if bitCount < 24:
temp4byte &= mask
buf[i] = temp4byte
else:
for i in range(numberOfRecords):
memcpy(&temp3, &bita[posByteBeg + record_byte_size * i], nBytes)
temp4byte = temp3[0]<<16 | temp3[1]<<8 | temp3[2] # swap bytes
# right shift
if bitOffset > 0:
temp4byte = temp4byte >> bitOffset
# mask left part
if bitCount < 24:
temp4byte &= mask
buf[i] = temp4byte
return buf
cdef inline dataReadInt(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg,
unsigned long bitCount, unsigned char bitOffset, unsigned char swap):
cdef np.ndarray[np.int32_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef int mask = ((1 << bitCount) - 1)
cdef int temp4byte = 0
cdef unsigned char nBytes = 0
cdef int signBit = 0
cdef int signBitMask = (1 << (bitCount-1))
cdef int signExtend = ((1 << (32 - bitCount)) - 1) << bitCount
cdef char temp4[4]
cdef char temp3[3]
if bitCount > 24:
nBytes = 4
else:
nBytes = 3
if bitCount == 32:
for i in range(numberOfRecords):
memcpy(&temp4byte, &bita[posByteBeg + record_byte_size * i], 2)
buf[i] = temp4byte
if swap == 0:
return buf
else:
return buf.byteswap()
elif nBytes == 4:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp4byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp4byte = temp4byte >> bitOffset
# mask left part
if bitCount < 32:
temp4byte &= mask
signBit = temp4byte & signBitMask # assumes return in little endian, to be reviewed
if signBit: # negative value, sign extend
temp4byte |= signExtend
buf[i] = temp4byte
else:
for i in range(numberOfRecords):
memcpy(&temp4, &bita[posByteBeg + record_byte_size * i], nBytes)
temp4byte = temp4[0]<<24 | temp4[1]<<16 | temp4[2]<<8 | temp4[3] # swap bytes
# right shift
if bitOffset > 0:
temp4byte = temp4byte >> bitOffset
# mask left part
if bitCount < 32:
temp4byte &= mask
signBit = temp4byte & signBitMask # assumes return in little endian, to be reviewed
if signBit: # negative value, sign extend
temp4byte |= signExtend
buf[i] = temp4byte
return buf
else: # on 3 bytes
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp4byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp4byte = temp4byte >> bitOffset
# mask left part
if bitCount < 24:
temp4byte &= mask
signBit = temp4byte & signBitMask # assumes return in little endian, to be reviewed
if signBit: # negative value, sign extend
temp4byte |= signExtend
buf[i] = temp4byte
else:
for i in range(numberOfRecords):
memcpy(&temp3, &bita[posByteBeg + record_byte_size * i], nBytes)
temp4byte = temp3[0]<<16 | temp3[1]<<8 | temp3[2] # swap bytes
# right shift
if bitOffset > 0:
temp4byte = temp4byte >> bitOffset
# mask left part
if bitCount < 24:
temp4byte &= mask
signBit = temp4byte & signBitMask # assumes return in little endian, to be reviewed
if signBit: # negative value, sign extend
temp4byte |= signExtend
buf[i] = temp4byte
return buf
cdef inline dataReadULongLong(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg,
unsigned long bitCount, unsigned char bitOffset, unsigned char swap):
cdef np.ndarray[np.uint64_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef unsigned long long mask = ((1 << bitCount) - 1)
cdef unsigned long long temp8byte = 0
cdef unsigned char nBytes = bitCount // 8
cdef char temp8[8]
cdef char temp7[7]
cdef char temp6[6]
cdef char temp5[5]
if bitCount % 8 > 0:
nBytes += 1
if bitCount == 64:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
buf[i] = temp8byte
if swap == 0:
return buf
else:
return buf.byteswap()
elif nBytes == 8:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 64:
temp8byte &= mask
buf[i] = temp8byte
else:
for i in range(numberOfRecords):
memcpy(&temp8, &bita[posByteBeg + record_byte_size * i], nBytes)
temp8byte = temp8[0]<<56 | temp8[1]<<48 | temp8[2]<<40 | temp8[3]<<32 | \
temp8[4]<<24 | temp8[5]<<16 | temp8[6]<<8 | temp8[7] # swap bytes
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 64:
temp8byte &= mask
buf[i] = temp8byte
elif nBytes == 7:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 56:
temp8byte &= mask
buf[i] = temp8byte
else:
for i in range(numberOfRecords):
memcpy(&temp7, &bita[posByteBeg + record_byte_size * i], nBytes)
temp8byte = temp7[0]<<48 | temp7[1]<<40 | temp7[2]<<32 | \
temp7[3]<<24 | temp7[4]<<16 | temp7[5]<<8 | temp7[6] # swap bytes
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 56:
temp8byte &= mask
buf[i] = temp8byte
elif nBytes == 6:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 48:
temp8byte &= mask
buf[i] = temp8byte
else:
for i in range(numberOfRecords):
memcpy(&temp6, &bita[posByteBeg + record_byte_size * i], nBytes)
temp8byte = temp6[0]<<40 | temp6[1]<<32 | temp6[2]<<24 | \
temp6[3]<<16 | temp6[4]<<8 | temp6[5] # swap bytes
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 48:
temp8byte &= mask
buf[i] = temp8byte
elif nBytes == 5:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 32:
temp8byte &= mask
buf[i] = temp8byte
else:
for i in range(numberOfRecords):
memcpy(&temp5, &bita[posByteBeg + record_byte_size * i], nBytes)
temp8byte = temp5[0]<<32 | temp5[1]<<24 | \
temp5[2]<<16 | temp5[3]<<8 | temp5[4] # swap bytes
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 32:
temp8byte &= mask
buf[i] = temp8byte
return buf
cdef inline dataReadLongLong(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg,
unsigned long bitCount, unsigned char bitOffset, unsigned char swap):
cdef np.ndarray[np.int64_t] buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
cdef long long mask = ((1 << bitCount) - 1)
cdef long long temp8byte = 0
cdef unsigned char nBytes = bitCount // 8
cdef long signBit = 0
cdef long long signBitMask = (1 << (bitCount-1))
cdef long long signExtend = ((1 << (64 - bitCount)) - 1) << bitCount
cdef char temp8[8]
cdef char temp7[7]
cdef char temp6[6]
cdef char temp5[5]
if bitCount % 8 > 0:
nBytes += 1
if bitCount == 64:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
buf[i] = temp8byte
if swap == 0:
return buf
else:
return buf.byteswap()
elif nBytes == 8:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 64:
temp8byte &= mask
signBit = temp8byte & signBitMask
if signBit: # negative value, sign extend
temp8byte |= signExtend
buf[i] = temp8byte
else:
for i in range(numberOfRecords):
memcpy(&temp8, &bita[posByteBeg + record_byte_size * i], nBytes)
temp8byte = temp8[0]<<56 | temp8[1]<<48 | temp8[2]<<40 | temp8[3]<<32 | \
temp8[4]<<24 | temp8[5]<<16 | temp8[6]<<8 | temp8[7] # swap bytes
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 64:
temp8byte &= mask
signBit = temp8byte & signBitMask
if signBit: # negative value, sign extend
temp8byte |= signExtend
buf[i] = temp8byte
elif nBytes == 7:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 56:
temp8byte &= mask
signBit = temp8byte & signBitMask
if signBit: # negative value, sign extend
temp8byte |= signExtend
buf[i] = temp8byte
else:
for i in range(numberOfRecords):
memcpy(&temp7, &bita[posByteBeg + record_byte_size * i], nBytes)
temp8byte = temp7[0]<<48 | temp7[1]<<40 | temp7[2]<<32 | \
temp7[3]<<24 | temp7[4]<<16 | temp7[5]<<8 | temp7[6] # swap bytes
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 56:
temp8byte &= mask
signBit = temp8byte & signBitMask
if signBit: # negative value, sign extend
temp8byte |= signExtend
buf[i] = temp8byte
elif nBytes == 6:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 48:
temp8byte &= mask
signBit = temp8byte & signBitMask
if signBit: # negative value, sign extend
temp8byte |= signExtend
buf[i] = temp8byte
else:
for i in range(numberOfRecords):
memcpy(&temp6, &bita[posByteBeg + record_byte_size * i], nBytes)
temp8byte = temp6[0]<<40 | temp6[1]<<32 | temp6[2]<<24 | \
temp6[3]<<16 | temp6[4]<<8 | temp6[5] # swap bytes
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 48:
temp8byte &= mask
signBit = temp8byte & signBitMask
if signBit: # negative value, sign extend
temp8byte |= signExtend
buf[i] = temp8byte
elif nBytes == 5:
if swap == 0:
for i in range(numberOfRecords):
memcpy(&temp8byte, &bita[posByteBeg + record_byte_size * i], nBytes)
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 40:
temp8byte &= mask
signBit = temp8byte & signBitMask
if signBit: # negative value, sign extend
temp8byte |= signExtend
buf[i] = temp8byte
else:
for i in range(numberOfRecords):
memcpy(&temp5, &bita[posByteBeg + record_byte_size * i], nBytes)
temp8byte = temp5[0]<<32 | temp5[1]<<24 | \
temp5[2]<<16 | temp5[3]<<8 | temp5[4] # swap bytes
# right shift
if bitOffset > 0:
temp8byte = temp8byte >> bitOffset
# mask left part
if bitCount < 40:
temp8byte &= mask
signBit = temp8byte & signBitMask
if signBit: # negative value, sign extend
temp8byte |= signExtend
buf[i] = temp8byte
return buf
cdef inline dataReadByte(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg, unsigned long posByteEnd,
unsigned long bitCount, unsigned char bitOffset):
cdef np.ndarray buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
for i in range(numberOfRecords):
buf[i] = bytes(bita[posByteBeg + record_byte_size * i:\
posByteEnd + record_byte_size * i])
return buf
cdef inline dataReadArray(const char* bita, str RecordFormat, unsigned long long numberOfRecords,
unsigned long record_byte_size, unsigned long posByteBeg, unsigned long posByteEnd,
unsigned long bitCount, unsigned char bitOffset, unsigned char swap):
cdef np.ndarray buf = np.empty(numberOfRecords, dtype=RecordFormat) # return numpy array
cdef unsigned long long i
for i in range(numberOfRecords):
buf[i] = np.fromstring(bita[posByteBeg + record_byte_size * i:\
posByteEnd + record_byte_size * i], dtype=RecordFormat)
if swap == 0:
return buf
else:
return buf.byteswap()