Implementation has unit name

This commit is contained in:
Gregory Eremin 2015-02-11 19:33:46 +07:00
parent 9e472cc9a3
commit 7f552e5c8a
4 changed files with 9 additions and 6 deletions

View File

@ -2,8 +2,9 @@ package impl
// Implementation of a echo unit // Implementation of a echo unit
// Comes handy when you need to mock a unit // Comes handy when you need to mock a unit
func Echo() *Impl { func Echo(name string) *Impl {
return &Impl{ return &Impl{
name: name,
actor: func(data []byte) (resp []byte, err error) { actor: func(data []byte) (resp []byte, err error) {
return data, nil return data, nil
}, },

View File

@ -2,14 +2,15 @@ package impl
type ( type (
Impl struct { Impl struct {
name string
actor func([]byte) ([]byte, error) actor func([]byte) ([]byte, error)
} }
) )
func New(name string) *Impl { func New(name, impl string) *Impl {
switch name { switch impl {
case "units.throttler.Throttler": case "units.throttler.Throttler":
return Throttler() return Throttler(name)
default: default:
return nil return nil
} }

View File

@ -1,7 +1,8 @@
package impl package impl
func Throttler() *Impl { func Throttler(name string) *Impl {
return &Impl{ return &Impl{
name: name,
actor: func(data []byte) (resp []byte, err error) { actor: func(data []byte) (resp []byte, err error) {
return data, nil return data, nil
}, },

View File

@ -25,7 +25,7 @@ func NewBank(config string) *Bank {
func (b *Bank) Unit(name string) Caller { func (b *Bank) Unit(name string) Caller {
if u, ok := b.units[name]; ok { if u, ok := b.units[name]; ok {
// Check for unit implementation and create a unit if there is none // Check for unit implementation and create a unit if there is none
if imp := impl.New(u.Impl); imp != nil { if imp := impl.New(u.Name, u.Impl); imp != nil {
return imp return imp
} else { } else {
return u return u