forked from ngaut/unistore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslice_transform.go
94 lines (75 loc) · 2.54 KB
/
slice_transform.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
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
// This source code is licensed under both the GPLv2 (found in the
// COPYING file in the root directory) and Apache 2.0 License
// (found in the LICENSE.Apache file in the root directory).
//
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.
// Copyright 2019-present PingCAP, 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,
// See the License for the specific language governing permissions and
// limitations under the License.
package rocksdb
var (
_ SliceTransform = new(FixedPrefixSliceTransform)
_ SliceTransform = new(FixedSuffixSliceTransform)
_ SliceTransform = new(NoopSliceTransform)
)
type SliceTransform interface {
Transform([]byte) []byte
InDomain([]byte) bool
InRange([]byte) bool
}
type FixedPrefixSliceTransform struct {
prefixLen int
}
func NewFixedPrefixSliceTransform(prefixLen int) *FixedPrefixSliceTransform {
return &FixedPrefixSliceTransform{prefixLen: prefixLen}
}
func (st *FixedPrefixSliceTransform) Transform(key []byte) []byte {
return key[:st.prefixLen]
}
func (st *FixedPrefixSliceTransform) InDomain(key []byte) bool {
return len(key) >= st.prefixLen
}
func (st *FixedPrefixSliceTransform) InRange(key []byte) bool {
return true
}
type FixedSuffixSliceTransform struct {
suffixLen int
}
func NewFixedSuffixSliceTransform(suffixLen int) *FixedSuffixSliceTransform {
return &FixedSuffixSliceTransform{suffixLen: suffixLen}
}
func (st *FixedSuffixSliceTransform) Transform(key []byte) []byte {
mid := len(key) - st.suffixLen
return key[:mid]
}
func (st *FixedSuffixSliceTransform) InDomain(key []byte) bool {
return len(key) >= st.suffixLen
}
func (st *FixedSuffixSliceTransform) InRange(key []byte) bool {
return true
}
type NoopSliceTransform struct{}
func NewNoopSliceTransform() *NoopSliceTransform {
return &NoopSliceTransform{}
}
func (st *NoopSliceTransform) Transform(key []byte) []byte {
return key
}
func (st *NoopSliceTransform) InDomain(key []byte) bool {
return true
}
func (st *NoopSliceTransform) InRange(key []byte) bool {
return true
}