forked from minio/simdjson-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimdjson_amd64.go
213 lines (200 loc) · 5.12 KB
/
simdjson_amd64.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
//+build !appengine
//+build !noasm
//+build gc
/*
* MinIO Cloud Storage, (C) 2020 MinIO, 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,
* 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.
*/
package simdjson
import (
"bufio"
"bytes"
"errors"
"fmt"
"io"
"runtime"
"sync"
"github.com/klauspost/cpuid"
)
// SupportedCPU will return whether the CPU is supported.
func SupportedCPU() bool {
const want = cpuid.AVX2 | cpuid.CLMUL
return cpuid.CPU.Features&want == want
}
// Parse a block of data and return the parsed JSON.
// An optional block of previously parsed json can be supplied to reduce allocations.
func Parse(b []byte, reuse *ParsedJson) (*ParsedJson, error) {
if !SupportedCPU() {
return nil, errors.New("Host CPU does not meet target specs")
}
var pj *internalParsedJson
if reuse != nil && reuse.internal != nil {
pj = reuse.internal
pj.ParsedJson = *reuse
pj.ParsedJson.internal = nil
reuse = &ParsedJson{}
}
if pj == nil {
pj = &internalParsedJson{}
}
err := pj.parseMessage(b)
if err != nil {
return nil, err
}
parsed := &pj.ParsedJson
parsed.internal = pj
return parsed, nil
}
// ParseND will parse newline delimited JSON.
// An optional block of previously parsed json can be supplied to reduce allocations.
func ParseND(b []byte, reuse *ParsedJson) (*ParsedJson, error) {
if !SupportedCPU() {
return nil, errors.New("Host CPU does not meet target specs")
}
var pj internalParsedJson
if reuse != nil {
pj.ParsedJson = *reuse
}
b = bytes.TrimSpace(b)
err := pj.parseMessageNdjson(b)
if err != nil {
return nil, err
}
return &pj.ParsedJson, nil
}
// A Stream is used to stream back results.
// Either Error or Value will be set on returned results.
type Stream struct {
Value *ParsedJson
Error error
}
// ParseNDStream will parse a stream and return parsed JSON to the supplied result channel.
// The method will return immediately.
// Each element is contained within a root tag.
// <root>Element 1</root><root>Element 2</root>...
// Each result will contain an unspecified number of full elements,
// so it can be assumed that each result starts and ends with a root tag.
// The parser will keep parsing until writes to the result stream blocks.
// A stream is finished when a non-nil Error is returned.
// If the stream was parsed until the end the Error value will be io.EOF
// The channel will be closed after an error has been returned.
// An optional channel for returning consumed results can be provided.
// There is no guarantee that elements will be consumed, so always use
// non-blocking writes to the reuse channel.
func ParseNDStream(r io.Reader, res chan<- Stream, reuse <-chan *ParsedJson) {
if !SupportedCPU() {
go func() {
res <- Stream{
Value: nil,
Error: fmt.Errorf("Host CPU does not meet target specs"),
}
close(res)
}()
return
}
const tmpSize = 10 << 20
buf := bufio.NewReaderSize(r, tmpSize)
tmpPool := sync.Pool{New: func() interface{} {
return make([]byte, tmpSize+1024)
}}
conc := (runtime.GOMAXPROCS(0) + 1) / 2
queue := make(chan chan Stream, conc)
go func() {
// Forward finished items in order.
defer close(res)
end := false
for items := range queue {
i := <-items
select {
case res <- i:
default:
if !end {
// Block if we haven't returned an error
res <- i
}
}
if i.Error != nil {
end = true
}
}
}()
go func() {
defer close(queue)
for {
tmp := tmpPool.Get().([]byte)
tmp = tmp[:tmpSize]
n, err := buf.Read(tmp)
if err != nil && err != io.EOF {
queueError(queue, err)
return
}
tmp = tmp[:n]
// Read until Newline
if err != io.EOF {
b, err2 := buf.ReadBytes('\n')
if err2 != nil && err2 != io.EOF {
queueError(queue, err2)
return
}
tmp = append(tmp, b...)
// Forward io.EOF
err = err2
}
if len(tmp) > 0 {
result := make(chan Stream, 0)
queue <- result
go func() {
var pj internalParsedJson
select {
case v := <-reuse:
if cap(v.Message) >= tmpSize+1024 {
tmpPool.Put(v.Message)
v.Message = nil
}
pj.ParsedJson = *v
default:
}
parseErr := pj.parseMessageNdjson(tmp)
if parseErr != nil {
result <- Stream{
Value: nil,
Error: fmt.Errorf("parsing input: %w", parseErr),
}
return
}
parsed := pj.ParsedJson
result <- Stream{
Value: &parsed,
Error: nil,
}
}()
} else {
tmpPool.Put(tmp)
}
if err != nil {
// Should only really be io.EOF
queueError(queue, err)
return
}
}
}()
}
func queueError(queue chan chan Stream, err error) {
result := make(chan Stream, 0)
queue <- result
result <- Stream{
Value: nil,
Error: err,
}
}