-
Notifications
You must be signed in to change notification settings - Fork 9
/
byteview.go
38 lines (30 loc) · 1.14 KB
/
byteview.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
// Copyright 2021 Peanutzhen. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package peanutcache
// byteview 模块定义读取缓存结果
// 实际上 byteview 只是简单的封装了byte slice,让其只读。
// 试想一下,直接返回slice,在golang里,一切参数按值传递。
// slice底层只是一个struct,记录着ptr/len/cap,相当于
// 复制了一份这三者的值。因此[]byte底层指向同一片内存区域
// 我们的缓存底层是存储在LRU的双向链表的Element里,因此
// 可以被恶意修改。因此需要将slice封装成只读的ByteView
type ByteView struct {
b []byte
}
func cloneBytes(bytes []byte) []byte {
copyBytes := make([]byte, len(bytes))
copy(copyBytes, bytes)
return copyBytes
}
// 注意到 ByteView 的方法接收者都是对象 这样是为了不影响调用对象本身
func (v ByteView) Len() int {
return len(v.b)
}
// ByteSlice 返回一份[]byte的副本(深拷贝)
func (v ByteView) ByteSlice() []byte {
return cloneBytes(v.b)
}
func (v ByteView) String() string {
return string(v.b)
}