-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from yandex/arcadia
PR from branch users/ligreen/pandora-ammo-provider1
- Loading branch information
Showing
6 changed files
with
216 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Copyright (c) 2017 Yandex LLC. All rights reserved. | ||
// Use of this source code is governed by a MPL 2.0 | ||
// license that can be found in the LICENSE file. | ||
// Author: Vladimir Skipor <skipor@yandex-team.ru> | ||
|
||
package ammo | ||
|
||
type Ammo struct { | ||
Tag string `json:"tag"` | ||
Call string `json:"call"` | ||
Metadata map[string]string `json:"metadata"` | ||
Payload map[string]interface{} `json:"payload"` | ||
id int | ||
isInvalid bool | ||
} | ||
|
||
func (a *Ammo) Reset(tag string, call string, metadata map[string]string, payload map[string]interface{}) { | ||
*a = Ammo{tag, call, metadata, payload, -1, false} | ||
} | ||
|
||
func (a *Ammo) SetID(id int) { | ||
a.id = id | ||
} | ||
|
||
func (a *Ammo) ID() int { | ||
return a.id | ||
} | ||
|
||
func (a *Ammo) Invalidate() { | ||
a.isInvalid = true | ||
} | ||
|
||
func (a *Ammo) IsInvalid() bool { | ||
return a.isInvalid | ||
} | ||
|
||
func (a *Ammo) IsValid() bool { | ||
return !a.isInvalid | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
// Copyright (c) 2017 Yandex LLC. All rights reserved. | ||
// Use of this source code is governed by a MPL 2.0 | ||
// license that can be found in the LICENSE file. | ||
// Author: Vladimir Skipor <skipor@yandex-team.ru> | ||
|
||
package grpcjson | ||
|
||
import ( | ||
"bufio" | ||
"context" | ||
|
||
"github.com/pkg/errors" | ||
"go.uber.org/zap" | ||
|
||
"github.com/yandex/pandora/components/grpc/ammo" | ||
|
||
jsoniter "github.com/json-iterator/go" | ||
"github.com/spf13/afero" | ||
) | ||
|
||
func NewProvider(fs afero.Fs, conf Config) *Provider { | ||
var p Provider | ||
if conf.Source.Path != "" { | ||
conf.File = conf.Source.Path | ||
} | ||
p = Provider{ | ||
Provider: ammo.NewProvider(fs, conf.File, p.start), | ||
Config: conf, | ||
} | ||
return &p | ||
} | ||
|
||
type Provider struct { | ||
ammo.Provider | ||
Config | ||
log *zap.Logger | ||
} | ||
|
||
type Source struct { | ||
Type string | ||
Path string | ||
} | ||
|
||
type Config struct { | ||
File string //`validate:"required"` | ||
// Limit limits total num of ammo. Unlimited if zero. | ||
Limit int `validate:"min=0"` | ||
// Passes limits ammo file passes. Unlimited if zero. | ||
Passes int `validate:"min=0"` | ||
ContinueOnError bool | ||
//Maximum number of byte in an ammo. Default is bufio.MaxScanTokenSize | ||
MaxAmmoSize int | ||
Source Source `config:"source"` | ||
} | ||
|
||
func (p *Provider) start(ctx context.Context, ammoFile afero.File) error { | ||
var ammoNum, passNum int | ||
for { | ||
passNum++ | ||
scanner := bufio.NewScanner(ammoFile) | ||
if p.Config.MaxAmmoSize != 0 { | ||
var buffer []byte | ||
scanner.Buffer(buffer, p.Config.MaxAmmoSize) | ||
} | ||
for line := 1; scanner.Scan() && (p.Limit == 0 || ammoNum < p.Limit); line++ { | ||
data := scanner.Bytes() | ||
a, err := decodeAmmo(data, p.Pool.Get().(*ammo.Ammo)) | ||
if err != nil { | ||
if p.Config.ContinueOnError { | ||
a.Invalidate() | ||
} else { | ||
return errors.Wrapf(err, "failed to decode ammo at line: %v; data: %q", line, data) | ||
} | ||
} | ||
ammoNum++ | ||
select { | ||
case p.Sink <- a: | ||
case <-ctx.Done(): | ||
return nil | ||
} | ||
} | ||
if p.Passes != 0 && passNum >= p.Passes { | ||
break | ||
} | ||
_, err := ammoFile.Seek(0, 0) | ||
if err != nil { | ||
return errors.Wrap(err, "Failed to seek ammo file") | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
func decodeAmmo(jsonDoc []byte, am *ammo.Ammo) (*ammo.Ammo, error) { | ||
var ammo ammo.Ammo | ||
err := jsoniter.Unmarshal(jsonDoc, &ammo) | ||
if err != nil { | ||
return am, errors.WithStack(err) | ||
} | ||
|
||
am.Reset(ammo.Tag, ammo.Call, ammo.Metadata, ammo.Payload) | ||
return am, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Copyright (c) 2017 Yandex LLC. All rights reserved. | ||
// Use of this source code is governed by a MPL 2.0 | ||
// license that can be found in the LICENSE file. | ||
// Author: Vladimir Skipor <skipor@yandex-team.ru> | ||
|
||
package ammo | ||
|
||
import ( | ||
"context" | ||
"sync" | ||
|
||
"github.com/pkg/errors" | ||
"github.com/spf13/afero" | ||
"go.uber.org/atomic" | ||
|
||
"github.com/yandex/pandora/core" | ||
) | ||
|
||
func NewProvider(fs afero.Fs, fileName string, start func(ctx context.Context, file afero.File) error) Provider { | ||
return Provider{ | ||
fs: fs, | ||
fileName: fileName, | ||
start: start, | ||
Sink: make(chan *Ammo, 128), | ||
Pool: sync.Pool{New: func() interface{} { return &Ammo{} }}, | ||
Close: func() {}, | ||
} | ||
} | ||
|
||
type Provider struct { | ||
fs afero.Fs | ||
fileName string | ||
start func(ctx context.Context, file afero.File) error | ||
Sink chan *Ammo | ||
Pool sync.Pool | ||
idCounter atomic.Int64 | ||
Close func() | ||
core.ProviderDeps | ||
} | ||
|
||
func (p *Provider) Acquire() (core.Ammo, bool) { | ||
ammo, ok := <-p.Sink | ||
if ok { | ||
ammo.SetID(int(p.idCounter.Inc() - 1)) | ||
} | ||
return ammo, ok | ||
} | ||
|
||
func (p *Provider) Release(a core.Ammo) { | ||
p.Pool.Put(a) | ||
} | ||
|
||
func (p *Provider) Run(ctx context.Context, deps core.ProviderDeps) error { | ||
defer p.Close() | ||
p.ProviderDeps = deps | ||
defer close(p.Sink) | ||
file, err := p.fs.Open(p.fileName) | ||
if err != nil { | ||
return errors.Wrap(err, "failed to open ammo file") | ||
} | ||
defer file.Close() | ||
return p.start(ctx, file) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ func main() { | |
coreimport.Import(fs) | ||
phttp.Import(fs) | ||
example.Import() | ||
grpc.Import() | ||
grpc.Import(fs) | ||
|
||
cli.Run() | ||
} |