This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtranslator.go
188 lines (168 loc) · 6.19 KB
/
translator.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
// Copyright 2017 Pilosa Corp.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
// CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
package pdk
import (
"fmt"
"sync"
"github.com/pkg/errors"
)
// Translator describes the functionality for mapping arbitrary values in a
// given Pilosa field to row ids and back. Implementations should be threadsafe
// and generate ids monotonically.
type Translator interface {
Get(field string, id uint64) (interface{}, error)
GetID(field string, val interface{}) (uint64, error)
}
// FieldTranslator works like a Translator, but the methods don't take fields as
// arguments. Typically a Translator will include a FieldTranslator for each
// field.
type FieldTranslator interface {
Get(id uint64) (interface{}, error)
GetID(val interface{}) (uint64, error)
}
// MapTranslator is an in-memory implementation of Translator using maps.
type MapTranslator struct {
lock sync.RWMutex
fields map[string]*MapFieldTranslator
}
// NewMapTranslator creates a new MapTranslator.
func NewMapTranslator() *MapTranslator {
return &MapTranslator{
fields: make(map[string]*MapFieldTranslator),
}
}
func (m *MapTranslator) getFieldTranslator(field string) *MapFieldTranslator {
m.lock.RLock()
if mt, ok := m.fields[field]; ok {
m.lock.RUnlock()
return mt
}
m.lock.RUnlock()
m.lock.Lock()
defer m.lock.Unlock()
if mt, ok := m.fields[field]; ok {
return mt
}
m.fields[field] = NewMapFieldTranslator()
return m.fields[field]
}
// Get returns the value mapped to the given id in the given field.
func (m *MapTranslator) Get(field string, id uint64) (interface{}, error) {
val, err := m.getFieldTranslator(field).Get(id)
if err != nil {
return nil, errors.Wrapf(err, "field '%v', id %v", field, id)
}
return val, nil
}
// GetID returns the integer id associated with the given value in the given
// field. It allocates a new ID if the value is not found.
func (m *MapTranslator) GetID(field string, val interface{}) (id uint64, err error) {
return m.getFieldTranslator(field).GetID(val)
}
// MapFieldTranslator is an in-memory implementation of FieldTranslator using
// sync.Map and a slice.
type MapFieldTranslator struct {
m sync.Map
n *Nexter
l sync.RWMutex
s []interface{}
}
// NewMapFieldTranslator creates a new MapFieldTranslator.
func NewMapFieldTranslator() *MapFieldTranslator {
return &MapFieldTranslator{
n: NewNexter(),
s: make([]interface{}, 0),
}
}
// Get returns the value mapped to the given id.
func (m *MapFieldTranslator) Get(id uint64) (interface{}, error) {
m.l.RLock()
defer m.l.RUnlock()
if uint64(len(m.s)) < id {
return nil, fmt.Errorf("requested unknown id in MapTranslator")
}
return m.s[id], nil
}
// GetID returns the integer id associated with the given value. It allocates a
// new ID if the value is not found.
func (m *MapFieldTranslator) GetID(val interface{}) (id uint64, err error) {
// We make everything a string before mapping it. There are some subtle
// issues that can occur with the map because it stores type information as
// well as the actual value.
valMap, valSlice := fmt.Sprintf("%s", val), val
if idv, ok := m.m.Load(valMap); ok {
if id, ok = idv.(uint64); !ok {
return 0, errors.Errorf("Got non uint64 value back from MapTranslator: %v", idv)
}
return id, nil
}
m.l.Lock()
if idv, ok := m.m.Load(valMap); ok {
m.l.Unlock()
if id, ok = idv.(uint64); !ok {
return 0, errors.Errorf("Got non uint64 value back from MapTranslator: %v", idv)
}
return id, nil
}
nextid := m.n.Next()
m.s = append(m.s, valSlice)
if uint64(len(m.s)) != nextid+1 {
panic(fmt.Sprintf("unexpected length of slice, nextid: %d, len: %d", nextid, len(m.s)))
}
m.m.Store(valMap, nextid)
m.l.Unlock()
return nextid, nil
}
// NexterFrameTranslator satisfies the FieldTranslator interface, but simply
// allocates a new contiguous id every time GetID(val) is called. It does not
// store any mapping and Get(id) always returns an error. Pilosa requires column
// ids regardless of whether we actually require tracking what each individual
// column represents, and the NexterFrameTranslator is useful in the case that
// we don't.
type NexterFrameTranslator struct {
n *Nexter
}
// NewNexterFieldTranslator creates a new NexterFrameTranslator
func NewNexterFieldTranslator() *NexterFrameTranslator {
return &NexterFrameTranslator{
n: NewNexter(),
}
}
// GetID for the NexterFrameTranslator increments the internal id counter
// atomically and returns the next id - it ignores the val argument entirely.
func (n *NexterFrameTranslator) GetID(val interface{}) (id uint64, err error) {
return n.n.Next(), nil
}
// Get always returns nil, and a non-nil error for the NexterFrameTranslator.
func (n *NexterFrameTranslator) Get(id uint64) (interface{}, error) {
return nil, errors.New("the NexterFrameTranslator \"Get\" method should not be used - cannot map ids back to values")
}