-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathwriter.go
More file actions
1556 lines (1441 loc) · 45.2 KB
/
Copy pathwriter.go
File metadata and controls
1556 lines (1441 loc) · 45.2 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
// Copyright 2025 MinIO Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package minlz
import (
"bytes"
"crypto/rand"
"encoding/binary"
"errors"
"fmt"
"hash/crc32"
"io"
"math/bits"
"os"
"runtime"
"sync"
)
// NewWriter returns a new Writer that compresses as an MinLZ stream to w.
//
// Users must call Close to guarantee all data has been forwarded to
// the underlying io.Writer and that resources are released.
func NewWriter(w io.Writer, opts ...WriterOption) *Writer {
w2 := Writer{
blockSize: defaultBlockSize,
concurrency: runtime.GOMAXPROCS(0),
randSrc: rand.Reader,
level: LevelBalanced,
genIndex: true,
}
for _, opt := range opts {
if err := opt(&w2); err != nil {
w2.errState = err
return &w2
}
}
if w2.searchCfg != nil {
w2.searchCfg.baseTableSize = autoTableSize(w2.blockSize)
if w2.searchCfg.baseTableSize < searchTableMinLog2 {
w2.errState = fmt.Errorf("minlz: block size %d too small for search tables (min table size %d bits)",
w2.blockSize, 1<<searchTableMinLog2)
return &w2
}
w2.searchCfg.resolveDefaults()
}
if w2.sidecar != nil {
if w2.searchCfg == nil {
w2.errState = errors.New("minlz: WriterSidecar requires WriterSearchTable")
return &w2
}
w2.sidecarMaxBlock = w2.blockSize
}
w2.obufLen = obufHeaderLen + MaxEncodedLen(w2.blockSize)
if w2.searchCfg != nil {
// 0x46 is only emitted when strictly smaller than the equivalent
// 0x45, so a single reservation of cfg.maxChunkSize() covers both
// chunk forms — no headroom needed.
w2.searchMaxChunk = w2.searchCfg.maxChunkSize()
w2.obufLen += w2.searchMaxChunk
}
w2.paramsOK = true
// With search tables, hold one block plus its overlap so the search table
// for a streaming block can be built once the next block's bytes arrive.
ibufCap := w2.blockSize
if w2.searchCfg != nil {
ibufCap += w2.searchCfg.overlapBytes()
}
w2.ibuf = make([]byte, 0, ibufCap)
w2.buffers.New = func() any {
return make([]byte, w2.obufLen)
}
w2.Reset(w)
return &w2
}
// Writer is an io.Writer that can write Snappy-compressed bytes.
type Writer struct {
errMu sync.Mutex
errState error
// ibuf is a buffer for the incoming (uncompressed) bytes.
ibuf []byte
blockSize int
obufLen int
concurrency int
written int64
uncompWritten int64 // Bytes sent to compression
output chan chan result
buffers sync.Pool
pad int
writer io.Writer
randSrc io.Reader
writerWg sync.WaitGroup
index *Index
customEnc func(dst, src []byte) int
searchCfg *SearchTableConfig
searchInfoBuf []byte // cached 0x44 chunk
searchHdrBuf []byte // scratch 0x45 header (sync path)
searchMaxChunk int // max 0x45 chunk size, 0 if no search
// sidecar holds the optional sidecar destination. When non-nil, the
// 0x44/0x45/0x46 chunks and a 0x47 remote-block-reference per data
// block are written to sidecar; the main writer receives only the
// stream header, data chunks, EOF, and (optionally) the seek index.
sidecar io.Writer
// sidecarHeaderWritten tracks whether the sidecar stream header and
// 0x44 info chunk have been emitted.
sidecarHeaderWritten bool
// sidecarMaxBlock is the stream's max block size; used to compute the
// (max - actual) field encoded in 0x47 chunks. Derived from w.blockSize
// at first emit.
sidecarMaxBlock int
// wroteStreamHeader is whether we have written the stream header.
wroteStreamHeader bool
paramsOK bool
flushOnWrite bool
appendIndex bool
genIndex bool
level int8
}
type result struct {
b []byte
// pooled is the underlying w.buffers buffer that b is sliced from
// (b's cap may be reduced by front-padding for search chunks). The
// writer goroutine returns this to w.buffers after writing b. Nil for
// results whose b is not pool-owned (stream headers, search-info
// chunk, flush sentinels).
pooled []byte
// Uncompressed start offset
startOffset int64
// Sidecar fields (only populated when Writer.sidecar != nil).
// sidecarPre holds the 0x45/0x46 search-table chunk to write to the
// sidecar immediately before the corresponding 0x47 reference. It may
// be nil if no search table was produced for this block.
sidecarPre []byte
// uncompSize is the block's uncompressed size, used to encode the
// 0x47 chunk's (maxUncompressed - actualUncompressed) field. A value
// of 0 signals "no sidecar emission for this result" — for example
// when the result represents the stream header or a flush sentinel.
uncompSize int
}
var (
errClosed = errors.New("minlz: Writer is closed")
errNilWriter = errors.New("minlz: Writer has not been set")
)
// err returns the previously set error.
// If no error has been set it is set to err if not nil.
func (w *Writer) err(err error) error {
w.errMu.Lock()
errSet := w.errState
if errSet == nil && err != nil {
w.errState = err
errSet = err
}
w.errMu.Unlock()
return errSet
}
// Reset discards the writer's state and switches the Snappy writer to write to w.
// This permits reusing a Writer rather than allocating a new one.
func (w *Writer) Reset(writer io.Writer) {
if !w.paramsOK {
return
}
// Close previous writer, if any.
if w.output != nil {
close(w.output)
w.writerWg.Wait()
w.output = nil
}
if w.genIndex && w.index == nil {
w.index = &Index{}
}
w.errState = nil
w.ibuf = w.ibuf[:0]
w.wroteStreamHeader = false
w.searchInfoBuf = nil
w.written = 0
w.writer = writer
w.uncompWritten = 0
w.sidecarHeaderWritten = false
w.index.reset(w.blockSize)
// If we didn't get a writer, stop here.
if writer == nil {
w.err(errNilWriter)
return
}
// If no concurrency requested, don't spin up writer goroutine.
if w.concurrency == 1 {
return
}
toWrite := make(chan chan result, w.concurrency)
w.output = toWrite
w.writerWg.Add(1)
// Start a writer goroutine that will write all output in order.
go func() {
defer w.writerWg.Done()
// Get a queued write.
for write := range toWrite {
// Wait for the data to be available.
input := <-write
in := input.b
// Record the main offset where this block's data will land, BEFORE
// the main Write advances w.written. The sidecar's 0x47 chunk
// uses this offset.
mainBlockOffset := w.written
if len(in) > 0 {
if w.err(nil) == nil {
// Don't expose data from previous buffers.
toWrite := in[:len(in):len(in)]
// Write to output.
n, err := writer.Write(toWrite)
if err == nil && n != len(toWrite) {
err = io.ErrShortBuffer
}
_ = w.err(err)
w.err(w.index.add(w.written, input.startOffset))
w.written += int64(n)
}
}
// Sidecar emission for data blocks. uncompSize > 0 indicates the
// result represents a data block (not the stream header or a
// flush sentinel).
if w.sidecar != nil && input.uncompSize > 0 && w.err(nil) == nil {
if err := w.writeSidecarStartIfNeeded(); err == nil {
if len(input.sidecarPre) > 0 {
n, err := w.sidecar.Write(input.sidecarPre)
if err != nil {
_ = w.err(err)
} else if n != len(input.sidecarPre) {
_ = w.err(io.ErrShortWrite)
}
}
if w.err(nil) == nil {
_ = w.writeSidecarRemoteRef(mainBlockOffset, input.uncompSize)
}
}
}
if input.pooled != nil {
w.buffers.Put(input.pooled)
} else if cap(in) >= w.obufLen {
w.buffers.Put(in)
}
// close the incoming write request.
// This can be used for synchronizing flushes.
close(write)
}
}()
}
// Write satisfies the io.Writer interface.
func (w *Writer) Write(p []byte) (nRet int, errRet error) {
if err := w.err(nil); err != nil {
return 0, err
}
if w.flushOnWrite {
return w.write(p, true, true)
}
// If we exceed the input buffer size, start writing
for len(p) > (cap(w.ibuf)-len(w.ibuf)) && w.err(nil) == nil {
var n int
if len(w.ibuf) == 0 {
// Large write, empty buffer. Write directly from p to avoid a copy.
// write() retains a trailing block + overlap (deferred emission); the
// retained tail stays in p and is buffered into w.ibuf below.
n, _ = w.write(p, false, false)
} else {
n = copy(w.ibuf[len(w.ibuf):cap(w.ibuf)], p)
w.ibuf = w.ibuf[:len(w.ibuf)+n]
consumed, _ := w.write(w.ibuf, false, false)
// Slide the retained tail (held block + overlap) to the front.
w.ibuf = w.ibuf[:copy(w.ibuf, w.ibuf[consumed:])]
}
nRet += n
p = p[n:]
}
if err := w.err(nil); err != nil {
return nRet, err
}
// p should always be able to fit into w.ibuf now.
n := copy(w.ibuf[len(w.ibuf):cap(w.ibuf)], p)
w.ibuf = w.ibuf[:len(w.ibuf)+n]
nRet += n
return nRet, nil
}
// ReadFrom implements the io.ReaderFrom interface.
// Using this is typically more efficient since it avoids a memory copy.
// ReadFrom reads data from r until EOF or error.
// The return value n is the number of bytes read.
// Any error except io.EOF encountered during the read is also returned.
func (w *Writer) ReadFrom(r io.Reader) (n int64, err error) {
if err := w.err(nil); err != nil {
return 0, err
}
if len(w.ibuf) > 0 {
err := w.AsyncFlush()
if err != nil {
return 0, err
}
}
if br, ok := r.(byter); ok {
buf := br.Bytes()
if err := w.EncodeBuffer(buf); err != nil {
return 0, err
}
return int64(len(buf)), w.AsyncFlush()
}
for {
inbuf := w.buffers.Get().([]byte)[:w.blockSize+obufHeaderLen]
n2, err := io.ReadFull(r, inbuf[obufHeaderLen:])
if err != nil {
if err == io.ErrUnexpectedEOF {
err = io.EOF
}
if err != io.EOF {
return n, w.err(err)
}
}
if n2 == 0 {
break
}
n += int64(n2)
err2 := w.writeFull(inbuf[:n2+obufHeaderLen])
if w.err(err2) != nil {
break
}
if err != nil {
// We got EOF and wrote everything
break
}
}
return n, w.err(nil)
}
// AddUserChunk will add a (non)skippable chunk to the stream.
// The ID must be in the range 0x80 -> 0xfe - inclusive.
// The length of the block must be <= MaxUserChunkSize bytes.
func (w *Writer) AddUserChunk(id uint8, data []byte) (err error) {
if err := w.err(nil); err != nil {
return err
}
if id < MinUserSkippableChunk || id > ChunkTypePadding {
return fmt.Errorf("invalid skippable block id %x", id)
}
if len(data) > MaxUserChunkSize {
return fmt.Errorf("user chunk exceeds maximum size")
}
var header [4]byte
chunkLen := len(data)
header[0] = id
header[1] = uint8(chunkLen >> 0)
header[2] = uint8(chunkLen >> 8)
header[3] = uint8(chunkLen >> 16)
if w.concurrency == 1 {
write := func(b []byte) error {
n, err := w.writer.Write(b)
if err = w.err(err); err != nil {
return err
}
if n != len(b) {
return w.err(io.ErrShortWrite)
}
w.written += int64(n)
return w.err(nil)
}
if !w.wroteStreamHeader {
w.wroteStreamHeader = true
if err := write(makeHeader(w.blockSize)); err != nil {
return err
}
}
if w.uncompWritten > 0 {
if err = w.err(w.index.add(w.written, w.uncompWritten)); err != nil {
return err
}
}
if err := write(header[:]); err != nil {
return err
}
return write(data)
}
// Create output...
if !w.wroteStreamHeader {
w.wroteStreamHeader = true
hWriter := make(chan result)
w.output <- hWriter
hWriter <- result{startOffset: w.uncompWritten, b: makeHeader(w.blockSize)}
}
// Copy input.
inbuf := w.buffers.Get().([]byte)[:4]
copy(inbuf, header[:])
inbuf = append(inbuf, data...)
output := make(chan result, 1)
// Queue output.
w.output <- output
output <- result{startOffset: w.uncompWritten, b: inbuf}
return nil
}
// EncodeBuffer will add a buffer to the stream.
// This is the fastest way to encode a stream,
// but the input buffer cannot be written to by the caller
// until Flush or Close has been called when concurrency != 1.
//
// If you cannot control that, use the regular Write function.
//
// Note that input is not buffered.
// This means that each write will result in discrete blocks being created.
// For buffered writes, use the regular Write function.
func (w *Writer) EncodeBuffer(buf []byte) (err error) {
if err := w.err(nil); err != nil {
return err
}
if w.flushOnWrite {
_, err := w.write(buf, true, false)
return err
}
// Flush queued data first.
if len(w.ibuf) > 0 {
err := w.AsyncFlush()
if err != nil {
return err
}
}
if w.concurrency == 1 {
_, err := w.writeSync(buf, true, false)
return err
}
// Spawn goroutine and write block to output channel.
if !w.wroteStreamHeader {
w.wroteStreamHeader = true
hWriter := make(chan result)
w.output <- hWriter
hWriter <- result{startOffset: w.uncompWritten, b: makeHeader(w.blockSize)}
// In sidecar mode, the 0x44 info chunk goes on the sidecar
// (emitted lazily on first block); skip the inline emit.
if w.sidecar == nil && w.searchCfg != nil && w.searchInfoBuf == nil {
w.searchInfoBuf = w.searchCfg.marshalSearchInfoChunk()
infoOut := make(chan result)
w.output <- infoOut
infoOut <- result{startOffset: w.uncompWritten, b: w.searchInfoBuf}
}
}
for len(buf) > 0 {
// Cut input.
uncompressed := buf
if len(uncompressed) > w.blockSize {
uncompressed = uncompressed[:w.blockSize]
}
buf = buf[len(uncompressed):]
// Overlap for search table boundary patterns.
var overlap []byte
if w.searchCfg != nil && len(buf) > 0 {
overlap = buf[:min(len(buf), w.searchCfg.overlapBytes())]
}
// Get output buffer. Front is reserved for search chunk, data starts at searchMaxChunk.
smc := w.searchMaxChunk
obuf := w.buffers.Get().([]byte)[:smc+len(uncompressed)+obufHeaderLen]
output := make(chan result)
w.output <- output
res := result{
startOffset: w.uncompWritten,
}
w.uncompWritten += int64(len(uncompressed))
go func(searchCfg *SearchTableConfig, overlap []byte) {
dbuf := obuf[smc:]
checksum := crc(uncompressed)
chunkType := uint8(chunkTypeUncompressedData)
chunkLen := 4 + len(uncompressed)
n := binary.PutUvarint(dbuf[obufHeaderLen:], uint64(len(uncompressed)))
n2 := w.encodeBlock(dbuf[obufHeaderLen+n:], uncompressed)
if n2 > 0 {
chunkType = uint8(chunkTypeMinLZCompressedData)
chunkLen = 4 + n + n2
dbuf = dbuf[:obufHeaderLen+n+n2]
} else {
copy(dbuf[obufHeaderLen:], uncompressed)
}
dbuf[0] = chunkType
dbuf[1] = uint8(chunkLen >> 0)
dbuf[2] = uint8(chunkLen >> 8)
dbuf[3] = uint8(chunkLen >> 16)
dbuf[4] = uint8(checksum >> 0)
dbuf[5] = uint8(checksum >> 8)
dbuf[6] = uint8(checksum >> 16)
dbuf[7] = uint8(checksum >> 24)
// Only index compressible blocks.
searchLen := 0
if searchCfg != nil && n2 > 0 {
var stBuf []byte
if v := searchTablePool.Get(); v != nil {
stBuf = v.([]byte)
}
table, reductions := searchCfg.buildSearchTable(uncompressed, overlap, stBuf, searchCfg.shouldPack(w.concurrency))
if table != nil {
searchLen = len(w.appendSearchTableEitherChunk(obuf[:0], reductions, table))
}
searchTablePool.Put(table)
}
if w.sidecar != nil {
// Sidecar mode: data chunk stays in main; the search chunk
// (if any) plus a 0x47 ref go to the sidecar. We copy the
// search chunk out of obuf so obuf can be safely recycled.
if searchLen > 0 {
res.sidecarPre = append([]byte(nil), obuf[:searchLen]...)
}
res.uncompSize = len(uncompressed)
res.b = dbuf
} else if searchLen > 0 {
start := smc - searchLen
copy(obuf[start:], obuf[:searchLen])
res.b = obuf[start : smc+len(dbuf)]
} else {
res.b = dbuf
}
res.pooled = obuf
output <- res
}(w.searchCfg, overlap)
}
return nil
}
func (w *Writer) encodeBlock(obuf, uncompressed []byte) int {
if w.customEnc != nil {
if ret := w.customEnc(obuf, uncompressed); ret >= 0 {
return ret
}
}
var n int
switch w.level {
case LevelSuperFast:
n = encodeBlockFast(obuf, uncompressed)
case LevelFastest:
n = encodeBlock(obuf, uncompressed)
case LevelBalanced:
n = encodeBlockBetter(obuf, uncompressed)
case LevelSmallest:
n = encodeBlockBest(obuf, uncompressed, nil)
}
if debugValidateBlocks && n > 0 {
fmt.Println("debugValidateBlocks:", len(uncompressed), "->", n)
// debug.PrintStack()
src := uncompressed
block := obuf[:n]
dst := make([]byte, len(src))
ret := minLZDecode(dst, block)
if ret != 0 || !bytes.Equal(dst, src) {
n := matchLen(dst, src)
x := crc32.ChecksumIEEE(src)
name := fmt.Sprintf("errs/block-%08x-%d", x, ret)
fmt.Println(name, "mismatch at pos", n)
os.WriteFile(name+"input.bin", src, 0o644)
os.WriteFile(name+"decoded.bin", dst, 0o644)
os.WriteFile(name+"compressed.bin", block, 0o644)
}
}
return n
}
func (w *Writer) write(p []byte, final, omitTrailing bool) (nRet int, errRet error) {
if err := w.err(nil); err != nil {
return 0, err
}
if w.concurrency == 1 {
return w.writeSync(p, final, omitTrailing)
}
// Spawn goroutine and write block to output channel.
for len(p) > 0 {
if !final && w.searchCfg != nil && len(p) < w.blockSize+w.searchCfg.overlapBytes() {
break // retain a block + its overlap for the next call (deferred emission)
}
if !w.wroteStreamHeader {
w.wroteStreamHeader = true
hWriter := make(chan result)
w.output <- hWriter
hWriter <- result{startOffset: w.uncompWritten, b: makeHeader(w.blockSize)}
// In sidecar mode, the 0x44 info chunk goes on the sidecar
// (emitted lazily on first block); skip the inline emit.
if w.sidecar == nil && w.searchCfg != nil && w.searchInfoBuf == nil {
w.searchInfoBuf = w.searchCfg.marshalSearchInfoChunk()
infoOut := make(chan result)
w.output <- infoOut
infoOut <- result{startOffset: w.uncompWritten, b: w.searchInfoBuf}
}
}
var uncompressed []byte
if len(p) > w.blockSize {
uncompressed, p = p[:w.blockSize], p[w.blockSize:]
} else {
uncompressed, p = p, nil
}
// Overlap for search table from contiguous p (before copying to inbuf).
var overlap []byte
if w.searchCfg != nil && len(p) > 0 {
end := min(len(p), w.searchCfg.overlapBytes())
overlap = make([]byte, end)
copy(overlap, p[:end])
}
// Copy input.
// If the block is incompressible, this is used for the result.
smc := w.searchMaxChunk
inbuf := w.buffers.Get().([]byte)[:len(uncompressed)+obufHeaderLen]
obuf := w.buffers.Get().([]byte)[:w.obufLen]
copy(inbuf[obufHeaderLen:], uncompressed)
uncompressed = inbuf[obufHeaderLen:]
// A flushed/final block without full overlap omits its table (pass a nil
// config to the goroutine): a boundary-incomplete table could hide a
// straddling match, so emit none and let the searcher always scan it.
gcfg := w.searchCfg
if omitTrailing && w.searchCfg != nil && len(overlap) < w.searchCfg.overlapBytes() {
gcfg = nil
}
output := make(chan result)
w.output <- output
res := result{
startOffset: w.uncompWritten,
}
w.uncompWritten += int64(len(uncompressed))
go func(searchCfg *SearchTableConfig, overlap []byte) {
dbuf := obuf[smc:]
checksum := crc(uncompressed)
chunkType := uint8(chunkTypeUncompressedData)
chunkLen := 4 + len(uncompressed)
n := binary.PutUvarint(dbuf[obufHeaderLen:], uint64(len(uncompressed)))
n2 := w.encodeBlock(dbuf[obufHeaderLen+n:], uncompressed)
if n2 > 0 {
chunkType = uint8(chunkTypeMinLZCompressedData)
chunkLen = 4 + n + n2
dbuf = dbuf[:obufHeaderLen+n+n2]
} else {
obuf, inbuf = inbuf, obuf
dbuf = obuf
}
dbuf[0] = chunkType
dbuf[1] = uint8(chunkLen >> 0)
dbuf[2] = uint8(chunkLen >> 8)
dbuf[3] = uint8(chunkLen >> 16)
dbuf[4] = uint8(checksum >> 0)
dbuf[5] = uint8(checksum >> 8)
dbuf[6] = uint8(checksum >> 16)
dbuf[7] = uint8(checksum >> 24)
// Only index compressible blocks.
searchLen := 0
if searchCfg != nil && n2 > 0 {
var stBuf []byte
if v := searchTablePool.Get(); v != nil {
stBuf = v.([]byte)
}
table, reductions := searchCfg.buildSearchTable(uncompressed, overlap, stBuf, searchCfg.shouldPack(w.concurrency))
if table != nil {
// obuf still points to the pool buffer with smc space at front.
searchLen = len(w.appendSearchTableEitherChunk(inbuf[:0], reductions, table))
}
searchTablePool.Put(table)
}
if w.sidecar != nil {
// Sidecar mode: data chunk to main; search chunk + 0x47 to sidecar.
if searchLen > 0 {
res.sidecarPre = append([]byte(nil), inbuf[:searchLen]...)
}
res.uncompSize = len(uncompressed)
res.b = dbuf
res.pooled = obuf
} else if searchLen > 0 {
// Assemble [search chunk][data chunk] in inbuf. inbuf has capacity
// obufLen but was sliced to len(uncompressed)+obufHeaderLen, which is
// shorter than the smc-based offsets below for a small block — extend
// it to cap so the slices and the data copy aren't out of range.
inbuf = inbuf[:cap(inbuf)]
start := smc - searchLen
copy(inbuf[start:], inbuf[:searchLen])
copy(inbuf[smc:], dbuf)
res.b = inbuf[start : smc+len(dbuf)]
res.pooled = inbuf
obuf, inbuf = inbuf, obuf
} else {
res.b = dbuf
res.pooled = obuf
}
output <- res
w.buffers.Put(inbuf)
}(gcfg, overlap)
nRet += len(uncompressed)
}
return nRet, nil
}
// writeFull is a special version of write that will always write the full buffer.
// Data to be compressed should start at offset obufHeaderLen and fill the remainder of the buffer.
// The data will be written as a single block.
// The caller is not allowed to use inbuf after this function has been called.
func (w *Writer) writeFull(inbuf []byte) (errRet error) {
if err := w.err(nil); err != nil {
return err
}
if w.concurrency == 1 {
_, err := w.writeSync(inbuf[obufHeaderLen:], true, false)
return err
}
// Spawn goroutine and write block to output channel.
if !w.wroteStreamHeader {
w.wroteStreamHeader = true
hWriter := make(chan result)
w.output <- hWriter
hWriter <- result{startOffset: w.uncompWritten, b: makeHeader(w.blockSize)}
// In sidecar mode, the 0x44 info chunk goes on the sidecar
// (emitted lazily on first block); skip the inline emit.
if w.sidecar == nil && w.searchCfg != nil && w.searchInfoBuf == nil {
w.searchInfoBuf = w.searchCfg.marshalSearchInfoChunk()
infoOut := make(chan result)
w.output <- infoOut
infoOut <- result{startOffset: w.uncompWritten, b: w.searchInfoBuf}
}
}
// Get an output buffer.
smc := w.searchMaxChunk
obuf := w.buffers.Get().([]byte)[:w.obufLen]
uncompressed := inbuf[obufHeaderLen:]
output := make(chan result)
w.output <- output
res := result{
startOffset: w.uncompWritten,
}
w.uncompWritten += int64(len(uncompressed))
go func(searchCfg *SearchTableConfig) {
dbuf := obuf[smc:]
checksum := crc(uncompressed)
chunkType := uint8(chunkTypeUncompressedData)
chunkLen := 4 + len(uncompressed)
n := binary.PutUvarint(dbuf[obufHeaderLen:], uint64(len(uncompressed)))
n2 := w.encodeBlock(dbuf[obufHeaderLen+n:], uncompressed)
if n2 > 0 {
chunkType = uint8(chunkTypeMinLZCompressedData)
chunkLen = 4 + n + n2
dbuf = dbuf[:obufHeaderLen+n+n2]
} else {
obuf, inbuf = inbuf, obuf
dbuf = obuf
}
dbuf[0] = chunkType
dbuf[1] = uint8(chunkLen >> 0)
dbuf[2] = uint8(chunkLen >> 8)
dbuf[3] = uint8(chunkLen >> 16)
dbuf[4] = uint8(checksum >> 0)
dbuf[5] = uint8(checksum >> 8)
dbuf[6] = uint8(checksum >> 16)
dbuf[7] = uint8(checksum >> 24)
// Only index compressible blocks.
searchLen := 0
if searchCfg != nil && chunkType != chunkTypeUncompressedData {
var stBuf []byte
if v := searchTablePool.Get(); v != nil {
stBuf = v.([]byte)
}
table, reductions := searchCfg.buildSearchTable(uncompressed, nil, stBuf, searchCfg.shouldPack(w.concurrency))
if table != nil {
// Search chunk is in the original obuf (may have been swapped if incompressible,
// but we only reach here for compressible blocks so obuf is unchanged).
searchLen = len(w.appendSearchTableEitherChunk(obuf[:0], reductions, table))
}
searchTablePool.Put(table)
}
if w.sidecar != nil {
// Sidecar mode: data chunk to main; search chunk + 0x47 to sidecar.
if searchLen > 0 {
res.sidecarPre = append([]byte(nil), obuf[:searchLen]...)
}
res.uncompSize = len(uncompressed)
res.b = dbuf
} else if searchLen > 0 {
start := smc - searchLen
copy(obuf[start:], obuf[:searchLen])
res.b = obuf[start : smc+len(dbuf)]
} else {
res.b = dbuf
}
res.pooled = obuf
output <- res
w.buffers.Put(inbuf)
}(w.searchCfg)
return nil
}
func (w *Writer) writeSync(p []byte, final, omitTrailing bool) (nRet int, errRet error) {
if err := w.err(nil); err != nil {
return 0, err
}
if !w.wroteStreamHeader {
w.wroteStreamHeader = true
var n int
var err error
n, err = w.writer.Write(makeHeader(w.blockSize))
if err != nil {
return 0, w.err(err)
}
if n != len(magicChunk)+1 {
return 0, w.err(io.ErrShortWrite)
}
w.written += int64(n)
if err := w.writeSearchInfoSync(); err != nil {
return 0, err
}
}
for len(p) > 0 {
if !final && w.searchCfg != nil && len(p) < w.blockSize+w.searchCfg.overlapBytes() {
break // retain a block + its overlap for the next call (deferred emission)
}
var uncompressed []byte
if len(p) > w.blockSize {
uncompressed, p = p[:w.blockSize], p[w.blockSize:]
} else {
uncompressed, p = p, nil
}
obuf := w.buffers.Get().([]byte)[:w.obufLen]
checksum := crc(uncompressed)
chunkType := uint8(chunkTypeUncompressedData)
chunkLen := 4 + len(uncompressed)
n := binary.PutUvarint(obuf[obufHeaderLen:], uint64(len(uncompressed)))
n2 := w.encodeBlock(obuf[obufHeaderLen+n:], uncompressed)
if n2 > 0 {
chunkType = uint8(chunkTypeMinLZCompressedData)
chunkLen = 4 + n + n2
obuf = obuf[:obufHeaderLen+n+n2]
} else {
obuf = obuf[:8]
}
obuf[0] = chunkType
obuf[1] = uint8(chunkLen >> 0)
obuf[2] = uint8(chunkLen >> 8)
obuf[3] = uint8(chunkLen >> 16)
obuf[4] = uint8(checksum >> 0)
obuf[5] = uint8(checksum >> 8)
obuf[6] = uint8(checksum >> 16)
obuf[7] = uint8(checksum >> 24)
// In sidecar mode, emit the sidecar header lazily before the first
// block, then write the search table (if any) + 0x47 ref to sidecar.
// Otherwise, the search table is written inline before the data chunk.
mainBlockOffset := w.written
if w.sidecar != nil {
if err := w.writeSidecarStartIfNeeded(); err != nil {
return 0, err
}
// Omit the table for a flushed block without full overlap (its 0x47
// ref is still written); the searcher always scans tableless blocks.
if w.searchCfg != nil && n2 > 0 && !(omitTrailing && len(p) < w.searchCfg.overlapBytes()) {
overlap := p[:min(len(p), w.searchCfg.overlapBytes())]
if err := w.writeSearchTableSync(uncompressed, overlap); err != nil {
return 0, err
}
}
if err := w.writeSidecarRemoteRef(mainBlockOffset, len(uncompressed)); err != nil {
return 0, err
}
} else if w.searchCfg != nil && n2 > 0 && !(omitTrailing && len(p) < w.searchCfg.overlapBytes()) {
overlap := p[:min(len(p), w.searchCfg.overlapBytes())]
if err := w.writeSearchTableSync(uncompressed, overlap); err != nil {
return 0, err
}
}
n, err := w.writer.Write(obuf)
if err != nil {
return 0, w.err(err)
}
if n != len(obuf) {
return 0, w.err(io.ErrShortWrite)
}
w.err(w.index.add(w.written, w.uncompWritten))
w.written += int64(n)
w.uncompWritten += int64(len(uncompressed))
if chunkType == chunkTypeUncompressedData {
// Write uncompressed data.
n, err := w.writer.Write(uncompressed)
if err != nil {
return 0, w.err(err)
}
if n != len(uncompressed) {
return 0, w.err(io.ErrShortWrite)
}
w.written += int64(n)
}
w.buffers.Put(obuf)
// Queue final output.
nRet += len(uncompressed)
}
return nRet, nil
}
// AsyncFlush writes any buffered bytes to a block and starts compressing it.
// It does not wait for the output has been written as Flush() does.
func (w *Writer) AsyncFlush() error {
// A user-initiated flush emits the buffered block without forward overlap;
// omitTrailing makes it skip the (boundary-incomplete) search table so the
// block is always scanned. Close uses omitTrailing=false to keep the
// stream-final block's table.
return w.asyncFlush(true)
}
func (w *Writer) asyncFlush(omitTrailing bool) error {
if err := w.err(nil); err != nil {
return err
}
// Queue any data still in input buffer.
if len(w.ibuf) != 0 {
if !w.wroteStreamHeader {
_, err := w.writeSync(w.ibuf, true, omitTrailing)
w.ibuf = w.ibuf[:0]
return w.err(err)
} else {
_, err := w.write(w.ibuf, true, omitTrailing)
w.ibuf = w.ibuf[:0]
err = w.err(err)
if err != nil {
return err
}
}
}
return w.err(nil)
}
// Flush flushes the Writer to its underlying io.Writer.