forked from cloudwego/netpoll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nocopy_linkbuffer.go
858 lines (772 loc) · 20.6 KB
/
nocopy_linkbuffer.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
// Copyright 2021 CloudWeGo Authors
//
// 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.
//go:build !race
// +build !race
package netpoll
import (
"bytes"
"errors"
"fmt"
"reflect"
"sync"
"sync/atomic"
"unsafe"
"github.com/bytedance/gopkg/lang/mcache"
)
// BinaryInplaceThreshold marks the minimum value of the nocopy slice length,
// which is the threshold to use copy to minimize overhead.
const BinaryInplaceThreshold = block4k
// LinkBufferCap that can be modified marks the minimum value of each node of LinkBuffer.
var LinkBufferCap = block4k
// NewLinkBuffer size defines the initial capacity, but there is no readable data.
func NewLinkBuffer(size ...int) *LinkBuffer {
var buf = &LinkBuffer{}
var l int
if len(size) > 0 {
l = size[0]
}
var node = newLinkBufferNode(l)
buf.head, buf.read, buf.flush, buf.write = node, node, node, node
return buf
}
// LinkBuffer implements ReadWriter.
type LinkBuffer struct {
length int32
mallocSize int
head *linkBufferNode // release head
read *linkBufferNode // read head
flush *linkBufferNode // malloc head
write *linkBufferNode // malloc tail
caches [][]byte // buf allocated by Next when cross-package, which should be freed when release
}
var _ Reader = &LinkBuffer{}
var _ Writer = &LinkBuffer{}
// Len implements Reader.
func (b *LinkBuffer) Len() int {
l := atomic.LoadInt32(&b.length)
return int(l)
}
// IsEmpty check if this LinkBuffer is empty.
func (b *LinkBuffer) IsEmpty() (ok bool) {
return b.Len() == 0
}
// ------------------------------------------ implement zero-copy reader ------------------------------------------
// Next implements Reader.
func (b *LinkBuffer) Next(n int) (p []byte, err error) {
if n <= 0 {
return
}
// check whether enough or not.
if b.Len() < n {
return p, fmt.Errorf("link buffer next[%d] not enough", n)
}
b.recalLen(-n) // re-cal length
// single node
if b.isSingleNode(n) {
return b.read.Next(n), nil
}
// multiple nodes
var pIdx int
if block1k < n && n <= mallocMax {
p = malloc(n, n)
b.caches = append(b.caches, p)
} else {
p = make([]byte, n)
}
var l int
for ack := n; ack > 0; ack = ack - l {
l = b.read.Len()
if l >= ack {
pIdx += copy(p[pIdx:], b.read.Next(ack))
break
} else if l > 0 {
pIdx += copy(p[pIdx:], b.read.Next(l))
}
b.read = b.read.next
}
_ = pIdx
return p, nil
}
// Peek does not have an independent lifecycle, and there is no signal to
// indicate that Peek content can be released, so Peek will not introduce mcache for now.
func (b *LinkBuffer) Peek(n int) (p []byte, err error) {
if n <= 0 {
return
}
// check whether enough or not.
if b.Len() < n {
return p, fmt.Errorf("link buffer peek[%d] not enough", n)
}
// single node
if b.isSingleNode(n) {
return b.read.Peek(n), nil
}
// multiple nodes
var pIdx int
if block1k < n && n <= mallocMax {
p = malloc(n, n)
b.caches = append(b.caches, p)
} else {
p = make([]byte, n)
}
var node = b.read
var l int
for ack := n; ack > 0; ack = ack - l {
l = node.Len()
if l >= ack {
pIdx += copy(p[pIdx:], node.Peek(ack))
break
} else if l > 0 {
pIdx += copy(p[pIdx:], node.Peek(l))
}
node = node.next
}
_ = pIdx
return p, nil
}
// Skip implements Reader.
func (b *LinkBuffer) Skip(n int) (err error) {
if n <= 0 {
return
}
// check whether enough or not.
if b.Len() < n {
return fmt.Errorf("link buffer skip[%d] not enough", n)
}
b.recalLen(-n) // re-cal length
var l int
for ack := n; ack > 0; ack = ack - l {
l = b.read.Len()
if l >= ack {
b.read.off += ack
break
}
b.read = b.read.next
}
return nil
}
// Release the node that has been read.
// b.flush == nil indicates that this LinkBuffer is created by LinkBuffer.Slice
func (b *LinkBuffer) Release() (err error) {
for b.read != b.flush && b.read.Len() == 0 {
b.read = b.read.next
}
for b.head != b.read {
node := b.head
b.head = b.head.next
node.Release()
}
for i := range b.caches {
free(b.caches[i])
b.caches[i] = nil
}
b.caches = b.caches[:0]
return nil
}
// ReadString implements Reader.
func (b *LinkBuffer) ReadString(n int) (s string, err error) {
if n <= 0 {
return
}
// check whether enough or not.
if b.Len() < n {
return s, fmt.Errorf("link buffer read string[%d] not enough", n)
}
return unsafeSliceToString(b.readBinary(n)), nil
}
// ReadBinary implements Reader.
func (b *LinkBuffer) ReadBinary(n int) (p []byte, err error) {
if n <= 0 {
return
}
// check whether enough or not.
if b.Len() < n {
return p, fmt.Errorf("link buffer read binary[%d] not enough", n)
}
return b.readBinary(n), nil
}
// readBinary cannot use mcache, because the memory allocated by readBinary will not be recycled.
func (b *LinkBuffer) readBinary(n int) (p []byte) {
b.recalLen(-n) // re-cal length
// single node
p = make([]byte, n)
if b.isSingleNode(n) {
copy(p, b.read.Next(n))
return p
}
// multiple nodes
var pIdx int
var l int
for ack := n; ack > 0; ack = ack - l {
l = b.read.Len()
if l >= ack {
pIdx += copy(p[pIdx:], b.read.Next(ack))
break
} else if l > 0 {
pIdx += copy(p[pIdx:], b.read.Next(l))
}
b.read = b.read.next
}
_ = pIdx
return p
}
// ReadByte implements Reader.
func (b *LinkBuffer) ReadByte() (p byte, err error) {
// check whether enough or not.
if b.Len() < 1 {
return p, errors.New("link buffer read byte is empty")
}
b.recalLen(-1) // re-cal length
for {
if b.read.Len() >= 1 {
return b.read.Next(1)[0], nil
}
b.read = b.read.next
}
}
// Until returns a slice ends with the delim in the buffer.
func (b *LinkBuffer) Until(delim byte) (line []byte, err error) {
n := b.indexByte(delim, 0)
if n < 0 {
return nil, fmt.Errorf("link buffer read slice cannot find: '%b'", delim)
}
return b.Next(n + 1)
}
// Slice returns a new LinkBuffer, which is a zero-copy slice of this LinkBuffer,
// and only holds the ability of Reader.
//
// Slice will automatically execute a Release.
func (b *LinkBuffer) Slice(n int) (r Reader, err error) {
if n <= 0 {
return NewLinkBuffer(0), nil
}
// check whether enough or not.
if b.Len() < n {
return r, fmt.Errorf("link buffer readv[%d] not enough", n)
}
b.recalLen(-n) // re-cal length
// just use for range
p := &LinkBuffer{
length: int32(n),
}
defer func() {
// set to read-only
p.flush = p.flush.next
p.write = p.flush
}()
// single node
if b.isSingleNode(n) {
node := b.read.Refer(n)
p.head, p.read, p.flush = node, node, node
return p, nil
}
// multiple nodes
var l = b.read.Len()
node := b.read.Refer(l)
b.read = b.read.next
p.head, p.read, p.flush = node, node, node
for ack := n - l; ack > 0; ack = ack - l {
l = b.read.Len()
if l >= ack {
p.flush.next = b.read.Refer(ack)
p.flush = p.flush.next
break
} else if l > 0 {
p.flush.next = b.read.Refer(l)
p.flush = p.flush.next
}
b.read = b.read.next
}
return p, b.Release()
}
// ------------------------------------------ implement zero-copy writer ------------------------------------------
// Malloc pre-allocates memory, which is not readable, and becomes readable data after submission(e.g. Flush).
func (b *LinkBuffer) Malloc(n int) (buf []byte, err error) {
if n <= 0 {
return
}
b.mallocSize += n
b.growth(n)
return b.write.Malloc(n), nil
}
// MallocLen implements Writer.
func (b *LinkBuffer) MallocLen() (length int) {
return b.mallocSize
}
// MallocAck will keep the first n malloc bytes and discard the rest.
func (b *LinkBuffer) MallocAck(n int) (err error) {
if n < 0 {
return fmt.Errorf("link buffer malloc ack[%d] invalid", n)
}
b.mallocSize = n
b.write = b.flush
var l int
for ack := n; ack > 0; ack = ack - l {
l = b.write.malloc - len(b.write.buf)
if l >= ack {
b.write.malloc = ack + len(b.write.buf)
break
}
b.write = b.write.next
}
// discard the rest
for node := b.write.next; node != nil; node = node.next {
node.off, node.malloc, node.refer, node.buf = 0, 0, 1, node.buf[:0]
}
return nil
}
// Flush will submit all malloc data and must confirm that the allocated bytes have been correctly assigned.
func (b *LinkBuffer) Flush() (err error) {
b.mallocSize = 0
// FIXME: The tail node must not be larger than 8KB to prevent Out Of Memory.
if cap(b.write.buf) > pagesize {
b.write.next = newLinkBufferNode(0)
b.write = b.write.next
}
var n int
for node := b.flush; node != b.write.next; node = node.next {
delta := node.malloc - len(node.buf)
if delta > 0 {
n += delta
node.buf = node.buf[:node.malloc]
}
}
b.flush = b.write
// re-cal length
b.recalLen(n)
return nil
}
// Append implements Writer.
func (b *LinkBuffer) Append(w Writer) (err error) {
var buf, ok = w.(*LinkBuffer)
if !ok {
return errors.New("unsupported writer which is not LinkBuffer")
}
return b.WriteBuffer(buf)
}
// WriteBuffer will not submit(e.g. Flush) data to ensure normal use of MallocLen.
// you must actively submit before read the data.
// The argument buf can't be used after calling WriteBuffer. (set it to nil)
func (b *LinkBuffer) WriteBuffer(buf *LinkBuffer) (err error) {
if buf == nil {
return
}
bufLen, bufMallocLen := buf.Len(), buf.MallocLen()
if bufLen+bufMallocLen <= 0 {
return nil
}
b.write.next = buf.read
b.write = buf.write
// close buf, prevents reuse.
for buf.head != buf.read {
nd := buf.head
buf.head = buf.head.next
nd.Release()
}
for buf.write = buf.write.next; buf.write != nil; {
nd := buf.write
buf.write = buf.write.next
nd.Release()
}
buf.length, buf.mallocSize, buf.head, buf.read, buf.flush, buf.write = 0, 0, nil, nil, nil, nil
// DON'T MODIFY THE CODE BELOW UNLESS YOU KNOW WHAT YOU ARE DOING !
//
// You may encounter a chain of bugs and not be able to
// find out within a week that they are caused by modifications here.
//
// After release buf, continue to adjust b.
b.write.next = nil
if bufLen > 0 {
b.recalLen(bufLen)
}
b.mallocSize += bufMallocLen
return nil
}
// WriteString implements Writer.
func (b *LinkBuffer) WriteString(s string) (n int, err error) {
if len(s) == 0 {
return
}
buf := unsafeStringToSlice(s)
return b.WriteBinary(buf)
}
// WriteBinary implements Writer.
func (b *LinkBuffer) WriteBinary(p []byte) (n int, err error) {
n = len(p)
if n == 0 {
return
}
b.mallocSize += n
// TODO: Verify that all nocopy is possible under mcache.
if n > BinaryInplaceThreshold {
// expand buffer directly with nocopy
b.write.next = newLinkBufferNode(0)
b.write = b.write.next
b.write.buf, b.write.malloc = p[:0], n
return n, nil
}
// here will copy
b.growth(n)
malloc := b.write.malloc
b.write.malloc += n
return copy(b.write.buf[malloc:b.write.malloc], p), nil
}
// WriteDirect cannot be mixed with WriteString or WriteBinary functions.
func (b *LinkBuffer) WriteDirect(p []byte, remainLen int) error {
n := len(p)
if n == 0 || remainLen < 0 {
return nil
}
// find origin
origin := b.flush
malloc := b.mallocSize - remainLen // calculate the remaining malloc length
for t := origin.malloc - len(origin.buf); t <= malloc; t = origin.malloc - len(origin.buf) {
malloc -= t
origin = origin.next
}
// Add the buf length of the original node
malloc += len(origin.buf)
// Create dataNode and newNode and insert them into the chain
dataNode := newLinkBufferNode(0)
dataNode.buf, dataNode.malloc = p[:0], n
newNode := newLinkBufferNode(0)
newNode.off = malloc
newNode.buf = origin.buf[:malloc]
newNode.malloc = origin.malloc
newNode.readonly = false
origin.malloc = malloc
origin.readonly = true
// link nodes
dataNode.next = newNode
newNode.next = origin.next
origin.next = dataNode
// adjust b.write
for b.write.next != nil {
b.write = b.write.next
}
b.mallocSize += n
return nil
}
// WriteByte implements Writer.
func (b *LinkBuffer) WriteByte(p byte) (err error) {
dst, err := b.Malloc(1)
if len(dst) == 1 {
dst[0] = p
}
return err
}
// Close will recycle all buffer.
func (b *LinkBuffer) Close() (err error) {
atomic.StoreInt32(&b.length, 0)
b.mallocSize = 0
// just release all
for node := b.head; node != nil; {
nd := node
node = node.next
nd.Release()
}
// releaseLink(b.head, nil)
// b.head, b.read, b.flush, b.write = emptyNode, emptyNode, emptyNode, emptyNode
return nil
}
// ------------------------------------------ implement connection interface ------------------------------------------
// Bytes returns all the readable bytes of this LinkBuffer.
func (b *LinkBuffer) Bytes() []byte {
node, flush := b.read, b.flush
if node == flush {
return node.buf[node.off:]
}
n := 0
p := make([]byte, b.Len())
for ; node != flush; node = node.next {
if node.Len() > 0 {
n += copy(p[n:], node.buf[node.off:])
}
}
n += copy(p[n:], flush.buf[flush.off:])
return p[:n]
}
// GetBytes will read and fill the slice p as much as possible.
func (b *LinkBuffer) GetBytes(p [][]byte) (vs [][]byte) {
node, flush := b.read, b.flush
var i int
for i = 0; node != flush && i < len(p); node = node.next {
if node.Len() > 0 {
p[i] = node.buf[node.off:]
i++
}
}
if i < len(p) {
p[i] = flush.buf[flush.off:]
i++
}
return p[:i]
}
// book will grow and malloc buffer to hold data.
//
// bookSize: The size of data that can be read at once.
// maxSize: The maximum size of data between two Release(). In some cases, this can
// guarantee all data allocated in one node to reduce copy.
func (b *LinkBuffer) book(bookSize, maxSize int) (p []byte) {
l := cap(b.write.buf) - b.write.malloc
// grow linkBuffer
if l == 0 {
l = maxSize
b.write.next = newLinkBufferNode(maxSize)
b.write = b.write.next
}
if l > bookSize {
l = bookSize
}
return b.write.Malloc(l)
}
// bookAck will ack the first n malloc bytes and discard the rest.
//
// length: The size of data in inputBuffer. It is used to calculate the maxSize
func (b *LinkBuffer) bookAck(n int) (length int, err error) {
b.write.malloc = n + len(b.write.buf)
b.write.buf = b.write.buf[:b.write.malloc]
b.flush = b.write
// re-cal length
length = b.recalLen(n)
return length, nil
}
// calcMaxSize will calculate the data size between two Release()
func (b *LinkBuffer) calcMaxSize() (sum int) {
for node := b.head; node != b.read; node = node.next {
sum += len(node.buf)
}
sum += len(b.read.buf)
return sum
}
// indexByte returns the index of the first instance of c in buffer, or -1 if c is not present in buffer.
func (b *LinkBuffer) indexByte(c byte, skip int) int {
size := b.Len()
if skip >= size {
return -1
}
var unread, n, l int
node := b.read
for unread = size; unread > 0; unread -= n {
l = node.Len()
if l >= unread { // last node
n = unread
} else { // read full node
n = l
}
// skip current node
if skip >= n {
skip -= n
node = node.next
continue
}
i := bytes.IndexByte(node.Peek(n)[skip:], c)
if i >= 0 {
return (size - unread) + skip + i // past_read + skip_read + index
}
skip = 0 // no skip bytes
node = node.next
}
return -1
}
// resetTail will reset tail node or add an empty tail node to
// guarantee the tail node is not larger than 8KB
func (b *LinkBuffer) resetTail(maxSize int) {
// FIXME: The tail node must not be larger than 8KB to prevent Out Of Memory.
if maxSize <= pagesize {
b.write.Reset()
return
}
// set nil tail
b.write.next = newLinkBufferNode(0)
b.write = b.write.next
b.flush = b.write
return
}
// Reset resets the buffer to be empty,
// but it retains the underlying storage for use by future writes.
// Reset is the same as Truncate(0).
// func (b *LinkBuffer) Reset() {
// atomic.StoreInt32(&b.length, 0)
// b.mallocSize = 0
// releaseLink(b.head, nil)
// node := linkedPool.Get().(*linkBufferNode)
// b.head, b.read, b.flush, b.write = node, node, node, node
// }
// recalLen re-calculate the length
func (b *LinkBuffer) recalLen(delta int) (length int) {
return int(atomic.AddInt32(&b.length, int32(delta)))
}
func (node *linkBufferNode) Reset() {
if node.origin != nil || atomic.LoadInt32(&node.refer) != 1 {
return
}
node.off, node.malloc = 0, 0
node.buf = node.buf[:0]
return
}
// ------------------------------------------ implement link node ------------------------------------------
// newLinkBufferNode create or reuse linkBufferNode.
// Nodes with size <= 0 are marked as readonly, which means the node.buf is not allocated by this mcache.
func newLinkBufferNode(size int) *linkBufferNode {
var node = linkedPool.Get().(*linkBufferNode)
if size <= 0 {
node.readonly = true
return node
}
if size < LinkBufferCap {
size = LinkBufferCap
}
node.buf = malloc(0, size)
return node
}
var linkedPool = sync.Pool{
New: func() interface{} {
return &linkBufferNode{
refer: 1, // 自带 1 引用
}
},
}
type linkBufferNode struct {
buf []byte // buffer
off int // read-offset
malloc int // write-offset
refer int32 // reference count
readonly bool // read-only node, introduced by Refer, WriteString, WriteBinary, etc., default false
origin *linkBufferNode // the root node of the extends
next *linkBufferNode // the next node of the linked buffer
}
func (node *linkBufferNode) Len() (l int) {
return len(node.buf) - node.off
}
func (node *linkBufferNode) IsEmpty() (ok bool) {
return node.off == len(node.buf)
}
//
// func (node *linkBufferNode) Reset() (err error) {
// node.off, node.malloc, node.refer, node.next, node.origin = 0, 0, 1, nil, nil
// node.buf = node.buf[:0]
// return nil
// }
//
// func (node *linkBufferNode) Close() (err error) {
// node.off, node.malloc, node.refer = 0, 0, 0
// node.next, node.origin, node.buf = nil, nil, zeroSlice
// return nil
// }
func (node *linkBufferNode) Next(n int) (p []byte) {
off := node.off
node.off += n
return node.buf[off:node.off]
}
func (node *linkBufferNode) Peek(n int) (p []byte) {
return node.buf[node.off : node.off+n]
}
func (node *linkBufferNode) Malloc(n int) (buf []byte) {
malloc := node.malloc
node.malloc += n
return node.buf[malloc:node.malloc]
}
// Refer holds a reference count at the same time as Next, and releases the real buffer after Release.
// The node obtained by Refer is read-only.
func (node *linkBufferNode) Refer(n int) (p *linkBufferNode) {
p = newLinkBufferNode(0)
p.buf = node.Next(n)
if node.origin != nil {
p.origin = node.origin
} else {
p.origin = node
}
atomic.AddInt32(&p.origin.refer, 1)
return p
}
// Release consists of two parts:
// 1. reduce the reference count of itself and origin.
// 2. recycle the buf when the reference count is 0.
func (node *linkBufferNode) Release() (err error) {
if node.origin != nil {
node.origin.Release()
}
// release self
if atomic.AddInt32(&node.refer, -1) == 0 {
node.off, node.malloc, node.refer, node.origin, node.next = 0, 0, 1, nil, nil
// readonly nodes cannot recycle node.buf, other node.buf are recycled to mcache.
if node.readonly {
node.readonly = false
} else {
free(node.buf)
}
node.buf = nil
linkedPool.Put(node)
}
return nil
}
// ------------------------------------------ private function ------------------------------------------
// growth directly create the next node, when b.write is not enough.
func (b *LinkBuffer) growth(n int) {
if n <= 0 {
return
}
// Must skip read-only node.
for b.write.readonly || cap(b.write.buf)-b.write.malloc < n {
if b.write.next == nil {
b.write.next = newLinkBufferNode(n)
b.write = b.write.next
return
}
b.write = b.write.next
}
}
// isSingleNode determines whether reading needs to cross nodes.
// Must require b.Len() > 0
func (b *LinkBuffer) isSingleNode(readN int) (single bool) {
if readN <= 0 {
return true
}
l := b.read.Len()
for l == 0 {
b.read = b.read.next
l = b.read.Len()
}
return l >= readN
}
// zero-copy slice convert to string
func unsafeSliceToString(b []byte) string {
return *(*string)(unsafe.Pointer(&b))
}
// zero-copy slice convert to string
func unsafeStringToSlice(s string) (b []byte) {
p := unsafe.Pointer((*reflect.StringHeader)(unsafe.Pointer(&s)).Data)
hdr := (*reflect.SliceHeader)(unsafe.Pointer(&b))
hdr.Data = uintptr(p)
hdr.Cap = len(s)
hdr.Len = len(s)
return b
}
// mallocMax is 8MB
const mallocMax = block8k * block1k
// malloc limits the cap of the buffer from mcache.
func malloc(size, capacity int) []byte {
if capacity > mallocMax {
return make([]byte, size, capacity)
}
return mcache.Malloc(size, capacity)
}
// free limits the cap of the buffer from mcache.
func free(buf []byte) {
if cap(buf) > mallocMax {
return
}
mcache.Free(buf)
}