-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsas7bdat.go
1603 lines (1398 loc) · 44.5 KB
/
sas7bdat.go
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
package datareader
// Read SAS7BDAT files with go.
//
// This code is based on the Python module:
// https://pypi.python.org/pypi/sas7bdat
//
// See also:
// https://cran.r-project.org/web/packages/sas7bdat/vignettes/sas7bdat.pdf
//
// Binary data compression:
// http://collaboration.cmc.ec.gc.ca/science/rpn/biblio/ddj/Website/articles/CUJ/1992/9210/ross/ross.htm
import (
"bytes"
"encoding/binary"
"fmt"
"io"
"math"
"os"
"strings"
"time"
xencoding "golang.org/x/text/encoding"
)
// SAS7BDAT represents a SAS data file in SAS7BDAT format.
type SAS7BDAT struct {
// Formats for the columns
ColumnFormats []string
// If true, trim whitespace from right of each string variable
// (SAS7BDAT strings are fixed width)
TrimStrings bool
// If true, converts some date formats to Go date values (does
// not work for all SAS date formats)
ConvertDates bool
// If true, strings are represented as uint64 values. Call
// the StringFactorMap method to obtain the mapping from these
// coded values to the actual strings that they represent.
FactorizeStrings bool
// If true, turns off alignment correction when reading mix-type pages.
// In general this should be set to false. However some files
// are read incorrectly and need this flag set to true. At present,
// we do not know how to automatically detect the correct setting, so
// we leave this as a configurable option.
NoAlignCorrection bool
// The creation date of the file
DateCreated time.Time
// The modification date of the file
DateModified time.Time
// The name of the data set
Name string
// The platform used to create the file
Platform string
// The SAS release used to create the file
SASRelease string
// The server type used to create the file
ServerType string
// The operating system type used to create the file
OSType string
// The operating system name used to create the file
OSName string
// The SAS file type
FileType string
// The encoding name
FileEncoding string
// True if the file was created on a 64 bit architecture
U64 bool
// The byte order of the file
ByteOrder binary.ByteOrder
// The compression mode of the file
Compression string
// A decoder for decoding text to unicode
TextDecoder *xencoding.Decoder
// The number of rows in the file
rowCount int
// Data types of the columns
columnTypes []ColumnTypeT
// Labels for the columns
columnLabels []string
// Names of the columns
columnNames []string
buf []byte
file io.ReadSeeker
cachedPage []byte
currentPageType int
currentPageBlockCount int
currentPageSubheadersCount int
currentRowInFileIndex int
currentRowOnPageIndex int
currentPageDataSubheaderPointers []*subheaderPointer
stringchunk [][]uint64
bytechunk [][]byte
currentRowInChunkIndex int
columnNamesStrings []string
columnDataOffsets []int
columnDataLengths []int
columns []*column
properties *sasProperties
stringPool map[uint64]string
stringPoolR map[string]uint64
}
// These values don't change after the header is read.
type sasProperties struct {
intLength int
pageBitOffset int
subheaderPointerLength int
headerLength int
pageLength int
pageCount int
rowLength int
colCountP1 int
colCountP2 int
mixPageRowCount int
lcs int
lcp int
creatorProc string
columnCount int
}
type column struct {
colId int
name string
label string
format string
ctype ColumnTypeT
length int
}
type subheaderPointer struct {
offset int
length int
compression int
ptype int
}
const (
rowSizeIndex = iota
columnSizeIndex
subheaderCountsIndex
columnTextIndex
columnNameIndex
columnAttributesIndex
formatAndLabelIndex
columnListIndex
dataSubheaderIndex
)
// ColumnTypeT is the type of a data column in a SAS or Stata file.
type ColumnTypeT uint16
const (
SASNumericType ColumnTypeT = iota
SASStringType
)
// Subheader signatures, 32 and 64 bit, little and big endian
var subheader_signature_to_index = map[string]int{
"\xF7\xF7\xF7\xF7": rowSizeIndex,
"\x00\x00\x00\x00\xF7\xF7\xF7\xF7": rowSizeIndex,
"\xF7\xF7\xF7\xF7\x00\x00\x00\x00": rowSizeIndex,
"\xF7\xF7\xF7\xF7\xFF\xFF\xFB\xFE": rowSizeIndex,
"\xF6\xF6\xF6\xF6": columnSizeIndex,
"\x00\x00\x00\x00\xF6\xF6\xF6\xF6": columnSizeIndex,
"\xF6\xF6\xF6\xF6\x00\x00\x00\x00": columnSizeIndex,
"\xF6\xF6\xF6\xF6\xFF\xFF\xFB\xFE": columnSizeIndex,
"\x00\xFC\xFF\xFF": subheaderCountsIndex,
"\xFF\xFF\xFC\x00": subheaderCountsIndex,
"\x00\xFC\xFF\xFF\xFF\xFF\xFF\xFF": subheaderCountsIndex,
"\xFF\xFF\xFF\xFF\xFF\xFF\xFC\x00": subheaderCountsIndex,
"\xFD\xFF\xFF\xFF": columnTextIndex,
"\xFF\xFF\xFF\xFD": columnTextIndex,
"\xFD\xFF\xFF\xFF\xFF\xFF\xFF\xFF": columnTextIndex,
"\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFD": columnTextIndex,
"\xFF\xFF\xFF\xFF": columnNameIndex,
"\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF": columnNameIndex,
"\xFC\xFF\xFF\xFF": columnAttributesIndex,
"\xFF\xFF\xFF\xFC": columnAttributesIndex,
"\xFC\xFF\xFF\xFF\xFF\xFF\xFF\xFF": columnAttributesIndex,
"\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFC": columnAttributesIndex,
"\xFE\xFB\xFF\xFF": formatAndLabelIndex,
"\xFF\xFF\xFB\xFE": formatAndLabelIndex,
"\xFE\xFB\xFF\xFF\xFF\xFF\xFF\xFF": formatAndLabelIndex,
"\xFF\xFF\xFF\xFF\xFF\xFF\xFB\xFE": formatAndLabelIndex,
"\xFE\xFF\xFF\xFF": columnListIndex,
"\xFF\xFF\xFF\xFE": columnListIndex,
"\xFE\xFF\xFF\xFF\xFF\xFF\xFF\xFF": columnListIndex,
"\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFE": columnListIndex,
}
const (
magic = ("\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc2\xea\x81\x60" +
"\xb3\x14\x11\xcf\xbd\x92\x08\x00\x09\xc7\x31\x8c\x18\x1f\x10\x11")
align_1_checker_value = '3'
align_1_offset = 32
align_1_length = 1
u64_byte_checker_value = '3'
align_2_offset = 35
align_2_length = 1
align_2_value = 4
endianness_offset = 37
endianness_length = 1
platform_offset = 39
platform_length = 1
encoding_offset = 70
encoding_length = 1
dataset_offset = 92
dataset_length = 64
file_type_offset = 156
file_type_length = 8
date_created_offset = 164
date_created_length = 8
date_modified_offset = 172
date_modified_length = 8
header_size_offset = 196
header_size_length = 4
page_size_offset = 200
page_size_length = 4
page_count_offset = 204
page_count_length = 4
sas_release_offset = 216
sas_release_length = 8
sas_server_type_offset = 224
sas_server_type_length = 16
os_version_number_offset = 240
os_version_number_length = 16
os_maker_offset = 256
os_maker_length = 16
os_name_offset = 272
os_name_length = 16
page_bit_offset_x86 = 16
page_bit_offset_x64 = 32
subheader_pointer_length_x86 = 12
subheader_pointer_length_x64 = 24
page_type_offset = 0
page_type_length = 2
block_count_offset = 2
block_count_length = 2
subheader_count_offset = 4
subheader_count_length = 2
page_meta_type = 0
page_data_type = 256
page_amd_type = 1024
subheader_pointers_offset = 8
truncated_subheader_id = 1
compressed_subheader_id = 4
compressed_subheader_type = 1
text_block_size_length = 2
row_length_offset_multiplier = 5
row_count_offset_multiplier = 6
col_count_p1_multiplier = 9
col_count_p2_multiplier = 10
row_count_on_mix_page_offset_multiplier = 15
column_name_pointer_length = 8
column_name_text_subheader_offset = 0
column_name_text_subheader_length = 2
column_name_offset_offset = 2
column_name_offset_length = 2
column_name_length_offset = 4
column_name_length_length = 2
column_data_offset_offset = 8
column_data_length_offset = 8
column_data_length_length = 4
column_type_offset = 14
column_type_length = 1
column_format_text_subheader_index_offset = 22
column_format_text_subheader_index_length = 2
column_format_offset_offset = 24
column_format_offset_length = 2
column_format_length_offset = 26
column_format_length_length = 2
column_label_text_subheader_index_offset = 28
column_label_text_subheader_index_length = 2
column_label_offset_offset = 30
column_label_offset_length = 2
column_label_length_offset = 32
column_label_length_length = 2
rle_compression = "SASYZCRL"
rdc_compression = "SASYZCR2"
)
// StringFactorMap returns a map that associates integer codes
// with the string value that each code represents. This is only
// relevant if FactorizeStrings is set to True.
func (sas *SAS7BDAT) StringFactorMap() map[uint64]string {
return sas.stringPool
}
// Incomplete list of encodings
var encoding_names = map[int]string{29: "latin1", 20: "utf-8", 33: "cyrillic", 60: "wlatin2",
61: "wcyrillic", 62: "wlatin1", 90: "ebcdic870"}
var compression_literals = []string{rle_compression, rdc_compression}
// ensureBufSize enlarges the data buffer if needed to accommodate
// at least m bytes of data.
func (sas *SAS7BDAT) ensureBufSize(m int) {
if cap(sas.buf) < m {
sas.buf = make([]byte, 2*m)
}
}
func min(x, y int) int {
if x < y {
return x
}
return y
}
// rle_decompress decompresses data using the Run Length Encoding
// algorithm. It is partially documented here:
//
// https://cran.r-project.org/web/packages/sas7bdat/vignettes/sas7bdat.pdf
func rle_decompress(result_length int, inbuff []byte) ([]byte, error) {
result := make([]byte, 0, result_length)
for len(inbuff) > 0 {
control_byte := inbuff[0] & 0xF0
end_of_first_byte := int(inbuff[0] & 0x0F)
inbuff = inbuff[1:]
if control_byte == 0x00 {
if end_of_first_byte != 0 {
os.Stderr.WriteString("Unexpected non-zero end_of_first_byte\n")
}
nbytes := int(inbuff[0]) + 64
inbuff = inbuff[1:]
result = append(result, inbuff[0:nbytes]...)
inbuff = inbuff[nbytes:]
} else if control_byte == 0x40 {
// not documented
nbytes := end_of_first_byte * 16
nbytes += int(inbuff[0])
inbuff = inbuff[1:]
for k := 0; k < nbytes; k++ {
result = append(result, inbuff[0])
}
inbuff = inbuff[1:]
} else if control_byte == 0x60 {
nbytes := end_of_first_byte*256 + int(inbuff[0]) + 17
inbuff = inbuff[1:]
for k := 0; k < nbytes; k++ {
result = append(result, 0x20)
}
} else if control_byte == 0x70 {
nbytes := end_of_first_byte*256 + int(inbuff[0]) + 17
inbuff = inbuff[1:]
for k := 0; k < nbytes; k++ {
result = append(result, 0x00)
}
} else if control_byte == 0x80 {
nbytes := end_of_first_byte + 1
result = append(result, inbuff[0:nbytes]...)
inbuff = inbuff[nbytes:]
} else if control_byte == 0x90 {
nbytes := end_of_first_byte + 17
result = append(result, inbuff[0:nbytes]...)
inbuff = inbuff[nbytes:]
} else if control_byte == 0xA0 {
nbytes := end_of_first_byte + 33
result = append(result, inbuff[0:nbytes]...)
inbuff = inbuff[nbytes:]
} else if control_byte == 0xB0 {
nbytes := end_of_first_byte + 49
result = append(result, inbuff[0:nbytes]...)
inbuff = inbuff[nbytes:]
} else if control_byte == 0xC0 {
nbytes := end_of_first_byte + 3
x := inbuff[0]
inbuff = inbuff[1:]
for k := 0; k < nbytes; k++ {
result = append(result, x)
}
} else if control_byte == 0xD0 {
nbytes := end_of_first_byte + 2
for k := 0; k < nbytes; k++ {
result = append(result, 0x40)
}
} else if control_byte == 0xE0 {
nbytes := end_of_first_byte + 2
for k := 0; k < nbytes; k++ {
result = append(result, 0x20)
}
} else if control_byte == 0xF0 {
nbytes := end_of_first_byte + 2
for k := 0; k < nbytes; k++ {
result = append(result, 0x00)
}
} else {
return nil, fmt.Errorf("unknown control byte: %v", control_byte)
}
}
if len(result) != result_length {
os.Stderr.WriteString(fmt.Sprintf("RLE: %v != %v\n", len(result), result_length))
}
return result, nil
}
// rdc_decompress decompresses data using the Ross Data Compression algorithm:
//
// http://collaboration.cmc.ec.gc.ca/science/rpn/biblio/ddj/Website/articles/CUJ/1992/9210/ross/ross.htm
func rdc_decompress(result_length int, inbuff []byte) ([]byte, error) {
var ctrl_bits uint16
var ctrl_mask uint16
var cmd uint8
var ofs uint16
var cnt uint16
var inbuff_pos int
outbuff := make([]byte, 0, result_length)
for inbuff_pos < len(inbuff) {
ctrl_mask = ctrl_mask >> 1
if ctrl_mask == 0 {
ctrl_bits = uint16(inbuff[inbuff_pos])<<8 + uint16(inbuff[inbuff_pos+1])
inbuff_pos += 2
ctrl_mask = 0x8000
}
if (ctrl_bits & ctrl_mask) == 0 {
outbuff = append(outbuff, inbuff[inbuff_pos])
inbuff_pos++
continue
}
cmd = (inbuff[inbuff_pos] >> 4) & 0x0F
cnt = uint16(inbuff[inbuff_pos] & 0x0F)
inbuff_pos++
switch {
case cmd == 0: /* short rle */
cnt += 3
for k := 0; k < int(cnt); k++ {
outbuff = append(outbuff, inbuff[inbuff_pos])
}
inbuff_pos++
case cmd == 1: /* long /rle */
cnt += uint16(inbuff[inbuff_pos]) << 4
cnt += 19
inbuff_pos++
for k := 0; k < int(cnt); k++ {
outbuff = append(outbuff, inbuff[inbuff_pos])
}
inbuff_pos++
case cmd == 2: /* long pattern */
ofs := cnt + 3
ofs += uint16(inbuff[inbuff_pos]) << 4
inbuff_pos++
cnt = uint16(inbuff[inbuff_pos])
inbuff_pos++
cnt += 16
tmp := outbuff[len(outbuff)-int(ofs) : len(outbuff)-int(ofs)+int(cnt)]
outbuff = append(outbuff, tmp...)
case (cmd >= 3) && (cmd <= 15): /* short pattern */
ofs = cnt + 3
ofs += uint16(inbuff[inbuff_pos]) << 4
inbuff_pos++
tmp := outbuff[len(outbuff)-int(ofs) : len(outbuff)-int(ofs)+int(cmd)]
outbuff = append(outbuff, tmp...)
default:
return nil, fmt.Errorf("unknown RDC command")
}
}
if len(outbuff) != result_length {
os.Stderr.WriteString(fmt.Sprintf("RDC: %v != %v\n", len(outbuff), result_length))
}
return outbuff, nil
}
func (sas *SAS7BDAT) getDecompressor() func(int, []byte) ([]byte, error) {
switch sas.Compression {
default:
return nil
case rle_compression:
return rle_decompress
case rdc_compression:
return rdc_decompress
}
}
// NewSAS7BDATReader returns a new reader object for SAS7BDAT files.
// Call the Read method to obtain the data.
func NewSAS7BDATReader(r io.ReadSeeker) (*SAS7BDAT, error) {
sas := new(SAS7BDAT)
sas.file = r
err := sas.getProperties()
if err != nil {
return nil, err
}
sas.cachedPage = make([]byte, sas.properties.pageLength)
err = sas.parseMetadata()
if err != nil {
return nil, err
}
// Default text decoder
// leave as nil for now (no decoding)
//sas.TextDecoder = charmap.Windows1250.NewDecoder()
return sas, nil
}
// readBytes read length bytes from the given offset in the current
// page (or from the beginning of the file if no page has yet been
// read).
func (sas *SAS7BDAT) readBytes(offset, length int) error {
sas.ensureBufSize(length)
if sas.cachedPage == nil {
if _, err := sas.file.Seek(int64(offset), 0); err != nil {
panic(err)
}
n, err := sas.file.Read(sas.buf[0:length])
if err != nil {
return err
} else if n < length {
return fmt.Errorf("Unable to read %d bytes from file position %d.", length, offset)
}
} else {
if offset+length > len(sas.cachedPage) {
return fmt.Errorf("The cached page is too small.")
}
copy(sas.buf, sas.cachedPage[offset:offset+length])
}
return nil
}
func (sas *SAS7BDAT) readFloat(offset, width int) (float64, error) {
r := bytes.NewReader(sas.buf[offset : offset+width])
var x float64
switch width {
default:
return 0, fmt.Errorf("unknown float width")
case 8:
err := binary.Read(r, sas.ByteOrder, &x)
if err != nil {
return 0, err
}
}
return x, nil
}
// Read an integer of 1, 2, 4 or 8 byte width from the supplied bytes.
func (sas *SAS7BDAT) readIntFromBuffer(buf []byte, width int) (int, error) {
r := bytes.NewReader(buf[0:width])
switch width {
default:
return 0, fmt.Errorf("invalid integer width")
case 1:
var x int8
err := binary.Read(r, sas.ByteOrder, &x)
if err != nil {
return 0, err
}
return int(x), nil
case 2:
var x int16
err := binary.Read(r, sas.ByteOrder, &x)
if err != nil {
return 0, err
}
return int(x), nil
case 4:
var x int32
err := binary.Read(r, sas.ByteOrder, &x)
if err != nil {
return 0, err
}
return int(x), nil
case 8:
var x int64
err := binary.Read(r, sas.ByteOrder, &x)
if err != nil {
return 0, err
}
return int(x), nil
}
}
// Read an integer of 1, 2, 4 or 8 byte width from a given offset in
// the current page (or from the beginning of the file if no page has
// yet been read), then return it as an int.
func (sas *SAS7BDAT) readInt(offset, width int) (int, error) {
err := sas.readBytes(offset, width)
if err != nil {
return 0, err
}
x, err := sas.readIntFromBuffer(sas.buf[0:width], width)
if err != nil {
return 0, err
}
return x, nil
}
// Read returns up to num_rows rows of data from the SAS7BDAT file, as
// an array of Series objects. The Series data types are either
// float64 or string. If num_rows is negative, the remainder of the
// file is read. Returns (nil, io.EOF) when no rows remain.
//
// SAS strings variables have a fixed width and are right-padded with
// whitespace. The TrimRight field of the SAS7BDAT struct can be set
// to true to automatically trim this whitespace.
func (sas *SAS7BDAT) Read(num_rows int) ([]*Series, error) {
if num_rows < 0 {
num_rows = sas.rowCount - sas.currentRowInFileIndex
}
if sas.currentRowInFileIndex >= sas.rowCount {
return nil, io.EOF
}
sas.stringPool = make(map[uint64]string)
sas.stringPoolR = make(map[string]uint64)
// Reallocate each call so the results are backed by
// completely independent memory with each call to read (to
// support concurrent processing of results while continuing
// reading).
sas.bytechunk = make([][]byte, sas.properties.columnCount)
sas.stringchunk = make([][]uint64, sas.properties.columnCount)
for j := 0; j < sas.properties.columnCount; j++ {
switch sas.columnTypes[j] {
case SASNumericType:
sas.bytechunk[j] = make([]byte, 8*num_rows)
case SASStringType:
sas.stringchunk[j] = make([]uint64, num_rows)
default:
return nil, fmt.Errorf("unknown column type")
}
}
sas.currentRowInChunkIndex = 0
for i := 0; i < num_rows; i++ {
err, done := sas.readline()
if err != nil {
return nil, err
} else if done {
break
}
}
rslt := sas.chunkToSeries()
return rslt, nil
}
func (sas *SAS7BDAT) chunkToSeries() []*Series {
rslt := make([]*Series, sas.properties.columnCount)
n := sas.currentRowInChunkIndex
for j := 0; j < sas.properties.columnCount; j++ {
name := sas.columnNames[j]
miss := make([]bool, n)
switch sas.columnTypes[j] {
case SASNumericType:
vec := make([]float64, n)
buf := bytes.NewReader(sas.bytechunk[j][0 : 8*n])
if err := binary.Read(buf, sas.ByteOrder, &vec); err != nil {
panic(err)
}
for i := 0; i < n; i++ {
if math.IsNaN(vec[i]) {
miss[i] = true
}
}
if sas.ConvertDates && sas.ColumnFormats[j] == "MMDDYY" || sas.ColumnFormats[j] == "DATE" {
tvec := toDate(vec)
rslt[j], _ = NewSeries(name, tvec, miss)
} else if sas.ConvertDates && sas.ColumnFormats[j] == "DATETIME" {
tvec := toDateTime(vec)
rslt[j], _ = NewSeries(name, tvec, miss)
} else {
rslt[j], _ = NewSeries(name, vec, miss)
}
case SASStringType:
if sas.FactorizeStrings {
rslt[j], _ = NewSeries(name, sas.stringchunk[j], miss)
} else {
s := make([]string, n)
for i := 0; i < n; i++ {
s[i] = sas.stringPool[sas.stringchunk[j][i]]
}
rslt[j], _ = NewSeries(name, s, miss)
}
default:
panic("Unknown column type")
}
}
return rslt
}
func toDate(x []float64) []time.Time {
rslt := make([]time.Time, len(x))
base := time.Date(1960, 1, 1, 0, 0, 0, 0, time.UTC)
for j, v := range x {
rslt[j] = base.Add(time.Hour * time.Duration(24*v))
}
return rslt
}
func date_time(x float64) time.Time {
// Timestamp is epoch 01/01/1960
base := time.Date(1960, 1, 1, 0, 0, 0, 0, time.UTC)
return base.Add(time.Duration(x) * time.Second)
}
func toDateTime(x []float64) []time.Time {
rslt := make([]time.Time, len(x))
for j, v := range x {
rslt[j] = date_time(v)
}
return rslt
}
func (sas *SAS7BDAT) readline() (error, bool) {
bit_offset := sas.properties.pageBitOffset
subheaderPointerLength := sas.properties.subheaderPointerLength
// If there is no page, go to the end of the header and read a page.
if sas.cachedPage == nil {
if _, err := sas.file.Seek(int64(sas.properties.headerLength), 0); err != nil {
return err, false
}
err, done := sas.readNextPage()
if err != nil {
return err, false
} else if done {
return nil, true
}
}
// Loop until a data row is read
for {
if sas.currentPageType == page_meta_type {
if sas.currentRowOnPageIndex >= len(sas.currentPageDataSubheaderPointers) {
err, done := sas.readNextPage()
if err != nil {
return err, false
} else if done {
return nil, true
}
sas.currentRowOnPageIndex = 0
continue
}
current_subheader_pointer := sas.currentPageDataSubheaderPointers[sas.currentRowOnPageIndex]
err := sas.processByteArrayWithData(current_subheader_pointer.offset, current_subheader_pointer.length)
if err != nil {
return err, false
}
return nil, false
} else if sas.isPageMixType(sas.currentPageType) {
alignCorrection := (bit_offset + subheader_pointers_offset +
sas.currentPageSubheadersCount*subheaderPointerLength) % 8
if sas.NoAlignCorrection {
alignCorrection = 0
}
offset := bit_offset + subheader_pointers_offset +
sas.currentPageSubheadersCount*subheaderPointerLength +
sas.currentRowOnPageIndex*sas.properties.rowLength +
alignCorrection
err := sas.processByteArrayWithData(offset, sas.properties.rowLength)
if err != nil {
return err, false
}
if sas.currentRowOnPageIndex == min(sas.rowCount, sas.properties.mixPageRowCount) {
err, done := sas.readNextPage()
if err != nil {
return err, false
} else if done {
return nil, true
}
sas.currentRowOnPageIndex = 0
}
return nil, false
} else if sas.currentPageType == page_data_type {
err := sas.processByteArrayWithData(
bit_offset+subheader_pointers_offset+sas.currentRowOnPageIndex*sas.properties.rowLength,
sas.properties.rowLength)
if err != nil {
return err, false
}
if sas.currentRowOnPageIndex == sas.currentPageBlockCount {
err, done := sas.readNextPage()
if err != nil {
return err, false
} else if done {
return nil, true
}
sas.currentRowOnPageIndex = 0
}
return nil, false
} else {
return fmt.Errorf("unknown page type: %d", sas.currentPageType), false
}
}
}
func (sas *SAS7BDAT) readNextPage() (error, bool) {
sas.currentPageDataSubheaderPointers = make([]*subheaderPointer, 0, 10)
sas.cachedPage = make([]byte, sas.properties.pageLength)
n, err := sas.file.Read(sas.cachedPage)
if n <= 0 {
return nil, true
}
if err != nil && err != io.EOF {
return err, false
}
if len(sas.cachedPage) != sas.properties.pageLength {
return fmt.Errorf("failed to read complete page from file (read %d of %d bytes)",
len(sas.cachedPage), sas.properties.pageLength), false
}
if err := sas.readPageHeader(); err != nil {
return err, false
}
if sas.currentPageType == page_meta_type {
err = sas.processPageMetadata()
if err != nil {
return err, false
}
}
if checkPageType(sas.currentPageType) {
return sas.readNextPage()
}
return nil, false
}
func (sas *SAS7BDAT) getProperties() error {
prop := new(sasProperties)
sas.properties = prop
// Check magic number
err := sas.readBytes(0, 288)
if err != nil {
return err
}
sas.cachedPage = make([]byte, 288)
copy(sas.cachedPage, sas.buf[0:288])
if !bytes.Equal(sas.cachedPage[0:len(magic)], []byte(magic)) {
return fmt.Errorf("magic number mismatch (not a SAS file?)")
}
// Get alignment information
var align1, align2 int
err = sas.readBytes(align_1_offset, align_1_length)
if err != nil {
return err
}
prop.pageBitOffset = page_bit_offset_x86
prop.subheaderPointerLength = subheader_pointer_length_x86
prop.intLength = 4
if sas.buf[0] == u64_byte_checker_value {
align2 = align_2_value
sas.U64 = true
prop.intLength = 8
prop.pageBitOffset = page_bit_offset_x64
prop.subheaderPointerLength = subheader_pointer_length_x64
}
err = sas.readBytes(align_2_offset, align_2_length)
if err != nil {
return err
}
if string(sas.buf[0:align_2_length]) == string(align_1_checker_value) {
align1 = align_2_value
}
total_align := align1 + align2
// Get endianness information
err = sas.readBytes(endianness_offset, endianness_length)
if err != nil {
return err
}
if sas.buf[0] == '\x01' {
sas.ByteOrder = binary.LittleEndian
} else {
sas.ByteOrder = binary.BigEndian
}
// Get platform information
err = sas.readBytes(platform_offset, platform_length)
if err != nil {
return err
}
if sas.buf[0] == '1' {
sas.Platform = "unix"
} else if sas.buf[0] == '2' {
sas.Platform = "windows"
} else {
sas.Platform = "unknown"
}
// Try to get encoding information.
err = sas.readBytes(encoding_offset, encoding_length)
if err != nil {
return err
}
xb := int(sas.buf[0])
encoding, ok := encoding_names[xb]
if ok {
sas.FileEncoding = encoding
} else {
sas.FileEncoding = fmt.Sprintf("encoding code=%d", xb)
}
err = sas.readBytes(dataset_offset, dataset_length)
if err != nil {
return err
}
sas.Name = string(sas.buf[0:dataset_length])
err = sas.readBytes(file_type_offset, file_type_length)
if err != nil {
return err
}
sas.FileType = string(sas.buf[0:file_type_length])
x, err := sas.readFloat(date_created_offset+align1, date_created_length)
if err != nil {
return err
}
sas.DateCreated = date_time(x)
x, err = sas.readFloat(date_modified_offset+align1, date_modified_length)
if err != nil {
return err
}
sas.DateModified = date_time(x)
prop.headerLength, err = sas.readInt(header_size_offset+align1, header_size_length)
if err != nil {
return fmt.Errorf("Unable to read header size\n")
}
if sas.U64 && prop.headerLength != 8192 {
os.Stderr.WriteString(fmt.Sprintf("header length %d != 8192\n", prop.headerLength))
}
// Read the rest of the header into cachedPage.
v := make([]byte, prop.headerLength-288)
if _, err := sas.file.Read(v); err != nil {
return err
}
sas.cachedPage = append(sas.cachedPage, v...)
if len(sas.cachedPage) != prop.headerLength {
return fmt.Errorf("The SAS7BDAT file appears to be truncated.")