forked from ailabstw/go-pttai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.go
77 lines (62 loc) · 1.87 KB
/
index.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
// Copyright 2019 The go-pttai Authors
// This file is part of the go-pttai library.
//
// The go-pttai library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-pttai library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-pttai library. If not, see <http://www.gnu.org/licenses/>.
package pttdb
import (
"encoding/json"
"github.com/ailabstw/go-pttai/common/types"
)
/*
Index stores the information of index for ts-based records.
The 0th key is the key for the record.
The other keys are the secondary index-keys
*/
type Index struct {
Keys [][]byte `json:"K"`
UpdateTS types.Timestamp `json:"UT"`
}
func IndexGetKey(theBytes []byte) ([]byte, error) {
i := &Index{}
err := i.Unmarshal(theBytes)
if err != nil {
return nil, err
}
return i.Keys[0], nil
}
func IndexGetKeys(theBytes []byte) ([][]byte, error) {
i := &Index{}
err := i.Unmarshal(theBytes)
if err != nil {
return nil, err
}
return i.Keys, nil
}
func (i *Index) Marshal() ([]byte, error) {
return json.Marshal(i)
}
func (i *Index) Unmarshal(data []byte) error {
return json.Unmarshal(data, i)
}
type IndexWithStatus struct {
Keys [][]byte `json:"K"`
UpdateTS types.Timestamp `json:"UT"`
Status types.Status `json:"S"`
}
func (i *IndexWithStatus) Marshal() ([]byte, error) {
return json.Marshal(i)
}
func (i *IndexWithStatus) Unmarshal(data []byte) error {
return json.Unmarshal(data, i)
}