Compare commits
	
		
			44 Commits
		
	
	
		
			v3.11.28
			...
			b6d2d459c5
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| b6d2d459c5 | |||
| c2d5dd4ffd | |||
|  | fa53fac085 | ||
| 8c060df5e3 | |||
| e1f8c62685 | |||
| 562b1ab9b7 | |||
|  | f3c877a37b | ||
| 0999b2ad78 | |||
| a365513177 | |||
|  | d1e3f3cab2 | ||
| ec94a09417 | |||
| 1728b88e06 | |||
| d3c31da9db | |||
| 59095681be | |||
| f11ceba225 | |||
| ffa01de78f | |||
| 816abc2bbc | |||
| f3f2a9b737 | |||
| 3f82cb3ba4 | |||
|  | 306b7a3962 | ||
| a8eda9d58d | |||
| 7e4477dcb4 | |||
|  | d846044fc6 | ||
| 29d956e74e | |||
| fcc4faff8a | |||
| 5df8f83f45 | |||
|  | 27fa6e9173 | ||
| bd55a35dc3 | |||
| 653bd386cc | |||
|  | 558c6f4d7c | ||
| d7dd6fbeb2 | |||
| a00cf2c8d9 | |||
|  | a3e8ab2492 | ||
| 06da500ef4 | |||
| 277f04ba19 | |||
|  | 470263ff5f | ||
| b8232e02be | |||
|  | f8c5e10c1d | ||
| 397e71f815 | |||
| 74e31d99f6 | |||
| f39de15d93 | |||
| d291102877 | |||
| 37ffbb18d8 | |||
| 9a85dead86 | 
| @@ -26,24 +26,24 @@ jobs: | |||||||
|  |  | ||||||
|     - name: test coverage |     - name: test coverage | ||||||
|       run: | |       run: | | ||||||
|         go test -v -cover ./... -coverprofile coverage.out -coverpkg ./... |         go test -v -cover ./... -covermode=count -coverprofile coverage.out -coverpkg ./... | ||||||
|         go tool cover -func coverage.out -o coverage.out |         go tool cover -func coverage.out -o coverage.out | ||||||
|  |  | ||||||
|     - name: coverage badge |     - name: coverage badge | ||||||
|       uses: tj-actions/coverage-badge-go@v1 |       uses: tj-actions/coverage-badge-go@v2 | ||||||
|       with: |       with: | ||||||
|         green: 80 |         green: 80 | ||||||
|         filename: coverage.out |         filename: coverage.out | ||||||
|  |  | ||||||
|     - uses: stefanzweifel/git-auto-commit-action@v4 |     - uses: stefanzweifel/git-auto-commit-action@v4 | ||||||
|       id: auto-commit-action |       name: autocommit | ||||||
|       with: |       with: | ||||||
|         commit_message: Apply Code Coverage Badge |         commit_message: Apply Code Coverage Badge | ||||||
|         skip_fetch: true |         skip_fetch: true | ||||||
|         skip_checkout: true |         skip_checkout: true | ||||||
|         file_pattern: ./README.md |         file_pattern: ./README.md | ||||||
|  |  | ||||||
|     - name: Push Changes |     - name: push | ||||||
|       if: steps.auto-commit-action.outputs.changes_detected == 'true' |       if: steps.auto-commit-action.outputs.changes_detected == 'true' | ||||||
|       uses: ad-m/github-push-action@master |       uses: ad-m/github-push-action@master | ||||||
|       with: |       with: | ||||||
|   | |||||||
							
								
								
									
										26
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										26
									
								
								README.md
									
									
									
									
									
								
							| @@ -1,5 +1,9 @@ | |||||||
| # Micro | # Micro | ||||||
|  |  | ||||||
|  | [](https://opensource.org/licenses/Apache-2.0) | ||||||
|  | [](https://pkg.go.dev/go.unistack.org/micro/v4?tab=overview) | ||||||
|  | [](https://git.unistack.org/unistack-org/micro/actions?query=workflow%3Abuild+branch%3Av4+event%3Apush) | ||||||
|  | [](https://goreportcard.com/report/go.unistack.org/micro/v4) | ||||||
|  |  | ||||||
| Micro is a standard library for microservices. | Micro is a standard library for microservices. | ||||||
|  |  | ||||||
| @@ -11,30 +15,20 @@ Micro provides the core requirements for distributed systems development includi | |||||||
|  |  | ||||||
| Micro abstracts away the details of distributed systems. Here are the main features. | Micro abstracts away the details of distributed systems. Here are the main features. | ||||||
|  |  | ||||||
| - **Authentication** - Auth is built in as a first class citizen. Authentication and authorization enable secure  |  | ||||||
| zero trust networking by providing every service an identity and certificates. This additionally includes rule  |  | ||||||
| based access control. |  | ||||||
|  |  | ||||||
| - **Dynamic Config** - Load and hot reload dynamic config from anywhere. The config interface provides a way to load application  | - **Dynamic Config** - Load and hot reload dynamic config from anywhere. The config interface provides a way to load application  | ||||||
| level config from any source such as env vars, file, etcd. You can merge the sources and even define fallbacks. | level config from any source such as env vars, cmdline, file, consul, vault... You can merge the sources and even define fallbacks. | ||||||
|  |  | ||||||
| - **Data Storage** - A simple data store interface to read, write and delete records. It includes support for memory, file and  | - **Data Storage** - A simple data store interface to read, write and delete records. It includes support for memory, file and  | ||||||
| CockroachDB by default. State and persistence becomes a core requirement beyond prototyping and Micro looks to build that into the framework. | s3. State and persistence becomes a core requirement beyond prototyping and Micro looks to build that into the framework. | ||||||
|  |  | ||||||
| - **Service Discovery** - Automatic service registration and name resolution. Service discovery is at the core of micro service  | - **Service Discovery** - Automatic service registration and name resolution. Service discovery is at the core of micro service  | ||||||
| development. When service A needs to speak to service B it needs the location of that service. | development. When service A needs to speak to service B it needs the location of that service. | ||||||
|  |  | ||||||
| - **Load Balancing** - Client side load balancing built on service discovery. Once we have the addresses of any number of instances  |  | ||||||
| of a service we now need a way to decide which node to route to. We use random hashed load balancing to provide even distribution  |  | ||||||
| across the services and retry a different node if there's a problem.  |  | ||||||
|  |  | ||||||
| - **Message Encoding** - Dynamic message encoding based on content-type. The client and server will use codecs along with content-type  | - **Message Encoding** - Dynamic message encoding based on content-type. The client and server will use codecs along with content-type  | ||||||
| to seamlessly encode and decode Go types for you. Any variety of messages could be encoded and sent from different clients. The client  | to seamlessly encode and decode Go types for you. Any variety of messages could be encoded and sent from different clients. The client  | ||||||
| and server handle this by default. | and server handle this by default. | ||||||
|  |  | ||||||
| - **Transport** - gRPC or http based request/response with support for bidirectional streaming. We provide an abstraction for synchronous communication. A request made to a service will be automatically resolved, load balanced, dialled and streamed. | - **Async Messaging** - Pub/Sub is built in as a first class citizen for asynchronous communication and event driven architectures. | ||||||
|  |  | ||||||
| - **Async Messaging** - PubSub is built in as a first class citizen for asynchronous communication and event driven architectures. |  | ||||||
| Event notifications are a core pattern in micro service development. | Event notifications are a core pattern in micro service development. | ||||||
|  |  | ||||||
| - **Synchronization** - Distributed systems are often built in an eventually consistent manner. Support for distributed locking and  | - **Synchronization** - Distributed systems are often built in an eventually consistent manner. Support for distributed locking and  | ||||||
| @@ -43,10 +37,6 @@ leadership are built in as a Sync interface. When using an eventually consistent | |||||||
| - **Pluggable Interfaces** - Micro makes use of Go interfaces for each system abstraction. Because of this these interfaces  | - **Pluggable Interfaces** - Micro makes use of Go interfaces for each system abstraction. Because of this these interfaces  | ||||||
| are pluggable and allows Micro to be runtime agnostic. | are pluggable and allows Micro to be runtime agnostic. | ||||||
|  |  | ||||||
| ## Getting Started |  | ||||||
|  |  | ||||||
| To be created. |  | ||||||
|  |  | ||||||
| ## License | ## License | ||||||
|  |  | ||||||
| Micro is Apache 2.0 licensed. | Micro is Apache 2.0 licensed. | ||||||
|   | |||||||
| @@ -6,8 +6,8 @@ import ( | |||||||
| 	"errors" | 	"errors" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // DefaultBroker default memory broker | // DefaultBroker default memory broker | ||||||
| @@ -18,6 +18,10 @@ var ( | |||||||
| 	ErrNotConnected = errors.New("broker not connected") | 	ErrNotConnected = errors.New("broker not connected") | ||||||
| 	// ErrDisconnected returns when broker disconnected | 	// ErrDisconnected returns when broker disconnected | ||||||
| 	ErrDisconnected = errors.New("broker disconnected") | 	ErrDisconnected = errors.New("broker disconnected") | ||||||
|  | 	// ErrInvalidMessage returns when invalid Message passed | ||||||
|  | 	ErrInvalidMessage = errors.New("invalid message") | ||||||
|  | 	// ErrInvalidHandler returns when subscriber passed to Subscribe | ||||||
|  | 	ErrInvalidHandler = errors.New("invalid handler, ony func(Message) error and func([]Message) error supported") | ||||||
| 	// DefaultGracefulTimeout | 	// DefaultGracefulTimeout | ||||||
| 	DefaultGracefulTimeout = 5 * time.Second | 	DefaultGracefulTimeout = 5 * time.Second | ||||||
| ) | ) | ||||||
| @@ -36,14 +40,12 @@ type Broker interface { | |||||||
| 	Connect(ctx context.Context) error | 	Connect(ctx context.Context) error | ||||||
| 	// Disconnect disconnect from broker | 	// Disconnect disconnect from broker | ||||||
| 	Disconnect(ctx context.Context) error | 	Disconnect(ctx context.Context) error | ||||||
|  | 	// NewMessage create new broker message to publish. | ||||||
|  | 	NewMessage(ctx context.Context, hdr metadata.Metadata, body interface{}, opts ...PublishOption) (Message, error) | ||||||
| 	// Publish message to broker topic | 	// Publish message to broker topic | ||||||
| 	Publish(ctx context.Context, topic string, msg *Message, opts ...PublishOption) error | 	Publish(ctx context.Context, topic string, messages ...Message) error | ||||||
| 	// Subscribe subscribes to topic message via handler | 	// Subscribe subscribes to topic message via handler | ||||||
| 	Subscribe(ctx context.Context, topic string, h Handler, opts ...SubscribeOption) (Subscriber, error) | 	Subscribe(ctx context.Context, topic string, handler interface{}, opts ...SubscribeOption) (Subscriber, error) | ||||||
| 	// BatchPublish messages to broker with multiple topics |  | ||||||
| 	BatchPublish(ctx context.Context, msgs []*Message, opts ...PublishOption) error |  | ||||||
| 	// BatchSubscribe subscribes to topic messages via handler |  | ||||||
| 	BatchSubscribe(ctx context.Context, topic string, h BatchHandler, opts ...SubscribeOption) (Subscriber, error) |  | ||||||
| 	// String type of broker | 	// String type of broker | ||||||
| 	String() string | 	String() string | ||||||
| 	// Live returns broker liveness | 	// Live returns broker liveness | ||||||
| @@ -55,72 +57,27 @@ type Broker interface { | |||||||
| } | } | ||||||
|  |  | ||||||
| type ( | type ( | ||||||
| 	FuncPublish        func(ctx context.Context, topic string, msg *Message, opts ...PublishOption) error | 	FuncPublish   func(ctx context.Context, topic string, messages ...Message) error | ||||||
| 	HookPublish   func(next FuncPublish) FuncPublish | 	HookPublish   func(next FuncPublish) FuncPublish | ||||||
| 	FuncBatchPublish   func(ctx context.Context, msgs []*Message, opts ...PublishOption) error | 	FuncSubscribe func(ctx context.Context, topic string, handler interface{}, opts ...SubscribeOption) (Subscriber, error) | ||||||
| 	HookBatchPublish   func(next FuncBatchPublish) FuncBatchPublish |  | ||||||
| 	FuncSubscribe      func(ctx context.Context, topic string, h Handler, opts ...SubscribeOption) (Subscriber, error) |  | ||||||
| 	HookSubscribe func(next FuncSubscribe) FuncSubscribe | 	HookSubscribe func(next FuncSubscribe) FuncSubscribe | ||||||
| 	FuncBatchSubscribe func(ctx context.Context, topic string, h BatchHandler, opts ...SubscribeOption) (Subscriber, error) |  | ||||||
| 	HookBatchSubscribe func(next FuncBatchSubscribe) FuncBatchSubscribe |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Handler is used to process messages via a subscription of a topic. | // Message is given to a subscription handler for processing | ||||||
| type Handler func(Event) error | type Message interface { | ||||||
|  | 	// Context for the message. | ||||||
| // Events contains multiple events |  | ||||||
| type Events []Event |  | ||||||
|  |  | ||||||
| // Ack try to ack all events and return |  | ||||||
| func (evs Events) Ack() error { |  | ||||||
| 	var err error |  | ||||||
| 	for _, ev := range evs { |  | ||||||
| 		if err = ev.Ack(); err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // SetError sets error on event |  | ||||||
| func (evs Events) SetError(err error) { |  | ||||||
| 	for _, ev := range evs { |  | ||||||
| 		ev.SetError(err) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // BatchHandler is used to process messages in batches via a subscription of a topic. |  | ||||||
| type BatchHandler func(Events) error |  | ||||||
|  |  | ||||||
| // Event is given to a subscription handler for processing |  | ||||||
| type Event interface { |  | ||||||
| 	// Context return context.Context for event |  | ||||||
| 	Context() context.Context | 	Context() context.Context | ||||||
| 	// Topic returns event topic | 	// Topic returns message destination topic. | ||||||
| 	Topic() string | 	Topic() string | ||||||
| 	// Message returns broker message | 	// Header returns message headers. | ||||||
| 	Message() *Message | 	Header() metadata.Metadata | ||||||
| 	// Ack acknowledge message | 	// Body returns broker message []byte slice | ||||||
|  | 	Body() []byte | ||||||
|  | 	// Unmarshal try to decode message body to dst. | ||||||
|  | 	// This is helper method that uses codec.Unmarshal. | ||||||
|  | 	Unmarshal(dst interface{}, opts ...codec.Option) error | ||||||
|  | 	// Ack acknowledge message if supported. | ||||||
| 	Ack() error | 	Ack() error | ||||||
| 	// Error returns message error (like decoding errors or some other) |  | ||||||
| 	Error() error |  | ||||||
| 	// SetError set event processing error |  | ||||||
| 	SetError(err error) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Message is used to transfer data |  | ||||||
| type Message struct { |  | ||||||
| 	// Header contains message metadata |  | ||||||
| 	Header metadata.Metadata |  | ||||||
| 	// Body contains message body |  | ||||||
| 	Body codec.RawMessage |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewMessage create broker message with topic filled |  | ||||||
| func NewMessage(topic string) *Message { |  | ||||||
| 	m := &Message{Header: metadata.New(2)} |  | ||||||
| 	m.Header.Set(metadata.HeaderTopic, topic) |  | ||||||
| 	return m |  | ||||||
| } | } | ||||||
|  |  | ||||||
| // Subscriber is a convenience return type for the Subscribe method | // Subscriber is a convenience return type for the Subscribe method | ||||||
|   | |||||||
| @@ -42,16 +42,6 @@ func SetSubscribeOption(k, v interface{}) SubscribeOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // SetOption returns a function to setup a context with given value |  | ||||||
| func SetOption(k, v interface{}) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		if o.Context == nil { |  | ||||||
| 			o.Context = context.Background() |  | ||||||
| 		} |  | ||||||
| 		o.Context = context.WithValue(o.Context, k, v) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // SetPublishOption returns a function to setup a context with given value | // SetPublishOption returns a function to setup a context with given value | ||||||
| func SetPublishOption(k, v interface{}) PublishOption { | func SetPublishOption(k, v interface{}) PublishOption { | ||||||
| 	return func(o *PublishOptions) { | 	return func(o *PublishOptions) { | ||||||
| @@ -61,3 +51,13 @@ func SetPublishOption(k, v interface{}) PublishOption { | |||||||
| 		o.Context = context.WithValue(o.Context, k, v) | 		o.Context = context.WithValue(o.Context, k, v) | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
|  | // SetOption returns a function to setup a context with given value | ||||||
|  | func SetOption(k, v interface{}) Option { | ||||||
|  | 	return func(o *Options) { | ||||||
|  | 		if o.Context == nil { | ||||||
|  | 			o.Context = context.Background() | ||||||
|  | 		} | ||||||
|  | 		o.Context = context.WithValue(o.Context, k, v) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|   | |||||||
| @@ -49,17 +49,6 @@ func TestSetSubscribeOption(t *testing.T) { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestSetPublishOption(t *testing.T) { |  | ||||||
| 	type key struct{} |  | ||||||
| 	o := SetPublishOption(key{}, "test") |  | ||||||
| 	opts := &PublishOptions{} |  | ||||||
| 	o(opts) |  | ||||||
|  |  | ||||||
| 	if v, ok := opts.Context.Value(key{}).(string); !ok || v == "" { |  | ||||||
| 		t.Fatal("SetPublishOption not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestSetOption(t *testing.T) { | func TestSetOption(t *testing.T) { | ||||||
| 	type key struct{} | 	type key struct{} | ||||||
| 	o := SetOption(key{}, "test") | 	o := SetOption(key{}, "test") | ||||||
|   | |||||||
| @@ -2,66 +2,104 @@ package broker | |||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
|  | 	"strings" | ||||||
| 	"sync" | 	"sync" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/options" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	maddr "go.unistack.org/micro/v3/util/addr" | 	"go.unistack.org/micro/v4/options" | ||||||
| 	"go.unistack.org/micro/v3/util/id" | 	maddr "go.unistack.org/micro/v4/util/addr" | ||||||
| 	mnet "go.unistack.org/micro/v3/util/net" | 	"go.unistack.org/micro/v4/util/id" | ||||||
| 	"go.unistack.org/micro/v3/util/rand" | 	mnet "go.unistack.org/micro/v4/util/net" | ||||||
|  | 	"go.unistack.org/micro/v4/util/rand" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type memoryBroker struct { | type Broker struct { | ||||||
| 	funcPublish   broker.FuncPublish | 	funcPublish   broker.FuncPublish | ||||||
| 	funcBatchPublish   broker.FuncBatchPublish |  | ||||||
| 	funcSubscribe broker.FuncSubscribe | 	funcSubscribe broker.FuncSubscribe | ||||||
| 	funcBatchSubscribe broker.FuncBatchSubscribe | 	subscribers   map[string][]*Subscriber | ||||||
| 	subscribers        map[string][]*memorySubscriber |  | ||||||
| 	addr          string | 	addr          string | ||||||
| 	opts          broker.Options | 	opts          broker.Options | ||||||
| 	sync.RWMutex | 	sync.RWMutex | ||||||
| 	connected bool | 	connected bool | ||||||
| } | } | ||||||
|  |  | ||||||
| type memoryEvent struct { | type memoryMessage struct { | ||||||
| 	err     error | 	c     codec.Codec | ||||||
| 	message interface{} |  | ||||||
| 	topic string | 	topic string | ||||||
| 	opts    broker.Options | 	ctx   context.Context | ||||||
|  | 	body  []byte | ||||||
|  | 	hdr   metadata.Metadata | ||||||
|  | 	opts  broker.PublishOptions | ||||||
| } | } | ||||||
|  |  | ||||||
| type memorySubscriber struct { | func (m *memoryMessage) Ack() error { | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *memoryMessage) Body() []byte { | ||||||
|  | 	return m.body | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *memoryMessage) Header() metadata.Metadata { | ||||||
|  | 	return m.hdr | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *memoryMessage) Context() context.Context { | ||||||
|  | 	return m.ctx | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *memoryMessage) Topic() string { | ||||||
|  | 	return "" | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *memoryMessage) Unmarshal(dst interface{}, opts ...codec.Option) error { | ||||||
|  | 	return m.c.Unmarshal(m.body, dst) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type Subscriber struct { | ||||||
| 	ctx     context.Context | 	ctx     context.Context | ||||||
| 	exit    chan bool | 	exit    chan bool | ||||||
| 	handler      broker.Handler | 	handler interface{} | ||||||
| 	batchhandler broker.BatchHandler |  | ||||||
| 	id      string | 	id      string | ||||||
| 	topic   string | 	topic   string | ||||||
| 	opts    broker.SubscribeOptions | 	opts    broker.SubscribeOptions | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Options() broker.Options { | func (b *Broker) newCodec(ct string) (codec.Codec, error) { | ||||||
| 	return m.opts | 	if idx := strings.IndexRune(ct, ';'); idx >= 0 { | ||||||
|  | 		ct = ct[:idx] | ||||||
|  | 	} | ||||||
|  | 	b.RLock() | ||||||
|  | 	c, ok := b.opts.Codecs[ct] | ||||||
|  | 	b.RUnlock() | ||||||
|  | 	if ok { | ||||||
|  | 		return c, nil | ||||||
|  | 	} | ||||||
|  | 	return nil, codec.ErrUnknownContentType | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Address() string { | func (b *Broker) Options() broker.Options { | ||||||
| 	return m.addr | 	return b.opts | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Connect(ctx context.Context) error { | func (b *Broker) Address() string { | ||||||
|  | 	return b.addr | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (b *Broker) Connect(ctx context.Context) error { | ||||||
| 	select { | 	select { | ||||||
| 	case <-ctx.Done(): | 	case <-ctx.Done(): | ||||||
| 		return ctx.Err() | 		return ctx.Err() | ||||||
| 	default: | 	default: | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	m.Lock() | 	b.Lock() | ||||||
| 	defer m.Unlock() | 	defer b.Unlock() | ||||||
|  |  | ||||||
| 	if m.connected { | 	if b.connected { | ||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| @@ -75,156 +113,128 @@ func (m *memoryBroker) Connect(ctx context.Context) error { | |||||||
| 	// set addr with port | 	// set addr with port | ||||||
| 	addr = mnet.HostPort(addr, 10000+i) | 	addr = mnet.HostPort(addr, 10000+i) | ||||||
|  |  | ||||||
| 	m.addr = addr | 	b.addr = addr | ||||||
| 	m.connected = true | 	b.connected = true | ||||||
|  |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Disconnect(ctx context.Context) error { | func (b *Broker) Disconnect(ctx context.Context) error { | ||||||
| 	select { | 	select { | ||||||
| 	case <-ctx.Done(): | 	case <-ctx.Done(): | ||||||
| 		return ctx.Err() | 		return ctx.Err() | ||||||
| 	default: | 	default: | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	m.Lock() | 	b.Lock() | ||||||
| 	defer m.Unlock() | 	defer b.Unlock() | ||||||
|  |  | ||||||
| 	if !m.connected { | 	if !b.connected { | ||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	m.connected = false | 	b.connected = false | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Init(opts ...broker.Option) error { | func (b *Broker) Init(opts ...broker.Option) error { | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| 		o(&m.opts) | 		o(&b.opts) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	m.funcPublish = m.fnPublish | 	b.funcPublish = b.fnPublish | ||||||
| 	m.funcBatchPublish = m.fnBatchPublish | 	b.funcSubscribe = b.fnSubscribe | ||||||
| 	m.funcSubscribe = m.fnSubscribe |  | ||||||
| 	m.funcBatchSubscribe = m.fnBatchSubscribe |  | ||||||
|  |  | ||||||
| 	m.opts.Hooks.EachPrev(func(hook options.Hook) { | 	b.opts.Hooks.EachPrev(func(hook options.Hook) { | ||||||
| 		switch h := hook.(type) { | 		switch h := hook.(type) { | ||||||
| 		case broker.HookPublish: | 		case broker.HookPublish: | ||||||
| 			m.funcPublish = h(m.funcPublish) | 			b.funcPublish = h(b.funcPublish) | ||||||
| 		case broker.HookBatchPublish: |  | ||||||
| 			m.funcBatchPublish = h(m.funcBatchPublish) |  | ||||||
| 		case broker.HookSubscribe: | 		case broker.HookSubscribe: | ||||||
| 			m.funcSubscribe = h(m.funcSubscribe) | 			b.funcSubscribe = h(b.funcSubscribe) | ||||||
| 		case broker.HookBatchSubscribe: |  | ||||||
| 			m.funcBatchSubscribe = h(m.funcBatchSubscribe) |  | ||||||
| 		} | 		} | ||||||
| 	}) | 	}) | ||||||
|  |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Publish(ctx context.Context, topic string, msg *broker.Message, opts ...broker.PublishOption) error { | func (b *Broker) NewMessage(ctx context.Context, hdr metadata.Metadata, body interface{}, opts ...broker.PublishOption) (broker.Message, error) { | ||||||
| 	return m.funcPublish(ctx, topic, msg, opts...) | 	options := broker.NewPublishOptions(opts...) | ||||||
|  | 	m := &memoryMessage{ctx: ctx, hdr: hdr, opts: options} | ||||||
|  | 	c, err := b.newCodec(m.opts.ContentType) | ||||||
|  | 	if err == nil { | ||||||
|  | 		m.body, err = c.Marshal(body) | ||||||
|  | 	} | ||||||
|  | 	if err != nil { | ||||||
|  | 		return nil, err | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	return m, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) fnPublish(ctx context.Context, topic string, msg *broker.Message, opts ...broker.PublishOption) error { | func (b *Broker) Publish(ctx context.Context, topic string, messages ...broker.Message) error { | ||||||
| 	msg.Header.Set(metadata.HeaderTopic, topic) | 	return b.funcPublish(ctx, topic, messages...) | ||||||
| 	return m.publish(ctx, []*broker.Message{msg}, opts...) |  | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) BatchPublish(ctx context.Context, msgs []*broker.Message, opts ...broker.PublishOption) error { | func (b *Broker) fnPublish(ctx context.Context, topic string, messages ...broker.Message) error { | ||||||
| 	return m.funcBatchPublish(ctx, msgs, opts...) | 	return b.publish(ctx, topic, messages...) | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) fnBatchPublish(ctx context.Context, msgs []*broker.Message, opts ...broker.PublishOption) error { | func (b *Broker) publish(ctx context.Context, topic string, messages ...broker.Message) error { | ||||||
| 	return m.publish(ctx, msgs, opts...) | 	b.RLock() | ||||||
| } | 	if !b.connected { | ||||||
|  | 		b.RUnlock() | ||||||
| func (m *memoryBroker) publish(ctx context.Context, msgs []*broker.Message, opts ...broker.PublishOption) error { |  | ||||||
| 	m.RLock() |  | ||||||
| 	if !m.connected { |  | ||||||
| 		m.RUnlock() |  | ||||||
| 		return broker.ErrNotConnected | 		return broker.ErrNotConnected | ||||||
| 	} | 	} | ||||||
| 	m.RUnlock() | 	b.RUnlock() | ||||||
|  |  | ||||||
| 	var err error |  | ||||||
|  |  | ||||||
| 	select { | 	select { | ||||||
| 	case <-ctx.Done(): | 	case <-ctx.Done(): | ||||||
| 		return ctx.Err() | 		return ctx.Err() | ||||||
| 	default: | 	default: | ||||||
| 		options := broker.NewPublishOptions(opts...) |  | ||||||
|  |  | ||||||
| 		msgTopicMap := make(map[string]broker.Events) |  | ||||||
| 		for _, v := range msgs { |  | ||||||
| 			p := &memoryEvent{opts: m.opts} |  | ||||||
|  |  | ||||||
| 			if m.opts.Codec == nil || options.BodyOnly { |  | ||||||
| 				p.topic, _ = v.Header.Get(metadata.HeaderTopic) |  | ||||||
| 				p.message = v.Body |  | ||||||
| 			} else { |  | ||||||
| 				p.topic, _ = v.Header.Get(metadata.HeaderTopic) |  | ||||||
| 				p.message, err = m.opts.Codec.Marshal(v) |  | ||||||
| 				if err != nil { |  | ||||||
| 					return err |  | ||||||
| 				} |  | ||||||
| 			} |  | ||||||
| 			msgTopicMap[p.topic] = append(msgTopicMap[p.topic], p) |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 		beh := m.opts.BatchErrorHandler | 	b.RLock() | ||||||
| 		eh := m.opts.ErrorHandler | 	subs, ok := b.subscribers[topic] | ||||||
|  | 	b.RUnlock() | ||||||
| 		for t, ms := range msgTopicMap { |  | ||||||
| 			m.RLock() |  | ||||||
| 			subs, ok := m.subscribers[t] |  | ||||||
| 			m.RUnlock() |  | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 				continue | 		return nil | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|  | 	var err error | ||||||
|  |  | ||||||
| 	for _, sub := range subs { | 	for _, sub := range subs { | ||||||
| 				if sub.opts.BatchErrorHandler != nil { | 		switch s := sub.handler.(type) { | ||||||
| 					beh = sub.opts.BatchErrorHandler | 		default: | ||||||
|  | 			if b.opts.Logger.V(logger.ErrorLevel) { | ||||||
|  | 				b.opts.Logger.Error(ctx, "broker  handler error", broker.ErrInvalidHandler) | ||||||
| 			} | 			} | ||||||
| 				if sub.opts.ErrorHandler != nil { | 		case func(broker.Message) error: | ||||||
| 					eh = sub.opts.ErrorHandler | 			for _, message := range messages { | ||||||
| 				} | 				msg, ok := message.(*memoryMessage) | ||||||
|  | 				if !ok { | ||||||
| 				switch { | 					if b.opts.Logger.V(logger.ErrorLevel) { | ||||||
| 				// batch processing | 						b.opts.Logger.Error(ctx, "broker handler error", broker.ErrInvalidMessage) | ||||||
| 				case sub.batchhandler != nil: |  | ||||||
| 					if err = sub.batchhandler(ms); err != nil { |  | ||||||
| 						ms.SetError(err) |  | ||||||
| 						if beh != nil { |  | ||||||
| 							_ = beh(ms) |  | ||||||
| 						} else if m.opts.Logger.V(logger.ErrorLevel) { |  | ||||||
| 							m.opts.Logger.Error(m.opts.Context, err.Error()) |  | ||||||
| 						} |  | ||||||
| 					} else if sub.opts.AutoAck { |  | ||||||
| 						if err = ms.Ack(); err != nil { |  | ||||||
| 							m.opts.Logger.Error(m.opts.Context, "broker ack error", err) |  | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
| 					// single processing | 				msg.topic = topic | ||||||
| 				case sub.handler != nil: | 				if err = s(msg); err == nil && sub.opts.AutoAck { | ||||||
| 					for _, p := range ms { | 					err = msg.Ack() | ||||||
| 						if err = sub.handler(p); err != nil { |  | ||||||
| 							p.SetError(err) |  | ||||||
| 							if eh != nil { |  | ||||||
| 								_ = eh(p) |  | ||||||
| 							} else if m.opts.Logger.V(logger.ErrorLevel) { |  | ||||||
| 								m.opts.Logger.Error(m.opts.Context, "broker handler error", err) |  | ||||||
| 				} | 				} | ||||||
| 						} else if sub.opts.AutoAck { | 				if err != nil { | ||||||
| 							if err = p.Ack(); err != nil { | 					if b.opts.Logger.V(logger.ErrorLevel) { | ||||||
| 								m.opts.Logger.Error(m.opts.Context, "broker ack error", err) | 						b.opts.Logger.Error(ctx, "broker handler error", err) | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
|  | 		case func([]broker.Message) error: | ||||||
|  | 			if err = s(messages); err == nil && sub.opts.AutoAck { | ||||||
|  | 				for _, message := range messages { | ||||||
|  | 					err = message.Ack() | ||||||
|  | 					if err != nil { | ||||||
|  | 						if b.opts.Logger.V(logger.ErrorLevel) { | ||||||
|  | 							b.opts.Logger.Error(ctx, "broker handler error", err) | ||||||
|  | 						} | ||||||
|  | 					} | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| @@ -233,17 +243,21 @@ func (m *memoryBroker) publish(ctx context.Context, msgs []*broker.Message, opts | |||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) BatchSubscribe(ctx context.Context, topic string, handler broker.BatchHandler, opts ...broker.SubscribeOption) (broker.Subscriber, error) { | func (b *Broker) Subscribe(ctx context.Context, topic string, handler interface{}, opts ...broker.SubscribeOption) (broker.Subscriber, error) { | ||||||
| 	return m.funcBatchSubscribe(ctx, topic, handler, opts...) | 	return b.funcSubscribe(ctx, topic, handler, opts...) | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) fnBatchSubscribe(ctx context.Context, topic string, handler broker.BatchHandler, opts ...broker.SubscribeOption) (broker.Subscriber, error) { | func (b *Broker) fnSubscribe(ctx context.Context, topic string, handler interface{}, opts ...broker.SubscribeOption) (broker.Subscriber, error) { | ||||||
| 	m.RLock() | 	if err := broker.IsValidHandler(handler); err != nil { | ||||||
| 	if !m.connected { | 		return nil, err | ||||||
| 		m.RUnlock() | 	} | ||||||
|  |  | ||||||
|  | 	b.RLock() | ||||||
|  | 	if !b.connected { | ||||||
|  | 		b.RUnlock() | ||||||
| 		return nil, broker.ErrNotConnected | 		return nil, broker.ErrNotConnected | ||||||
| 	} | 	} | ||||||
| 	m.RUnlock() | 	b.RUnlock() | ||||||
|  |  | ||||||
| 	sid, err := id.New() | 	sid, err := id.New() | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| @@ -252,56 +266,7 @@ func (m *memoryBroker) fnBatchSubscribe(ctx context.Context, topic string, handl | |||||||
|  |  | ||||||
| 	options := broker.NewSubscribeOptions(opts...) | 	options := broker.NewSubscribeOptions(opts...) | ||||||
|  |  | ||||||
| 	sub := &memorySubscriber{ | 	sub := &Subscriber{ | ||||||
| 		exit:         make(chan bool, 1), |  | ||||||
| 		id:           sid, |  | ||||||
| 		topic:        topic, |  | ||||||
| 		batchhandler: handler, |  | ||||||
| 		opts:         options, |  | ||||||
| 		ctx:          ctx, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	m.Lock() |  | ||||||
| 	m.subscribers[topic] = append(m.subscribers[topic], sub) |  | ||||||
| 	m.Unlock() |  | ||||||
|  |  | ||||||
| 	go func() { |  | ||||||
| 		<-sub.exit |  | ||||||
| 		m.Lock() |  | ||||||
| 		newSubscribers := make([]*memorySubscriber, 0, len(m.subscribers)-1) |  | ||||||
| 		for _, sb := range m.subscribers[topic] { |  | ||||||
| 			if sb.id == sub.id { |  | ||||||
| 				continue |  | ||||||
| 			} |  | ||||||
| 			newSubscribers = append(newSubscribers, sb) |  | ||||||
| 		} |  | ||||||
| 		m.subscribers[topic] = newSubscribers |  | ||||||
| 		m.Unlock() |  | ||||||
| 	}() |  | ||||||
|  |  | ||||||
| 	return sub, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryBroker) Subscribe(ctx context.Context, topic string, handler broker.Handler, opts ...broker.SubscribeOption) (broker.Subscriber, error) { |  | ||||||
| 	return m.funcSubscribe(ctx, topic, handler, opts...) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryBroker) fnSubscribe(ctx context.Context, topic string, handler broker.Handler, opts ...broker.SubscribeOption) (broker.Subscriber, error) { |  | ||||||
| 	m.RLock() |  | ||||||
| 	if !m.connected { |  | ||||||
| 		m.RUnlock() |  | ||||||
| 		return nil, broker.ErrNotConnected |  | ||||||
| 	} |  | ||||||
| 	m.RUnlock() |  | ||||||
|  |  | ||||||
| 	sid, err := id.New() |  | ||||||
| 	if err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	options := broker.NewSubscribeOptions(opts...) |  | ||||||
|  |  | ||||||
| 	sub := &memorySubscriber{ |  | ||||||
| 		exit:    make(chan bool, 1), | 		exit:    make(chan bool, 1), | ||||||
| 		id:      sid, | 		id:      sid, | ||||||
| 		topic:   topic, | 		topic:   topic, | ||||||
| @@ -310,102 +275,64 @@ func (m *memoryBroker) fnSubscribe(ctx context.Context, topic string, handler br | |||||||
| 		ctx:     ctx, | 		ctx:     ctx, | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	m.Lock() | 	b.Lock() | ||||||
| 	m.subscribers[topic] = append(m.subscribers[topic], sub) | 	b.subscribers[topic] = append(b.subscribers[topic], sub) | ||||||
| 	m.Unlock() | 	b.Unlock() | ||||||
|  |  | ||||||
| 	go func() { | 	go func() { | ||||||
| 		<-sub.exit | 		<-sub.exit | ||||||
| 		m.Lock() | 		b.Lock() | ||||||
| 		newSubscribers := make([]*memorySubscriber, 0, len(m.subscribers)-1) | 		newSubscribers := make([]*Subscriber, 0, len(b.subscribers)-1) | ||||||
| 		for _, sb := range m.subscribers[topic] { | 		for _, sb := range b.subscribers[topic] { | ||||||
| 			if sb.id == sub.id { | 			if sb.id == sub.id { | ||||||
| 				continue | 				continue | ||||||
| 			} | 			} | ||||||
| 			newSubscribers = append(newSubscribers, sb) | 			newSubscribers = append(newSubscribers, sb) | ||||||
| 		} | 		} | ||||||
| 		m.subscribers[topic] = newSubscribers | 		b.subscribers[topic] = newSubscribers | ||||||
| 		m.Unlock() | 		b.Unlock() | ||||||
| 	}() | 	}() | ||||||
|  |  | ||||||
| 	return sub, nil | 	return sub, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) String() string { | func (b *Broker) String() string { | ||||||
| 	return "memory" | 	return "memory" | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Name() string { | func (b *Broker) Name() string { | ||||||
| 	return m.opts.Name | 	return b.opts.Name | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Live() bool { | func (b *Broker) Live() bool { | ||||||
| 	return true | 	return true | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Ready() bool { | func (b *Broker) Ready() bool { | ||||||
| 	return true | 	return true | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryBroker) Health() bool { | func (b *Broker) Health() bool { | ||||||
| 	return true | 	return true | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memoryEvent) Topic() string { | func (m *Subscriber) Options() broker.SubscribeOptions { | ||||||
| 	return m.topic |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryEvent) Message() *broker.Message { |  | ||||||
| 	switch v := m.message.(type) { |  | ||||||
| 	case *broker.Message: |  | ||||||
| 		return v |  | ||||||
| 	case []byte: |  | ||||||
| 		msg := &broker.Message{} |  | ||||||
| 		if err := m.opts.Codec.Unmarshal(v, msg); err != nil { |  | ||||||
| 			if m.opts.Logger.V(logger.ErrorLevel) { |  | ||||||
| 				m.opts.Logger.Error(m.opts.Context, "[memory]: failed to unmarshal: %v", err) |  | ||||||
| 			} |  | ||||||
| 			return nil |  | ||||||
| 		} |  | ||||||
| 		return msg |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryEvent) Ack() error { |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryEvent) Error() error { |  | ||||||
| 	return m.err |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryEvent) SetError(err error) { |  | ||||||
| 	m.err = err |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryEvent) Context() context.Context { |  | ||||||
| 	return m.opts.Context |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memorySubscriber) Options() broker.SubscribeOptions { |  | ||||||
| 	return m.opts | 	return m.opts | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memorySubscriber) Topic() string { | func (m *Subscriber) Topic() string { | ||||||
| 	return m.topic | 	return m.topic | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *memorySubscriber) Unsubscribe(ctx context.Context) error { | func (m *Subscriber) Unsubscribe(ctx context.Context) error { | ||||||
| 	m.exit <- true | 	m.exit <- true | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| // NewBroker return new memory broker | // NewBroker return new memory broker | ||||||
| func NewBroker(opts ...broker.Option) broker.Broker { | func NewBroker(opts ...broker.Option) broker.Broker { | ||||||
| 	return &memoryBroker{ | 	return &Broker{ | ||||||
| 		opts:        broker.NewOptions(opts...), | 		opts:        broker.NewOptions(opts...), | ||||||
| 		subscribers: make(map[string][]*memorySubscriber), | 		subscribers: make(map[string][]*Subscriber), | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|   | |||||||
| @@ -5,62 +5,23 @@ import ( | |||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.uber.org/atomic" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/broker" | ||||||
|  | 	"go.unistack.org/micro/v4/codec" | ||||||
|  | 	"go.unistack.org/micro/v4/metadata" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func TestMemoryBatchBroker(t *testing.T) { | type hldr struct { | ||||||
| 	b := NewBroker() | 	c atomic.Int64 | ||||||
| 	ctx := context.Background() | } | ||||||
|  |  | ||||||
| 	if err := b.Init(); err != nil { | func (h *hldr) Handler(m broker.Message) error { | ||||||
| 		t.Fatalf("Unexpected init error %v", err) | 	h.c.Add(1) | ||||||
| 	} | 	return nil | ||||||
|  |  | ||||||
| 	if err := b.Connect(ctx); err != nil { |  | ||||||
| 		t.Fatalf("Unexpected connect error %v", err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	topic := "test" |  | ||||||
| 	count := 10 |  | ||||||
|  |  | ||||||
| 	fn := func(evts broker.Events) error { |  | ||||||
| 		return evts.Ack() |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	sub, err := b.BatchSubscribe(ctx, topic, fn) |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Fatalf("Unexpected error subscribing %v", err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	msgs := make([]*broker.Message, 0, count) |  | ||||||
| 	for i := 0; i < count; i++ { |  | ||||||
| 		message := &broker.Message{ |  | ||||||
| 			Header: map[string]string{ |  | ||||||
| 				metadata.HeaderTopic: topic, |  | ||||||
| 				"foo":                "bar", |  | ||||||
| 				"id":                 fmt.Sprintf("%d", i), |  | ||||||
| 			}, |  | ||||||
| 			Body: []byte(`"hello world"`), |  | ||||||
| 		} |  | ||||||
| 		msgs = append(msgs, message) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := b.BatchPublish(ctx, msgs); err != nil { |  | ||||||
| 		t.Fatalf("Unexpected error publishing %v", err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := sub.Unsubscribe(ctx); err != nil { |  | ||||||
| 		t.Fatalf("Unexpected error unsubscribing from %s: %v", topic, err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := b.Disconnect(ctx); err != nil { |  | ||||||
| 		t.Fatalf("Unexpected connect error %v", err) |  | ||||||
| 	} |  | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestMemoryBroker(t *testing.T) { | func TestMemoryBroker(t *testing.T) { | ||||||
| 	b := NewBroker() | 	b := NewBroker(broker.Codec("application/octet-stream", codec.NewCodec())) | ||||||
| 	ctx := context.Background() | 	ctx := context.Background() | ||||||
|  |  | ||||||
| 	if err := b.Init(); err != nil { | 	if err := b.Init(); err != nil { | ||||||
| @@ -72,38 +33,33 @@ func TestMemoryBroker(t *testing.T) { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	topic := "test" | 	topic := "test" | ||||||
| 	count := 10 | 	count := int64(10) | ||||||
|  |  | ||||||
| 	fn := func(_ broker.Event) error { | 	h := &hldr{} | ||||||
| 		return nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	sub, err := b.Subscribe(ctx, topic, fn) | 	sub, err := b.Subscribe(ctx, topic, h.Handler) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		t.Fatalf("Unexpected error subscribing %v", err) | 		t.Fatalf("Unexpected error subscribing %v", err) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	msgs := make([]*broker.Message, 0, count) | 	for i := int64(0); i < count; i++ { | ||||||
| 	for i := 0; i < count; i++ { | 		message, err := b.NewMessage(ctx, | ||||||
| 		message := &broker.Message{ | 			metadata.Pairs( | ||||||
| 			Header: map[string]string{ | 				"foo", "bar", | ||||||
| 				metadata.HeaderTopic: topic, | 				"id", fmt.Sprintf("%d", i), | ||||||
| 				"foo":                "bar", | 			), | ||||||
| 				"id":                 fmt.Sprintf("%d", i), | 			[]byte(`"hello world"`), | ||||||
| 			}, | 			broker.PublishContentType("application/octet-stream"), | ||||||
| 			Body: []byte(`"hello world"`), | 		) | ||||||
|  | 		if err != nil { | ||||||
|  | 			t.Fatal(err) | ||||||
| 		} | 		} | ||||||
| 		msgs = append(msgs, message) |  | ||||||
|  |  | ||||||
| 		if err := b.Publish(ctx, topic, message); err != nil { | 		if err := b.Publish(ctx, topic, message); err != nil { | ||||||
| 			t.Fatalf("Unexpected error publishing %d err: %v", i, err) | 			t.Fatalf("Unexpected error publishing %d err: %v", i, err) | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err := b.BatchPublish(ctx, msgs); err != nil { |  | ||||||
| 		t.Fatalf("Unexpected error publishing %v", err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := sub.Unsubscribe(ctx); err != nil { | 	if err := sub.Unsubscribe(ctx); err != nil { | ||||||
| 		t.Fatalf("Unexpected error unsubscribing from %s: %v", topic, err) | 		t.Fatalf("Unexpected error unsubscribing from %s: %v", topic, err) | ||||||
| 	} | 	} | ||||||
| @@ -111,4 +67,8 @@ func TestMemoryBroker(t *testing.T) { | |||||||
| 	if err := b.Disconnect(ctx); err != nil { | 	if err := b.Disconnect(ctx); err != nil { | ||||||
| 		t.Fatalf("Unexpected connect error %v", err) | 		t.Fatalf("Unexpected connect error %v", err) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|  | 	if h.c.Load() != count { | ||||||
|  | 		t.Fatal("invalid messages count received") | ||||||
|  | 	} | ||||||
| } | } | ||||||
|   | |||||||
| @@ -3,24 +3,37 @@ package broker | |||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| 	"strings" | 	"strings" | ||||||
|  | 	"sync" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/options" | 	"go.unistack.org/micro/v4/codec" | ||||||
|  | 	"go.unistack.org/micro/v4/metadata" | ||||||
|  | 	"go.unistack.org/micro/v4/options" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type NoopBroker struct { | type NoopBroker struct { | ||||||
| 	funcPublish   FuncPublish | 	funcPublish   FuncPublish | ||||||
| 	funcBatchPublish   FuncBatchPublish |  | ||||||
| 	funcSubscribe FuncSubscribe | 	funcSubscribe FuncSubscribe | ||||||
| 	funcBatchSubscribe FuncBatchSubscribe |  | ||||||
| 	opts          Options | 	opts          Options | ||||||
|  | 	sync.RWMutex | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (b *NoopBroker) newCodec(ct string) (codec.Codec, error) { | ||||||
|  | 	if idx := strings.IndexRune(ct, ';'); idx >= 0 { | ||||||
|  | 		ct = ct[:idx] | ||||||
|  | 	} | ||||||
|  | 	b.RLock() | ||||||
|  | 	c, ok := b.opts.Codecs[ct] | ||||||
|  | 	b.RUnlock() | ||||||
|  | 	if ok { | ||||||
|  | 		return c, nil | ||||||
|  | 	} | ||||||
|  | 	return nil, codec.ErrUnknownContentType | ||||||
| } | } | ||||||
|  |  | ||||||
| func NewBroker(opts ...Option) *NoopBroker { | func NewBroker(opts ...Option) *NoopBroker { | ||||||
| 	b := &NoopBroker{opts: NewOptions(opts...)} | 	b := &NoopBroker{opts: NewOptions(opts...)} | ||||||
| 	b.funcPublish = b.fnPublish | 	b.funcPublish = b.fnPublish | ||||||
| 	b.funcBatchPublish = b.fnBatchPublish |  | ||||||
| 	b.funcSubscribe = b.fnSubscribe | 	b.funcSubscribe = b.fnSubscribe | ||||||
| 	b.funcBatchSubscribe = b.fnBatchSubscribe |  | ||||||
|  |  | ||||||
| 	return b | 	return b | ||||||
| } | } | ||||||
| @@ -55,20 +68,14 @@ func (b *NoopBroker) Init(opts ...Option) error { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	b.funcPublish = b.fnPublish | 	b.funcPublish = b.fnPublish | ||||||
| 	b.funcBatchPublish = b.fnBatchPublish |  | ||||||
| 	b.funcSubscribe = b.fnSubscribe | 	b.funcSubscribe = b.fnSubscribe | ||||||
| 	b.funcBatchSubscribe = b.fnBatchSubscribe |  | ||||||
|  |  | ||||||
| 	b.opts.Hooks.EachPrev(func(hook options.Hook) { | 	b.opts.Hooks.EachPrev(func(hook options.Hook) { | ||||||
| 		switch h := hook.(type) { | 		switch h := hook.(type) { | ||||||
| 		case HookPublish: | 		case HookPublish: | ||||||
| 			b.funcPublish = h(b.funcPublish) | 			b.funcPublish = h(b.funcPublish) | ||||||
| 		case HookBatchPublish: |  | ||||||
| 			b.funcBatchPublish = h(b.funcBatchPublish) |  | ||||||
| 		case HookSubscribe: | 		case HookSubscribe: | ||||||
| 			b.funcSubscribe = h(b.funcSubscribe) | 			b.funcSubscribe = h(b.funcSubscribe) | ||||||
| 		case HookBatchSubscribe: |  | ||||||
| 			b.funcBatchSubscribe = h(b.funcBatchSubscribe) |  | ||||||
| 		} | 		} | ||||||
| 	}) | 	}) | ||||||
|  |  | ||||||
| @@ -87,43 +94,72 @@ func (b *NoopBroker) Address() string { | |||||||
| 	return strings.Join(b.opts.Addrs, ",") | 	return strings.Join(b.opts.Addrs, ",") | ||||||
| } | } | ||||||
|  |  | ||||||
| func (b *NoopBroker) fnBatchPublish(_ context.Context, _ []*Message, _ ...PublishOption) error { | type noopMessage struct { | ||||||
|  | 	c    codec.Codec | ||||||
|  | 	ctx  context.Context | ||||||
|  | 	body []byte | ||||||
|  | 	hdr  metadata.Metadata | ||||||
|  | 	opts PublishOptions | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *noopMessage) Ack() error { | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (b *NoopBroker) BatchPublish(ctx context.Context, msgs []*Message, opts ...PublishOption) error { | func (m *noopMessage) Body() []byte { | ||||||
| 	return b.funcBatchPublish(ctx, msgs, opts...) | 	return m.body | ||||||
| } | } | ||||||
|  |  | ||||||
| func (b *NoopBroker) fnPublish(_ context.Context, _ string, _ *Message, _ ...PublishOption) error { | func (m *noopMessage) Header() metadata.Metadata { | ||||||
|  | 	return m.hdr | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *noopMessage) Context() context.Context { | ||||||
|  | 	return m.ctx | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *noopMessage) Topic() string { | ||||||
|  | 	return "" | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *noopMessage) Unmarshal(dst interface{}, opts ...codec.Option) error { | ||||||
|  | 	return m.c.Unmarshal(m.body, dst) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (b *NoopBroker) NewMessage(ctx context.Context, hdr metadata.Metadata, body interface{}, opts ...PublishOption) (Message, error) { | ||||||
|  | 	options := NewPublishOptions(opts...) | ||||||
|  | 	m := &noopMessage{ctx: ctx, hdr: hdr, opts: options} | ||||||
|  | 	c, err := b.newCodec(m.opts.ContentType) | ||||||
|  | 	if err == nil { | ||||||
|  | 		m.body, err = c.Marshal(body) | ||||||
|  | 	} | ||||||
|  | 	if err != nil { | ||||||
|  | 		return nil, err | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	return m, nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (b *NoopBroker) fnPublish(_ context.Context, _ string, _ ...Message) error { | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (b *NoopBroker) Publish(ctx context.Context, topic string, msg *Message, opts ...PublishOption) error { | func (b *NoopBroker) Publish(ctx context.Context, topic string, msg ...Message) error { | ||||||
| 	return b.funcPublish(ctx, topic, msg, opts...) | 	return b.funcPublish(ctx, topic, msg...) | ||||||
| } | } | ||||||
|  |  | ||||||
| type NoopSubscriber struct { | type NoopSubscriber struct { | ||||||
| 	ctx     context.Context | 	ctx     context.Context | ||||||
| 	topic   string | 	topic   string | ||||||
| 	handler      Handler | 	handler interface{} | ||||||
| 	batchHandler BatchHandler |  | ||||||
| 	opts    SubscribeOptions | 	opts    SubscribeOptions | ||||||
| } | } | ||||||
|  |  | ||||||
| func (b *NoopBroker) fnBatchSubscribe(ctx context.Context, topic string, handler BatchHandler, opts ...SubscribeOption) (Subscriber, error) { | func (b *NoopBroker) fnSubscribe(ctx context.Context, topic string, handler interface{}, opts ...SubscribeOption) (Subscriber, error) { | ||||||
| 	return &NoopSubscriber{ctx: ctx, topic: topic, opts: NewSubscribeOptions(opts...), batchHandler: handler}, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (b *NoopBroker) BatchSubscribe(ctx context.Context, topic string, handler BatchHandler, opts ...SubscribeOption) (Subscriber, error) { |  | ||||||
| 	return b.funcBatchSubscribe(ctx, topic, handler, opts...) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (b *NoopBroker) fnSubscribe(ctx context.Context, topic string, handler Handler, opts ...SubscribeOption) (Subscriber, error) { |  | ||||||
| 	return &NoopSubscriber{ctx: ctx, topic: topic, opts: NewSubscribeOptions(opts...), handler: handler}, nil | 	return &NoopSubscriber{ctx: ctx, topic: topic, opts: NewSubscribeOptions(opts...), handler: handler}, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (b *NoopBroker) Subscribe(ctx context.Context, topic string, handler Handler, opts ...SubscribeOption) (Subscriber, error) { | func (b *NoopBroker) Subscribe(ctx context.Context, topic string, handler interface{}, opts ...SubscribeOption) (Subscriber, error) { | ||||||
| 	return b.funcSubscribe(ctx, topic, handler, opts...) | 	return b.funcSubscribe(ctx, topic, handler, opts...) | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -10,9 +10,9 @@ type testHook struct { | |||||||
| } | } | ||||||
|  |  | ||||||
| func (t *testHook) Publish1(fn FuncPublish) FuncPublish { | func (t *testHook) Publish1(fn FuncPublish) FuncPublish { | ||||||
| 	return func(ctx context.Context, topic string, msg *Message, opts ...PublishOption) error { | 	return func(ctx context.Context, topic string, messages ...Message) error { | ||||||
| 		t.f = true | 		t.f = true | ||||||
| 		return fn(ctx, topic, msg, opts...) | 		return fn(ctx, topic, messages...) | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -5,13 +5,13 @@ import ( | |||||||
| 	"crypto/tls" | 	"crypto/tls" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/meter" | ||||||
| 	"go.unistack.org/micro/v3/options" | 	"go.unistack.org/micro/v4/options" | ||||||
| 	"go.unistack.org/micro/v3/register" | 	"go.unistack.org/micro/v4/register" | ||||||
| 	"go.unistack.org/micro/v3/sync" | 	"go.unistack.org/micro/v4/sync" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Options struct | // Options struct | ||||||
| @@ -23,8 +23,8 @@ type Options struct { | |||||||
| 	Tracer tracer.Tracer | 	Tracer tracer.Tracer | ||||||
| 	// Register can be used for clustering | 	// Register can be used for clustering | ||||||
| 	Register register.Register | 	Register register.Register | ||||||
| 	// Codec holds the codec for marshal/unmarshal | 	// Codecs holds the codecs for marshal/unmarshal based on content-type | ||||||
| 	Codec codec.Codec | 	Codecs map[string]codec.Codec | ||||||
| 	// Logger used for logging | 	// Logger used for logging | ||||||
| 	Logger logger.Logger | 	Logger logger.Logger | ||||||
| 	// Meter used for metrics | 	// Meter used for metrics | ||||||
| @@ -37,11 +37,6 @@ type Options struct { | |||||||
| 	// TLSConfig holds tls.TLSConfig options | 	// TLSConfig holds tls.TLSConfig options | ||||||
| 	TLSConfig *tls.Config | 	TLSConfig *tls.Config | ||||||
|  |  | ||||||
| 	// ErrorHandler used when broker can't unmarshal incoming message |  | ||||||
| 	ErrorHandler Handler |  | ||||||
| 	// BatchErrorHandler used when broker can't unmashal incoming messages |  | ||||||
| 	BatchErrorHandler BatchHandler |  | ||||||
|  |  | ||||||
| 	// Addrs holds the broker address | 	// Addrs holds the broker address | ||||||
| 	Addrs []string | 	Addrs []string | ||||||
| 	// Hooks can be run before broker Publish/BatchPublish and | 	// Hooks can be run before broker Publish/BatchPublish and | ||||||
| @@ -59,10 +54,11 @@ func NewOptions(opts ...Option) Options { | |||||||
| 		Logger:          logger.DefaultLogger, | 		Logger:          logger.DefaultLogger, | ||||||
| 		Context:         context.Background(), | 		Context:         context.Background(), | ||||||
| 		Meter:           meter.DefaultMeter, | 		Meter:           meter.DefaultMeter, | ||||||
| 		Codec:           codec.DefaultCodec, | 		Codecs:          make(map[string]codec.Codec), | ||||||
| 		Tracer:          tracer.DefaultTracer, | 		Tracer:          tracer.DefaultTracer, | ||||||
| 		GracefulTimeout: DefaultGracefulTimeout, | 		GracefulTimeout: DefaultGracefulTimeout, | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| 		o(&options) | 		o(&options) | ||||||
| 	} | 	} | ||||||
| @@ -78,10 +74,13 @@ func Context(ctx context.Context) Option { | |||||||
|  |  | ||||||
| // PublishOptions struct | // PublishOptions struct | ||||||
| type PublishOptions struct { | type PublishOptions struct { | ||||||
| 	// Context holds external options | 	// ContentType for message body | ||||||
| 	Context context.Context | 	ContentType string | ||||||
| 	// BodyOnly flag says the message contains raw body bytes | 	// BodyOnly flag says the message contains raw body bytes and don't need | ||||||
|  | 	// codec Marshal method | ||||||
| 	BodyOnly bool | 	BodyOnly bool | ||||||
|  | 	// Context holds custom options | ||||||
|  | 	Context context.Context | ||||||
| } | } | ||||||
|  |  | ||||||
| // NewPublishOptions creates PublishOptions struct | // NewPublishOptions creates PublishOptions struct | ||||||
| @@ -99,10 +98,6 @@ func NewPublishOptions(opts ...PublishOption) PublishOptions { | |||||||
| type SubscribeOptions struct { | type SubscribeOptions struct { | ||||||
| 	// Context holds external options | 	// Context holds external options | ||||||
| 	Context context.Context | 	Context context.Context | ||||||
| 	// ErrorHandler used when broker can't unmarshal incoming message |  | ||||||
| 	ErrorHandler Handler |  | ||||||
| 	// BatchErrorHandler used when broker can't unmashal incoming messages |  | ||||||
| 	BatchErrorHandler BatchHandler |  | ||||||
| 	// Group holds consumer group | 	// Group holds consumer group | ||||||
| 	Group string | 	Group string | ||||||
| 	// AutoAck flag specifies auto ack of incoming message when no error happens | 	// AutoAck flag specifies auto ack of incoming message when no error happens | ||||||
| @@ -121,6 +116,13 @@ type Option func(*Options) | |||||||
| // PublishOption func | // PublishOption func | ||||||
| type PublishOption func(*PublishOptions) | type PublishOption func(*PublishOptions) | ||||||
|  |  | ||||||
|  | // PublishContentType sets message content-type that used to Marshal | ||||||
|  | func PublishContentType(ct string) PublishOption { | ||||||
|  | 	return func(o *PublishOptions) { | ||||||
|  | 		o.ContentType = ct | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
| // PublishBodyOnly publish only body of the message | // PublishBodyOnly publish only body of the message | ||||||
| func PublishBodyOnly(b bool) PublishOption { | func PublishBodyOnly(b bool) PublishOption { | ||||||
| 	return func(o *PublishOptions) { | 	return func(o *PublishOptions) { | ||||||
| @@ -128,13 +130,6 @@ func PublishBodyOnly(b bool) PublishOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // PublishContext sets the context |  | ||||||
| func PublishContext(ctx context.Context) PublishOption { |  | ||||||
| 	return func(o *PublishOptions) { |  | ||||||
| 		o.Context = ctx |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Addrs sets the host addresses to be used by the broker | // Addrs sets the host addresses to be used by the broker | ||||||
| func Addrs(addrs ...string) Option { | func Addrs(addrs ...string) Option { | ||||||
| 	return func(o *Options) { | 	return func(o *Options) { | ||||||
| @@ -142,51 +137,10 @@ func Addrs(addrs ...string) Option { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // Codec sets the codec used for encoding/decoding used where | // Codec sets the codec used for encoding/decoding messages | ||||||
| // a broker does not support headers | func Codec(ct string, c codec.Codec) Option { | ||||||
| func Codec(c codec.Codec) Option { |  | ||||||
| 	return func(o *Options) { | 	return func(o *Options) { | ||||||
| 		o.Codec = c | 		o.Codecs[ct] = c | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ErrorHandler will catch all broker errors that cant be handled |  | ||||||
| // in normal way, for example Codec errors |  | ||||||
| func ErrorHandler(h Handler) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.ErrorHandler = h |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // BatchErrorHandler will catch all broker errors that cant be handled |  | ||||||
| // in normal way, for example Codec errors |  | ||||||
| func BatchErrorHandler(h BatchHandler) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.BatchErrorHandler = h |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // SubscribeErrorHandler will catch all broker errors that cant be handled |  | ||||||
| // in normal way, for example Codec errors |  | ||||||
| func SubscribeErrorHandler(h Handler) SubscribeOption { |  | ||||||
| 	return func(o *SubscribeOptions) { |  | ||||||
| 		o.ErrorHandler = h |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // SubscribeBatchErrorHandler will catch all broker errors that cant be handled |  | ||||||
| // in normal way, for example Codec errors |  | ||||||
| func SubscribeBatchErrorHandler(h BatchHandler) SubscribeOption { |  | ||||||
| 	return func(o *SubscribeOptions) { |  | ||||||
| 		o.BatchErrorHandler = h |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Queue sets the subscribers queue |  | ||||||
| // Deprecated |  | ||||||
| func Queue(name string) SubscribeOption { |  | ||||||
| 	return func(o *SubscribeOptions) { |  | ||||||
| 		o.Group = name |  | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -253,14 +207,6 @@ func SubscribeContext(ctx context.Context) SubscribeOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // DisableAutoAck disables auto ack |  | ||||||
| // Deprecated |  | ||||||
| func DisableAutoAck() SubscribeOption { |  | ||||||
| 	return func(o *SubscribeOptions) { |  | ||||||
| 		o.AutoAck = false |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // SubscribeAutoAck contol auto acking of messages | // SubscribeAutoAck contol auto acking of messages | ||||||
| // after they have been handled. | // after they have been handled. | ||||||
| func SubscribeAutoAck(b bool) SubscribeOption { | func SubscribeAutoAck(b bool) SubscribeOption { | ||||||
|   | |||||||
							
								
								
									
										14
									
								
								broker/subscriber.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								broker/subscriber.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | |||||||
|  | package broker | ||||||
|  |  | ||||||
|  | // IsValidHandler func signature | ||||||
|  | func IsValidHandler(sub interface{}) error { | ||||||
|  | 	switch sub.(type) { | ||||||
|  | 	default: | ||||||
|  | 		return ErrInvalidHandler | ||||||
|  | 	case func(Message) error: | ||||||
|  | 		break | ||||||
|  | 	case func([]Message) error: | ||||||
|  | 		break | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
| @@ -5,7 +5,7 @@ import ( | |||||||
| 	"math" | 	"math" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/util/backoff" | 	"go.unistack.org/micro/v4/util/backoff" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // BackoffFunc is the backoff call func | // BackoffFunc is the backoff call func | ||||||
|   | |||||||
| @@ -5,8 +5,8 @@ import ( | |||||||
| 	"context" | 	"context" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var ( | var ( | ||||||
| @@ -29,18 +29,14 @@ var ( | |||||||
| ) | ) | ||||||
|  |  | ||||||
| // Client is the interface used to make requests to services. | // Client is the interface used to make requests to services. | ||||||
| // It supports Request/Response via Transport and Publishing via the Broker. |  | ||||||
| // It also supports bidirectional streaming of requests. | // It also supports bidirectional streaming of requests. | ||||||
| type Client interface { | type Client interface { | ||||||
| 	Name() string | 	Name() string | ||||||
| 	Init(opts ...Option) error | 	Init(opts ...Option) error | ||||||
| 	Options() Options | 	Options() Options | ||||||
| 	NewMessage(topic string, msg interface{}, opts ...MessageOption) Message |  | ||||||
| 	NewRequest(service string, endpoint string, req interface{}, opts ...RequestOption) Request | 	NewRequest(service string, endpoint string, req interface{}, opts ...RequestOption) Request | ||||||
| 	Call(ctx context.Context, req Request, rsp interface{}, opts ...CallOption) error | 	Call(ctx context.Context, req Request, rsp interface{}, opts ...CallOption) error | ||||||
| 	Stream(ctx context.Context, req Request, opts ...CallOption) (Stream, error) | 	Stream(ctx context.Context, req Request, opts ...CallOption) (Stream, error) | ||||||
| 	Publish(ctx context.Context, msg Message, opts ...PublishOption) error |  | ||||||
| 	BatchPublish(ctx context.Context, msg []Message, opts ...PublishOption) error |  | ||||||
| 	String() string | 	String() string | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -49,20 +45,8 @@ type ( | |||||||
| 	HookCall   func(next FuncCall) FuncCall | 	HookCall   func(next FuncCall) FuncCall | ||||||
| 	FuncStream func(ctx context.Context, req Request, opts ...CallOption) (Stream, error) | 	FuncStream func(ctx context.Context, req Request, opts ...CallOption) (Stream, error) | ||||||
| 	HookStream func(next FuncStream) FuncStream | 	HookStream func(next FuncStream) FuncStream | ||||||
| 	FuncPublish      func(ctx context.Context, msg Message, opts ...PublishOption) error |  | ||||||
| 	HookPublish      func(next FuncPublish) FuncPublish |  | ||||||
| 	FuncBatchPublish func(ctx context.Context, msg []Message, opts ...PublishOption) error |  | ||||||
| 	HookBatchPublish func(next FuncBatchPublish) FuncBatchPublish |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Message is the interface for publishing asynchronously |  | ||||||
| type Message interface { |  | ||||||
| 	Topic() string |  | ||||||
| 	Payload() interface{} |  | ||||||
| 	ContentType() string |  | ||||||
| 	Metadata() metadata.Metadata |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Request is the interface for a synchronous request used by Call or Stream | // Request is the interface for a synchronous request used by Call or Stream | ||||||
| type Request interface { | type Request interface { | ||||||
| 	// The service to call | 	// The service to call | ||||||
| @@ -121,11 +105,5 @@ type Option func(*Options) | |||||||
| // CallOption used by Call or Stream | // CallOption used by Call or Stream | ||||||
| type CallOption func(*CallOptions) | type CallOption func(*CallOptions) | ||||||
|  |  | ||||||
| // PublishOption used by Publish |  | ||||||
| type PublishOption func(*PublishOptions) |  | ||||||
|  |  | ||||||
| // MessageOption used by NewMessage |  | ||||||
| type MessageOption func(*MessageOptions) |  | ||||||
|  |  | ||||||
| // RequestOption used by NewRequest | // RequestOption used by NewRequest | ||||||
| type RequestOption func(*RequestOptions) | type RequestOption func(*RequestOptions) | ||||||
|   | |||||||
| @@ -32,16 +32,6 @@ func NewContext(ctx context.Context, c Client) context.Context { | |||||||
| 	return context.WithValue(ctx, clientKey{}, c) | 	return context.WithValue(ctx, clientKey{}, c) | ||||||
| } | } | ||||||
|  |  | ||||||
| // SetPublishOption returns a function to setup a context with given value |  | ||||||
| func SetPublishOption(k, v interface{}) PublishOption { |  | ||||||
| 	return func(o *PublishOptions) { |  | ||||||
| 		if o.Context == nil { |  | ||||||
| 			o.Context = context.Background() |  | ||||||
| 		} |  | ||||||
| 		o.Context = context.WithValue(o.Context, k, v) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // SetCallOption returns a function to setup a context with given value | // SetCallOption returns a function to setup a context with given value | ||||||
| func SetCallOption(k, v interface{}) CallOption { | func SetCallOption(k, v interface{}) CallOption { | ||||||
| 	return func(o *CallOptions) { | 	return func(o *CallOptions) { | ||||||
|   | |||||||
| @@ -39,17 +39,6 @@ func TestNewNilContext(t *testing.T) { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestSetPublishOption(t *testing.T) { |  | ||||||
| 	type key struct{} |  | ||||||
| 	o := SetPublishOption(key{}, "test") |  | ||||||
| 	opts := &PublishOptions{} |  | ||||||
| 	o(opts) |  | ||||||
|  |  | ||||||
| 	if v, ok := opts.Context.Value(key{}).(string); !ok || v == "" { |  | ||||||
| 		t.Fatal("SetPublishOption not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestSetCallOption(t *testing.T) { | func TestSetCallOption(t *testing.T) { | ||||||
| 	type key struct{} | 	type key struct{} | ||||||
| 	o := SetCallOption(key{}, "test") | 	o := SetCallOption(key{}, "test") | ||||||
|   | |||||||
| @@ -4,8 +4,8 @@ import ( | |||||||
| 	"context" | 	"context" | ||||||
| 	"sort" | 	"sort" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/errors" | 	"go.unistack.org/micro/v4/errors" | ||||||
| 	"go.unistack.org/micro/v3/router" | 	"go.unistack.org/micro/v4/router" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // LookupFunc is used to lookup routes for a service | // LookupFunc is used to lookup routes for a service | ||||||
|   | |||||||
							
								
								
									
										149
									
								
								client/noop.go
									
									
									
									
									
								
							
							
						
						
									
										149
									
								
								client/noop.go
									
									
									
									
									
								
							| @@ -3,18 +3,16 @@ package client | |||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"os" |  | ||||||
| 	"strconv" | 	"strconv" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/errors" | ||||||
| 	"go.unistack.org/micro/v3/errors" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/options" | ||||||
| 	"go.unistack.org/micro/v3/options" | 	"go.unistack.org/micro/v4/selector" | ||||||
| 	"go.unistack.org/micro/v3/selector" | 	"go.unistack.org/micro/v4/semconv" | ||||||
| 	"go.unistack.org/micro/v3/semconv" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| 	"go.unistack.org/micro/v3/tracer" |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // DefaultCodecs will be used to encode/decode data | // DefaultCodecs will be used to encode/decode data | ||||||
| @@ -23,19 +21,11 @@ var DefaultCodecs = map[string]codec.Codec{ | |||||||
| } | } | ||||||
|  |  | ||||||
| type noopClient struct { | type noopClient struct { | ||||||
| 	funcPublish      FuncPublish |  | ||||||
| 	funcBatchPublish FuncBatchPublish |  | ||||||
| 	funcCall   FuncCall | 	funcCall   FuncCall | ||||||
| 	funcStream FuncStream | 	funcStream FuncStream | ||||||
| 	opts       Options | 	opts       Options | ||||||
| } | } | ||||||
|  |  | ||||||
| type noopMessage struct { |  | ||||||
| 	topic   string |  | ||||||
| 	payload interface{} |  | ||||||
| 	opts    MessageOptions |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type noopRequest struct { | type noopRequest struct { | ||||||
| 	body        interface{} | 	body        interface{} | ||||||
| 	codec       codec.Codec | 	codec       codec.Codec | ||||||
| @@ -52,8 +42,6 @@ func NewClient(opts ...Option) Client { | |||||||
|  |  | ||||||
| 	n.funcCall = n.fnCall | 	n.funcCall = n.fnCall | ||||||
| 	n.funcStream = n.fnStream | 	n.funcStream = n.fnStream | ||||||
| 	n.funcPublish = n.fnPublish |  | ||||||
| 	n.funcBatchPublish = n.fnBatchPublish |  | ||||||
|  |  | ||||||
| 	return n | 	return n | ||||||
| } | } | ||||||
| @@ -158,32 +146,6 @@ func (n *noopStream) CloseSend() error { | |||||||
| 	return n.err | 	return n.err | ||||||
| } | } | ||||||
|  |  | ||||||
| func (n *noopMessage) Topic() string { |  | ||||||
| 	return n.topic |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopMessage) Payload() interface{} { |  | ||||||
| 	return n.payload |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopMessage) ContentType() string { |  | ||||||
| 	return n.opts.ContentType |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopMessage) Metadata() metadata.Metadata { |  | ||||||
| 	return n.opts.Metadata |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopClient) newCodec(contentType string) (codec.Codec, error) { |  | ||||||
| 	if cf, ok := n.opts.Codecs[contentType]; ok { |  | ||||||
| 		return cf, nil |  | ||||||
| 	} |  | ||||||
| 	if cf, ok := DefaultCodecs[contentType]; ok { |  | ||||||
| 		return cf, nil |  | ||||||
| 	} |  | ||||||
| 	return nil, codec.ErrUnknownContentType |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopClient) Init(opts ...Option) error { | func (n *noopClient) Init(opts ...Option) error { | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| 		o(&n.opts) | 		o(&n.opts) | ||||||
| @@ -191,8 +153,6 @@ func (n *noopClient) Init(opts ...Option) error { | |||||||
|  |  | ||||||
| 	n.funcCall = n.fnCall | 	n.funcCall = n.fnCall | ||||||
| 	n.funcStream = n.fnStream | 	n.funcStream = n.fnStream | ||||||
| 	n.funcPublish = n.fnPublish |  | ||||||
| 	n.funcBatchPublish = n.fnBatchPublish |  | ||||||
|  |  | ||||||
| 	n.opts.Hooks.EachPrev(func(hook options.Hook) { | 	n.opts.Hooks.EachPrev(func(hook options.Hook) { | ||||||
| 		switch h := hook.(type) { | 		switch h := hook.(type) { | ||||||
| @@ -200,10 +160,6 @@ func (n *noopClient) Init(opts ...Option) error { | |||||||
| 			n.funcCall = h(n.funcCall) | 			n.funcCall = h(n.funcCall) | ||||||
| 		case HookStream: | 		case HookStream: | ||||||
| 			n.funcStream = h(n.funcStream) | 			n.funcStream = h(n.funcStream) | ||||||
| 		case HookPublish: |  | ||||||
| 			n.funcPublish = h(n.funcPublish) |  | ||||||
| 		case HookBatchPublish: |  | ||||||
| 			n.funcBatchPublish = h(n.funcBatchPublish) |  | ||||||
| 		} | 		} | ||||||
| 	}) | 	}) | ||||||
|  |  | ||||||
| @@ -376,11 +332,6 @@ func (n *noopClient) NewRequest(service, endpoint string, _ interface{}, _ ...Re | |||||||
| 	return &noopRequest{service: service, endpoint: endpoint} | 	return &noopRequest{service: service, endpoint: endpoint} | ||||||
| } | } | ||||||
|  |  | ||||||
| func (n *noopClient) NewMessage(topic string, msg interface{}, opts ...MessageOption) Message { |  | ||||||
| 	options := NewMessageOptions(append([]MessageOption{MessageContentType(n.opts.ContentType)}, opts...)...) |  | ||||||
| 	return &noopMessage{topic: topic, payload: msg, opts: options} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopClient) Stream(ctx context.Context, req Request, opts ...CallOption) (Stream, error) { | func (n *noopClient) Stream(ctx context.Context, req Request, opts ...CallOption) (Stream, error) { | ||||||
| 	ts := time.Now() | 	ts := time.Now() | ||||||
| 	n.opts.Meter.Counter(semconv.ClientRequestInflight, "endpoint", req.Endpoint()).Inc() | 	n.opts.Meter.Counter(semconv.ClientRequestInflight, "endpoint", req.Endpoint()).Inc() | ||||||
| @@ -549,89 +500,3 @@ func (n *noopClient) fnStream(ctx context.Context, req Request, opts ...CallOpti | |||||||
| func (n *noopClient) stream(ctx context.Context, _ string, _ Request, _ CallOptions) (Stream, error) { | func (n *noopClient) stream(ctx context.Context, _ string, _ Request, _ CallOptions) (Stream, error) { | ||||||
| 	return &noopStream{ctx: ctx}, nil | 	return &noopStream{ctx: ctx}, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (n *noopClient) BatchPublish(ctx context.Context, ps []Message, opts ...PublishOption) error { |  | ||||||
| 	return n.funcBatchPublish(ctx, ps, opts...) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopClient) fnBatchPublish(ctx context.Context, ps []Message, opts ...PublishOption) error { |  | ||||||
| 	return n.publish(ctx, ps, opts...) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopClient) Publish(ctx context.Context, p Message, opts ...PublishOption) error { |  | ||||||
| 	return n.funcPublish(ctx, p, opts...) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopClient) fnPublish(ctx context.Context, p Message, opts ...PublishOption) error { |  | ||||||
| 	return n.publish(ctx, []Message{p}, opts...) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopClient) publish(ctx context.Context, ps []Message, opts ...PublishOption) error { |  | ||||||
| 	options := NewPublishOptions(opts...) |  | ||||||
|  |  | ||||||
| 	msgs := make([]*broker.Message, 0, len(ps)) |  | ||||||
|  |  | ||||||
| 	// get proxy |  | ||||||
| 	exchange := "" |  | ||||||
| 	if v, ok := os.LookupEnv("MICRO_PROXY"); ok { |  | ||||||
| 		exchange = v |  | ||||||
| 	} |  | ||||||
| 	// get the exchange |  | ||||||
| 	if len(options.Exchange) > 0 { |  | ||||||
| 		exchange = options.Exchange |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	omd, ok := metadata.FromOutgoingContext(ctx) |  | ||||||
| 	if !ok { |  | ||||||
| 		omd = metadata.New(0) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, p := range ps { |  | ||||||
| 		md := metadata.Copy(omd) |  | ||||||
| 		md[metadata.HeaderContentType] = p.ContentType() |  | ||||||
| 		topic := p.Topic() |  | ||||||
| 		if len(exchange) > 0 { |  | ||||||
| 			topic = exchange |  | ||||||
| 		} |  | ||||||
| 		md[metadata.HeaderTopic] = topic |  | ||||||
| 		iter := p.Metadata().Iterator() |  | ||||||
| 		var k, v string |  | ||||||
| 		for iter.Next(&k, &v) { |  | ||||||
| 			md.Set(k, v) |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		var body []byte |  | ||||||
|  |  | ||||||
| 		// passed in raw data |  | ||||||
| 		if d, ok := p.Payload().(*codec.Frame); ok { |  | ||||||
| 			body = d.Data |  | ||||||
| 		} else { |  | ||||||
| 			// use codec for payload |  | ||||||
| 			cf, err := n.newCodec(p.ContentType()) |  | ||||||
| 			if err != nil { |  | ||||||
| 				return errors.InternalServerError("go.micro.client", "%s", err) |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			// set the body |  | ||||||
| 			b, err := cf.Marshal(p.Payload()) |  | ||||||
| 			if err != nil { |  | ||||||
| 				return errors.InternalServerError("go.micro.client", "%s", err) |  | ||||||
| 			} |  | ||||||
| 			body = b |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		msgs = append(msgs, &broker.Message{Header: md, Body: body}) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if len(msgs) == 1 { |  | ||||||
| 		return n.opts.Broker.Publish(ctx, msgs[0].Header[metadata.HeaderTopic], msgs[0], |  | ||||||
| 			broker.PublishContext(options.Context), |  | ||||||
| 			broker.PublishBodyOnly(options.BodyOnly), |  | ||||||
| 		) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return n.opts.Broker.BatchPublish(ctx, msgs, |  | ||||||
| 		broker.PublishContext(options.Context), |  | ||||||
| 		broker.PublishBodyOnly(options.BodyOnly), |  | ||||||
| 	) |  | ||||||
| } |  | ||||||
|   | |||||||
| @@ -1,35 +0,0 @@ | |||||||
| package client |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"testing" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type testHook struct { |  | ||||||
| 	f bool |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *testHook) Publish(fn FuncPublish) FuncPublish { |  | ||||||
| 	return func(ctx context.Context, msg Message, opts ...PublishOption) error { |  | ||||||
| 		t.f = true |  | ||||||
| 		return fn(ctx, msg, opts...) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestNoopHook(t *testing.T) { |  | ||||||
| 	h := &testHook{} |  | ||||||
|  |  | ||||||
| 	c := NewClient(Hooks(HookPublish(h.Publish))) |  | ||||||
|  |  | ||||||
| 	if err := c.Init(); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := c.Publish(context.TODO(), c.NewMessage("", nil, MessageContentType("application/octet-stream"))); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if !h.f { |  | ||||||
| 		t.Fatal("hook not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -6,17 +6,17 @@ import ( | |||||||
| 	"net" | 	"net" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/meter" | ||||||
| 	"go.unistack.org/micro/v3/options" | 	"go.unistack.org/micro/v4/options" | ||||||
| 	"go.unistack.org/micro/v3/register" | 	"go.unistack.org/micro/v4/register" | ||||||
| 	"go.unistack.org/micro/v3/router" | 	"go.unistack.org/micro/v4/router" | ||||||
| 	"go.unistack.org/micro/v3/selector" | 	"go.unistack.org/micro/v4/selector" | ||||||
| 	"go.unistack.org/micro/v3/selector/random" | 	"go.unistack.org/micro/v4/selector/random" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Options holds client options | // Options holds client options | ||||||
| @@ -137,43 +137,6 @@ func Context(ctx context.Context) Option { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // NewPublishOptions create new PublishOptions struct from option |  | ||||||
| func NewPublishOptions(opts ...PublishOption) PublishOptions { |  | ||||||
| 	options := PublishOptions{} |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&options) |  | ||||||
| 	} |  | ||||||
| 	return options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // PublishOptions holds publish options |  | ||||||
| type PublishOptions struct { |  | ||||||
| 	// Context used for external options |  | ||||||
| 	Context context.Context |  | ||||||
| 	// Exchange topic exchange name |  | ||||||
| 	Exchange string |  | ||||||
| 	// BodyOnly will publish only message body |  | ||||||
| 	BodyOnly bool |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewMessageOptions creates message options struct |  | ||||||
| func NewMessageOptions(opts ...MessageOption) MessageOptions { |  | ||||||
| 	options := MessageOptions{Metadata: metadata.New(1)} |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&options) |  | ||||||
| 	} |  | ||||||
| 	return options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // MessageOptions holds client message options |  | ||||||
| type MessageOptions struct { |  | ||||||
| 	// Metadata additional metadata |  | ||||||
| 	Metadata metadata.Metadata |  | ||||||
| 	// ContentType specify content-type of message |  | ||||||
| 	// deprecated |  | ||||||
| 	ContentType string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewRequestOptions creates new RequestOptions struct | // NewRequestOptions creates new RequestOptions struct | ||||||
| func NewRequestOptions(opts ...RequestOption) RequestOptions { | func NewRequestOptions(opts ...RequestOption) RequestOptions { | ||||||
| 	options := RequestOptions{} | 	options := RequestOptions{} | ||||||
| @@ -374,43 +337,6 @@ func DialTimeout(d time.Duration) Option { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // WithExchange sets the exchange to route a message through |  | ||||||
| // Deprecated |  | ||||||
| func WithExchange(e string) PublishOption { |  | ||||||
| 	return func(o *PublishOptions) { |  | ||||||
| 		o.Exchange = e |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // PublishExchange sets the exchange to route a message through |  | ||||||
| func PublishExchange(e string) PublishOption { |  | ||||||
| 	return func(o *PublishOptions) { |  | ||||||
| 		o.Exchange = e |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithBodyOnly publish only message body |  | ||||||
| // DERECATED |  | ||||||
| func WithBodyOnly(b bool) PublishOption { |  | ||||||
| 	return func(o *PublishOptions) { |  | ||||||
| 		o.BodyOnly = b |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // PublishBodyOnly publish only message body |  | ||||||
| func PublishBodyOnly(b bool) PublishOption { |  | ||||||
| 	return func(o *PublishOptions) { |  | ||||||
| 		o.BodyOnly = b |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // PublishContext sets the context in publish options |  | ||||||
| func PublishContext(ctx context.Context) PublishOption { |  | ||||||
| 	return func(o *PublishOptions) { |  | ||||||
| 		o.Context = ctx |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithContextDialer pass ContextDialer to client call | // WithContextDialer pass ContextDialer to client call | ||||||
| func WithContextDialer(fn func(context.Context, string) (net.Conn, error)) CallOption { | func WithContextDialer(fn func(context.Context, string) (net.Conn, error)) CallOption { | ||||||
| 	return func(o *CallOptions) { | 	return func(o *CallOptions) { | ||||||
| @@ -522,30 +448,6 @@ func WithSelectOptions(sops ...selector.SelectOption) CallOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // WithMessageContentType sets the message content type |  | ||||||
| // Deprecated |  | ||||||
| func WithMessageContentType(ct string) MessageOption { |  | ||||||
| 	return func(o *MessageOptions) { |  | ||||||
| 		o.Metadata.Set(metadata.HeaderContentType, ct) |  | ||||||
| 		o.ContentType = ct |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // MessageContentType sets the message content type |  | ||||||
| func MessageContentType(ct string) MessageOption { |  | ||||||
| 	return func(o *MessageOptions) { |  | ||||||
| 		o.Metadata.Set(metadata.HeaderContentType, ct) |  | ||||||
| 		o.ContentType = ct |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // MessageMetadata sets the message metadata |  | ||||||
| func MessageMetadata(k, v string) MessageOption { |  | ||||||
| 	return func(o *MessageOptions) { |  | ||||||
| 		o.Metadata.Set(k, v) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // StreamingRequest specifies that request is streaming | // StreamingRequest specifies that request is streaming | ||||||
| func StreamingRequest(b bool) RequestOption { | func StreamingRequest(b bool) RequestOption { | ||||||
| 	return func(o *RequestOptions) { | 	return func(o *RequestOptions) { | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ package client | |||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/errors" | 	"go.unistack.org/micro/v4/errors" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // RetryFunc that returning either false or a non-nil error will result in the call not being retried | // RetryFunc that returning either false or a non-nil error will result in the call not being retried | ||||||
|   | |||||||
| @@ -5,7 +5,7 @@ import ( | |||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/errors" | 	"go.unistack.org/micro/v4/errors" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func TestRetryAlways(t *testing.T) { | func TestRetryAlways(t *testing.T) { | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| package client | package client | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type testRequest struct { | type testRequest struct { | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ package cluster | |||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Message sent to member in cluster | // Message sent to member in cluster | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ syntax = "proto3"; | |||||||
| package micro.codec; | package micro.codec; | ||||||
|  |  | ||||||
| option cc_enable_arenas = true; | option cc_enable_arenas = true; | ||||||
| option go_package = "go.unistack.org/micro/v3/codec;codec"; | option go_package = "go.unistack.org/micro/v4/codec;codec"; | ||||||
| option java_multiple_files = true; | option java_multiple_files = true; | ||||||
| option java_outer_classname = "MicroCodec"; | option java_outer_classname = "MicroCodec"; | ||||||
| option java_package = "micro.codec"; | option java_package = "micro.codec"; | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ package codec | |||||||
| import ( | import ( | ||||||
| 	"encoding/json" | 	"encoding/json" | ||||||
|  |  | ||||||
| 	codecpb "go.unistack.org/micro-proto/v3/codec" | 	codecpb "go.unistack.org/micro-proto/v4/codec" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type noopCodec struct { | type noopCodec struct { | ||||||
|   | |||||||
| @@ -3,9 +3,9 @@ package codec | |||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/meter" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Option func | // Option func | ||||||
|   | |||||||
| @@ -9,10 +9,10 @@ import ( | |||||||
|  |  | ||||||
| 	"dario.cat/mergo" | 	"dario.cat/mergo" | ||||||
| 	"github.com/google/uuid" | 	"github.com/google/uuid" | ||||||
| 	"go.unistack.org/micro/v3/options" | 	"go.unistack.org/micro/v4/options" | ||||||
| 	mid "go.unistack.org/micro/v3/util/id" | 	mid "go.unistack.org/micro/v4/util/id" | ||||||
| 	rutil "go.unistack.org/micro/v3/util/reflect" | 	rutil "go.unistack.org/micro/v4/util/reflect" | ||||||
| 	mtime "go.unistack.org/micro/v3/util/time" | 	mtime "go.unistack.org/micro/v4/util/time" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type defaultConfig struct { | type defaultConfig struct { | ||||||
| @@ -210,7 +210,7 @@ func fillValue(value reflect.Value, val string) error { | |||||||
| 				return err | 				return err | ||||||
| 			} | 			} | ||||||
| 			value.Set(reflect.ValueOf(v)) | 			value.Set(reflect.ValueOf(v)) | ||||||
| 		case value.Type().String() == "time.Duration" && value.Type().PkgPath() == "go.unistack.org/micro/v3/util/time": | 		case value.Type().String() == "time.Duration" && value.Type().PkgPath() == "go.unistack.org/micro/v4/util/time": | ||||||
| 			v, err := mtime.ParseDuration(val) | 			v, err := mtime.ParseDuration(val) | ||||||
| 			if err != nil { | 			if err != nil { | ||||||
| 				return err | 				return err | ||||||
|   | |||||||
| @@ -7,8 +7,8 @@ import ( | |||||||
| 	"testing" | 	"testing" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/config" | 	"go.unistack.org/micro/v4/config" | ||||||
| 	mtime "go.unistack.org/micro/v3/util/time" | 	mtime "go.unistack.org/micro/v4/util/time" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type cfg struct { | type cfg struct { | ||||||
|   | |||||||
| @@ -4,11 +4,11 @@ import ( | |||||||
| 	"context" | 	"context" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/meter" | ||||||
| 	"go.unistack.org/micro/v3/options" | 	"go.unistack.org/micro/v4/options" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Options hold the config options | // Options hold the config options | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ syntax = "proto3"; | |||||||
| package micro.errors; | package micro.errors; | ||||||
|  |  | ||||||
| option cc_enable_arenas = true; | option cc_enable_arenas = true; | ||||||
| option go_package = "go.unistack.org/micro/v3/errors;errors"; | option go_package = "go.unistack.org/micro/v4/errors;errors"; | ||||||
| option java_multiple_files = true; | option java_multiple_files = true; | ||||||
| option java_outer_classname = "MicroErrors"; | option java_outer_classname = "MicroErrors"; | ||||||
| option java_package = "micro.errors"; | option java_package = "micro.errors"; | ||||||
|   | |||||||
							
								
								
									
										27
									
								
								event.go
									
									
									
									
									
								
							
							
						
						
									
										27
									
								
								event.go
									
									
									
									
									
								
							| @@ -1,27 +0,0 @@ | |||||||
| package micro |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/client" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // Event is used to publish messages to a topic |  | ||||||
| type Event interface { |  | ||||||
| 	// Publish publishes a message to the event topic |  | ||||||
| 	Publish(ctx context.Context, msg interface{}, opts ...client.PublishOption) error |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type event struct { |  | ||||||
| 	c     client.Client |  | ||||||
| 	topic string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewEvent creates a new event publisher |  | ||||||
| func NewEvent(topic string, c client.Client) Event { |  | ||||||
| 	return &event{c, topic} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (e *event) Publish(ctx context.Context, msg interface{}, opts ...client.PublishOption) error { |  | ||||||
| 	return e.c.Publish(ctx, e.c.NewMessage(e.topic, msg), opts...) |  | ||||||
| } |  | ||||||
| @@ -15,15 +15,6 @@ func FromContext(ctx context.Context) (Flow, bool) { | |||||||
| 	return c, ok | 	return c, ok | ||||||
| } | } | ||||||
|  |  | ||||||
| // MustContext returns Flow from context |  | ||||||
| func MustContext(ctx context.Context) Flow { |  | ||||||
| 	f, ok := FromContext(ctx) |  | ||||||
| 	if !ok { |  | ||||||
| 		panic("missing flow") |  | ||||||
| 	} |  | ||||||
| 	return f |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewContext stores Flow to context | // NewContext stores Flow to context | ||||||
| func NewContext(ctx context.Context, f Flow) context.Context { | func NewContext(ctx context.Context, f Flow) context.Context { | ||||||
| 	if ctx == nil { | 	if ctx == nil { | ||||||
|   | |||||||
| @@ -1,3 +1,5 @@ | |||||||
|  | //go:build ignore | ||||||
|  |  | ||||||
| package flow | package flow | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
|   | |||||||
							
								
								
									
										342
									
								
								flow/default.go
									
									
									
									
									
								
							
							
						
						
									
										342
									
								
								flow/default.go
									
									
									
									
									
								
							| @@ -1,17 +1,19 @@ | |||||||
|  | //go:build ignore | ||||||
|  |  | ||||||
| package flow | package flow | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| 	"fmt" | 	"fmt" | ||||||
|  | 	"path/filepath" | ||||||
| 	"sync" | 	"sync" | ||||||
|  |  | ||||||
| 	"github.com/silas/dag" | 	"github.com/heimdalr/dag" | ||||||
| 	"go.unistack.org/micro/v3/client" | 	"go.unistack.org/micro/v4/client" | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/store" | ||||||
| 	"go.unistack.org/micro/v3/store" | 	"go.unistack.org/micro/v4/util/id" | ||||||
| 	"go.unistack.org/micro/v3/util/id" |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type microFlow struct { | type microFlow struct { | ||||||
| @@ -20,7 +22,7 @@ type microFlow struct { | |||||||
|  |  | ||||||
| type microWorkflow struct { | type microWorkflow struct { | ||||||
| 	opts   Options | 	opts   Options | ||||||
| 	g      *dag.AcyclicGraph | 	g      *dag.DAG | ||||||
| 	steps  map[string]Step | 	steps  map[string]Step | ||||||
| 	id     string | 	id     string | ||||||
| 	status Status | 	status Status | ||||||
| @@ -32,20 +34,20 @@ func (w *microWorkflow) ID() string { | |||||||
| 	return w.id | 	return w.id | ||||||
| } | } | ||||||
|  |  | ||||||
| func (w *microWorkflow) Steps() ([][]Step, error) { |  | ||||||
| 	return w.getSteps("", false) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (w *microWorkflow) Status() Status { | func (w *microWorkflow) Status() Status { | ||||||
| 	return w.status | 	return w.status | ||||||
| } | } | ||||||
|  |  | ||||||
| func (w *microWorkflow) AppendSteps(steps ...Step) error { | func (w *microWorkflow) AppendSteps(steps ...Step) error { | ||||||
|  | 	var err error | ||||||
| 	w.Lock() | 	w.Lock() | ||||||
|  | 	defer w.Unlock() | ||||||
|  |  | ||||||
| 	for _, s := range steps { | 	for _, s := range steps { | ||||||
| 		w.steps[s.String()] = s | 		w.steps[s.String()] = s | ||||||
| 		w.g.Add(s) | 		if _, err = w.g.AddVertex(s); err != nil { | ||||||
|  | 			return err | ||||||
|  | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	for _, dst := range steps { | 	for _, dst := range steps { | ||||||
| @@ -54,18 +56,13 @@ func (w *microWorkflow) AppendSteps(steps ...Step) error { | |||||||
| 			if !ok { | 			if !ok { | ||||||
| 				return ErrStepNotExists | 				return ErrStepNotExists | ||||||
| 			} | 			} | ||||||
| 			w.g.Connect(dag.BasicEdge(src, dst)) | 			if err = w.g.AddEdge(src.String(), dst.String()); err != nil { | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := w.g.Validate(); err != nil { |  | ||||||
| 		w.Unlock() |  | ||||||
| 				return err | 				return err | ||||||
| 			} | 			} | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	w.g.TransitiveReduction() | 	w.g.ReduceTransitively() | ||||||
|  |  | ||||||
| 	w.Unlock() |  | ||||||
|  |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
| @@ -74,10 +71,11 @@ func (w *microWorkflow) RemoveSteps(steps ...Step) error { | |||||||
| 	// TODO: handle case when some step requires or required by removed step | 	// TODO: handle case when some step requires or required by removed step | ||||||
|  |  | ||||||
| 	w.Lock() | 	w.Lock() | ||||||
|  | 	defer w.Unlock() | ||||||
|  |  | ||||||
| 	for _, s := range steps { | 	for _, s := range steps { | ||||||
| 		delete(w.steps, s.String()) | 		delete(w.steps, s.String()) | ||||||
| 		w.g.Remove(s) | 		w.g.DeleteVertex(s.String()) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	for _, dst := range steps { | 	for _, dst := range steps { | ||||||
| @@ -86,91 +84,34 @@ func (w *microWorkflow) RemoveSteps(steps ...Step) error { | |||||||
| 			if !ok { | 			if !ok { | ||||||
| 				return ErrStepNotExists | 				return ErrStepNotExists | ||||||
| 			} | 			} | ||||||
| 			w.g.Connect(dag.BasicEdge(src, dst)) | 			w.g.AddEdge(src.String(), dst.String()) | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err := w.g.Validate(); err != nil { | 	w.g.ReduceTransitively() | ||||||
| 		w.Unlock() |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	w.g.TransitiveReduction() |  | ||||||
|  |  | ||||||
| 	w.Unlock() |  | ||||||
|  |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (w *microWorkflow) getSteps(start string, reverse bool) ([][]Step, error) { |  | ||||||
| 	var steps [][]Step |  | ||||||
| 	var root dag.Vertex |  | ||||||
| 	var err error |  | ||||||
|  |  | ||||||
| 	fn := func(n dag.Vertex, idx int) error { |  | ||||||
| 		if idx == 0 { |  | ||||||
| 			steps = make([][]Step, 1) |  | ||||||
| 			steps[0] = make([]Step, 0, 1) |  | ||||||
| 		} else if idx >= len(steps) { |  | ||||||
| 			tsteps := make([][]Step, idx+1) |  | ||||||
| 			copy(tsteps, steps) |  | ||||||
| 			steps = tsteps |  | ||||||
| 			steps[idx] = make([]Step, 0, 1) |  | ||||||
| 		} |  | ||||||
| 		steps[idx] = append(steps[idx], n.(Step)) |  | ||||||
| 		return nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if start != "" { |  | ||||||
| 		var ok bool |  | ||||||
| 		w.RLock() |  | ||||||
| 		root, ok = w.steps[start] |  | ||||||
| 		w.RUnlock() |  | ||||||
| 		if !ok { |  | ||||||
| 			return nil, ErrStepNotExists |  | ||||||
| 		} |  | ||||||
| 	} else { |  | ||||||
| 		root, err = w.g.Root() |  | ||||||
| 		if err != nil { |  | ||||||
| 			return nil, err |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if reverse { |  | ||||||
| 		err = w.g.SortedReverseDepthFirstWalk([]dag.Vertex{root}, fn) |  | ||||||
| 	} else { |  | ||||||
| 		err = w.g.SortedDepthFirstWalk([]dag.Vertex{root}, fn) |  | ||||||
| 	} |  | ||||||
| 	if err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return steps, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (w *microWorkflow) Abort(ctx context.Context, id string) error { | func (w *microWorkflow) Abort(ctx context.Context, id string) error { | ||||||
| 	workflowStore := store.NewNamespaceStore(w.opts.Store, "workflows"+w.opts.Store.Options().Separator+id) | 	workflowStore := store.NewNamespaceStore(w.opts.Store, filepath.Join("workflows", id)) | ||||||
| 	return workflowStore.Write(ctx, "status", &codec.Frame{Data: []byte(StatusAborted.String())}) | 	return workflowStore.Write(ctx, "status", &codec.Frame{Data: []byte(StatusAborted.String())}) | ||||||
| } | } | ||||||
|  |  | ||||||
| func (w *microWorkflow) Suspend(ctx context.Context, id string) error { | func (w *microWorkflow) Suspend(ctx context.Context, id string) error { | ||||||
| 	workflowStore := store.NewNamespaceStore(w.opts.Store, "workflows"+w.opts.Store.Options().Separator+id) | 	workflowStore := store.NewNamespaceStore(w.opts.Store, filepath.Join("workflows", id)) | ||||||
| 	return workflowStore.Write(ctx, "status", &codec.Frame{Data: []byte(StatusSuspend.String())}) | 	return workflowStore.Write(ctx, "status", &codec.Frame{Data: []byte(StatusSuspend.String())}) | ||||||
| } | } | ||||||
|  |  | ||||||
| func (w *microWorkflow) Resume(ctx context.Context, id string) error { | func (w *microWorkflow) Resume(ctx context.Context, id string) error { | ||||||
| 	workflowStore := store.NewNamespaceStore(w.opts.Store, "workflows"+w.opts.Store.Options().Separator+id) | 	workflowStore := store.NewNamespaceStore(w.opts.Store, filepath.Join("workflows", id)) | ||||||
| 	return workflowStore.Write(ctx, "status", &codec.Frame{Data: []byte(StatusRunning.String())}) | 	return workflowStore.Write(ctx, "status", &codec.Frame{Data: []byte(StatusRunning.String())}) | ||||||
| } | } | ||||||
|  |  | ||||||
| func (w *microWorkflow) Execute(ctx context.Context, req *Message, opts ...ExecuteOption) (string, error) { | func (w *microWorkflow) Execute(ctx context.Context, req *Message, opts ...ExecuteOption) (string, error) { | ||||||
| 	w.Lock() | 	w.Lock() | ||||||
| 	if !w.init { | 	if !w.init { | ||||||
| 		if err := w.g.Validate(); err != nil { | 		w.g.ReduceTransitively() | ||||||
| 			w.Unlock() |  | ||||||
| 			return "", err |  | ||||||
| 		} |  | ||||||
| 		w.g.TransitiveReduction() |  | ||||||
| 		w.init = true | 		w.init = true | ||||||
| 	} | 	} | ||||||
| 	w.Unlock() | 	w.Unlock() | ||||||
| @@ -180,26 +121,11 @@ func (w *microWorkflow) Execute(ctx context.Context, req *Message, opts ...Execu | |||||||
| 		return "", err | 		return "", err | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	stepStore := store.NewNamespaceStore(w.opts.Store, "steps"+w.opts.Store.Options().Separator+eid) | 	//	stepStore := store.NewNamespaceStore(w.opts.Store, filepath.Join("steps", eid)) | ||||||
| 	workflowStore := store.NewNamespaceStore(w.opts.Store, "workflows"+w.opts.Store.Options().Separator+eid) | 	workflowStore := store.NewNamespaceStore(w.opts.Store, filepath.Join("workflows", eid)) | ||||||
|  |  | ||||||
| 	options := NewExecuteOptions(opts...) | 	options := NewExecuteOptions(opts...) | ||||||
|  |  | ||||||
| 	steps, err := w.getSteps(options.Start, options.Reverse) |  | ||||||
| 	if err != nil { |  | ||||||
| 		if werr := workflowStore.Write(w.opts.Context, "status", &codec.Frame{Data: []byte(StatusPending.String())}); werr != nil { |  | ||||||
| 			w.opts.Logger.Error(w.opts.Context, "store write error", werr) |  | ||||||
| 		} |  | ||||||
| 		return "", err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	var wg sync.WaitGroup |  | ||||||
| 	cherr := make(chan error, 1) |  | ||||||
| 	chstatus := make(chan Status, 1) |  | ||||||
|  |  | ||||||
| 	nctx, cancel := context.WithCancel(ctx) |  | ||||||
| 	defer cancel() |  | ||||||
|  |  | ||||||
| 	nopts := make([]ExecuteOption, 0, len(opts)+5) | 	nopts := make([]ExecuteOption, 0, len(opts)+5) | ||||||
|  |  | ||||||
| 	nopts = append(nopts, | 	nopts = append(nopts, | ||||||
| @@ -209,21 +135,152 @@ func (w *microWorkflow) Execute(ctx context.Context, req *Message, opts ...Execu | |||||||
| 		ExecuteMeter(w.opts.Meter), | 		ExecuteMeter(w.opts.Meter), | ||||||
| 	) | 	) | ||||||
| 	nopts = append(nopts, opts...) | 	nopts = append(nopts, opts...) | ||||||
| 	done := make(chan struct{}) |  | ||||||
|  |  | ||||||
| 	if werr := workflowStore.Write(w.opts.Context, "status", &codec.Frame{Data: []byte(StatusRunning.String())}); werr != nil { | 	if werr := workflowStore.Write(ctx, "status", &codec.Frame{Data: []byte(StatusRunning.String())}); werr != nil { | ||||||
| 		w.opts.Logger.Error(w.opts.Context, "store write error", werr) | 		w.opts.Logger.Error(ctx, "store error: %v", werr) | ||||||
| 		return eid, werr | 		return eid, werr | ||||||
| 	} | 	} | ||||||
| 	for idx := range steps { |  | ||||||
| 		for nidx := range steps[idx] { | 	var startID string | ||||||
| 			cstep := steps[idx][nidx] | 	if options.Start == "" { | ||||||
| 			if werr := stepStore.Write(ctx, cstep.ID()+w.opts.Store.Options().Separator+"status", &codec.Frame{Data: []byte(StatusPending.String())}); werr != nil { | 		mp := w.g.GetRoots() | ||||||
| 				return eid, werr | 		if len(mp) != 1 { | ||||||
|  | 			return eid, ErrStepNotExists | ||||||
|  | 		} | ||||||
|  | 		for k := range mp { | ||||||
|  | 			startID = k | ||||||
|  | 		} | ||||||
|  | 	} else { | ||||||
|  | 		for k, v := range w.g.GetVertices() { | ||||||
|  | 			if v == options.Start { | ||||||
|  | 				startID = k | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|  | 	if startID == "" { | ||||||
|  | 		return eid, ErrStepNotExists | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if options.Async { | ||||||
|  | 		go w.handleWorkflow(startID, nopts...) | ||||||
|  | 		return eid, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	return eid, w.handleWorkflow(startID, nopts...) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *microWorkflow) handleWorkflow(startID string, opts ...ExecuteOption) error { | ||||||
|  | 	w.RLock() | ||||||
|  | 	defer w.RUnlock() | ||||||
|  |  | ||||||
|  | 	//	stepStore := store.NewNamespaceStore(w.opts.Store, filepath.Join("steps", eid)) | ||||||
|  | 	// workflowStore := store.NewNamespaceStore(w.opts.Store, filepath.Join("workflows", eid)) | ||||||
|  |  | ||||||
|  | 	// Get IDs of all descendant vertices. | ||||||
|  | 	flowIDs, errDes := w.g.GetDescendants(startID) | ||||||
|  | 	if errDes != nil { | ||||||
|  | 		return errDes | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	// inputChannels provides for input channels for each of the descendant vertices (+ the start-vertex). | ||||||
|  | 	inputChannels := make(map[string]chan FlowResult, len(flowIDs)+1) | ||||||
|  |  | ||||||
|  | 	// Iterate vertex IDs and create an input channel for each of them and a single | ||||||
|  | 	// output channel for leaves. Note, this "pre-flight" is needed to ensure we | ||||||
|  | 	// really have an input channel regardless of how we traverse the tree and spawn | ||||||
|  | 	// workers. | ||||||
|  | 	leafCount := 0 | ||||||
|  |  | ||||||
|  | 	for id := range flowIDs { | ||||||
|  |  | ||||||
|  | 		// Get all parents of this vertex. | ||||||
|  | 		parents, errPar := w.g.GetParents(id) | ||||||
|  | 		if errPar != nil { | ||||||
|  | 			return errPar | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		// Create a buffered input channel that has capacity for all parent results. | ||||||
|  | 		inputChannels[id] = make(chan FlowResult, len(parents)) | ||||||
|  |  | ||||||
|  | 		if ok, err := w.g.IsLeaf(id); ok && err == nil { | ||||||
|  | 			leafCount += 1 | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	// outputChannel caries the results of leaf vertices. | ||||||
|  | 	outputChannel := make(chan FlowResult, leafCount) | ||||||
|  |  | ||||||
|  | 	// To also process the start vertex and to have its results being passed to its | ||||||
|  | 	// children, add it to the vertex IDs. Also add an input channel for the start | ||||||
|  | 	// vertex and feed the inputs to this channel. | ||||||
|  | 	flowIDs[startID] = struct{}{} | ||||||
|  | 	inputChannels[startID] = make(chan FlowResult, len(inputs)) | ||||||
|  | 	for _, i := range inputs { | ||||||
|  | 		inputChannels[startID] <- i | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	wg := sync.WaitGroup{} | ||||||
|  |  | ||||||
|  | 	// Iterate all vertex IDs (now incl. start vertex) and handle each worker (incl. | ||||||
|  | 	// inputs and outputs) in a separate goroutine. | ||||||
|  | 	for id := range flowIDs { | ||||||
|  |  | ||||||
|  | 		// Get all children of this vertex that later need to be notified. Note, we | ||||||
|  | 		// collect all children before the goroutine to be able to release the read | ||||||
|  | 		// lock as early as possible. | ||||||
|  | 		children, errChildren := w.g.GetChildren(id) | ||||||
|  | 		if errChildren != nil { | ||||||
|  | 			return errChildren | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		// Remember to wait for this goroutine. | ||||||
|  | 		wg.Add(1) | ||||||
|  |  | ||||||
|  | 		go func(id string) { | ||||||
|  | 			// Get this vertex's input channel. | ||||||
|  | 			// Note, only concurrent read here, which is fine. | ||||||
|  | 			c := inputChannels[id] | ||||||
|  |  | ||||||
|  | 			// Await all parent inputs and stuff them into a slice. | ||||||
|  | 			parentCount := cap(c) | ||||||
|  | 			parentResults := make([]FlowResult, parentCount) | ||||||
|  | 			for i := 0; i < parentCount; i++ { | ||||||
|  | 				parentResults[i] = <-c | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			// Execute the worker. | ||||||
|  | 			errWorker := callback(w.g, id, parentResults) | ||||||
|  | 			if errWorker != nil { | ||||||
|  | 				return errWorker | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			// Send this worker's FlowResult onto all children's input channels or, if it is | ||||||
|  | 			// a leaf (i.e. no children), send the result onto the output channel. | ||||||
|  | 			if len(children) > 0 { | ||||||
|  | 				for child := range children { | ||||||
|  | 					inputChannels[child] <- flowResult | ||||||
|  | 				} | ||||||
|  | 			} else { | ||||||
|  | 				outputChannel <- flowResult | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			// "Sign off". | ||||||
|  | 			wg.Done() | ||||||
|  | 		}(id) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	// Wait for all go routines to finish. | ||||||
|  | 	wg.Wait() | ||||||
|  |  | ||||||
|  | 	// Await all leaf vertex results and stuff them into a slice. | ||||||
|  | 	resultCount := cap(outputChannel) | ||||||
|  | 	results := make([]FlowResult, resultCount) | ||||||
|  | 	for i := 0; i < resultCount; i++ { | ||||||
|  | 		results[i] = <-outputChannel | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	/* | ||||||
| 		go func() { | 		go func() { | ||||||
| 			for idx := range steps { | 			for idx := range steps { | ||||||
| 				for nidx := range steps[idx] { | 				for nidx := range steps[idx] { | ||||||
| @@ -237,7 +294,7 @@ func (w *microWorkflow) Execute(ctx context.Context, req *Message, opts ...Execu | |||||||
| 						return | 						return | ||||||
| 					} | 					} | ||||||
| 					if w.opts.Logger.V(logger.TraceLevel) { | 					if w.opts.Logger.V(logger.TraceLevel) { | ||||||
| 					w.opts.Logger.Trace(nctx, fmt.Sprintf("will be executed %v", steps[idx][nidx])) | 						w.opts.Logger.Tracef(nctx, "will be executed %v", steps[idx][nidx]) | ||||||
| 					} | 					} | ||||||
| 					cstep := steps[idx][nidx] | 					cstep := steps[idx][nidx] | ||||||
| 					// nolint: nestif | 					// nolint: nestif | ||||||
| @@ -245,65 +302,65 @@ func (w *microWorkflow) Execute(ctx context.Context, req *Message, opts ...Execu | |||||||
| 						wg.Add(1) | 						wg.Add(1) | ||||||
| 						go func(step Step) { | 						go func(step Step) { | ||||||
| 							defer wg.Done() | 							defer wg.Done() | ||||||
| 						if werr := stepStore.Write(ctx, step.ID()+w.opts.Store.Options().Separator+"req", req); werr != nil { | 							if werr := stepStore.Write(ctx, filepath.Join(step.ID(), "req"), req); werr != nil { | ||||||
| 								cherr <- werr | 								cherr <- werr | ||||||
| 								return | 								return | ||||||
| 							} | 							} | ||||||
| 						if werr := stepStore.Write(ctx, step.ID()+w.opts.Store.Options().Separator+"status", &codec.Frame{Data: []byte(StatusRunning.String())}); werr != nil { | 							if werr := stepStore.Write(ctx, filepath.Join(step.ID(), "status"), &codec.Frame{Data: []byte(StatusRunning.String())}); werr != nil { | ||||||
| 								cherr <- werr | 								cherr <- werr | ||||||
| 								return | 								return | ||||||
| 							} | 							} | ||||||
| 							rsp, serr := step.Execute(nctx, req, nopts...) | 							rsp, serr := step.Execute(nctx, req, nopts...) | ||||||
| 							if serr != nil { | 							if serr != nil { | ||||||
| 								step.SetStatus(StatusFailure) | 								step.SetStatus(StatusFailure) | ||||||
| 							if werr := stepStore.Write(ctx, step.ID()+w.opts.Store.Options().Separator+"rsp", serr); werr != nil && w.opts.Logger.V(logger.ErrorLevel) { | 								if werr := stepStore.Write(ctx, filepath.Join(step.ID(), "rsp"), serr); werr != nil && w.opts.Logger.V(logger.ErrorLevel) { | ||||||
| 								w.opts.Logger.Error(ctx, "store write error", werr) | 									w.opts.Logger.Errorf(ctx, "store write error: %v", werr) | ||||||
| 								} | 								} | ||||||
| 							if werr := stepStore.Write(ctx, step.ID()+w.opts.Store.Options().Separator+"status", &codec.Frame{Data: []byte(StatusFailure.String())}); werr != nil && w.opts.Logger.V(logger.ErrorLevel) { | 								if werr := stepStore.Write(ctx, filepath.Join(step.ID(), "status"), &codec.Frame{Data: []byte(StatusFailure.String())}); werr != nil && w.opts.Logger.V(logger.ErrorLevel) { | ||||||
| 								w.opts.Logger.Error(ctx, "store write error", werr) | 									w.opts.Logger.Errorf(ctx, "store write error: %v", werr) | ||||||
| 								} | 								} | ||||||
| 								cherr <- serr | 								cherr <- serr | ||||||
| 								return | 								return | ||||||
| 							} | 							} | ||||||
| 						if werr := stepStore.Write(ctx, step.ID()+w.opts.Store.Options().Separator+"rsp", rsp); werr != nil { | 							if werr := stepStore.Write(ctx, filepath.Join(step.ID(), "rsp"), rsp); werr != nil { | ||||||
| 							w.opts.Logger.Error(ctx, "store write error", werr) | 								w.opts.Logger.Errorf(ctx, "store write error: %v", werr) | ||||||
| 								cherr <- werr | 								cherr <- werr | ||||||
| 								return | 								return | ||||||
| 							} | 							} | ||||||
| 						if werr := stepStore.Write(ctx, step.ID()+w.opts.Store.Options().Separator+"status", &codec.Frame{Data: []byte(StatusSuccess.String())}); werr != nil { | 							if werr := stepStore.Write(ctx, filepath.Join(step.ID(), "status"), &codec.Frame{Data: []byte(StatusSuccess.String())}); werr != nil { | ||||||
| 							w.opts.Logger.Error(ctx, "store write error", werr) | 								w.opts.Logger.Errorf(ctx, "store write error: %v", werr) | ||||||
| 								cherr <- werr | 								cherr <- werr | ||||||
| 								return | 								return | ||||||
| 							} | 							} | ||||||
| 						}(cstep) | 						}(cstep) | ||||||
| 						wg.Wait() | 						wg.Wait() | ||||||
| 					} else { | 					} else { | ||||||
| 					if werr := stepStore.Write(ctx, cstep.ID()+w.opts.Store.Options().Separator+"req", req); werr != nil { | 						if werr := stepStore.Write(ctx, filepath.Join(cstep.ID(), "req"), req); werr != nil { | ||||||
| 							cherr <- werr | 							cherr <- werr | ||||||
| 							return | 							return | ||||||
| 						} | 						} | ||||||
| 					if werr := stepStore.Write(ctx, cstep.ID()+w.opts.Store.Options().Separator+"status", &codec.Frame{Data: []byte(StatusRunning.String())}); werr != nil { | 						if werr := stepStore.Write(ctx, filepath.Join(cstep.ID(), "status"), &codec.Frame{Data: []byte(StatusRunning.String())}); werr != nil { | ||||||
| 							cherr <- werr | 							cherr <- werr | ||||||
| 							return | 							return | ||||||
| 						} | 						} | ||||||
| 						rsp, serr := cstep.Execute(nctx, req, nopts...) | 						rsp, serr := cstep.Execute(nctx, req, nopts...) | ||||||
| 						if serr != nil { | 						if serr != nil { | ||||||
| 							cstep.SetStatus(StatusFailure) | 							cstep.SetStatus(StatusFailure) | ||||||
| 						if werr := stepStore.Write(ctx, cstep.ID()+w.opts.Store.Options().Separator+"rsp", serr); werr != nil && w.opts.Logger.V(logger.ErrorLevel) { | 							if werr := stepStore.Write(ctx, filepath.Join(cstep.ID(), "rsp"), serr); werr != nil && w.opts.Logger.V(logger.ErrorLevel) { | ||||||
| 							w.opts.Logger.Error(ctx, "store write error", werr) | 								w.opts.Logger.Errorf(ctx, "store write error: %v", werr) | ||||||
| 							} | 							} | ||||||
| 						if werr := stepStore.Write(ctx, cstep.ID()+w.opts.Store.Options().Separator+"status", &codec.Frame{Data: []byte(StatusFailure.String())}); werr != nil && w.opts.Logger.V(logger.ErrorLevel) { | 							if werr := stepStore.Write(ctx, filepath.Join(cstep.ID(), "status"), &codec.Frame{Data: []byte(StatusFailure.String())}); werr != nil && w.opts.Logger.V(logger.ErrorLevel) { | ||||||
| 							w.opts.Logger.Error(ctx, "store write error", werr) | 								w.opts.Logger.Errorf(ctx, "store write error: %v", werr) | ||||||
| 							} | 							} | ||||||
| 							cherr <- serr | 							cherr <- serr | ||||||
| 							return | 							return | ||||||
| 						} | 						} | ||||||
| 					if werr := stepStore.Write(ctx, cstep.ID()+w.opts.Store.Options().Separator+"rsp", rsp); werr != nil { | 						if werr := stepStore.Write(ctx, filepath.Join(cstep.ID(), "rsp"), rsp); werr != nil { | ||||||
| 						w.opts.Logger.Error(ctx, "store write error", werr) | 							w.opts.Logger.Errorf(ctx, "store write error: %v", werr) | ||||||
| 							cherr <- werr | 							cherr <- werr | ||||||
| 							return | 							return | ||||||
| 						} | 						} | ||||||
| 					if werr := stepStore.Write(ctx, cstep.ID()+w.opts.Store.Options().Separator+"status", &codec.Frame{Data: []byte(StatusSuccess.String())}); werr != nil { | 						if werr := stepStore.Write(ctx, filepath.Join(cstep.ID(), "status"), &codec.Frame{Data: []byte(StatusSuccess.String())}); werr != nil { | ||||||
| 							cherr <- werr | 							cherr <- werr | ||||||
| 							return | 							return | ||||||
| 						} | 						} | ||||||
| @@ -317,7 +374,7 @@ func (w *microWorkflow) Execute(ctx context.Context, req *Message, opts ...Execu | |||||||
| 			return eid, nil | 			return eid, nil | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 	logger.DefaultLogger.Trace(ctx, "wait for finish or error") | 		logger.Tracef(ctx, "wait for finish or error") | ||||||
| 		select { | 		select { | ||||||
| 		case <-nctx.Done(): | 		case <-nctx.Done(): | ||||||
| 			err = nctx.Err() | 			err = nctx.Err() | ||||||
| @@ -333,19 +390,19 @@ func (w *microWorkflow) Execute(ctx context.Context, req *Message, opts ...Execu | |||||||
| 		switch { | 		switch { | ||||||
| 		case nctx.Err() != nil: | 		case nctx.Err() != nil: | ||||||
| 			if werr := workflowStore.Write(w.opts.Context, "status", &codec.Frame{Data: []byte(StatusAborted.String())}); werr != nil { | 			if werr := workflowStore.Write(w.opts.Context, "status", &codec.Frame{Data: []byte(StatusAborted.String())}); werr != nil { | ||||||
| 			w.opts.Logger.Error(w.opts.Context, "store write error", werr) | 				w.opts.Logger.Errorf(w.opts.Context, "store error: %v", werr) | ||||||
| 			} | 			} | ||||||
| 		case err == nil: | 		case err == nil: | ||||||
| 			if werr := workflowStore.Write(w.opts.Context, "status", &codec.Frame{Data: []byte(StatusSuccess.String())}); werr != nil { | 			if werr := workflowStore.Write(w.opts.Context, "status", &codec.Frame{Data: []byte(StatusSuccess.String())}); werr != nil { | ||||||
| 			w.opts.Logger.Error(w.opts.Context, "store write error", werr) | 				w.opts.Logger.Errorf(w.opts.Context, "store error: %v", werr) | ||||||
| 			} | 			} | ||||||
| 		case err != nil: | 		case err != nil: | ||||||
| 			if werr := workflowStore.Write(w.opts.Context, "status", &codec.Frame{Data: []byte(StatusFailure.String())}); werr != nil { | 			if werr := workflowStore.Write(w.opts.Context, "status", &codec.Frame{Data: []byte(StatusFailure.String())}); werr != nil { | ||||||
| 			w.opts.Logger.Error(w.opts.Context, "store write error", werr) | 				w.opts.Logger.Errorf(w.opts.Context, "store error: %v", werr) | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
|  | 	*/ | ||||||
| 	return eid, err | 	return err | ||||||
| } | } | ||||||
|  |  | ||||||
| // NewFlow create new flow | // NewFlow create new flow | ||||||
| @@ -385,11 +442,11 @@ func (f *microFlow) WorkflowList(ctx context.Context) ([]Workflow, error) { | |||||||
| } | } | ||||||
|  |  | ||||||
| func (f *microFlow) WorkflowCreate(ctx context.Context, id string, steps ...Step) (Workflow, error) { | func (f *microFlow) WorkflowCreate(ctx context.Context, id string, steps ...Step) (Workflow, error) { | ||||||
| 	w := µWorkflow{opts: f.opts, id: id, g: &dag.AcyclicGraph{}, steps: make(map[string]Step, len(steps))} | 	w := µWorkflow{opts: f.opts, id: id, g: &dag.DAG{}, steps: make(map[string]Step, len(steps))} | ||||||
|  |  | ||||||
| 	for _, s := range steps { | 	for _, s := range steps { | ||||||
| 		w.steps[s.String()] = s | 		w.steps[s.String()] = s | ||||||
| 		w.g.Add(s) | 		w.g.AddVertex(s) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	for _, dst := range steps { | 	for _, dst := range steps { | ||||||
| @@ -398,14 +455,11 @@ func (f *microFlow) WorkflowCreate(ctx context.Context, id string, steps ...Step | |||||||
| 			if !ok { | 			if !ok { | ||||||
| 				return nil, ErrStepNotExists | 				return nil, ErrStepNotExists | ||||||
| 			} | 			} | ||||||
| 			w.g.Connect(dag.BasicEdge(src, dst)) | 			w.g.AddEdge(src.String(), dst.String()) | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err := w.g.Validate(); err != nil { | 	w.g.ReduceTransitively() | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
| 	w.g.TransitiveReduction() |  | ||||||
|  |  | ||||||
| 	w.init = true | 	w.init = true | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| // Package flow is an interface used for saga pattern microservice workflow | // Package flow is an interface used for saga pattern microservice workflow | ||||||
| package flow | package flow // import "go.unistack.org/micro/v4/flow" | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| @@ -7,7 +7,7 @@ import ( | |||||||
| 	"sync" | 	"sync" | ||||||
| 	"sync/atomic" | 	"sync/atomic" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var ( | var ( | ||||||
| @@ -125,8 +125,6 @@ type Workflow interface { | |||||||
| 	AppendSteps(steps ...Step) error | 	AppendSteps(steps ...Step) error | ||||||
| 	// Status returns workflow status | 	// Status returns workflow status | ||||||
| 	Status() Status | 	Status() Status | ||||||
| 	// Steps returns steps slice where parallel steps returned on the same level |  | ||||||
| 	Steps() ([][]Step, error) |  | ||||||
| 	// Suspend suspends execution | 	// Suspend suspends execution | ||||||
| 	Suspend(ctx context.Context, id string) error | 	Suspend(ctx context.Context, id string) error | ||||||
| 	// Resume resumes execution | 	// Resume resumes execution | ||||||
|   | |||||||
| @@ -4,11 +4,11 @@ import ( | |||||||
| 	"context" | 	"context" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/client" | 	"go.unistack.org/micro/v4/client" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/meter" | ||||||
| 	"go.unistack.org/micro/v3/store" | 	"go.unistack.org/micro/v4/store" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Option func | // Option func | ||||||
| @@ -123,8 +123,6 @@ type ExecuteOptions struct { | |||||||
| 	Start string | 	Start string | ||||||
| 	// Timeout for execution | 	// Timeout for execution | ||||||
| 	Timeout time.Duration | 	Timeout time.Duration | ||||||
| 	// Reverse execution |  | ||||||
| 	Reverse bool |  | ||||||
| 	// Async enables async execution | 	// Async enables async execution | ||||||
| 	Async bool | 	Async bool | ||||||
| } | } | ||||||
| @@ -167,13 +165,6 @@ func ExecuteContext(ctx context.Context) ExecuteOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // ExecuteReverse says that dag must be run in reverse order |  | ||||||
| func ExecuteReverse(b bool) ExecuteOption { |  | ||||||
| 	return func(o *ExecuteOptions) { |  | ||||||
| 		o.Reverse = b |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ExecuteTimeout pass timeout time.Duration for execution | // ExecuteTimeout pass timeout time.Duration for execution | ||||||
| func ExecuteTimeout(td time.Duration) ExecuteOption { | func ExecuteTimeout(td time.Duration) ExecuteOption { | ||||||
| 	return func(o *ExecuteOptions) { | 	return func(o *ExecuteOptions) { | ||||||
|   | |||||||
| @@ -5,7 +5,7 @@ import ( | |||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func TestFSMStart(t *testing.T) { | func TestFSMStart(t *testing.T) { | ||||||
|   | |||||||
							
								
								
									
										35
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										35
									
								
								go.mod
									
									
									
									
									
								
							| @@ -1,43 +1,34 @@ | |||||||
| module go.unistack.org/micro/v3 | module go.unistack.org/micro/v4 | ||||||
|  |  | ||||||
| go 1.23.4 | go 1.22.0 | ||||||
|  |  | ||||||
| require ( | require ( | ||||||
| 	dario.cat/mergo v1.0.1 | 	dario.cat/mergo v1.0.1 | ||||||
| 	github.com/DATA-DOG/go-sqlmock v1.5.0 | 	github.com/DATA-DOG/go-sqlmock v1.5.2 | ||||||
| 	github.com/KimMachineGun/automemlimit v0.6.1 | 	github.com/KimMachineGun/automemlimit v0.7.0 | ||||||
| 	github.com/ash3in/uuidv8 v1.0.1 | 	github.com/ash3in/uuidv8 v1.2.0 | ||||||
| 	github.com/google/uuid v1.6.0 | 	github.com/google/uuid v1.6.0 | ||||||
| 	github.com/matoous/go-nanoid v1.5.1 | 	github.com/matoous/go-nanoid v1.5.1 | ||||||
| 	github.com/patrickmn/go-cache v2.1.0+incompatible | 	github.com/patrickmn/go-cache v2.1.0+incompatible | ||||||
| 	github.com/silas/dag v0.0.0-20220518035006-a7e85ada93c5 | 	github.com/silas/dag v0.0.0-20220518035006-a7e85ada93c5 | ||||||
|  | 	github.com/spf13/cast v1.7.1 | ||||||
|  | 	go.uber.org/atomic v1.11.0 | ||||||
| 	go.uber.org/automaxprocs v1.6.0 | 	go.uber.org/automaxprocs v1.6.0 | ||||||
| 	go.unistack.org/micro-proto/v3 v3.4.1 | 	go.unistack.org/micro-proto/v4 v4.1.0 | ||||||
| 	golang.org/x/sync v0.10.0 | 	golang.org/x/sync v0.10.0 | ||||||
| 	google.golang.org/grpc v1.68.1 | 	google.golang.org/grpc v1.69.4 | ||||||
| 	google.golang.org/protobuf v1.35.2 | 	google.golang.org/protobuf v1.36.3 | ||||||
| 	gopkg.in/yaml.v3 v3.0.1 | 	gopkg.in/yaml.v3 v3.0.1 | ||||||
| ) | ) | ||||||
|  |  | ||||||
| require ( | require ( | ||||||
| 	github.com/cilium/ebpf v0.16.0 // indirect |  | ||||||
| 	github.com/containerd/cgroups/v3 v3.0.4 // indirect |  | ||||||
| 	github.com/containerd/log v0.1.0 // indirect |  | ||||||
| 	github.com/coreos/go-systemd/v22 v22.5.0 // indirect |  | ||||||
| 	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | 	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||||||
| 	github.com/docker/go-units v0.5.0 // indirect |  | ||||||
| 	github.com/godbus/dbus/v5 v5.1.0 // indirect |  | ||||||
| 	github.com/moby/sys/userns v0.1.0 // indirect |  | ||||||
| 	github.com/opencontainers/runtime-spec v1.2.0 // indirect |  | ||||||
| 	github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect | 	github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect | ||||||
| 	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | 	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||||||
| 	github.com/rogpeppe/go-internal v1.13.1 // indirect | 	github.com/rogpeppe/go-internal v1.13.1 // indirect | ||||||
| 	github.com/sirupsen/logrus v1.9.3 // indirect |  | ||||||
| 	github.com/stretchr/testify v1.10.0 // indirect | 	github.com/stretchr/testify v1.10.0 // indirect | ||||||
| 	go.uber.org/goleak v1.3.0 // indirect | 	golang.org/x/net v0.34.0 // indirect | ||||||
| 	golang.org/x/exp v0.0.0-20241210194714-1829a127f884 // indirect | 	golang.org/x/sys v0.29.0 // indirect | ||||||
| 	golang.org/x/net v0.32.0 // indirect | 	google.golang.org/genproto/googleapis/rpc v0.0.0-20241216192217-9240e9c98484 // indirect | ||||||
| 	golang.org/x/sys v0.28.0 // indirect |  | ||||||
| 	google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 // indirect |  | ||||||
| 	gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | 	gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||||||
| ) | ) | ||||||
|   | |||||||
							
								
								
									
										83
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										83
									
								
								go.sum
									
									
									
									
									
								
							| @@ -1,40 +1,22 @@ | |||||||
| dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s= | dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s= | ||||||
| dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= | dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= | ||||||
| github.com/DATA-DOG/go-sqlmock v1.5.0 h1:Shsta01QNfFxHCfpW6YH2STWB0MudeXXEWMr20OEh60= | github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU= | ||||||
| github.com/DATA-DOG/go-sqlmock v1.5.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= | github.com/DATA-DOG/go-sqlmock v1.5.2/go.mod h1:88MAG/4G7SMwSE3CeA0ZKzrT5CiOU3OJ+JlNzwDqpNU= | ||||||
| github.com/KimMachineGun/automemlimit v0.6.1 h1:ILa9j1onAAMadBsyyUJv5cack8Y1WT26yLj/V+ulKp8= | github.com/KimMachineGun/automemlimit v0.7.0 h1:7G06p/dMSf7G8E6oq+f2uOPuVncFyIlDI/pBWK49u88= | ||||||
| github.com/KimMachineGun/automemlimit v0.6.1/go.mod h1:T7xYht7B8r6AG/AqFcUdc7fzd2bIdBKmepfP2S1svPY= | github.com/KimMachineGun/automemlimit v0.7.0/go.mod h1:QZxpHaGOQoYvFhv/r4u3U0JTC2ZcOwbSr11UZF46UBM= | ||||||
| github.com/ash3in/uuidv8 v1.0.1 h1:dIq1XRkWT8lGA7N5s7WRTB4V3k49WTBLvILz7aCLp80= | github.com/ash3in/uuidv8 v1.2.0 h1:2oogGdtCPwaVtyvPPGin4TfZLtOGE5F+W++E880G6SI= | ||||||
| github.com/ash3in/uuidv8 v1.0.1/go.mod h1:EoyUgCtxNBnrnpc9efw5rVN1cQ+LFGCoJiFuD6maOMw= | github.com/ash3in/uuidv8 v1.2.0/go.mod h1:BnU0wJBxnzdEKmVg4xckBkD+VZuecTFTUP3M0dWgyY4= | ||||||
| github.com/cilium/ebpf v0.16.0 h1:+BiEnHL6Z7lXnlGUsXQPPAE7+kenAd4ES8MQ5min0Ok= |  | ||||||
| github.com/cilium/ebpf v0.16.0/go.mod h1:L7u2Blt2jMM/vLAVgjxluxtBKlz3/GWjB0dMOEngfwE= |  | ||||||
| github.com/containerd/cgroups/v3 v3.0.4 h1:2fs7l3P0Qxb1nKWuJNFiwhp2CqiKzho71DQkDrHJIo4= |  | ||||||
| github.com/containerd/cgroups/v3 v3.0.4/go.mod h1:SA5DLYnXO8pTGYiAHXz94qvLQTKfVM5GEVisn4jpins= |  | ||||||
| github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= |  | ||||||
| github.com/containerd/log v0.1.0/go.mod h1:VRRf09a7mHDIRezVKTRCrOq78v577GXq3bSa3EhrzVo= |  | ||||||
| github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8iXXhfZs= |  | ||||||
| github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= |  | ||||||
| github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= |  | ||||||
| github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= |  | ||||||
| github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= | github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= | ||||||
| github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | ||||||
| github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= | github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= | ||||||
| github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= | github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= | ||||||
| github.com/go-quicktest/qt v1.101.0 h1:O1K29Txy5P2OK0dGo59b7b0LR6wKfIhttaAhHUyn7eI= |  | ||||||
| github.com/go-quicktest/qt v1.101.0/go.mod h1:14Bz/f7NwaXPtdYEgzsx46kqSxVwTbzVZsDC26tQJow= |  | ||||||
| github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= |  | ||||||
| github.com/godbus/dbus/v5 v5.1.0 h1:4KLkAxT3aOY8Li4FRJe/KvhoNFFxo0m6fNuFUO8QJUk= |  | ||||||
| github.com/godbus/dbus/v5 v5.1.0/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= |  | ||||||
| github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= | github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= | ||||||
| github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= | github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= | ||||||
| github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= | github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= | ||||||
| github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= | github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= | ||||||
| github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= | github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= | ||||||
| github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= | github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= | ||||||
| github.com/josharian/native v1.1.0 h1:uuaP0hAbW7Y4l0ZRQ6C9zfb7Mg1mbFKry/xzDAfmtLA= | github.com/kisielk/sqlstruct v0.0.0-20201105191214-5f3e10d3ab46/go.mod h1:yyMNCyc/Ib3bDTKd379tNMpB/7/H5TjM2Y9QJ5THLbE= | ||||||
| github.com/josharian/native v1.1.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w= |  | ||||||
| github.com/jsimonetti/rtnetlink/v2 v2.0.1 h1:xda7qaHDSVOsADNouv7ukSuicKZO7GgVUCXxpaIEIlM= |  | ||||||
| github.com/jsimonetti/rtnetlink/v2 v2.0.1/go.mod h1:7MoNYNbb3UaDHtF8udiJo/RH6VsTKP1pqKLUTVCvToE= |  | ||||||
| github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= | github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= | ||||||
| github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= | github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= | ||||||
| github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= | github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= | ||||||
| @@ -44,19 +26,10 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= | |||||||
| github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= | github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= | ||||||
| github.com/matoous/go-nanoid v1.5.1 h1:aCjdvTyO9LLnTIi0fgdXhOPPvOHjpXN6Ik9DaNjIct4= | github.com/matoous/go-nanoid v1.5.1 h1:aCjdvTyO9LLnTIi0fgdXhOPPvOHjpXN6Ik9DaNjIct4= | ||||||
| github.com/matoous/go-nanoid v1.5.1/go.mod h1:zyD2a71IubI24efhpvkJz+ZwfwagzgSO6UNiFsZKN7U= | github.com/matoous/go-nanoid v1.5.1/go.mod h1:zyD2a71IubI24efhpvkJz+ZwfwagzgSO6UNiFsZKN7U= | ||||||
| github.com/mdlayher/netlink v1.7.2 h1:/UtM3ofJap7Vl4QWCPDGXY8d3GIY2UGSDbK+QWmY8/g= |  | ||||||
| github.com/mdlayher/netlink v1.7.2/go.mod h1:xraEF7uJbxLhc5fpHL4cPe221LI2bdttWlU+ZGLfQSw= |  | ||||||
| github.com/mdlayher/socket v0.4.1 h1:eM9y2/jlbs1M615oshPQOHZzj6R6wMT7bX5NPiQvn2U= |  | ||||||
| github.com/mdlayher/socket v0.4.1/go.mod h1:cAqeGjoufqdxWkD7DkpyS+wcefOtmu5OQ8KuoJGIReA= |  | ||||||
| github.com/moby/sys/userns v0.1.0 h1:tVLXkFOxVu9A64/yh59slHVv9ahO9UIev4JZusOLG/g= |  | ||||||
| github.com/moby/sys/userns v0.1.0/go.mod h1:IHUYgu/kao6N8YZlp9Cf444ySSvCmDlmzUcYfDHOl28= |  | ||||||
| github.com/opencontainers/runtime-spec v1.2.0 h1:z97+pHb3uELt/yiAWD691HNHQIF07bE7dzrbT927iTk= |  | ||||||
| github.com/opencontainers/runtime-spec v1.2.0/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= |  | ||||||
| github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc= | github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc= | ||||||
| github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ= | github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ= | ||||||
| github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 h1:onHthvaw9LFnH4t2DcNVpwGmV9E1BkGknEliJkfwQj0= | github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 h1:onHthvaw9LFnH4t2DcNVpwGmV9E1BkGknEliJkfwQj0= | ||||||
| github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58/go.mod h1:DXv8WO4yhMYhSNPKjeNKa5WY9YCIEBRbNzFFPJbWO6Y= | github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58/go.mod h1:DXv8WO4yhMYhSNPKjeNKa5WY9YCIEBRbNzFFPJbWO6Y= | ||||||
| github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= |  | ||||||
| github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= | github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= | ||||||
| github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= | github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= | ||||||
| github.com/prashantv/gostub v1.1.0 h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g= | github.com/prashantv/gostub v1.1.0 h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g= | ||||||
| @@ -65,38 +38,32 @@ github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR | |||||||
| github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= | github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= | ||||||
| github.com/silas/dag v0.0.0-20220518035006-a7e85ada93c5 h1:G/FZtUu7a6NTWl3KUHMV9jkLAh/Rvtf03NWMHaEDl+E= | github.com/silas/dag v0.0.0-20220518035006-a7e85ada93c5 h1:G/FZtUu7a6NTWl3KUHMV9jkLAh/Rvtf03NWMHaEDl+E= | ||||||
| github.com/silas/dag v0.0.0-20220518035006-a7e85ada93c5/go.mod h1:7RTUFBdIRC9nZ7/3RyRNH1bdqIShrDejd1YbLwgPS+I= | github.com/silas/dag v0.0.0-20220518035006-a7e85ada93c5/go.mod h1:7RTUFBdIRC9nZ7/3RyRNH1bdqIShrDejd1YbLwgPS+I= | ||||||
| github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= | github.com/spf13/cast v1.7.1 h1:cuNEagBQEHWN1FnbGEjCXL2szYEXqfJPbP2HNUaca9Y= | ||||||
| github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= | github.com/spf13/cast v1.7.1/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= | ||||||
| github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= |  | ||||||
| github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= |  | ||||||
| github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= | github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= | ||||||
| github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= | github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= | ||||||
|  | go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE= | ||||||
|  | go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= | ||||||
| go.uber.org/automaxprocs v1.6.0 h1:O3y2/QNTOdbF+e/dpXNNW7Rx2hZ4sTIPyybbxyNqTUs= | go.uber.org/automaxprocs v1.6.0 h1:O3y2/QNTOdbF+e/dpXNNW7Rx2hZ4sTIPyybbxyNqTUs= | ||||||
| go.uber.org/automaxprocs v1.6.0/go.mod h1:ifeIMSnPZuznNm6jmdzmU3/bfk01Fe2fotchwEFJ8r8= | go.uber.org/automaxprocs v1.6.0/go.mod h1:ifeIMSnPZuznNm6jmdzmU3/bfk01Fe2fotchwEFJ8r8= | ||||||
| go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= | go.unistack.org/micro-proto/v4 v4.1.0 h1:qPwL2n/oqh9RE3RTTDgt28XK3QzV597VugQPaw9lKUk= | ||||||
| go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= | go.unistack.org/micro-proto/v4 v4.1.0/go.mod h1:ArmK7o+uFvxSY3dbJhKBBX4Pm1rhWdLEFf3LxBrMtec= | ||||||
| go.unistack.org/micro-proto/v3 v3.4.1 h1:UTjLSRz2YZuaHk9iSlVqqsA50JQNAEK2ZFboGqtEa9Q= | golang.org/x/net v0.34.0 h1:Mb7Mrk043xzHgnRM88suvJFwzVrRfHEHJEl5/71CKw0= | ||||||
| go.unistack.org/micro-proto/v3 v3.4.1/go.mod h1:okx/cnOhzuCX0ggl/vToatbCupi0O44diiiLLsZ93Zo= | golang.org/x/net v0.34.0/go.mod h1:di0qlW3YNM5oh6GqDGQr92MyTozJPmybPK4Ev/Gm31k= | ||||||
| golang.org/x/exp v0.0.0-20241210194714-1829a127f884 h1:Y/Mj/94zIQQGHVSv1tTtQBDaQaJe62U9bkDZKKyhPCU= |  | ||||||
| golang.org/x/exp v0.0.0-20241210194714-1829a127f884/go.mod h1:qj5a5QZpwLU2NLQudwIN5koi3beDhSAlJwa67PuM98c= |  | ||||||
| golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI= |  | ||||||
| golang.org/x/net v0.32.0/go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs= |  | ||||||
| golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= | golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= | ||||||
| golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= | golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= | ||||||
| golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU= | ||||||
| golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA= | golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= | ||||||
| golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= |  | ||||||
| golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo= | golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo= | ||||||
| golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= | golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= | ||||||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 h1:8ZmaLZE4XWrtU3MyClkYqqtl6Oegr3235h7jxsDyqCY= | google.golang.org/genproto/googleapis/rpc v0.0.0-20241216192217-9240e9c98484 h1:Z7FRVJPSMaHQxD0uXU8WdgFh8PseLM8Q8NzhnpMrBhQ= | ||||||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576/go.mod h1:5uTbfoYQed2U9p3KIj2/Zzm02PYhndfdmML0qC3q3FU= | google.golang.org/genproto/googleapis/rpc v0.0.0-20241216192217-9240e9c98484/go.mod h1:lcTa1sDdWEIHMWlITnIczmw5w60CF9ffkb8Z+DVmmjA= | ||||||
| google.golang.org/grpc v1.68.1 h1:oI5oTa11+ng8r8XMMN7jAOmWfPZWbYpCFaMUTACxkM0= | google.golang.org/grpc v1.69.4 h1:MF5TftSMkd8GLw/m0KM6V8CMOCY6NZ1NQDPGFgbTt4A= | ||||||
| google.golang.org/grpc v1.68.1/go.mod h1:+q1XYFJjShcqn0QZHvCyeR4CXPA+llXIeUIfIe00waw= | google.golang.org/grpc v1.69.4/go.mod h1:vyjdE6jLBI76dgpDojsFGNaHlxdjXN9ghpnd2o7JGZ4= | ||||||
| google.golang.org/protobuf v1.35.2 h1:8Ar7bF+apOIoThw1EdZl0p1oWvMqTHmpA2fRTyZO8io= | google.golang.org/protobuf v1.36.3 h1:82DV7MYdb8anAVi3qge1wSnMDrnKK7ebr+I0hHRN1BU= | ||||||
| google.golang.org/protobuf v1.35.2/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= | google.golang.org/protobuf v1.36.3/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= | ||||||
| gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||||||
| gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= | gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= | ||||||
| gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= | gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= | ||||||
| gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= |  | ||||||
| gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= | gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= | ||||||
| gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | ||||||
|   | |||||||
							
								
								
									
										117
									
								
								hooks/metadata/metadata.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										117
									
								
								hooks/metadata/metadata.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,117 @@ | |||||||
|  | package metadata | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"context" | ||||||
|  |  | ||||||
|  | 	"go.unistack.org/micro/v4/client" | ||||||
|  | 	"go.unistack.org/micro/v4/metadata" | ||||||
|  | 	"go.unistack.org/micro/v4/server" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | type wrapper struct { | ||||||
|  | 	keys []string | ||||||
|  |  | ||||||
|  | 	client.Client | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func NewClientWrapper(keys ...string) client.Wrapper { | ||||||
|  | 	return func(c client.Client) client.Client { | ||||||
|  | 		handler := &wrapper{ | ||||||
|  | 			Client: c, | ||||||
|  | 			keys:   keys, | ||||||
|  | 		} | ||||||
|  | 		return handler | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func NewClientCallWrapper(keys ...string) client.CallWrapper { | ||||||
|  | 	return func(fn client.CallFunc) client.CallFunc { | ||||||
|  | 		return func(ctx context.Context, addr string, req client.Request, rsp interface{}, opts client.CallOptions) error { | ||||||
|  | 			if keys == nil { | ||||||
|  | 				return fn(ctx, addr, req, rsp, opts) | ||||||
|  | 			} | ||||||
|  | 			if imd, iok := metadata.FromIncomingContext(ctx); iok && imd != nil { | ||||||
|  | 				omd, ook := metadata.FromOutgoingContext(ctx) | ||||||
|  | 				if !ook || omd == nil { | ||||||
|  | 					omd = metadata.New(len(imd)) | ||||||
|  | 				} | ||||||
|  | 				for _, k := range keys { | ||||||
|  | 					if v, ok := imd.Get(k); ok { | ||||||
|  | 						omd.Add(k, v...) | ||||||
|  | 					} | ||||||
|  | 				} | ||||||
|  | 				if !ook { | ||||||
|  | 					ctx = metadata.NewOutgoingContext(ctx, omd) | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  | 			return fn(ctx, addr, req, rsp, opts) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *wrapper) Call(ctx context.Context, req client.Request, rsp interface{}, opts ...client.CallOption) error { | ||||||
|  | 	if w.keys == nil { | ||||||
|  | 		return w.Client.Call(ctx, req, rsp, opts...) | ||||||
|  | 	} | ||||||
|  | 	if imd, iok := metadata.FromIncomingContext(ctx); iok && imd != nil { | ||||||
|  | 		omd, ook := metadata.FromOutgoingContext(ctx) | ||||||
|  | 		if !ook || omd == nil { | ||||||
|  | 			omd = metadata.New(len(imd)) | ||||||
|  | 		} | ||||||
|  | 		for _, k := range w.keys { | ||||||
|  | 			if v, ok := imd.Get(k); ok { | ||||||
|  | 				omd.Add(k, v...) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		if !ook { | ||||||
|  | 			ctx = metadata.NewOutgoingContext(ctx, omd) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return w.Client.Call(ctx, req, rsp, opts...) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *wrapper) Stream(ctx context.Context, req client.Request, opts ...client.CallOption) (client.Stream, error) { | ||||||
|  | 	if w.keys == nil { | ||||||
|  | 		return w.Client.Stream(ctx, req, opts...) | ||||||
|  | 	} | ||||||
|  | 	if imd, iok := metadata.FromIncomingContext(ctx); iok && imd != nil { | ||||||
|  | 		omd, ook := metadata.FromOutgoingContext(ctx) | ||||||
|  | 		if !ook || omd == nil { | ||||||
|  | 			omd = metadata.New(len(imd)) | ||||||
|  | 		} | ||||||
|  | 		for _, k := range w.keys { | ||||||
|  | 			if v, ok := imd.Get(k); ok { | ||||||
|  | 				omd.Add(k, v...) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		if !ook { | ||||||
|  | 			ctx = metadata.NewOutgoingContext(ctx, omd) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return w.Client.Stream(ctx, req, opts...) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func NewServerHandlerWrapper(keys ...string) server.HandlerWrapper { | ||||||
|  | 	return func(fn server.HandlerFunc) server.HandlerFunc { | ||||||
|  | 		return func(ctx context.Context, req server.Request, rsp interface{}) error { | ||||||
|  | 			if keys == nil { | ||||||
|  | 				return fn(ctx, req, rsp) | ||||||
|  | 			} | ||||||
|  | 			if imd, iok := metadata.FromIncomingContext(ctx); iok && imd != nil { | ||||||
|  | 				omd, ook := metadata.FromOutgoingContext(ctx) | ||||||
|  | 				if !ook || omd == nil { | ||||||
|  | 					omd = metadata.New(len(imd)) | ||||||
|  | 				} | ||||||
|  | 				for _, k := range keys { | ||||||
|  | 					if v, ok := imd.Get(k); ok { | ||||||
|  | 						omd.Add(k, v...) | ||||||
|  | 					} | ||||||
|  | 				} | ||||||
|  | 				if !ook { | ||||||
|  | 					ctx = metadata.NewOutgoingContext(ctx, omd) | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  | 			return fn(ctx, req, rsp) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | } | ||||||
							
								
								
									
										63
									
								
								hooks/recovery/recovery.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										63
									
								
								hooks/recovery/recovery.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,63 @@ | |||||||
|  | package recovery | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"context" | ||||||
|  | 	"fmt" | ||||||
|  |  | ||||||
|  | 	"go.unistack.org/micro/v4/errors" | ||||||
|  | 	"go.unistack.org/micro/v4/server" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | func NewOptions(opts ...Option) Options { | ||||||
|  | 	options := Options{ | ||||||
|  | 		ServerHandlerFn: DefaultServerHandlerFn, | ||||||
|  | 	} | ||||||
|  | 	for _, o := range opts { | ||||||
|  | 		o(&options) | ||||||
|  | 	} | ||||||
|  | 	return options | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type Options struct { | ||||||
|  | 	ServerHandlerFn func(context.Context, server.Request, interface{}, error) error | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type Option func(*Options) | ||||||
|  |  | ||||||
|  | func ServerHandlerFunc(fn func(context.Context, server.Request, interface{}, error) error) Option { | ||||||
|  | 	return func(o *Options) { | ||||||
|  | 		o.ServerHandlerFn = fn | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | var DefaultServerHandlerFn = func(ctx context.Context, req server.Request, rsp interface{}, err error) error { | ||||||
|  | 	return errors.BadRequest("", "%v", err) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | var Hook = NewHook() | ||||||
|  |  | ||||||
|  | type hook struct { | ||||||
|  | 	opts Options | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func NewHook(opts ...Option) *hook { | ||||||
|  | 	return &hook{opts: NewOptions(opts...)} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *hook) ServerHandler(next server.FuncHandler) server.FuncHandler { | ||||||
|  | 	return func(ctx context.Context, req server.Request, rsp interface{}) (err error) { | ||||||
|  | 		defer func() { | ||||||
|  | 			r := recover() | ||||||
|  | 			switch verr := r.(type) { | ||||||
|  | 			case nil: | ||||||
|  | 				return | ||||||
|  | 			case error: | ||||||
|  | 				err = w.opts.ServerHandlerFn(ctx, req, rsp, verr) | ||||||
|  | 			default: | ||||||
|  | 				err = w.opts.ServerHandlerFn(ctx, req, rsp, fmt.Errorf("%v", r)) | ||||||
|  | 			} | ||||||
|  | 		}() | ||||||
|  | 		err = next(ctx, req, rsp) | ||||||
|  | 		return err | ||||||
|  | 	} | ||||||
|  | } | ||||||
							
								
								
									
										114
									
								
								hooks/requestid/requestid.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										114
									
								
								hooks/requestid/requestid.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,114 @@ | |||||||
|  | package requestid | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"context" | ||||||
|  | 	"net/textproto" | ||||||
|  |  | ||||||
|  | 	"go.unistack.org/micro/v4/client" | ||||||
|  | 	"go.unistack.org/micro/v4/metadata" | ||||||
|  | 	"go.unistack.org/micro/v4/server" | ||||||
|  | 	"go.unistack.org/micro/v4/util/id" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | type XRequestIDKey struct{} | ||||||
|  |  | ||||||
|  | // DefaultMetadataKey contains metadata key | ||||||
|  | var DefaultMetadataKey = textproto.CanonicalMIMEHeaderKey("x-request-id") | ||||||
|  |  | ||||||
|  | // DefaultMetadataFunc wil be used if user not provide own func to fill metadata | ||||||
|  | var DefaultMetadataFunc = func(ctx context.Context) (context.Context, error) { | ||||||
|  | 	var xid string | ||||||
|  |  | ||||||
|  | 	cid, cok := ctx.Value(XRequestIDKey{}).(string) | ||||||
|  | 	if cok && cid != "" { | ||||||
|  | 		xid = cid | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	imd, iok := metadata.FromIncomingContext(ctx) | ||||||
|  | 	if !iok || imd == nil { | ||||||
|  | 		imd = metadata.New(1) | ||||||
|  | 		ctx = metadata.NewIncomingContext(ctx, imd) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	omd, ook := metadata.FromOutgoingContext(ctx) | ||||||
|  | 	if !ook || omd == nil { | ||||||
|  | 		omd = metadata.New(1) | ||||||
|  | 		ctx = metadata.NewOutgoingContext(ctx, omd) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if xid == "" { | ||||||
|  | 		var ids []string | ||||||
|  | 		if ids, iok = imd.Get(DefaultMetadataKey); iok { | ||||||
|  | 			for i := range ids { | ||||||
|  | 				if ids[i] != "" { | ||||||
|  | 					xid = ids[i] | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		if ids, ook = omd.Get(DefaultMetadataKey); ook { | ||||||
|  | 			for i := range ids { | ||||||
|  | 				if ids[i] != "" { | ||||||
|  | 					xid = ids[i] | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if xid == "" { | ||||||
|  | 		var err error | ||||||
|  | 		xid, err = id.New() | ||||||
|  | 		if err != nil { | ||||||
|  | 			return ctx, err | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if !cok { | ||||||
|  | 		ctx = context.WithValue(ctx, XRequestIDKey{}, xid) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if !iok { | ||||||
|  | 		imd.Set(DefaultMetadataKey, xid) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if !ook { | ||||||
|  | 		omd.Set(DefaultMetadataKey, xid) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	return ctx, nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type hook struct{} | ||||||
|  |  | ||||||
|  | func NewHook() *hook { | ||||||
|  | 	return &hook{} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *hook) ServerHandler(next server.FuncHandler) server.FuncHandler { | ||||||
|  | 	return func(ctx context.Context, req server.Request, rsp interface{}) error { | ||||||
|  | 		var err error | ||||||
|  | 		if ctx, err = DefaultMetadataFunc(ctx); err != nil { | ||||||
|  | 			return err | ||||||
|  | 		} | ||||||
|  | 		return next(ctx, req, rsp) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *hook) ClientCall(next client.FuncCall) client.FuncCall { | ||||||
|  | 	return func(ctx context.Context, req client.Request, rsp interface{}, opts ...client.CallOption) error { | ||||||
|  | 		var err error | ||||||
|  | 		if ctx, err = DefaultMetadataFunc(ctx); err != nil { | ||||||
|  | 			return err | ||||||
|  | 		} | ||||||
|  | 		return next(ctx, req, rsp, opts...) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *hook) ClientStream(next client.FuncStream) client.FuncStream { | ||||||
|  | 	return func(ctx context.Context, req client.Request, opts ...client.CallOption) (client.Stream, error) { | ||||||
|  | 		var err error | ||||||
|  | 		if ctx, err = DefaultMetadataFunc(ctx); err != nil { | ||||||
|  | 			return nil, err | ||||||
|  | 		} | ||||||
|  | 		return next(ctx, req, opts...) | ||||||
|  | 	} | ||||||
|  | } | ||||||
							
								
								
									
										33
									
								
								hooks/requestid/requestid_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								hooks/requestid/requestid_test.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,33 @@ | |||||||
|  | package requestid | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"context" | ||||||
|  | 	"testing" | ||||||
|  |  | ||||||
|  | 	"go.unistack.org/micro/v4/metadata" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | func TestDefaultMetadataFunc(t *testing.T) { | ||||||
|  | 	ctx := context.TODO() | ||||||
|  |  | ||||||
|  | 	nctx, err := DefaultMetadataFunc(ctx) | ||||||
|  | 	if err != nil { | ||||||
|  | 		t.Fatalf("%v", err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	imd, ok := metadata.FromIncomingContext(nctx) | ||||||
|  | 	if !ok { | ||||||
|  | 		t.Fatalf("md missing in incoming context") | ||||||
|  | 	} | ||||||
|  | 	omd, ok := metadata.FromOutgoingContext(nctx) | ||||||
|  | 	if !ok { | ||||||
|  | 		t.Fatalf("md missing in outgoing context") | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	_, iok := imd.Get(DefaultMetadataKey) | ||||||
|  | 	_, ook := omd.Get(DefaultMetadataKey) | ||||||
|  |  | ||||||
|  | 	if !iok || !ook { | ||||||
|  | 		t.Fatalf("missing metadata key value") | ||||||
|  | 	} | ||||||
|  | } | ||||||
							
								
								
									
										133
									
								
								hooks/validator/validator.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										133
									
								
								hooks/validator/validator.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,133 @@ | |||||||
|  | package validator | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"context" | ||||||
|  |  | ||||||
|  | 	"go.unistack.org/micro/v4/client" | ||||||
|  | 	"go.unistack.org/micro/v4/errors" | ||||||
|  | 	"go.unistack.org/micro/v4/server" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | var ( | ||||||
|  | 	DefaultClientErrorFunc = func(req client.Request, rsp interface{}, err error) error { | ||||||
|  | 		if rsp != nil { | ||||||
|  | 			return errors.BadGateway(req.Service(), "%v", err) | ||||||
|  | 		} | ||||||
|  | 		return errors.BadRequest(req.Service(), "%v", err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	DefaultServerErrorFunc = func(req server.Request, rsp interface{}, err error) error { | ||||||
|  | 		if rsp != nil { | ||||||
|  | 			return errors.BadGateway(req.Service(), "%v", err) | ||||||
|  | 		} | ||||||
|  | 		return errors.BadRequest(req.Service(), "%v", err) | ||||||
|  | 	} | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | type ( | ||||||
|  | 	ClientErrorFunc func(client.Request, interface{}, error) error | ||||||
|  | 	ServerErrorFunc func(server.Request, interface{}, error) error | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | // Options struct holds wrapper options | ||||||
|  | type Options struct { | ||||||
|  | 	ClientErrorFn          ClientErrorFunc | ||||||
|  | 	ServerErrorFn          ServerErrorFunc | ||||||
|  | 	ClientValidateResponse bool | ||||||
|  | 	ServerValidateResponse bool | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Option func signature | ||||||
|  | type Option func(*Options) | ||||||
|  |  | ||||||
|  | func ClientValidateResponse(b bool) Option { | ||||||
|  | 	return func(o *Options) { | ||||||
|  | 		o.ClientValidateResponse = b | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func ServerValidateResponse(b bool) Option { | ||||||
|  | 	return func(o *Options) { | ||||||
|  | 		o.ClientValidateResponse = b | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func ClientReqErrorFn(fn ClientErrorFunc) Option { | ||||||
|  | 	return func(o *Options) { | ||||||
|  | 		o.ClientErrorFn = fn | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func ServerErrorFn(fn ServerErrorFunc) Option { | ||||||
|  | 	return func(o *Options) { | ||||||
|  | 		o.ServerErrorFn = fn | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func NewOptions(opts ...Option) Options { | ||||||
|  | 	options := Options{ | ||||||
|  | 		ClientErrorFn: DefaultClientErrorFunc, | ||||||
|  | 		ServerErrorFn: DefaultServerErrorFunc, | ||||||
|  | 	} | ||||||
|  | 	for _, o := range opts { | ||||||
|  | 		o(&options) | ||||||
|  | 	} | ||||||
|  | 	return options | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func NewHook(opts ...Option) *hook { | ||||||
|  | 	return &hook{opts: NewOptions(opts...)} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type validator interface { | ||||||
|  | 	Validate() error | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type hook struct { | ||||||
|  | 	opts Options | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *hook) ClientCall(next client.FuncCall) client.FuncCall { | ||||||
|  | 	return func(ctx context.Context, req client.Request, rsp interface{}, opts ...client.CallOption) error { | ||||||
|  | 		if v, ok := req.Body().(validator); ok { | ||||||
|  | 			if err := v.Validate(); err != nil { | ||||||
|  | 				return w.opts.ClientErrorFn(req, nil, err) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		err := next(ctx, req, rsp, opts...) | ||||||
|  | 		if v, ok := rsp.(validator); ok && w.opts.ClientValidateResponse { | ||||||
|  | 			if verr := v.Validate(); verr != nil { | ||||||
|  | 				return w.opts.ClientErrorFn(req, rsp, verr) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		return err | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *hook) ClientStream(next client.FuncStream) client.FuncStream { | ||||||
|  | 	return func(ctx context.Context, req client.Request, opts ...client.CallOption) (client.Stream, error) { | ||||||
|  | 		if v, ok := req.Body().(validator); ok { | ||||||
|  | 			if err := v.Validate(); err != nil { | ||||||
|  | 				return nil, w.opts.ClientErrorFn(req, nil, err) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		return next(ctx, req, opts...) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (w *hook) ServerHandler(next server.FuncHandler) server.FuncHandler { | ||||||
|  | 	return func(ctx context.Context, req server.Request, rsp interface{}) error { | ||||||
|  | 		if v, ok := req.Body().(validator); ok { | ||||||
|  | 			if err := v.Validate(); err != nil { | ||||||
|  | 				return w.opts.ServerErrorFn(req, nil, err) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		err := next(ctx, req, rsp) | ||||||
|  | 		if v, ok := rsp.(validator); ok && w.opts.ServerValidateResponse { | ||||||
|  | 			if verr := v.Validate(); verr != nil { | ||||||
|  | 				return w.opts.ServerErrorFn(req, rsp, verr) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		return err | ||||||
|  | 	} | ||||||
|  | } | ||||||
| @@ -8,7 +8,7 @@ import ( | |||||||
| 	"slices" | 	"slices" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/meter" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Option func signature | // Option func signature | ||||||
| @@ -99,6 +99,7 @@ func WithAddFields(fields ...interface{}) Option { | |||||||
| 					iv, iok := o.Fields[i].(string) | 					iv, iok := o.Fields[i].(string) | ||||||
| 					jv, jok := fields[j].(string) | 					jv, jok := fields[j].(string) | ||||||
| 					if iok && jok && iv == jv { | 					if iok && jok && iv == jv { | ||||||
|  | 						o.Fields[i+1] = fields[j+1] | ||||||
| 						fields = slices.Delete(fields, j, j+2) | 						fields = slices.Delete(fields, j, j+2) | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
|   | |||||||
| @@ -13,9 +13,9 @@ import ( | |||||||
| 	"sync/atomic" | 	"sync/atomic" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/semconv" | 	"go.unistack.org/micro/v4/semconv" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| const ( | const ( | ||||||
| @@ -278,7 +278,7 @@ func (s *slogLogger) printLog(ctx context.Context, lvl logger.Level, msg string, | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if (s.opts.AddStacktrace || lvl == logger.FatalLevel) || (s.opts.AddStacktrace && lvl == logger.ErrorLevel) { | 	if s.opts.AddStacktrace && (lvl == logger.FatalLevel || lvl == logger.ErrorLevel) { | ||||||
| 		stackInfo := make([]byte, 1024*1024) | 		stackInfo := make([]byte, 1024*1024) | ||||||
| 		if stackSize := runtime.Stack(stackInfo, false); stackSize > 0 { | 		if stackSize := runtime.Stack(stackInfo, false); stackSize > 0 { | ||||||
| 			traceLines := reTrace.Split(string(stackInfo[:stackSize]), -1) | 			traceLines := reTrace.Split(string(stackInfo[:stackSize]), -1) | ||||||
|   | |||||||
| @@ -12,10 +12,49 @@ import ( | |||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"github.com/google/uuid" | 	"github.com/google/uuid" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
|  | 	"go.unistack.org/micro/v4/util/buffer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
|  | // always first to have proper check | ||||||
|  | func TestStacktrace(t *testing.T) { | ||||||
|  | 	ctx := context.TODO() | ||||||
|  | 	buf := bytes.NewBuffer(nil) | ||||||
|  | 	l := NewLogger(logger.WithLevel(logger.DebugLevel), logger.WithOutput(buf), | ||||||
|  | 		WithHandlerFunc(slog.NewTextHandler), | ||||||
|  | 		logger.WithAddStacktrace(true), | ||||||
|  | 	) | ||||||
|  | 	if err := l.Init(logger.WithFields("key1", "val1")); err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	l.Error(ctx, "msg1", errors.New("err")) | ||||||
|  |  | ||||||
|  | 	if !bytes.Contains(buf.Bytes(), []byte(`slog_test.go:32`)) { | ||||||
|  | 		t.Fatalf("logger error not works, buf contains: %s", buf.Bytes()) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestDelayedBuffer(t *testing.T) { | ||||||
|  | 	ctx := context.TODO() | ||||||
|  | 	buf := bytes.NewBuffer(nil) | ||||||
|  | 	dbuf := buffer.NewDelayedBuffer(100, 100*time.Millisecond, buf) | ||||||
|  | 	l := NewLogger(logger.WithLevel(logger.ErrorLevel), logger.WithOutput(dbuf), | ||||||
|  | 		WithHandlerFunc(slog.NewTextHandler), | ||||||
|  | 		logger.WithAddStacktrace(true), | ||||||
|  | 	) | ||||||
|  | 	if err := l.Init(logger.WithFields("key1", "val1")); err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	l.Error(ctx, "msg1", errors.New("err")) | ||||||
|  | 	time.Sleep(120 * time.Millisecond) | ||||||
|  | 	if !bytes.Contains(buf.Bytes(), []byte(`key1=val1`)) { | ||||||
|  | 		t.Fatalf("logger delayed buffer not works, buf contains: %s", buf.Bytes()) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
| func TestTime(t *testing.T) { | func TestTime(t *testing.T) { | ||||||
| 	ctx := context.TODO() | 	ctx := context.TODO() | ||||||
| 	buf := bytes.NewBuffer(nil) | 	buf := bytes.NewBuffer(nil) | ||||||
| @@ -32,25 +71,8 @@ func TestTime(t *testing.T) { | |||||||
|  |  | ||||||
| 	l.Error(ctx, "msg1", errors.New("err")) | 	l.Error(ctx, "msg1", errors.New("err")) | ||||||
|  |  | ||||||
| 	if !bytes.Contains(buf.Bytes(), []byte(`timestamp=1970-01-01T03:00:00.000000000+03:00`)) { | 	if !bytes.Contains(buf.Bytes(), []byte(`timestamp=1970-01-01T03:00:00.000000000+03:00`)) && | ||||||
| 		t.Fatalf("logger error not works, buf contains: %s", buf.Bytes()) | 		!bytes.Contains(buf.Bytes(), []byte(`timestamp=1970-01-01T00:00:00.000000000Z`)) { | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestStacktrace(t *testing.T) { |  | ||||||
| 	ctx := context.TODO() |  | ||||||
| 	buf := bytes.NewBuffer(nil) |  | ||||||
| 	l := NewLogger(logger.WithLevel(logger.ErrorLevel), logger.WithOutput(buf), |  | ||||||
| 		WithHandlerFunc(slog.NewTextHandler), |  | ||||||
| 		logger.WithAddStacktrace(true), |  | ||||||
| 	) |  | ||||||
| 	if err := l.Init(logger.WithFields("key1", "val1")); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	l.Error(ctx, "msg1", errors.New("err")) |  | ||||||
|  |  | ||||||
| 	if !bytes.Contains(buf.Bytes(), []byte(`slog_test.go:51`)) { |  | ||||||
| 		t.Fatalf("logger error not works, buf contains: %s", buf.Bytes()) | 		t.Fatalf("logger error not works, buf contains: %s", buf.Bytes()) | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -102,7 +124,7 @@ func TestWithDedupKeysWithAddFields(t *testing.T) { | |||||||
|  |  | ||||||
| 	l.Info(ctx, "msg3") | 	l.Info(ctx, "msg3") | ||||||
|  |  | ||||||
| 	if !bytes.Contains(buf.Bytes(), []byte(`msg=msg3 key1=val1 key2=val2`)) { | 	if !bytes.Contains(buf.Bytes(), []byte(`msg=msg3 key1=val4 key2=val3`)) { | ||||||
| 		t.Fatalf("logger error not works, buf contains: %s", buf.Bytes()) | 		t.Fatalf("logger error not works, buf contains: %s", buf.Bytes()) | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -390,9 +412,10 @@ func Test_WithContextAttrFunc(t *testing.T) { | |||||||
| 			} | 			} | ||||||
| 			attrs := make([]interface{}, 0, 10) | 			attrs := make([]interface{}, 0, 10) | ||||||
| 			for k, v := range md { | 			for k, v := range md { | ||||||
| 				switch k { | 				key := strings.ToLower(k) | ||||||
| 				case "X-Request-Id", "Phone", "External-Id", "Source-Service", "X-App-Install-Id", "Client-Id", "Client-Ip": | 				switch key { | ||||||
| 					attrs = append(attrs, strings.ToLower(k), v) | 				case "x-request-id", "phone", "external-Id", "source-service", "x-app-install-id", "client-id", "client-ip": | ||||||
|  | 					attrs = append(attrs, key, v[0]) | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
| 			return attrs | 			return attrs | ||||||
|   | |||||||
| @@ -8,7 +8,7 @@ import ( | |||||||
| 	"strconv" | 	"strconv" | ||||||
| 	"strings" | 	"strings" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| const sf = "0-+# " | const sf = "0-+# " | ||||||
|   | |||||||
| @@ -5,7 +5,7 @@ import ( | |||||||
| 	"strings" | 	"strings" | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func TestUnwrap(t *testing.T) { | func TestUnwrap(t *testing.T) { | ||||||
|   | |||||||
| @@ -1,179 +0,0 @@ | |||||||
| // Package metadata is a way of defining message headers |  | ||||||
| package metadata |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type ( |  | ||||||
| 	mdIncomingKey struct{} |  | ||||||
| 	mdOutgoingKey struct{} |  | ||||||
| 	mdKey         struct{} |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // FromIncomingContext returns metadata from incoming ctx |  | ||||||
| // returned metadata shoud not be modified or race condition happens |  | ||||||
| func FromIncomingContext(ctx context.Context) (Metadata, bool) { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		return nil, false |  | ||||||
| 	} |  | ||||||
| 	md, ok := ctx.Value(mdIncomingKey{}).(*rawMetadata) |  | ||||||
| 	if !ok || md.md == nil { |  | ||||||
| 		return nil, false |  | ||||||
| 	} |  | ||||||
| 	return md.md, ok |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // MustIncomingContext returns metadata from incoming ctx |  | ||||||
| // returned metadata shoud not be modified or race condition happens. |  | ||||||
| // If metadata not exists panics. |  | ||||||
| func MustIncomingContext(ctx context.Context) Metadata { |  | ||||||
| 	md, ok := FromIncomingContext(ctx) |  | ||||||
| 	if !ok { |  | ||||||
| 		panic("missing metadata") |  | ||||||
| 	} |  | ||||||
| 	return md |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // FromOutgoingContext returns metadata from outgoing ctx |  | ||||||
| // returned metadata shoud not be modified or race condition happens |  | ||||||
| func FromOutgoingContext(ctx context.Context) (Metadata, bool) { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		return nil, false |  | ||||||
| 	} |  | ||||||
| 	md, ok := ctx.Value(mdOutgoingKey{}).(*rawMetadata) |  | ||||||
| 	if !ok || md.md == nil { |  | ||||||
| 		return nil, false |  | ||||||
| 	} |  | ||||||
| 	return md.md, ok |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // MustOutgoingContext returns metadata from outgoing ctx |  | ||||||
| // returned metadata shoud not be modified or race condition happens. |  | ||||||
| // If metadata not exists panics. |  | ||||||
| func MustOutgoingContext(ctx context.Context) Metadata { |  | ||||||
| 	md, ok := FromOutgoingContext(ctx) |  | ||||||
| 	if !ok { |  | ||||||
| 		panic("missing metadata") |  | ||||||
| 	} |  | ||||||
| 	return md |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // FromContext returns metadata from the given context |  | ||||||
| // returned metadata shoud not be modified or race condition happens |  | ||||||
| func FromContext(ctx context.Context) (Metadata, bool) { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		return nil, false |  | ||||||
| 	} |  | ||||||
| 	md, ok := ctx.Value(mdKey{}).(*rawMetadata) |  | ||||||
| 	if !ok || md.md == nil { |  | ||||||
| 		return nil, false |  | ||||||
| 	} |  | ||||||
| 	return md.md, ok |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // MustContext returns metadata from the given context |  | ||||||
| // returned metadata shoud not be modified or race condition happens |  | ||||||
| func MustContext(ctx context.Context) Metadata { |  | ||||||
| 	md, ok := FromContext(ctx) |  | ||||||
| 	if !ok { |  | ||||||
| 		panic("missing metadata") |  | ||||||
| 	} |  | ||||||
| 	return md |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewContext creates a new context with the given metadata |  | ||||||
| func NewContext(ctx context.Context, md Metadata) context.Context { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		ctx = context.Background() |  | ||||||
| 	} |  | ||||||
| 	return context.WithValue(ctx, mdKey{}, &rawMetadata{md}) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // SetOutgoingContext modify outgoing context with given metadata |  | ||||||
| func SetOutgoingContext(ctx context.Context, md Metadata) bool { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		return false |  | ||||||
| 	} |  | ||||||
| 	if omd, ok := ctx.Value(mdOutgoingKey{}).(*rawMetadata); ok { |  | ||||||
| 		omd.md = md |  | ||||||
| 		return true |  | ||||||
| 	} |  | ||||||
| 	return false |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // SetIncomingContext modify incoming context with given metadata |  | ||||||
| func SetIncomingContext(ctx context.Context, md Metadata) bool { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		return false |  | ||||||
| 	} |  | ||||||
| 	if omd, ok := ctx.Value(mdIncomingKey{}).(*rawMetadata); ok { |  | ||||||
| 		omd.md = md |  | ||||||
| 		return true |  | ||||||
| 	} |  | ||||||
| 	return false |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewIncomingContext creates a new context with incoming metadata attached |  | ||||||
| func NewIncomingContext(ctx context.Context, md Metadata) context.Context { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		ctx = context.Background() |  | ||||||
| 	} |  | ||||||
| 	return context.WithValue(ctx, mdIncomingKey{}, &rawMetadata{md}) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewOutgoingContext creates a new context with outcoming metadata attached |  | ||||||
| func NewOutgoingContext(ctx context.Context, md Metadata) context.Context { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		ctx = context.Background() |  | ||||||
| 	} |  | ||||||
| 	return context.WithValue(ctx, mdOutgoingKey{}, &rawMetadata{md}) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // AppendOutgoingContext apends new md to context |  | ||||||
| func AppendOutgoingContext(ctx context.Context, kv ...string) context.Context { |  | ||||||
| 	md, ok := Pairs(kv...) |  | ||||||
| 	if !ok { |  | ||||||
| 		return ctx |  | ||||||
| 	} |  | ||||||
| 	omd, ok := FromOutgoingContext(ctx) |  | ||||||
| 	if !ok { |  | ||||||
| 		return NewOutgoingContext(ctx, md) |  | ||||||
| 	} |  | ||||||
| 	for k, v := range md { |  | ||||||
| 		omd.Set(k, v) |  | ||||||
| 	} |  | ||||||
| 	return ctx |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // AppendIncomingContext apends new md to context |  | ||||||
| func AppendIncomingContext(ctx context.Context, kv ...string) context.Context { |  | ||||||
| 	md, ok := Pairs(kv...) |  | ||||||
| 	if !ok { |  | ||||||
| 		return ctx |  | ||||||
| 	} |  | ||||||
| 	omd, ok := FromIncomingContext(ctx) |  | ||||||
| 	if !ok { |  | ||||||
| 		return NewIncomingContext(ctx, md) |  | ||||||
| 	} |  | ||||||
| 	for k, v := range md { |  | ||||||
| 		omd.Set(k, v) |  | ||||||
| 	} |  | ||||||
| 	return ctx |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // AppendContext apends new md to context |  | ||||||
| func AppendContext(ctx context.Context, kv ...string) context.Context { |  | ||||||
| 	md, ok := Pairs(kv...) |  | ||||||
| 	if !ok { |  | ||||||
| 		return ctx |  | ||||||
| 	} |  | ||||||
| 	omd, ok := FromContext(ctx) |  | ||||||
| 	if !ok { |  | ||||||
| 		return NewContext(ctx, md) |  | ||||||
| 	} |  | ||||||
| 	for k, v := range md { |  | ||||||
| 		omd.Set(k, v) |  | ||||||
| 	} |  | ||||||
| 	return ctx |  | ||||||
| } |  | ||||||
| @@ -1,140 +0,0 @@ | |||||||
| package metadata |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"testing" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func TestFromNilContext(t *testing.T) { |  | ||||||
| 	// nolint: staticcheck |  | ||||||
| 	c, ok := FromContext(nil) |  | ||||||
| 	if ok || c != nil { |  | ||||||
| 		t.Fatal("FromContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestNewNilContext(t *testing.T) { |  | ||||||
| 	// nolint: staticcheck |  | ||||||
| 	ctx := NewContext(nil, New(0)) |  | ||||||
|  |  | ||||||
| 	c, ok := FromContext(ctx) |  | ||||||
| 	if c == nil || !ok { |  | ||||||
| 		t.Fatal("NewContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestFromContext(t *testing.T) { |  | ||||||
| 	ctx := context.WithValue(context.TODO(), mdKey{}, &rawMetadata{New(0)}) |  | ||||||
|  |  | ||||||
| 	c, ok := FromContext(ctx) |  | ||||||
| 	if c == nil || !ok { |  | ||||||
| 		t.Fatal("FromContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestNewContext(t *testing.T) { |  | ||||||
| 	ctx := NewContext(context.TODO(), New(0)) |  | ||||||
|  |  | ||||||
| 	c, ok := FromContext(ctx) |  | ||||||
| 	if c == nil || !ok { |  | ||||||
| 		t.Fatal("NewContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestFromIncomingContext(t *testing.T) { |  | ||||||
| 	ctx := context.WithValue(context.TODO(), mdIncomingKey{}, &rawMetadata{New(0)}) |  | ||||||
|  |  | ||||||
| 	c, ok := FromIncomingContext(ctx) |  | ||||||
| 	if c == nil || !ok { |  | ||||||
| 		t.Fatal("FromIncomingContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestFromOutgoingContext(t *testing.T) { |  | ||||||
| 	ctx := context.WithValue(context.TODO(), mdOutgoingKey{}, &rawMetadata{New(0)}) |  | ||||||
|  |  | ||||||
| 	c, ok := FromOutgoingContext(ctx) |  | ||||||
| 	if c == nil || !ok { |  | ||||||
| 		t.Fatal("FromOutgoingContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestSetIncomingContext(t *testing.T) { |  | ||||||
| 	md := New(1) |  | ||||||
| 	md.Set("key", "val") |  | ||||||
| 	ctx := context.WithValue(context.TODO(), mdIncomingKey{}, &rawMetadata{}) |  | ||||||
| 	if !SetIncomingContext(ctx, md) { |  | ||||||
| 		t.Fatal("SetIncomingContext not works") |  | ||||||
| 	} |  | ||||||
| 	md, ok := FromIncomingContext(ctx) |  | ||||||
| 	if md == nil || !ok { |  | ||||||
| 		t.Fatal("SetIncomingContext not works") |  | ||||||
| 	} else if v, ok := md.Get("key"); !ok || v != "val" { |  | ||||||
| 		t.Fatal("SetIncomingContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestSetOutgoingContext(t *testing.T) { |  | ||||||
| 	md := New(1) |  | ||||||
| 	md.Set("key", "val") |  | ||||||
| 	ctx := context.WithValue(context.TODO(), mdOutgoingKey{}, &rawMetadata{}) |  | ||||||
| 	if !SetOutgoingContext(ctx, md) { |  | ||||||
| 		t.Fatal("SetOutgoingContext not works") |  | ||||||
| 	} |  | ||||||
| 	md, ok := FromOutgoingContext(ctx) |  | ||||||
| 	if md == nil || !ok { |  | ||||||
| 		t.Fatal("SetOutgoingContext not works") |  | ||||||
| 	} else if v, ok := md.Get("key"); !ok || v != "val" { |  | ||||||
| 		t.Fatal("SetOutgoingContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestNewIncomingContext(t *testing.T) { |  | ||||||
| 	md := New(1) |  | ||||||
| 	md.Set("key", "val") |  | ||||||
| 	ctx := NewIncomingContext(context.TODO(), md) |  | ||||||
|  |  | ||||||
| 	c, ok := FromIncomingContext(ctx) |  | ||||||
| 	if c == nil || !ok { |  | ||||||
| 		t.Fatal("NewIncomingContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestNewOutgoingContext(t *testing.T) { |  | ||||||
| 	md := New(1) |  | ||||||
| 	md.Set("key", "val") |  | ||||||
| 	ctx := NewOutgoingContext(context.TODO(), md) |  | ||||||
|  |  | ||||||
| 	c, ok := FromOutgoingContext(ctx) |  | ||||||
| 	if c == nil || !ok { |  | ||||||
| 		t.Fatal("NewOutgoingContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestAppendIncomingContext(t *testing.T) { |  | ||||||
| 	md := New(1) |  | ||||||
| 	md.Set("key1", "val1") |  | ||||||
| 	ctx := AppendIncomingContext(context.TODO(), "key2", "val2") |  | ||||||
|  |  | ||||||
| 	nmd, ok := FromIncomingContext(ctx) |  | ||||||
| 	if nmd == nil || !ok { |  | ||||||
| 		t.Fatal("AppendIncomingContext not works") |  | ||||||
| 	} |  | ||||||
| 	if v, ok := nmd.Get("key2"); !ok || v != "val2" { |  | ||||||
| 		t.Fatal("AppendIncomingContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestAppendOutgoingContext(t *testing.T) { |  | ||||||
| 	md := New(1) |  | ||||||
| 	md.Set("key1", "val1") |  | ||||||
| 	ctx := AppendOutgoingContext(context.TODO(), "key2", "val2") |  | ||||||
|  |  | ||||||
| 	nmd, ok := FromOutgoingContext(ctx) |  | ||||||
| 	if nmd == nil || !ok { |  | ||||||
| 		t.Fatal("AppendOutgoingContext not works") |  | ||||||
| 	} |  | ||||||
| 	if v, ok := nmd.Get("key2"); !ok || v != "val2" { |  | ||||||
| 		t.Fatal("AppendOutgoingContext not works") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
							
								
								
									
										19
									
								
								metadata/headers.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								metadata/headers.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | |||||||
|  | // Package metadata is a way of defining message headers | ||||||
|  | package metadata | ||||||
|  |  | ||||||
|  | var ( | ||||||
|  | 	// HeaderTopic is the header name that contains topic name | ||||||
|  | 	HeaderTopic = "Micro-Topic" | ||||||
|  | 	// HeaderContentType specifies content type of message | ||||||
|  | 	HeaderContentType = "Content-Type" | ||||||
|  | 	// HeaderEndpoint specifies endpoint in service | ||||||
|  | 	HeaderEndpoint = "Micro-Endpoint" | ||||||
|  | 	// HeaderService specifies service | ||||||
|  | 	HeaderService = "Micro-Service" | ||||||
|  | 	// HeaderTimeout specifies timeout of operation | ||||||
|  | 	HeaderTimeout = "Micro-Timeout" | ||||||
|  | 	// HeaderAuthorization specifies Authorization header | ||||||
|  | 	HeaderAuthorization = "Authorization" | ||||||
|  | 	// HeaderXRequestID specifies request id | ||||||
|  | 	HeaderXRequestID = "X-Request-Id" | ||||||
|  | ) | ||||||
| @@ -1,41 +1,462 @@ | |||||||
| // Package metadata is a way of defining message headers |  | ||||||
| package metadata | package metadata | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
|  | 	"context" | ||||||
|  | 	"fmt" | ||||||
| 	"net/textproto" | 	"net/textproto" | ||||||
| 	"sort" | 	"sort" | ||||||
| 	"strings" | 	"strings" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var ( | // defaultMetadataSize used when need to init new Metadata | ||||||
| 	// HeaderTopic is the header name that contains topic name | var defaultMetadataSize = 2 | ||||||
| 	HeaderTopic = "Micro-Topic" |  | ||||||
| 	// HeaderContentType specifies content type of message | // Metadata is a mapping from metadata keys to values. Users should use the following | ||||||
| 	HeaderContentType = "Content-Type" | // two convenience functions New and Pairs to generate Metadata. | ||||||
| 	// HeaderEndpoint specifies endpoint in service | type Metadata map[string][]string | ||||||
| 	HeaderEndpoint = "Micro-Endpoint" |  | ||||||
| 	// HeaderService specifies service | // New creates an zero Metadata. | ||||||
| 	HeaderService = "Micro-Service" | func New(l int) Metadata { | ||||||
| 	// HeaderTimeout specifies timeout of operation | 	if l == 0 { | ||||||
| 	HeaderTimeout = "Micro-Timeout" | 		l = defaultMetadataSize | ||||||
| 	// HeaderAuthorization specifies Authorization header | 	} | ||||||
| 	HeaderAuthorization = "Authorization" | 	md := make(Metadata, l) | ||||||
| 	// HeaderXRequestID specifies request id | 	return md | ||||||
| 	HeaderXRequestID = "X-Request-Id" | } | ||||||
|  |  | ||||||
|  | // NewWithMetadata creates an Metadata from a given key-value map. | ||||||
|  | func NewWithMetadata(m map[string]string) Metadata { | ||||||
|  | 	md := make(Metadata, len(m)) | ||||||
|  | 	for key, val := range m { | ||||||
|  | 		md[key] = append(md[key], val) | ||||||
|  | 	} | ||||||
|  | 	return md | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Pairs returns an Metadata formed by the mapping of key, value ... | ||||||
|  | // Pairs panics if len(kv) is odd. | ||||||
|  | func Pairs(kv ...string) Metadata { | ||||||
|  | 	if len(kv)%2 == 1 { | ||||||
|  | 		panic(fmt.Sprintf("metadata: Pairs got the odd number of input pairs for metadata: %d", len(kv))) | ||||||
|  | 	} | ||||||
|  | 	md := make(Metadata, len(kv)/2) | ||||||
|  | 	for i := 0; i < len(kv); i += 2 { | ||||||
|  | 		md[kv[i]] = append(md[kv[i]], kv[i+1]) | ||||||
|  | 	} | ||||||
|  | 	return md | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Len returns the number of items in Metadata. | ||||||
|  | func (md Metadata) Len() int { | ||||||
|  | 	return len(md) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Copy returns a copy of Metadata. | ||||||
|  | func Copy(src Metadata) Metadata { | ||||||
|  | 	out := make(Metadata, len(src)) | ||||||
|  | 	for k, v := range src { | ||||||
|  | 		out[k] = copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	return out | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Copy returns a copy of Metadata. | ||||||
|  | func (md Metadata) Copy() Metadata { | ||||||
|  | 	out := make(Metadata, len(md)) | ||||||
|  | 	for k, v := range md { | ||||||
|  | 		out[k] = copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	return out | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // AsHTTP1 returns a copy of Metadata | ||||||
|  | // with CanonicalMIMEHeaderKey. | ||||||
|  | func (md Metadata) AsHTTP1() map[string][]string { | ||||||
|  | 	out := make(map[string][]string, len(md)) | ||||||
|  | 	for k, v := range md { | ||||||
|  | 		out[textproto.CanonicalMIMEHeaderKey(k)] = copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	return out | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // AsHTTP1 returns a copy of Metadata | ||||||
|  | // with strings.ToLower. | ||||||
|  | func (md Metadata) AsHTTP2() map[string][]string { | ||||||
|  | 	out := make(map[string][]string, len(md)) | ||||||
|  | 	for k, v := range md { | ||||||
|  | 		out[strings.ToLower(k)] = copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	return out | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // CopyTo copies Metadata to out. | ||||||
|  | func (md Metadata) CopyTo(out Metadata) { | ||||||
|  | 	for k, v := range md { | ||||||
|  | 		out[k] = copyOf(v) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Get obtains the values for a given key. | ||||||
|  | func (md Metadata) MustGet(k string) []string { | ||||||
|  | 	v, ok := md.Get(k) | ||||||
|  | 	if !ok { | ||||||
|  | 		panic("missing metadata key") | ||||||
|  | 	} | ||||||
|  | 	return v | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Get obtains the values for a given key. | ||||||
|  | func (md Metadata) Get(k string) ([]string, bool) { | ||||||
|  | 	v, ok := md[k] | ||||||
|  | 	if !ok { | ||||||
|  | 		v, ok = md[strings.ToLower(k)] | ||||||
|  | 	} | ||||||
|  | 	if !ok { | ||||||
|  | 		v, ok = md[textproto.CanonicalMIMEHeaderKey(k)] | ||||||
|  | 	} | ||||||
|  | 	return v, ok | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // MustGetJoined obtains the values for a given key | ||||||
|  | // with joined values with "," symbol | ||||||
|  | func (md Metadata) MustGetJoined(k string) string { | ||||||
|  | 	v, ok := md.GetJoined(k) | ||||||
|  | 	if !ok { | ||||||
|  | 		panic("missing metadata key") | ||||||
|  | 	} | ||||||
|  | 	return v | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // GetJoined obtains the values for a given key | ||||||
|  | // with joined values with "," symbol | ||||||
|  | func (md Metadata) GetJoined(k string) (string, bool) { | ||||||
|  | 	v, ok := md.Get(k) | ||||||
|  | 	if !ok { | ||||||
|  | 		return "", ok | ||||||
|  | 	} | ||||||
|  | 	return strings.Join(v, ","), true | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Set sets the value of a given key with a slice of values. | ||||||
|  | func (md Metadata) Add(key string, vals ...string) { | ||||||
|  | 	if len(vals) == 0 { | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  | 	md[key] = vals | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Set sets the value of a given key with a slice of values. | ||||||
|  | func (md Metadata) Set(kvs ...string) { | ||||||
|  | 	if len(kvs)%2 == 1 { | ||||||
|  | 		panic(fmt.Sprintf("metadata: Set got an odd number of input pairs for metadata: %d", len(kvs))) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	for i := 0; i < len(kvs); i += 2 { | ||||||
|  | 		md[kvs[i]] = append(md[kvs[i]], kvs[i+1]) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Append adds the values to key k, not overwriting what was already stored at | ||||||
|  | // that key. | ||||||
|  | func (md Metadata) Append(key string, vals ...string) { | ||||||
|  | 	if len(vals) == 0 { | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  | 	md[key] = append(md[key], vals...) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Del removes the values for a given keys k. | ||||||
|  | func (md Metadata) Del(k ...string) { | ||||||
|  | 	for i := range k { | ||||||
|  | 		delete(md, k[i]) | ||||||
|  | 		delete(md, strings.ToLower(k[i])) | ||||||
|  | 		delete(md, textproto.CanonicalMIMEHeaderKey(k[i])) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Join joins any number of Metadatas into a single Metadata. | ||||||
|  | // | ||||||
|  | // The order of values for each key is determined by the order in which the Metadatas | ||||||
|  | // containing those values are presented to Join. | ||||||
|  | func Join(mds ...Metadata) Metadata { | ||||||
|  | 	out := Metadata{} | ||||||
|  | 	for _, Metadata := range mds { | ||||||
|  | 		for k, v := range Metadata { | ||||||
|  | 			out[k] = append(out[k], v...) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return out | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type ( | ||||||
|  | 	metadataIncomingKey struct{} | ||||||
|  | 	metadataOutgoingKey struct{} | ||||||
|  | 	metadataCurrentKey  struct{} | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Metadata is our way of representing request headers internally. | // NewContext creates a new context with Metadata attached. Metadata must | ||||||
| // They're used at the RPC level and translate back and forth | // not be modified after calling this function. | ||||||
| // from Transport headers. | func NewContext(ctx context.Context, md Metadata) context.Context { | ||||||
| type Metadata map[string]string | 	return context.WithValue(ctx, metadataCurrentKey{}, rawMetadata{md: md}) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // NewIncomingContext creates a new context with incoming Metadata attached. Metadata must | ||||||
|  | // not be modified after calling this function. | ||||||
|  | func NewIncomingContext(ctx context.Context, md Metadata) context.Context { | ||||||
|  | 	return context.WithValue(ctx, metadataIncomingKey{}, rawMetadata{md: md}) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // NewOutgoingContext creates a new context with outgoing Metadata attached. If used | ||||||
|  | // in conjunction with AppendOutgoingContext, NewOutgoingContext will | ||||||
|  | // overwrite any previously-appended metadata. Metadata must not be modified after | ||||||
|  | // calling this function. | ||||||
|  | func NewOutgoingContext(ctx context.Context, md Metadata) context.Context { | ||||||
|  | 	return context.WithValue(ctx, metadataOutgoingKey{}, rawMetadata{md: md}) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // AppendContext returns a new context with the provided kv merged | ||||||
|  | // with any existing metadata in the context. Please refer to the documentation | ||||||
|  | // of Pairs for a description of kv. | ||||||
|  | func AppendContext(ctx context.Context, kv ...string) context.Context { | ||||||
|  | 	if len(kv)%2 == 1 { | ||||||
|  | 		panic(fmt.Sprintf("metadata: AppendContext got an odd number of input pairs for metadata: %d", len(kv))) | ||||||
|  | 	} | ||||||
|  | 	md, _ := ctx.Value(metadataCurrentKey{}).(rawMetadata) | ||||||
|  | 	added := make([][]string, len(md.added)+1) | ||||||
|  | 	copy(added, md.added) | ||||||
|  | 	kvCopy := make([]string, 0, len(kv)) | ||||||
|  | 	for i := 0; i < len(kv); i += 2 { | ||||||
|  | 		kvCopy = append(kvCopy, strings.ToLower(kv[i]), kv[i+1]) | ||||||
|  | 	} | ||||||
|  | 	added[len(added)-1] = kvCopy | ||||||
|  | 	return context.WithValue(ctx, metadataCurrentKey{}, rawMetadata{md: md.md, added: added}) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // AppendIncomingContext returns a new context with the provided kv merged | ||||||
|  | // with any existing metadata in the context. Please refer to the documentation | ||||||
|  | // of Pairs for a description of kv. | ||||||
|  | func AppendIncomingContext(ctx context.Context, kv ...string) context.Context { | ||||||
|  | 	if len(kv)%2 == 1 { | ||||||
|  | 		panic(fmt.Sprintf("metadata: AppendIncomingContext got an odd number of input pairs for metadata: %d", len(kv))) | ||||||
|  | 	} | ||||||
|  | 	md, _ := ctx.Value(metadataIncomingKey{}).(rawMetadata) | ||||||
|  | 	added := make([][]string, len(md.added)+1) | ||||||
|  | 	copy(added, md.added) | ||||||
|  | 	kvCopy := make([]string, 0, len(kv)) | ||||||
|  | 	for i := 0; i < len(kv); i += 2 { | ||||||
|  | 		kvCopy = append(kvCopy, strings.ToLower(kv[i]), kv[i+1]) | ||||||
|  | 	} | ||||||
|  | 	added[len(added)-1] = kvCopy | ||||||
|  | 	return context.WithValue(ctx, metadataIncomingKey{}, rawMetadata{md: md.md, added: added}) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // AppendOutgoingContext returns a new context with the provided kv merged | ||||||
|  | // with any existing metadata in the context. Please refer to the documentation | ||||||
|  | // of Pairs for a description of kv. | ||||||
|  | func AppendOutgoingContext(ctx context.Context, kv ...string) context.Context { | ||||||
|  | 	if len(kv)%2 == 1 { | ||||||
|  | 		panic(fmt.Sprintf("metadata: AppendOutgoingContext got an odd number of input pairs for metadata: %d", len(kv))) | ||||||
|  | 	} | ||||||
|  | 	md, _ := ctx.Value(metadataOutgoingKey{}).(rawMetadata) | ||||||
|  | 	added := make([][]string, len(md.added)+1) | ||||||
|  | 	copy(added, md.added) | ||||||
|  | 	kvCopy := make([]string, 0, len(kv)) | ||||||
|  | 	for i := 0; i < len(kv); i += 2 { | ||||||
|  | 		kvCopy = append(kvCopy, strings.ToLower(kv[i]), kv[i+1]) | ||||||
|  | 	} | ||||||
|  | 	added[len(added)-1] = kvCopy | ||||||
|  | 	return context.WithValue(ctx, metadataOutgoingKey{}, rawMetadata{md: md.md, added: added}) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // FromContext returns the metadata in ctx if it exists. | ||||||
|  | func FromContext(ctx context.Context) (Metadata, bool) { | ||||||
|  | 	raw, ok := ctx.Value(metadataCurrentKey{}).(rawMetadata) | ||||||
|  | 	if !ok { | ||||||
|  | 		return nil, false | ||||||
|  | 	} | ||||||
|  | 	metadataSize := len(raw.md) | ||||||
|  | 	for i := range raw.added { | ||||||
|  | 		metadataSize += len(raw.added[i]) / 2 | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	out := make(Metadata, metadataSize) | ||||||
|  | 	for k, v := range raw.md { | ||||||
|  | 		out[k] = copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	for _, added := range raw.added { | ||||||
|  | 		if len(added)%2 == 1 { | ||||||
|  | 			panic(fmt.Sprintf("metadata: FromContext got an odd number of input pairs for metadata: %d", len(added))) | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		for i := 0; i < len(added); i += 2 { | ||||||
|  | 			out[added[i]] = append(out[added[i]], added[i+1]) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return out, true | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // MustContext returns the metadata in ctx. | ||||||
|  | func MustContext(ctx context.Context) Metadata { | ||||||
|  | 	md, ok := FromContext(ctx) | ||||||
|  | 	if !ok { | ||||||
|  | 		panic("missing metadata") | ||||||
|  | 	} | ||||||
|  | 	return md | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // FromIncomingContext returns the incoming metadata in ctx if it exists. | ||||||
|  | func FromIncomingContext(ctx context.Context) (Metadata, bool) { | ||||||
|  | 	raw, ok := ctx.Value(metadataIncomingKey{}).(rawMetadata) | ||||||
|  | 	if !ok { | ||||||
|  | 		return nil, false | ||||||
|  | 	} | ||||||
|  | 	metadataSize := len(raw.md) | ||||||
|  | 	for i := range raw.added { | ||||||
|  | 		metadataSize += len(raw.added[i]) / 2 | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	out := make(Metadata, metadataSize) | ||||||
|  | 	for k, v := range raw.md { | ||||||
|  | 		out[k] = copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	for _, added := range raw.added { | ||||||
|  | 		if len(added)%2 == 1 { | ||||||
|  | 			panic(fmt.Sprintf("metadata: FromIncomingContext got an odd number of input pairs for metadata: %d", len(added))) | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		for i := 0; i < len(added); i += 2 { | ||||||
|  | 			out[added[i]] = append(out[added[i]], added[i+1]) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return out, true | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // MustIncomingContext returns the incoming metadata in ctx. | ||||||
|  | func MustIncomingContext(ctx context.Context) Metadata { | ||||||
|  | 	md, ok := FromIncomingContext(ctx) | ||||||
|  | 	if !ok { | ||||||
|  | 		panic("missing metadata") | ||||||
|  | 	} | ||||||
|  | 	return md | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // ValueFromIncomingContext returns the metadata value corresponding to the metadata | ||||||
|  | // key from the incoming metadata if it exists. Keys are matched in a case insensitive | ||||||
|  | // manner. | ||||||
|  | func ValueFromIncomingContext(ctx context.Context, key string) []string { | ||||||
|  | 	raw, ok := ctx.Value(metadataIncomingKey{}).(rawMetadata) | ||||||
|  | 	if !ok { | ||||||
|  | 		return nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if v, ok := raw.md[key]; ok { | ||||||
|  | 		return copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	for k, v := range raw.md { | ||||||
|  | 		// Case insensitive comparison: Metadata is a map, and there's no guarantee | ||||||
|  | 		// that the Metadata attached to the context is created using our helper | ||||||
|  | 		// functions. | ||||||
|  | 		if strings.EqualFold(k, key) { | ||||||
|  | 			return copyOf(v) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // ValueFromCurrentContext returns the metadata value corresponding to the metadata | ||||||
|  | // key from the incoming metadata if it exists. Keys are matched in a case insensitive | ||||||
|  | // manner. | ||||||
|  | func ValueFromCurrentContext(ctx context.Context, key string) []string { | ||||||
|  | 	md, ok := ctx.Value(metadataCurrentKey{}).(rawMetadata) | ||||||
|  | 	if !ok { | ||||||
|  | 		return nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if v, ok := md.md[key]; ok { | ||||||
|  | 		return copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	for k, v := range md.md { | ||||||
|  | 		// Case insensitive comparison: Metadata is a map, and there's no guarantee | ||||||
|  | 		// that the Metadata attached to the context is created using our helper | ||||||
|  | 		// functions. | ||||||
|  | 		if strings.EqualFold(k, key) { | ||||||
|  | 			return copyOf(v) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // MustOutgoingContext returns the outgoing metadata in ctx. | ||||||
|  | func MustOutgoingContext(ctx context.Context) Metadata { | ||||||
|  | 	md, ok := FromOutgoingContext(ctx) | ||||||
|  | 	if !ok { | ||||||
|  | 		panic("missing metadata") | ||||||
|  | 	} | ||||||
|  | 	return md | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // ValueFromOutgoingContext returns the metadata value corresponding to the metadata | ||||||
|  | // key from the incoming metadata if it exists. Keys are matched in a case insensitive | ||||||
|  | // manner. | ||||||
|  | func ValueFromOutgoingContext(ctx context.Context, key string) []string { | ||||||
|  | 	md, ok := ctx.Value(metadataOutgoingKey{}).(rawMetadata) | ||||||
|  | 	if !ok { | ||||||
|  | 		return nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if v, ok := md.md[key]; ok { | ||||||
|  | 		return copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	for k, v := range md.md { | ||||||
|  | 		// Case insensitive comparison: Metadata is a map, and there's no guarantee | ||||||
|  | 		// that the Metadata attached to the context is created using our helper | ||||||
|  | 		// functions. | ||||||
|  | 		if strings.EqualFold(k, key) { | ||||||
|  | 			return copyOf(v) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func copyOf(v []string) []string { | ||||||
|  | 	vals := make([]string, len(v)) | ||||||
|  | 	copy(vals, v) | ||||||
|  | 	return vals | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // FromOutgoingContext returns the outgoing metadata in ctx if it exists. | ||||||
|  | func FromOutgoingContext(ctx context.Context) (Metadata, bool) { | ||||||
|  | 	raw, ok := ctx.Value(metadataOutgoingKey{}).(rawMetadata) | ||||||
|  | 	if !ok { | ||||||
|  | 		return nil, false | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	metadataSize := len(raw.md) | ||||||
|  | 	for i := range raw.added { | ||||||
|  | 		metadataSize += len(raw.added[i]) / 2 | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	out := make(Metadata, metadataSize) | ||||||
|  | 	for k, v := range raw.md { | ||||||
|  | 		out[k] = copyOf(v) | ||||||
|  | 	} | ||||||
|  | 	for _, added := range raw.added { | ||||||
|  | 		if len(added)%2 == 1 { | ||||||
|  | 			panic(fmt.Sprintf("metadata: FromOutgoingContext got an odd number of input pairs for metadata: %d", len(added))) | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		for i := 0; i < len(added); i += 2 { | ||||||
|  | 			out[added[i]] = append(out[added[i]], added[i+1]) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return out, ok | ||||||
|  | } | ||||||
|  |  | ||||||
| type rawMetadata struct { | type rawMetadata struct { | ||||||
| 	md    Metadata | 	md    Metadata | ||||||
|  | 	added [][]string | ||||||
| } | } | ||||||
|  |  | ||||||
| // defaultMetadataSize used when need to init new Metadata |  | ||||||
| var defaultMetadataSize = 2 |  | ||||||
|  |  | ||||||
| // Iterator used to iterate over metadata with order | // Iterator used to iterate over metadata with order | ||||||
| type Iterator struct { | type Iterator struct { | ||||||
| 	md   Metadata | 	md   Metadata | ||||||
| @@ -45,14 +466,18 @@ type Iterator struct { | |||||||
| } | } | ||||||
|  |  | ||||||
| // Next advance iterator to next element | // Next advance iterator to next element | ||||||
| func (iter *Iterator) Next(k, v *string) bool { | func (iter *Iterator) Next(k *string, v *[]string) bool { | ||||||
| 	if iter.cur+1 > iter.cnt { | 	if iter.cur+1 > iter.cnt { | ||||||
| 		return false | 		return false | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|  | 	if k != nil && v != nil { | ||||||
| 		*k = iter.keys[iter.cur] | 		*k = iter.keys[iter.cur] | ||||||
| 	*v = iter.md[*k] | 		vv := iter.md[*k] | ||||||
|  | 		*v = make([]string, len(vv)) | ||||||
|  | 		copy(*v, vv) | ||||||
| 		iter.cur++ | 		iter.cur++ | ||||||
|  | 	} | ||||||
| 	return true | 	return true | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -66,102 +491,3 @@ func (md Metadata) Iterator() *Iterator { | |||||||
| 	sort.Strings(iter.keys) | 	sort.Strings(iter.keys) | ||||||
| 	return iter | 	return iter | ||||||
| } | } | ||||||
|  |  | ||||||
| func (md Metadata) MustGet(key string) string { |  | ||||||
| 	val, ok := md.Get(key) |  | ||||||
| 	if !ok { |  | ||||||
| 		panic("missing metadata key") |  | ||||||
| 	} |  | ||||||
| 	return val |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Get returns value from metadata by key |  | ||||||
| func (md Metadata) Get(key string) (string, bool) { |  | ||||||
| 	// fast path |  | ||||||
| 	val, ok := md[key] |  | ||||||
| 	if !ok { |  | ||||||
| 		// slow path |  | ||||||
| 		val, ok = md[textproto.CanonicalMIMEHeaderKey(key)] |  | ||||||
| 		if !ok { |  | ||||||
| 			val, ok = md[strings.ToLower(key)] |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	return val, ok |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Set is used to store value in metadata |  | ||||||
| func (md Metadata) Set(kv ...string) { |  | ||||||
| 	if len(kv)%2 == 1 { |  | ||||||
| 		kv = kv[:len(kv)-1] |  | ||||||
| 	} |  | ||||||
| 	for idx := 0; idx < len(kv); idx += 2 { |  | ||||||
| 		md[textproto.CanonicalMIMEHeaderKey(kv[idx])] = kv[idx+1] |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Del is used to remove value from metadata |  | ||||||
| func (md Metadata) Del(keys ...string) { |  | ||||||
| 	for _, key := range keys { |  | ||||||
| 		// fast path |  | ||||||
| 		delete(md, key) |  | ||||||
| 		// slow path |  | ||||||
| 		delete(md, textproto.CanonicalMIMEHeaderKey(key)) |  | ||||||
| 		// very slow path |  | ||||||
| 		delete(md, strings.ToLower(key)) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Copy makes a copy of the metadata |  | ||||||
| func (md Metadata) CopyTo(dst Metadata) { |  | ||||||
| 	for k, v := range md { |  | ||||||
| 		dst[k] = v |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Copy makes a copy of the metadata |  | ||||||
| func Copy(md Metadata, exclude ...string) Metadata { |  | ||||||
| 	nmd := New(len(md)) |  | ||||||
| 	for k, v := range md { |  | ||||||
| 		nmd[k] = v |  | ||||||
| 	} |  | ||||||
| 	nmd.Del(exclude...) |  | ||||||
| 	return nmd |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // New return new sized metadata |  | ||||||
| func New(size int) Metadata { |  | ||||||
| 	if size == 0 { |  | ||||||
| 		size = defaultMetadataSize |  | ||||||
| 	} |  | ||||||
| 	return make(Metadata, size) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Merge merges metadata to existing metadata, overwriting if specified |  | ||||||
| func Merge(omd Metadata, mmd Metadata, overwrite bool) Metadata { |  | ||||||
| 	var ok bool |  | ||||||
| 	nmd := Copy(omd) |  | ||||||
| 	for key, val := range mmd { |  | ||||||
| 		_, ok = nmd[key] |  | ||||||
| 		switch { |  | ||||||
| 		case ok && !overwrite: |  | ||||||
| 			continue |  | ||||||
| 		case val != "": |  | ||||||
| 			nmd[key] = val |  | ||||||
| 		case ok && val == "": |  | ||||||
| 			nmd.Del(key) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	return nmd |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Pairs from which metadata created |  | ||||||
| func Pairs(kv ...string) (Metadata, bool) { |  | ||||||
| 	if len(kv)%2 == 1 { |  | ||||||
| 		return nil, false |  | ||||||
| 	} |  | ||||||
| 	md := New(len(kv) / 2) |  | ||||||
| 	for idx := 0; idx < len(kv); idx += 2 { |  | ||||||
| 		md[kv[idx]] = kv[idx+1] |  | ||||||
| 	} |  | ||||||
| 	return md, true |  | ||||||
| } |  | ||||||
|   | |||||||
| @@ -5,10 +5,21 @@ import ( | |||||||
| 	"testing" | 	"testing" | ||||||
| ) | ) | ||||||
|  |  | ||||||
|  | /* | ||||||
|  | func TestAppendOutgoingContextModify(t *testing.T) { | ||||||
|  | 	md := Pairs("key1", "val1") | ||||||
|  | 	ctx := NewOutgoingContext(context.TODO(), md) | ||||||
|  | 	nctx := AppendOutgoingContext(ctx, "key1", "val3", "key2", "val2") | ||||||
|  | 	_ = nctx | ||||||
|  | 	omd := MustOutgoingContext(nctx) | ||||||
|  | 	fmt.Printf("%#+v\n", omd) | ||||||
|  | } | ||||||
|  | */ | ||||||
|  |  | ||||||
| func TestLowercase(t *testing.T) { | func TestLowercase(t *testing.T) { | ||||||
| 	md := New(1) | 	md := New(1) | ||||||
| 	md["x-request-id"] = "12345" | 	md["x-request-id"] = []string{"12345"} | ||||||
| 	v, ok := md.Get("X-Request-Id") | 	v, ok := md.GetJoined("X-Request-Id") | ||||||
| 	if !ok || v == "" { | 	if !ok || v == "" { | ||||||
| 		t.Fatalf("metadata invalid %#+v", md) | 		t.Fatalf("metadata invalid %#+v", md) | ||||||
| 	} | 	} | ||||||
| @@ -38,15 +49,12 @@ func TestMultipleUsage(t *testing.T) { | |||||||
|  |  | ||||||
| func TestMetadataSetMultiple(t *testing.T) { | func TestMetadataSetMultiple(t *testing.T) { | ||||||
| 	md := New(4) | 	md := New(4) | ||||||
| 	md.Set("key1", "val1", "key2", "val2", "key3") | 	md.Set("key1", "val1", "key2", "val2") | ||||||
|  |  | ||||||
| 	if v, ok := md.Get("key1"); !ok || v != "val1" { | 	if v, ok := md.GetJoined("key1"); !ok || v != "val1" { | ||||||
| 		t.Fatalf("invalid kv %#+v", md) | 		t.Fatalf("invalid kv %#+v", md) | ||||||
| 	} | 	} | ||||||
| 	if v, ok := md.Get("key2"); !ok || v != "val2" { | 	if v, ok := md.GetJoined("key2"); !ok || v != "val2" { | ||||||
| 		t.Fatalf("invalid kv %#+v", md) |  | ||||||
| 	} |  | ||||||
| 	if _, ok := md.Get("key3"); ok { |  | ||||||
| 		t.Fatalf("invalid kv %#+v", md) | 		t.Fatalf("invalid kv %#+v", md) | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -64,22 +72,12 @@ func TestAppend(t *testing.T) { | |||||||
| } | } | ||||||
|  |  | ||||||
| func TestPairs(t *testing.T) { | func TestPairs(t *testing.T) { | ||||||
| 	md, ok := Pairs("key1", "val1", "key2", "val2") | 	md := Pairs("key1", "val1", "key2", "val2") | ||||||
| 	if !ok { | 	if _, ok := md.Get("key1"); !ok { | ||||||
| 		t.Fatal("odd number of kv") |  | ||||||
| 	} |  | ||||||
| 	if _, ok = md.Get("key1"); !ok { |  | ||||||
| 		t.Fatal("key1 not found") | 		t.Fatal("key1 not found") | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func testCtx(ctx context.Context) { |  | ||||||
| 	md := New(2) |  | ||||||
| 	md.Set("Key1", "Val1_new") |  | ||||||
| 	md.Set("Key3", "Val3") |  | ||||||
| 	SetOutgoingContext(ctx, md) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestPassing(t *testing.T) { | func TestPassing(t *testing.T) { | ||||||
| 	ctx := context.TODO() | 	ctx := context.TODO() | ||||||
| 	md1 := New(2) | 	md1 := New(2) | ||||||
| @@ -87,69 +85,62 @@ func TestPassing(t *testing.T) { | |||||||
| 	md1.Set("Key2", "Val2") | 	md1.Set("Key2", "Val2") | ||||||
|  |  | ||||||
| 	ctx = NewIncomingContext(ctx, md1) | 	ctx = NewIncomingContext(ctx, md1) | ||||||
| 	testCtx(ctx) |  | ||||||
| 	_, ok := FromOutgoingContext(ctx) | 	_, ok := FromOutgoingContext(ctx) | ||||||
| 	if ok { | 	if ok { | ||||||
| 		t.Fatalf("create outgoing context") | 		t.Fatalf("create outgoing context") | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	ctx = NewOutgoingContext(ctx, New(1)) | 	ctx = NewOutgoingContext(ctx, md1) | ||||||
| 	testCtx(ctx) |  | ||||||
| 	md, ok := FromOutgoingContext(ctx) | 	md, ok := FromOutgoingContext(ctx) | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		t.Fatalf("missing metadata from outgoing context") | 		t.Fatalf("missing metadata from outgoing context") | ||||||
| 	} | 	} | ||||||
| 	if v, ok := md.Get("Key1"); !ok || v != "Val1_new" { | 	if v, ok := md.Get("Key1"); !ok || v[0] != "Val1" { | ||||||
| 		t.Fatalf("invalid metadata value %#+v", md) | 		t.Fatalf("invalid metadata value %#+v", md) | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestMerge(t *testing.T) { | func TestIterator(t *testing.T) { | ||||||
| 	omd := Metadata{ | 	md := Pairs( | ||||||
| 		"key1": "val1", | 		"1Last", "last", | ||||||
| 	} | 		"2First", "first", | ||||||
| 	mmd := Metadata{ | 		"3Second", "second", | ||||||
| 		"key2": "val2", | 	) | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	nmd := Merge(omd, mmd, true) |  | ||||||
| 	if len(nmd) != 2 { |  | ||||||
| 		t.Fatalf("merge failed: %v", nmd) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestIterator(_ *testing.T) { |  | ||||||
| 	md := Metadata{ |  | ||||||
| 		"1Last":   "last", |  | ||||||
| 		"2First":  "first", |  | ||||||
| 		"3Second": "second", |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	iter := md.Iterator() | 	iter := md.Iterator() | ||||||
| 	var k, v string | 	var k string | ||||||
|  | 	var v []string | ||||||
|  | 	chk := New(3) | ||||||
| 	for iter.Next(&k, &v) { | 	for iter.Next(&k, &v) { | ||||||
| 		// fmt.Printf("k: %s, v: %s\n", k, v) | 		chk[k] = v | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	for k, v := range chk { | ||||||
|  | 		if cv, ok := md[k]; !ok || len(cv) != len(v) || cv[0] != v[0] { | ||||||
|  | 			t.Fatalf("XXXX %#+v %#+v", chk, md) | ||||||
|  | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestMedataCanonicalKey(t *testing.T) { | func TestMedataCanonicalKey(t *testing.T) { | ||||||
| 	md := New(1) | 	md := New(1) | ||||||
| 	md.Set("x-request-id", "12345") | 	md.Set("x-request-id", "12345") | ||||||
| 	v, ok := md.Get("x-request-id") | 	v, ok := md.GetJoined("x-request-id") | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		t.Fatalf("failed to get x-request-id") | 		t.Fatalf("failed to get x-request-id") | ||||||
| 	} else if v != "12345" { | 	} else if v != "12345" { | ||||||
| 		t.Fatalf("invalid metadata value: %s != %s", "12345", v) | 		t.Fatalf("invalid metadata value: %s != %s", "12345", v) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	v, ok = md.Get("X-Request-Id") | 	v, ok = md.GetJoined("X-Request-Id") | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		t.Fatalf("failed to get x-request-id") | 		t.Fatalf("failed to get x-request-id") | ||||||
| 	} else if v != "12345" { | 	} else if v != "12345" { | ||||||
| 		t.Fatalf("invalid metadata value: %s != %s", "12345", v) | 		t.Fatalf("invalid metadata value: %s != %s", "12345", v) | ||||||
| 	} | 	} | ||||||
| 	v, ok = md.Get("X-Request-ID") | 	v, ok = md.GetJoined("X-Request-ID") | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		t.Fatalf("failed to get x-request-id") | 		t.Fatalf("failed to get x-request-id") | ||||||
| 	} else if v != "12345" { | 	} else if v != "12345" { | ||||||
| @@ -162,7 +153,7 @@ func TestMetadataSet(t *testing.T) { | |||||||
|  |  | ||||||
| 	md.Set("Key", "val") | 	md.Set("Key", "val") | ||||||
|  |  | ||||||
| 	val, ok := md.Get("Key") | 	val, ok := md.GetJoined("Key") | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		t.Fatal("key Key not found") | 		t.Fatal("key Key not found") | ||||||
| 	} | 	} | ||||||
| @@ -173,8 +164,8 @@ func TestMetadataSet(t *testing.T) { | |||||||
|  |  | ||||||
| func TestMetadataDelete(t *testing.T) { | func TestMetadataDelete(t *testing.T) { | ||||||
| 	md := Metadata{ | 	md := Metadata{ | ||||||
| 		"Foo": "bar", | 		"Foo": []string{"bar"}, | ||||||
| 		"Baz": "empty", | 		"Baz": []string{"empty"}, | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	md.Del("Baz") | 	md.Del("Baz") | ||||||
| @@ -184,25 +175,16 @@ func TestMetadataDelete(t *testing.T) { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestNilContext(t *testing.T) { |  | ||||||
| 	var ctx context.Context |  | ||||||
|  |  | ||||||
| 	_, ok := FromContext(ctx) |  | ||||||
| 	if ok { |  | ||||||
| 		t.Fatal("nil context") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestMetadataCopy(t *testing.T) { | func TestMetadataCopy(t *testing.T) { | ||||||
| 	md := Metadata{ | 	md := Metadata{ | ||||||
| 		"Foo": "bar", | 		"Foo": []string{"bar"}, | ||||||
| 		"Bar": "baz", | 		"Bar": []string{"baz"}, | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	cp := Copy(md) | 	cp := Copy(md) | ||||||
|  |  | ||||||
| 	for k, v := range md { | 	for k, v := range md { | ||||||
| 		if cv := cp[k]; cv != v { | 		if cv := cp[k]; cv[0] != v[0] { | ||||||
| 			t.Fatalf("Got %s:%s for %s:%s", k, cv, k, v) | 			t.Fatalf("Got %s:%s for %s:%s", k, cv, k, v) | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| @@ -210,7 +192,7 @@ func TestMetadataCopy(t *testing.T) { | |||||||
|  |  | ||||||
| func TestMetadataContext(t *testing.T) { | func TestMetadataContext(t *testing.T) { | ||||||
| 	md := Metadata{ | 	md := Metadata{ | ||||||
| 		"Foo": "bar", | 		"Foo": []string{"bar"}, | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	ctx := NewContext(context.TODO(), md) | 	ctx := NewContext(context.TODO(), md) | ||||||
| @@ -220,7 +202,7 @@ func TestMetadataContext(t *testing.T) { | |||||||
| 		t.Errorf("Unexpected error retrieving metadata, got %t", ok) | 		t.Errorf("Unexpected error retrieving metadata, got %t", ok) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if emd["Foo"] != md["Foo"] { | 	if emd["Foo"][0] != md["Foo"][0] { | ||||||
| 		t.Errorf("Expected key: %s val: %s, got key: %s val: %s", "Foo", md["Foo"], "Foo", emd["Foo"]) | 		t.Errorf("Expected key: %s val: %s, got key: %s val: %s", "Foo", md["Foo"], "Foo", emd["Foo"]) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| @@ -229,13 +211,88 @@ func TestMetadataContext(t *testing.T) { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestCopy(t *testing.T) { | func TestFromContext(t *testing.T) { | ||||||
| 	md := New(2) | 	ctx := context.WithValue(context.TODO(), metadataCurrentKey{}, rawMetadata{md: New(0)}) | ||||||
| 	md.Set("key1", "val1", "key2", "val2") |  | ||||||
| 	nmd := Copy(md, "key2") | 	c, ok := FromContext(ctx) | ||||||
| 	if len(nmd) != 1 { | 	if c == nil || !ok { | ||||||
| 		t.Fatal("Copy exclude not works") | 		t.Fatal("FromContext not works") | ||||||
| 	} else if nmd["Key1"] != "val1" { | 	} | ||||||
| 		t.Fatal("Copy exclude not works") | } | ||||||
|  |  | ||||||
|  | func TestNewContext(t *testing.T) { | ||||||
|  | 	ctx := NewContext(context.TODO(), New(0)) | ||||||
|  |  | ||||||
|  | 	c, ok := FromContext(ctx) | ||||||
|  | 	if c == nil || !ok { | ||||||
|  | 		t.Fatal("NewContext not works") | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestFromIncomingContext(t *testing.T) { | ||||||
|  | 	ctx := context.WithValue(context.TODO(), metadataIncomingKey{}, rawMetadata{md: New(0)}) | ||||||
|  |  | ||||||
|  | 	c, ok := FromIncomingContext(ctx) | ||||||
|  | 	if c == nil || !ok { | ||||||
|  | 		t.Fatal("FromIncomingContext not works") | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestFromOutgoingContext(t *testing.T) { | ||||||
|  | 	ctx := context.WithValue(context.TODO(), metadataOutgoingKey{}, rawMetadata{md: New(0)}) | ||||||
|  |  | ||||||
|  | 	c, ok := FromOutgoingContext(ctx) | ||||||
|  | 	if c == nil || !ok { | ||||||
|  | 		t.Fatal("FromOutgoingContext not works") | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestNewIncomingContext(t *testing.T) { | ||||||
|  | 	md := New(1) | ||||||
|  | 	md.Set("key", "val") | ||||||
|  | 	ctx := NewIncomingContext(context.TODO(), md) | ||||||
|  |  | ||||||
|  | 	c, ok := FromIncomingContext(ctx) | ||||||
|  | 	if c == nil || !ok { | ||||||
|  | 		t.Fatal("NewIncomingContext not works") | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestNewOutgoingContext(t *testing.T) { | ||||||
|  | 	md := New(1) | ||||||
|  | 	md.Set("key", "val") | ||||||
|  | 	ctx := NewOutgoingContext(context.TODO(), md) | ||||||
|  |  | ||||||
|  | 	c, ok := FromOutgoingContext(ctx) | ||||||
|  | 	if c == nil || !ok { | ||||||
|  | 		t.Fatal("NewOutgoingContext not works") | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestAppendIncomingContext(t *testing.T) { | ||||||
|  | 	md := New(1) | ||||||
|  | 	md.Set("key1", "val1") | ||||||
|  | 	ctx := AppendIncomingContext(context.TODO(), "key2", "val2") | ||||||
|  |  | ||||||
|  | 	nmd, ok := FromIncomingContext(ctx) | ||||||
|  | 	if nmd == nil || !ok { | ||||||
|  | 		t.Fatal("AppendIncomingContext not works") | ||||||
|  | 	} | ||||||
|  | 	if v, ok := nmd.GetJoined("key2"); !ok || v != "val2" { | ||||||
|  | 		t.Fatal("AppendIncomingContext not works") | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestAppendOutgoingContext(t *testing.T) { | ||||||
|  | 	md := New(1) | ||||||
|  | 	md.Set("key1", "val1") | ||||||
|  | 	ctx := AppendOutgoingContext(context.TODO(), "key2", "val2") | ||||||
|  |  | ||||||
|  | 	nmd, ok := FromOutgoingContext(ctx) | ||||||
|  | 	if nmd == nil || !ok { | ||||||
|  | 		t.Fatal("AppendOutgoingContext not works") | ||||||
|  | 	} | ||||||
|  | 	if v, ok := nmd.GetJoined("key2"); !ok || v != "val2" { | ||||||
|  | 		t.Fatal("AppendOutgoingContext not works") | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										30
									
								
								micro.go
									
									
									
									
									
								
							
							
						
						
									
										30
									
								
								micro.go
									
									
									
									
									
								
							| @@ -3,21 +3,21 @@ package micro | |||||||
| import ( | import ( | ||||||
| 	"reflect" | 	"reflect" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/client" | 	"go.unistack.org/micro/v4/client" | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/flow" | 	"go.unistack.org/micro/v4/flow" | ||||||
| 	"go.unistack.org/micro/v3/fsm" | 	"go.unistack.org/micro/v4/fsm" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/meter" | ||||||
| 	"go.unistack.org/micro/v3/register" | 	"go.unistack.org/micro/v4/register" | ||||||
| 	"go.unistack.org/micro/v3/resolver" | 	"go.unistack.org/micro/v4/resolver" | ||||||
| 	"go.unistack.org/micro/v3/router" | 	"go.unistack.org/micro/v4/router" | ||||||
| 	"go.unistack.org/micro/v3/selector" | 	"go.unistack.org/micro/v4/selector" | ||||||
| 	"go.unistack.org/micro/v3/server" | 	"go.unistack.org/micro/v4/server" | ||||||
| 	"go.unistack.org/micro/v3/store" | 	"go.unistack.org/micro/v4/store" | ||||||
| 	"go.unistack.org/micro/v3/sync" | 	"go.unistack.org/micro/v4/sync" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func As(b any, target any) bool { | func As(b any, target any) bool { | ||||||
|   | |||||||
| @@ -6,8 +6,9 @@ import ( | |||||||
| 	"reflect" | 	"reflect" | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/fsm" | 	"go.unistack.org/micro/v4/fsm" | ||||||
|  | 	"go.unistack.org/micro/v4/metadata" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func TestAs(t *testing.T) { | func TestAs(t *testing.T) { | ||||||
| @@ -61,6 +62,8 @@ func TestAs(t *testing.T) { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
|  | var _ broker.Broker = (*bro)(nil) | ||||||
|  |  | ||||||
| type bro struct { | type bro struct { | ||||||
| 	name string | 	name string | ||||||
| } | } | ||||||
| @@ -87,23 +90,18 @@ func (p *bro) Connect(_ context.Context) error { return nil } | |||||||
| // Disconnect disconnect from broker | // Disconnect disconnect from broker | ||||||
| func (p *bro) Disconnect(_ context.Context) error { return nil } | func (p *bro) Disconnect(_ context.Context) error { return nil } | ||||||
|  |  | ||||||
| // Publish message, msg can be single broker.Message or []broker.Message | // NewMessage creates new message | ||||||
| func (p *bro) Publish(_ context.Context, _ string, _ *broker.Message, _ ...broker.PublishOption) error { | func (p *bro) NewMessage(_ context.Context, _ metadata.Metadata, _ interface{}, _ ...broker.PublishOption) (broker.Message, error) { | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // BatchPublish messages to broker with multiple topics |  | ||||||
| func (p *bro) BatchPublish(_ context.Context, _ []*broker.Message, _ ...broker.PublishOption) error { |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // BatchSubscribe subscribes to topic messages via handler |  | ||||||
| func (p *bro) BatchSubscribe(_ context.Context, _ string, _ broker.BatchHandler, _ ...broker.SubscribeOption) (broker.Subscriber, error) { |  | ||||||
| 	return nil, nil | 	return nil, nil | ||||||
| } | } | ||||||
|  |  | ||||||
|  | // Publish message, msg can be single broker.Message or []broker.Message | ||||||
|  | func (p *bro) Publish(_ context.Context, _ string, _ ...broker.Message) error { | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
| // Subscribe subscribes to topic message via handler | // Subscribe subscribes to topic message via handler | ||||||
| func (p *bro) Subscribe(_ context.Context, _ string, _ broker.Handler, _ ...broker.SubscribeOption) (broker.Subscriber, error) { | func (p *bro) Subscribe(_ context.Context, _ string, _ interface{}, _ ...broker.SubscribeOption) (broker.Subscriber, error) { | ||||||
| 	return nil, nil | 	return nil, nil | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,55 +0,0 @@ | |||||||
| // Package network is for creating internetworks |  | ||||||
| package network |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"go.unistack.org/micro/v3/client" |  | ||||||
| 	"go.unistack.org/micro/v3/server" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // Error is network node errors |  | ||||||
| type Error interface { |  | ||||||
| 	// Count is current count of errors |  | ||||||
| 	Count() int |  | ||||||
| 	// Msg is last error message |  | ||||||
| 	Msg() string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Status is node status |  | ||||||
| type Status interface { |  | ||||||
| 	// Error reports error status |  | ||||||
| 	Error() Error |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Node is network node |  | ||||||
| type Node interface { |  | ||||||
| 	// Id is node id |  | ||||||
| 	Id() string |  | ||||||
| 	// Address is node bind address |  | ||||||
| 	Address() string |  | ||||||
| 	// Peers returns node peers |  | ||||||
| 	Peers() []Node |  | ||||||
| 	// Network is the network node is in |  | ||||||
| 	Network() Network |  | ||||||
| 	// Status returns node status |  | ||||||
| 	Status() Status |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Network is micro network |  | ||||||
| type Network interface { |  | ||||||
| 	// Node is network node |  | ||||||
| 	Node |  | ||||||
| 	// Initialise options |  | ||||||
| 	Init(...Option) error |  | ||||||
| 	// Options returns the network options |  | ||||||
| 	Options() Options |  | ||||||
| 	// Name of the network |  | ||||||
| 	Name() string |  | ||||||
| 	// Connect starts the resolver and tunnel server |  | ||||||
| 	Connect() error |  | ||||||
| 	// Close stops the tunnel and resolving |  | ||||||
| 	Close() error |  | ||||||
| 	// Client is micro client |  | ||||||
| 	Client() client.Client |  | ||||||
| 	// Server is micro server |  | ||||||
| 	Server() server.Server |  | ||||||
| } |  | ||||||
| @@ -1,135 +0,0 @@ | |||||||
| package network |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"go.unistack.org/micro/v3/logger" |  | ||||||
| 	"go.unistack.org/micro/v3/meter" |  | ||||||
| 	"go.unistack.org/micro/v3/network/tunnel" |  | ||||||
| 	"go.unistack.org/micro/v3/proxy" |  | ||||||
| 	"go.unistack.org/micro/v3/router" |  | ||||||
| 	"go.unistack.org/micro/v3/tracer" |  | ||||||
| 	"go.unistack.org/micro/v3/util/id" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // Option func |  | ||||||
| type Option func(*Options) |  | ||||||
|  |  | ||||||
| // Options configure network |  | ||||||
| type Options struct { |  | ||||||
| 	// Router used for routing |  | ||||||
| 	Router router.Router |  | ||||||
| 	// Proxy holds the proxy |  | ||||||
| 	Proxy proxy.Proxy |  | ||||||
| 	// Logger used for logging |  | ||||||
| 	Logger logger.Logger |  | ||||||
| 	// Meter used for metrics |  | ||||||
| 	Meter meter.Meter |  | ||||||
| 	// Tracer used for tracing |  | ||||||
| 	Tracer tracer.Tracer |  | ||||||
| 	// Tunnel used for transfer data |  | ||||||
| 	Tunnel tunnel.Tunnel |  | ||||||
| 	// ID of the node |  | ||||||
| 	ID string |  | ||||||
| 	// Name of the network |  | ||||||
| 	Name string |  | ||||||
| 	// Address to bind to |  | ||||||
| 	Address string |  | ||||||
| 	// Advertise sets the address to advertise |  | ||||||
| 	Advertise string |  | ||||||
| 	// Nodes is a list of nodes to connect to |  | ||||||
| 	Nodes []string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ID sets the id of the network node |  | ||||||
| func ID(id string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.ID = id |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Name sets the network name |  | ||||||
| func Name(n string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Name = n |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Address sets the network address |  | ||||||
| func Address(a string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Address = a |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Advertise sets the address to advertise |  | ||||||
| func Advertise(a string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Advertise = a |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Nodes is a list of nodes to connect to |  | ||||||
| func Nodes(n ...string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Nodes = n |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Tunnel sets the network tunnel |  | ||||||
| func Tunnel(t tunnel.Tunnel) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Tunnel = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Router sets the network router |  | ||||||
| func Router(r router.Router) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Router = r |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Proxy sets the network proxy |  | ||||||
| func Proxy(p proxy.Proxy) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Proxy = p |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Logger sets the network logger |  | ||||||
| func Logger(l logger.Logger) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Logger = l |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Meter sets the meter |  | ||||||
| func Meter(m meter.Meter) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Meter = m |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Tracer to be used for tracing |  | ||||||
| func Tracer(t tracer.Tracer) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Tracer = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewOptions returns network default options |  | ||||||
| func NewOptions(opts ...Option) Options { |  | ||||||
| 	options := Options{ |  | ||||||
| 		ID:      id.MustNew(), |  | ||||||
| 		Name:    "go.micro", |  | ||||||
| 		Address: ":0", |  | ||||||
| 		Logger:  logger.DefaultLogger, |  | ||||||
| 		Meter:   meter.DefaultMeter, |  | ||||||
| 		Tracer:  tracer.DefaultTracer, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&options) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return options |  | ||||||
| } |  | ||||||
| @@ -1,34 +0,0 @@ | |||||||
| package transport |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type transportKey struct{} |  | ||||||
|  |  | ||||||
| // FromContext get transport from context |  | ||||||
| func FromContext(ctx context.Context) (Transport, bool) { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		return nil, false |  | ||||||
| 	} |  | ||||||
| 	c, ok := ctx.Value(transportKey{}).(Transport) |  | ||||||
| 	return c, ok |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewContext put transport in context |  | ||||||
| func NewContext(ctx context.Context, c Transport) context.Context { |  | ||||||
| 	if ctx == nil { |  | ||||||
| 		ctx = context.Background() |  | ||||||
| 	} |  | ||||||
| 	return context.WithValue(ctx, transportKey{}, c) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // SetOption returns a function to setup a context with given value |  | ||||||
| func SetOption(k, v interface{}) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		if o.Context == nil { |  | ||||||
| 			o.Context = context.Background() |  | ||||||
| 		} |  | ||||||
| 		o.Context = context.WithValue(o.Context, k, v) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,258 +0,0 @@ | |||||||
| package transport |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"errors" |  | ||||||
| 	"fmt" |  | ||||||
| 	"net" |  | ||||||
| 	"sync" |  | ||||||
| 	"time" |  | ||||||
|  |  | ||||||
| 	maddr "go.unistack.org/micro/v3/util/addr" |  | ||||||
| 	mnet "go.unistack.org/micro/v3/util/net" |  | ||||||
| 	"go.unistack.org/micro/v3/util/rand" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type memorySocket struct { |  | ||||||
| 	ctx     context.Context |  | ||||||
| 	recv    chan *Message |  | ||||||
| 	exit    chan bool |  | ||||||
| 	lexit   chan bool |  | ||||||
| 	send    chan *Message |  | ||||||
| 	local   string |  | ||||||
| 	remote  string |  | ||||||
| 	timeout time.Duration |  | ||||||
| 	sync.RWMutex |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type memoryClient struct { |  | ||||||
| 	*memorySocket |  | ||||||
| 	opts DialOptions |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type memoryListener struct { |  | ||||||
| 	lopts ListenOptions |  | ||||||
| 	ctx   context.Context |  | ||||||
| 	exit  chan bool |  | ||||||
| 	conn  chan *memorySocket |  | ||||||
| 	addr  string |  | ||||||
| 	topts Options |  | ||||||
| 	sync.RWMutex |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type memoryTransport struct { |  | ||||||
| 	listeners map[string]*memoryListener |  | ||||||
| 	opts      Options |  | ||||||
| 	sync.RWMutex |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (ms *memorySocket) Recv(m *Message) error { |  | ||||||
| 	ms.RLock() |  | ||||||
| 	defer ms.RUnlock() |  | ||||||
|  |  | ||||||
| 	ctx := ms.ctx |  | ||||||
| 	if ms.timeout > 0 { |  | ||||||
| 		var cancel context.CancelFunc |  | ||||||
| 		ctx, cancel = context.WithTimeout(ms.ctx, ms.timeout) |  | ||||||
| 		defer cancel() |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	select { |  | ||||||
| 	case <-ctx.Done(): |  | ||||||
| 		return ctx.Err() |  | ||||||
| 	case <-ms.exit: |  | ||||||
| 		return errors.New("connection closed") |  | ||||||
| 	case <-ms.lexit: |  | ||||||
| 		return errors.New("server connection closed") |  | ||||||
| 	case cm := <-ms.recv: |  | ||||||
| 		*m = *cm |  | ||||||
| 	} |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (ms *memorySocket) Local() string { |  | ||||||
| 	return ms.local |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (ms *memorySocket) Remote() string { |  | ||||||
| 	return ms.remote |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (ms *memorySocket) Send(m *Message) error { |  | ||||||
| 	ms.RLock() |  | ||||||
| 	defer ms.RUnlock() |  | ||||||
|  |  | ||||||
| 	ctx := ms.ctx |  | ||||||
| 	if ms.timeout > 0 { |  | ||||||
| 		var cancel context.CancelFunc |  | ||||||
| 		ctx, cancel = context.WithTimeout(ms.ctx, ms.timeout) |  | ||||||
| 		defer cancel() |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	select { |  | ||||||
| 	case <-ctx.Done(): |  | ||||||
| 		return ctx.Err() |  | ||||||
| 	case <-ms.exit: |  | ||||||
| 		return errors.New("connection closed") |  | ||||||
| 	case <-ms.lexit: |  | ||||||
| 		return errors.New("server connection closed") |  | ||||||
| 	case ms.send <- m: |  | ||||||
| 	} |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (ms *memorySocket) Close() error { |  | ||||||
| 	ms.Lock() |  | ||||||
| 	defer ms.Unlock() |  | ||||||
| 	select { |  | ||||||
| 	case <-ms.exit: |  | ||||||
| 		return nil |  | ||||||
| 	default: |  | ||||||
| 		close(ms.exit) |  | ||||||
| 	} |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryListener) Addr() string { |  | ||||||
| 	return m.addr |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryListener) Close() error { |  | ||||||
| 	m.Lock() |  | ||||||
| 	defer m.Unlock() |  | ||||||
| 	select { |  | ||||||
| 	case <-m.exit: |  | ||||||
| 		return nil |  | ||||||
| 	default: |  | ||||||
| 		close(m.exit) |  | ||||||
| 	} |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryListener) Accept(fn func(Socket)) error { |  | ||||||
| 	for { |  | ||||||
| 		select { |  | ||||||
| 		case <-m.exit: |  | ||||||
| 			return nil |  | ||||||
| 		case c := <-m.conn: |  | ||||||
| 			go fn(&memorySocket{ |  | ||||||
| 				lexit:   c.lexit, |  | ||||||
| 				exit:    c.exit, |  | ||||||
| 				send:    c.recv, |  | ||||||
| 				recv:    c.send, |  | ||||||
| 				local:   c.Remote(), |  | ||||||
| 				remote:  c.Local(), |  | ||||||
| 				timeout: m.topts.Timeout, |  | ||||||
| 				ctx:     m.topts.Context, |  | ||||||
| 			}) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryTransport) Dial(ctx context.Context, addr string, opts ...DialOption) (Client, error) { |  | ||||||
| 	m.RLock() |  | ||||||
| 	defer m.RUnlock() |  | ||||||
|  |  | ||||||
| 	listener, ok := m.listeners[addr] |  | ||||||
| 	if !ok { |  | ||||||
| 		return nil, errors.New("could not dial " + addr) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	options := NewDialOptions(opts...) |  | ||||||
|  |  | ||||||
| 	client := &memoryClient{ |  | ||||||
| 		&memorySocket{ |  | ||||||
| 			send:    make(chan *Message), |  | ||||||
| 			recv:    make(chan *Message), |  | ||||||
| 			exit:    make(chan bool), |  | ||||||
| 			lexit:   listener.exit, |  | ||||||
| 			local:   addr, |  | ||||||
| 			remote:  addr, |  | ||||||
| 			timeout: m.opts.Timeout, |  | ||||||
| 			ctx:     m.opts.Context, |  | ||||||
| 		}, |  | ||||||
| 		options, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// pseudo connect |  | ||||||
| 	select { |  | ||||||
| 	case <-listener.exit: |  | ||||||
| 		return nil, errors.New("connection error") |  | ||||||
| 	case listener.conn <- client.memorySocket: |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return client, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryTransport) Listen(ctx context.Context, addr string, opts ...ListenOption) (Listener, error) { |  | ||||||
| 	m.Lock() |  | ||||||
| 	defer m.Unlock() |  | ||||||
|  |  | ||||||
| 	options := NewListenOptions(opts...) |  | ||||||
|  |  | ||||||
| 	host, port, err := net.SplitHostPort(addr) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	addr, err = maddr.Extract(host) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// if zero port then randomly assign one |  | ||||||
| 	if len(port) > 0 && port == "0" { |  | ||||||
| 		var rng rand.Rand |  | ||||||
| 		i := rng.Intn(20000) |  | ||||||
| 		port = fmt.Sprintf("%d", 10000+i) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// set addr with port |  | ||||||
| 	addr = mnet.HostPort(addr, port) |  | ||||||
|  |  | ||||||
| 	if _, ok := m.listeners[addr]; ok { |  | ||||||
| 		return nil, errors.New("already listening on " + addr) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	listener := &memoryListener{ |  | ||||||
| 		lopts: options, |  | ||||||
| 		topts: m.opts, |  | ||||||
| 		addr:  addr, |  | ||||||
| 		conn:  make(chan *memorySocket), |  | ||||||
| 		exit:  make(chan bool), |  | ||||||
| 		ctx:   m.opts.Context, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	m.listeners[addr] = listener |  | ||||||
|  |  | ||||||
| 	return listener, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryTransport) Init(opts ...Option) error { |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&m.opts) |  | ||||||
| 	} |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryTransport) Options() Options { |  | ||||||
| 	return m.opts |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryTransport) String() string { |  | ||||||
| 	return "memory" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *memoryTransport) Name() string { |  | ||||||
| 	return m.opts.Name |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewTransport returns new memory transport with options |  | ||||||
| func NewTransport(opts ...Option) Transport { |  | ||||||
| 	options := NewOptions(opts...) |  | ||||||
|  |  | ||||||
| 	return &memoryTransport{ |  | ||||||
| 		opts:      options, |  | ||||||
| 		listeners: make(map[string]*memoryListener), |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,100 +0,0 @@ | |||||||
| package transport |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"os" |  | ||||||
| 	"testing" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func TestMemoryTransport(t *testing.T) { |  | ||||||
| 	tr := NewTransport() |  | ||||||
| 	ctx := context.Background() |  | ||||||
| 	// bind / listen |  | ||||||
| 	l, err := tr.Listen(ctx, "127.0.0.1:8080") |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Fatalf("Unexpected error listening %v", err) |  | ||||||
| 	} |  | ||||||
| 	defer l.Close() |  | ||||||
|  |  | ||||||
| 	cherr := make(chan error, 1) |  | ||||||
| 	// accept |  | ||||||
| 	go func() { |  | ||||||
| 		if nerr := l.Accept(func(sock Socket) { |  | ||||||
| 			for { |  | ||||||
| 				var m Message |  | ||||||
| 				if rerr := sock.Recv(&m); rerr != nil { |  | ||||||
| 					cherr <- rerr |  | ||||||
| 					return |  | ||||||
| 				} |  | ||||||
| 				if len(os.Getenv("INTEGRATION_TESTS")) == 0 { |  | ||||||
| 					t.Logf("Server Received %s", string(m.Body)) |  | ||||||
| 				} |  | ||||||
| 				if cerr := sock.Send(&Message{ |  | ||||||
| 					Body: []byte(`pong`), |  | ||||||
| 				}); cerr != nil { |  | ||||||
| 					cherr <- cerr |  | ||||||
| 					return |  | ||||||
| 				} |  | ||||||
| 			} |  | ||||||
| 		}); nerr != nil { |  | ||||||
| 			cherr <- err |  | ||||||
| 		} |  | ||||||
| 	}() |  | ||||||
|  |  | ||||||
| 	// dial |  | ||||||
| 	c, err := tr.Dial(ctx, "127.0.0.1:8080") |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Fatalf("Unexpected error dialing %v", err) |  | ||||||
| 	} |  | ||||||
| 	defer c.Close() |  | ||||||
|  |  | ||||||
| 	select { |  | ||||||
| 	case err := <-cherr: |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	default: |  | ||||||
| 		// send <=> receive |  | ||||||
| 		for i := 0; i < 3; i++ { |  | ||||||
| 			if err := c.Send(&Message{ |  | ||||||
| 				Body: []byte(`ping`), |  | ||||||
| 			}); err != nil { |  | ||||||
| 				return |  | ||||||
| 			} |  | ||||||
| 			var m Message |  | ||||||
| 			if err := c.Recv(&m); err != nil { |  | ||||||
| 				return |  | ||||||
| 			} |  | ||||||
| 			if len(os.Getenv("INTEGRATION_TESTS")) == 0 { |  | ||||||
| 				t.Logf("Client Received %s", string(m.Body)) |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestListener(t *testing.T) { |  | ||||||
| 	tr := NewTransport() |  | ||||||
| 	ctx := context.Background() |  | ||||||
| 	// bind / listen on random port |  | ||||||
| 	l, err := tr.Listen(ctx, ":0") |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Fatalf("Unexpected error listening %v", err) |  | ||||||
| 	} |  | ||||||
| 	defer l.Close() |  | ||||||
|  |  | ||||||
| 	// try again |  | ||||||
| 	l2, err := tr.Listen(ctx, ":0") |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Fatalf("Unexpected error listening %v", err) |  | ||||||
| 	} |  | ||||||
| 	defer l2.Close() |  | ||||||
|  |  | ||||||
| 	// now make sure it still fails |  | ||||||
| 	l3, err := tr.Listen(ctx, ":8080") |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Fatalf("Unexpected error listening %v", err) |  | ||||||
| 	} |  | ||||||
| 	defer l3.Close() |  | ||||||
|  |  | ||||||
| 	if _, err := tr.Listen(ctx, ":8080"); err == nil { |  | ||||||
| 		t.Fatal("Expected error binding to :8080 got nil") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,175 +0,0 @@ | |||||||
| package transport |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"crypto/tls" |  | ||||||
| 	"time" |  | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/codec" |  | ||||||
| 	"go.unistack.org/micro/v3/logger" |  | ||||||
| 	"go.unistack.org/micro/v3/meter" |  | ||||||
| 	"go.unistack.org/micro/v3/tracer" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // Options struct holds the transport options |  | ||||||
| type Options struct { |  | ||||||
| 	// Meter used for metrics |  | ||||||
| 	Meter meter.Meter |  | ||||||
| 	// Tracer used for tracing |  | ||||||
| 	Tracer tracer.Tracer |  | ||||||
| 	// Codec used for marshal/unmarshal messages |  | ||||||
| 	Codec codec.Codec |  | ||||||
| 	// Logger used for logging |  | ||||||
| 	Logger logger.Logger |  | ||||||
| 	// Context holds external options |  | ||||||
| 	Context context.Context |  | ||||||
| 	// TLSConfig holds tls.TLSConfig options |  | ||||||
| 	TLSConfig *tls.Config |  | ||||||
| 	// Name holds the transport name |  | ||||||
| 	Name string |  | ||||||
| 	// Addrs holds the transport addrs |  | ||||||
| 	Addrs []string |  | ||||||
| 	// Timeout holds the timeout |  | ||||||
| 	Timeout time.Duration |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewOptions returns new options |  | ||||||
| func NewOptions(opts ...Option) Options { |  | ||||||
| 	options := Options{ |  | ||||||
| 		Logger:  logger.DefaultLogger, |  | ||||||
| 		Meter:   meter.DefaultMeter, |  | ||||||
| 		Tracer:  tracer.DefaultTracer, |  | ||||||
| 		Context: context.Background(), |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&options) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // DialOptions struct |  | ||||||
| type DialOptions struct { |  | ||||||
| 	// Context holds the external options |  | ||||||
| 	Context context.Context |  | ||||||
| 	// Timeout holds the timeout |  | ||||||
| 	Timeout time.Duration |  | ||||||
| 	// Stream flag |  | ||||||
| 	Stream bool |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewDialOptions returns new DialOptions |  | ||||||
| func NewDialOptions(opts ...DialOption) DialOptions { |  | ||||||
| 	options := DialOptions{ |  | ||||||
| 		Timeout: DefaultDialTimeout, |  | ||||||
| 		Context: context.Background(), |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&options) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ListenOptions struct |  | ||||||
| type ListenOptions struct { |  | ||||||
| 	// TODO: add tls options when listening |  | ||||||
| 	// Currently set in global options |  | ||||||
| 	// Context holds the external options |  | ||||||
| 	Context context.Context |  | ||||||
| 	// TLSConfig holds the *tls.Config options |  | ||||||
| 	TLSConfig *tls.Config |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewListenOptions returns new ListenOptions |  | ||||||
| func NewListenOptions(opts ...ListenOption) ListenOptions { |  | ||||||
| 	options := ListenOptions{ |  | ||||||
| 		Context: context.Background(), |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&options) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Addrs to use for transport |  | ||||||
| func Addrs(addrs ...string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Addrs = addrs |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Logger sets the logger |  | ||||||
| func Logger(l logger.Logger) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Logger = l |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Meter sets the meter |  | ||||||
| func Meter(m meter.Meter) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Meter = m |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Context sets the context |  | ||||||
| func Context(ctx context.Context) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Context = ctx |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Codec sets the codec used for encoding where the transport |  | ||||||
| // does not support message headers |  | ||||||
| func Codec(c codec.Codec) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Codec = c |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Timeout sets the timeout for Send/Recv execution |  | ||||||
| func Timeout(t time.Duration) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Timeout = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // TLSConfig to be used for the transport. |  | ||||||
| func TLSConfig(t *tls.Config) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.TLSConfig = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithStream indicates whether this is a streaming connection |  | ||||||
| func WithStream() DialOption { |  | ||||||
| 	return func(o *DialOptions) { |  | ||||||
| 		o.Stream = true |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithTimeout used when dialling the remote side |  | ||||||
| func WithTimeout(d time.Duration) DialOption { |  | ||||||
| 	return func(o *DialOptions) { |  | ||||||
| 		o.Timeout = d |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Tracer to be used for tracing |  | ||||||
| func Tracer(t tracer.Tracer) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Tracer = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Name sets the name |  | ||||||
| func Name(n string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Name = n |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,63 +0,0 @@ | |||||||
| // Package transport is an interface for synchronous connection based communication |  | ||||||
| package transport |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"time" |  | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/metadata" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| var ( |  | ||||||
| 	// DefaultTransport is the global default transport |  | ||||||
| 	DefaultTransport = NewTransport() |  | ||||||
| 	// DefaultDialTimeout the default dial timeout |  | ||||||
| 	DefaultDialTimeout = time.Second * 5 |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // Transport is an interface which is used for communication between |  | ||||||
| // services. It uses connection based socket send/recv semantics and |  | ||||||
| // has various implementations; http, grpc, quic. |  | ||||||
| type Transport interface { |  | ||||||
| 	Init(...Option) error |  | ||||||
| 	Options() Options |  | ||||||
| 	Dial(ctx context.Context, addr string, opts ...DialOption) (Client, error) |  | ||||||
| 	Listen(ctx context.Context, addr string, opts ...ListenOption) (Listener, error) |  | ||||||
| 	String() string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Message is used to transfer data |  | ||||||
| type Message struct { |  | ||||||
| 	Header metadata.Metadata |  | ||||||
| 	Body   []byte |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Socket bastraction interface |  | ||||||
| type Socket interface { |  | ||||||
| 	Recv(*Message) error |  | ||||||
| 	Send(*Message) error |  | ||||||
| 	Close() error |  | ||||||
| 	Local() string |  | ||||||
| 	Remote() string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Client is the socket owner |  | ||||||
| type Client interface { |  | ||||||
| 	Socket |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Listener is the interface for stream oriented messaging |  | ||||||
| type Listener interface { |  | ||||||
| 	Addr() string |  | ||||||
| 	Close() error |  | ||||||
| 	Accept(func(Socket)) error |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Option is the option signature |  | ||||||
| type Option func(*Options) |  | ||||||
|  |  | ||||||
| // DialOption is the option signature |  | ||||||
| type DialOption func(*DialOptions) |  | ||||||
|  |  | ||||||
| // ListenOption is the option signature |  | ||||||
| type ListenOption func(*ListenOptions) |  | ||||||
| @@ -1,372 +0,0 @@ | |||||||
| // Package broker is a tunnel broker |  | ||||||
| package broker |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"fmt" |  | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" |  | ||||||
| 	"go.unistack.org/micro/v3/logger" |  | ||||||
| 	"go.unistack.org/micro/v3/metadata" |  | ||||||
| 	"go.unistack.org/micro/v3/network/transport" |  | ||||||
| 	"go.unistack.org/micro/v3/network/tunnel" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type tunBroker struct { |  | ||||||
| 	tunnel tunnel.Tunnel |  | ||||||
| 	opts   broker.Options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type tunSubscriber struct { |  | ||||||
| 	listener tunnel.Listener |  | ||||||
| 	handler  broker.Handler |  | ||||||
| 	closed   chan bool |  | ||||||
| 	topic    string |  | ||||||
| 	opts     broker.SubscribeOptions |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type tunBatchSubscriber struct { |  | ||||||
| 	listener tunnel.Listener |  | ||||||
| 	handler  broker.BatchHandler |  | ||||||
| 	closed   chan bool |  | ||||||
| 	topic    string |  | ||||||
| 	opts     broker.SubscribeOptions |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type tunEvent struct { |  | ||||||
| 	err     error |  | ||||||
| 	message *broker.Message |  | ||||||
| 	topic   string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // used to access tunnel from options context |  | ||||||
| type ( |  | ||||||
| 	tunnelKey  struct{} |  | ||||||
| 	tunnelAddr struct{} |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Live() bool { |  | ||||||
| 	return true |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Ready() bool { |  | ||||||
| 	return true |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Health() bool { |  | ||||||
| 	return true |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Init(opts ...broker.Option) error { |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&t.opts) |  | ||||||
| 	} |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Name() string { |  | ||||||
| 	return t.opts.Name |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Options() broker.Options { |  | ||||||
| 	return t.opts |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Address() string { |  | ||||||
| 	return t.tunnel.Address() |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Connect(ctx context.Context) error { |  | ||||||
| 	return t.tunnel.Connect(ctx) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Disconnect(ctx context.Context) error { |  | ||||||
| 	return t.tunnel.Close(ctx) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) BatchPublish(ctx context.Context, msgs []*broker.Message, _ ...broker.PublishOption) error { |  | ||||||
| 	// TODO: this is probably inefficient, we might want to just maintain an open connection |  | ||||||
| 	// it may be easier to add broadcast to the tunnel |  | ||||||
| 	topicMap := make(map[string]tunnel.Session) |  | ||||||
|  |  | ||||||
| 	var err error |  | ||||||
| 	for _, msg := range msgs { |  | ||||||
| 		topic, _ := msg.Header.Get(metadata.HeaderTopic) |  | ||||||
| 		c, ok := topicMap[topic] |  | ||||||
| 		if !ok { |  | ||||||
| 			c, err = t.tunnel.Dial(ctx, topic, tunnel.DialMode(tunnel.Multicast)) |  | ||||||
| 			if err != nil { |  | ||||||
| 				return err |  | ||||||
| 			} |  | ||||||
| 			defer c.Close() |  | ||||||
| 			topicMap[topic] = c |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		if err = c.Send(&transport.Message{ |  | ||||||
| 			Header: msg.Header, |  | ||||||
| 			Body:   msg.Body, |  | ||||||
| 		}); err != nil { |  | ||||||
| 			//	msg.SetError(err) |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Publish(ctx context.Context, topic string, m *broker.Message, _ ...broker.PublishOption) error { |  | ||||||
| 	// TODO: this is probably inefficient, we might want to just maintain an open connection |  | ||||||
| 	// it may be easier to add broadcast to the tunnel |  | ||||||
| 	c, err := t.tunnel.Dial(ctx, topic, tunnel.DialMode(tunnel.Multicast)) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| 	defer c.Close() |  | ||||||
|  |  | ||||||
| 	return c.Send(&transport.Message{ |  | ||||||
| 		Header: m.Header, |  | ||||||
| 		Body:   m.Body, |  | ||||||
| 	}) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) BatchSubscribe(ctx context.Context, topic string, h broker.BatchHandler, opts ...broker.SubscribeOption) (broker.Subscriber, error) { |  | ||||||
| 	l, err := t.tunnel.Listen(ctx, topic, tunnel.ListenMode(tunnel.Multicast)) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	tunSub := &tunBatchSubscriber{ |  | ||||||
| 		topic:    topic, |  | ||||||
| 		handler:  h, |  | ||||||
| 		opts:     broker.NewSubscribeOptions(opts...), |  | ||||||
| 		closed:   make(chan bool), |  | ||||||
| 		listener: l, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// start processing |  | ||||||
| 	go tunSub.run() |  | ||||||
|  |  | ||||||
| 	return tunSub, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) Subscribe(ctx context.Context, topic string, h broker.Handler, opts ...broker.SubscribeOption) (broker.Subscriber, error) { |  | ||||||
| 	l, err := t.tunnel.Listen(ctx, topic, tunnel.ListenMode(tunnel.Multicast)) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	tunSub := &tunSubscriber{ |  | ||||||
| 		topic:    topic, |  | ||||||
| 		handler:  h, |  | ||||||
| 		opts:     broker.NewSubscribeOptions(opts...), |  | ||||||
| 		closed:   make(chan bool), |  | ||||||
| 		listener: l, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// start processing |  | ||||||
| 	go tunSub.run() |  | ||||||
|  |  | ||||||
| 	return tunSub, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBroker) String() string { |  | ||||||
| 	return "tunnel" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBatchSubscriber) run() { |  | ||||||
| 	for { |  | ||||||
| 		// accept a new connection |  | ||||||
| 		c, err := t.listener.Accept() |  | ||||||
| 		if err != nil { |  | ||||||
| 			select { |  | ||||||
| 			case <-t.closed: |  | ||||||
| 				return |  | ||||||
| 			default: |  | ||||||
| 				continue |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		// receive message |  | ||||||
| 		m := new(transport.Message) |  | ||||||
| 		if err := c.Recv(m); err != nil { |  | ||||||
| 			if logger.DefaultLogger.V(logger.ErrorLevel) { |  | ||||||
| 				logger.DefaultLogger.Error(t.opts.Context, err.Error(), err) |  | ||||||
| 			} |  | ||||||
| 			if err = c.Close(); err != nil { |  | ||||||
| 				if logger.DefaultLogger.V(logger.ErrorLevel) { |  | ||||||
| 					logger.DefaultLogger.Error(t.opts.Context, err.Error(), err) |  | ||||||
| 				} |  | ||||||
| 			} |  | ||||||
| 			continue |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		// close the connection |  | ||||||
| 		c.Close() |  | ||||||
|  |  | ||||||
| 		evts := broker.Events{&tunEvent{ |  | ||||||
| 			topic: t.topic, |  | ||||||
| 			message: &broker.Message{ |  | ||||||
| 				Header: m.Header, |  | ||||||
| 				Body:   m.Body, |  | ||||||
| 			}, |  | ||||||
| 		}} |  | ||||||
| 		// handle the message |  | ||||||
| 		go func() { |  | ||||||
| 			_ = t.handler(evts) |  | ||||||
| 		}() |  | ||||||
|  |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunSubscriber) run() { |  | ||||||
| 	for { |  | ||||||
| 		// accept a new connection |  | ||||||
| 		c, err := t.listener.Accept() |  | ||||||
| 		if err != nil { |  | ||||||
| 			select { |  | ||||||
| 			case <-t.closed: |  | ||||||
| 				return |  | ||||||
| 			default: |  | ||||||
| 				continue |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		// receive message |  | ||||||
| 		m := new(transport.Message) |  | ||||||
| 		if err := c.Recv(m); err != nil { |  | ||||||
| 			if logger.DefaultLogger.V(logger.ErrorLevel) { |  | ||||||
| 				logger.DefaultLogger.Error(t.opts.Context, err.Error(), err) |  | ||||||
| 			} |  | ||||||
| 			if err = c.Close(); err != nil { |  | ||||||
| 				if logger.DefaultLogger.V(logger.ErrorLevel) { |  | ||||||
| 					logger.DefaultLogger.Error(t.opts.Context, err.Error(), err) |  | ||||||
| 				} |  | ||||||
| 			} |  | ||||||
| 			continue |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		// close the connection |  | ||||||
| 		c.Close() |  | ||||||
|  |  | ||||||
| 		// handle the message |  | ||||||
| 		go func() { |  | ||||||
| 			_ = t.handler(&tunEvent{ |  | ||||||
| 				topic: t.topic, |  | ||||||
| 				message: &broker.Message{ |  | ||||||
| 					Header: m.Header, |  | ||||||
| 					Body:   m.Body, |  | ||||||
| 				}, |  | ||||||
| 			}) |  | ||||||
| 		}() |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBatchSubscriber) Options() broker.SubscribeOptions { |  | ||||||
| 	return t.opts |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBatchSubscriber) Topic() string { |  | ||||||
| 	return t.topic |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunBatchSubscriber) Unsubscribe(ctx context.Context) error { |  | ||||||
| 	select { |  | ||||||
| 	case <-t.closed: |  | ||||||
| 		return nil |  | ||||||
| 	default: |  | ||||||
| 		close(t.closed) |  | ||||||
| 		return t.listener.Close() |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunSubscriber) Options() broker.SubscribeOptions { |  | ||||||
| 	return t.opts |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunSubscriber) Topic() string { |  | ||||||
| 	return t.topic |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunSubscriber) Unsubscribe(ctx context.Context) error { |  | ||||||
| 	select { |  | ||||||
| 	case <-t.closed: |  | ||||||
| 		return nil |  | ||||||
| 	default: |  | ||||||
| 		close(t.closed) |  | ||||||
| 		return t.listener.Close() |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunEvent) Topic() string { |  | ||||||
| 	return t.topic |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunEvent) Message() *broker.Message { |  | ||||||
| 	return t.message |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunEvent) Ack() error { |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunEvent) Error() error { |  | ||||||
| 	return t.err |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunEvent) SetError(err error) { |  | ||||||
| 	t.err = err |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunEvent) Context() context.Context { |  | ||||||
| 	return context.TODO() |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewBroker returns new tunnel broker |  | ||||||
| func NewBroker(opts ...broker.Option) (broker.Broker, error) { |  | ||||||
| 	options := broker.NewOptions(opts...) |  | ||||||
|  |  | ||||||
| 	t, ok := options.Context.Value(tunnelKey{}).(tunnel.Tunnel) |  | ||||||
| 	if !ok { |  | ||||||
| 		return nil, fmt.Errorf("tunnel not set") |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	a, ok := options.Context.Value(tunnelAddr{}).(string) |  | ||||||
| 	if ok { |  | ||||||
| 		// initialise address |  | ||||||
| 		if err := t.Init(tunnel.Address(a)); err != nil { |  | ||||||
| 			return nil, err |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if len(options.Addrs) > 0 { |  | ||||||
| 		// initialise nodes |  | ||||||
| 		if err := t.Init(tunnel.Nodes(options.Addrs...)); err != nil { |  | ||||||
| 			return nil, err |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return &tunBroker{ |  | ||||||
| 		opts:   options, |  | ||||||
| 		tunnel: t, |  | ||||||
| 	}, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithAddress sets the tunnel address |  | ||||||
| func WithAddress(a string) broker.Option { |  | ||||||
| 	return func(o *broker.Options) { |  | ||||||
| 		if o.Context == nil { |  | ||||||
| 			o.Context = context.Background() |  | ||||||
| 		} |  | ||||||
| 		o.Context = context.WithValue(o.Context, tunnelAddr{}, a) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithTunnel sets the internal tunnel |  | ||||||
| func WithTunnel(t tunnel.Tunnel) broker.Option { |  | ||||||
| 	return func(o *broker.Options) { |  | ||||||
| 		if o.Context == nil { |  | ||||||
| 			o.Context = context.Background() |  | ||||||
| 		} |  | ||||||
| 		o.Context = context.WithValue(o.Context, tunnelKey{}, t) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,192 +0,0 @@ | |||||||
| package tunnel |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"time" |  | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/logger" |  | ||||||
| 	"go.unistack.org/micro/v3/meter" |  | ||||||
| 	"go.unistack.org/micro/v3/network/transport" |  | ||||||
| 	"go.unistack.org/micro/v3/tracer" |  | ||||||
| 	"go.unistack.org/micro/v3/util/id" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| var ( |  | ||||||
| 	// DefaultAddress is default tunnel bind address |  | ||||||
| 	DefaultAddress = ":0" |  | ||||||
| 	// DefaultToken the shared default token |  | ||||||
| 	DefaultToken = "go.micro.tunnel" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // Option func signature |  | ||||||
| type Option func(*Options) |  | ||||||
|  |  | ||||||
| // Options provides network configuration options |  | ||||||
| type Options struct { |  | ||||||
| 	// Logger used for logging |  | ||||||
| 	Logger logger.Logger |  | ||||||
| 	// Meter used for metrics |  | ||||||
| 	Meter meter.Meter |  | ||||||
| 	// Tracer used for tracing |  | ||||||
| 	Tracer tracer.Tracer |  | ||||||
| 	// Transport used for communication |  | ||||||
| 	Transport transport.Transport |  | ||||||
| 	// Token the shared auth token |  | ||||||
| 	Token string |  | ||||||
| 	// Name holds the tunnel name |  | ||||||
| 	Name string |  | ||||||
| 	// ID holds the tunnel id |  | ||||||
| 	ID string |  | ||||||
| 	// Address holds the tunnel address |  | ||||||
| 	Address string |  | ||||||
| 	// Nodes holds the tunnel nodes |  | ||||||
| 	Nodes []string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // DialOption func |  | ||||||
| type DialOption func(*DialOptions) |  | ||||||
|  |  | ||||||
| // DialOptions provides dial options |  | ||||||
| type DialOptions struct { |  | ||||||
| 	// Link specifies the link to use |  | ||||||
| 	Link string |  | ||||||
| 	// specify mode of the session |  | ||||||
| 	Mode Mode |  | ||||||
| 	// Wait for connection to be accepted |  | ||||||
| 	Wait bool |  | ||||||
| 	// the dial timeout |  | ||||||
| 	Timeout time.Duration |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ListenOption func |  | ||||||
| type ListenOption func(*ListenOptions) |  | ||||||
|  |  | ||||||
| // ListenOptions provides listen options |  | ||||||
| type ListenOptions struct { |  | ||||||
| 	// Mode specify mode of the session |  | ||||||
| 	Mode Mode |  | ||||||
| 	// Timeout the read timeout |  | ||||||
| 	Timeout time.Duration |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ID sets the tunnel id |  | ||||||
| func ID(id string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.ID = id |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Logger sets the logger |  | ||||||
| func Logger(l logger.Logger) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Logger = l |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Meter sets the meter |  | ||||||
| func Meter(m meter.Meter) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Meter = m |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Address sets the tunnel address |  | ||||||
| func Address(a string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Address = a |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Nodes specify remote network nodes |  | ||||||
| func Nodes(n ...string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Nodes = n |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Token sets the shared token for auth |  | ||||||
| func Token(t string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Token = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Transport listens for incoming connections |  | ||||||
| func Transport(t transport.Transport) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Transport = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ListenMode option |  | ||||||
| func ListenMode(m Mode) ListenOption { |  | ||||||
| 	return func(o *ListenOptions) { |  | ||||||
| 		o.Mode = m |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ListenTimeout for reads and writes on the listener session |  | ||||||
| func ListenTimeout(t time.Duration) ListenOption { |  | ||||||
| 	return func(o *ListenOptions) { |  | ||||||
| 		o.Timeout = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // DialMode multicast sets the multicast option to send only to those mapped |  | ||||||
| func DialMode(m Mode) DialOption { |  | ||||||
| 	return func(o *DialOptions) { |  | ||||||
| 		o.Mode = m |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // DialTimeout sets the dial timeout of the connection |  | ||||||
| func DialTimeout(t time.Duration) DialOption { |  | ||||||
| 	return func(o *DialOptions) { |  | ||||||
| 		o.Timeout = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // DialLink specifies the link to pin this connection to. |  | ||||||
| // This is not applicable if the multicast option is set. |  | ||||||
| func DialLink(id string) DialOption { |  | ||||||
| 	return func(o *DialOptions) { |  | ||||||
| 		o.Link = id |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // DialWait specifies whether to wait for the connection |  | ||||||
| // to be accepted before returning the session |  | ||||||
| func DialWait(b bool) DialOption { |  | ||||||
| 	return func(o *DialOptions) { |  | ||||||
| 		o.Wait = b |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewOptions returns router default options with filled values |  | ||||||
| func NewOptions(opts ...Option) Options { |  | ||||||
| 	options := Options{ |  | ||||||
| 		ID:      id.MustNew(), |  | ||||||
| 		Address: DefaultAddress, |  | ||||||
| 		Token:   DefaultToken, |  | ||||||
| 		Logger:  logger.DefaultLogger, |  | ||||||
| 		Meter:   meter.DefaultMeter, |  | ||||||
| 		Tracer:  tracer.DefaultTracer, |  | ||||||
| 	} |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&options) |  | ||||||
| 	} |  | ||||||
| 	return options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Tracer to be used for tracing |  | ||||||
| func Tracer(t tracer.Tracer) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Tracer = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Name sets the name |  | ||||||
| func Name(n string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Name = n |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,30 +0,0 @@ | |||||||
| package transport |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"go.unistack.org/micro/v3/network/transport" |  | ||||||
| 	"go.unistack.org/micro/v3/network/tunnel" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type tunListener struct { |  | ||||||
| 	l tunnel.Listener |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunListener) Addr() string { |  | ||||||
| 	return t.l.Channel() |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunListener) Close() error { |  | ||||||
| 	return t.l.Close() |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunListener) Accept(fn func(socket transport.Socket)) error { |  | ||||||
| 	for { |  | ||||||
| 		// accept connection |  | ||||||
| 		c, err := t.l.Accept() |  | ||||||
| 		if err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
| 		// execute the function |  | ||||||
| 		go fn(c) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,113 +0,0 @@ | |||||||
| // Package transport provides a tunnel transport |  | ||||||
| package transport |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"fmt" |  | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/network/transport" |  | ||||||
| 	"go.unistack.org/micro/v3/network/tunnel" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type tunTransport struct { |  | ||||||
| 	tunnel  tunnel.Tunnel |  | ||||||
| 	options transport.Options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type tunnelKey struct{} |  | ||||||
|  |  | ||||||
| type transportKey struct{} |  | ||||||
|  |  | ||||||
| func (t *tunTransport) Init(opts ...transport.Option) error { |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&t.options) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// close the existing tunnel |  | ||||||
| 	if t.tunnel != nil { |  | ||||||
| 		t.tunnel.Close(context.TODO()) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// get the tunnel |  | ||||||
| 	tun, ok := t.options.Context.Value(tunnelKey{}).(tunnel.Tunnel) |  | ||||||
| 	if !ok { |  | ||||||
| 		return fmt.Errorf("tunnel not set") |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// get the transport |  | ||||||
| 	tr, ok := t.options.Context.Value(transportKey{}).(transport.Transport) |  | ||||||
| 	if ok { |  | ||||||
| 		_ = tun.Init(tunnel.Transport(tr)) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// set the tunnel |  | ||||||
| 	t.tunnel = tun |  | ||||||
|  |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunTransport) Dial(ctx context.Context, addr string, opts ...transport.DialOption) (transport.Client, error) { |  | ||||||
| 	if err := t.tunnel.Connect(ctx); err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	c, err := t.tunnel.Dial(ctx, addr) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return c, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunTransport) Listen(ctx context.Context, addr string, opts ...transport.ListenOption) (transport.Listener, error) { |  | ||||||
| 	if err := t.tunnel.Connect(ctx); err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	l, err := t.tunnel.Listen(ctx, addr) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return nil, err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return &tunListener{l}, nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunTransport) Options() transport.Options { |  | ||||||
| 	return t.options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (t *tunTransport) String() string { |  | ||||||
| 	return "tunnel" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewTransport honours the initialiser used in |  | ||||||
| func NewTransport(opts ...transport.Option) transport.Transport { |  | ||||||
| 	t := &tunTransport{ |  | ||||||
| 		options: transport.Options{}, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// initialise |  | ||||||
| 	// t.Init(opts...) |  | ||||||
|  |  | ||||||
| 	return t |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithTunnel sets the internal tunnel |  | ||||||
| func WithTunnel(t tunnel.Tunnel) transport.Option { |  | ||||||
| 	return func(o *transport.Options) { |  | ||||||
| 		if o.Context == nil { |  | ||||||
| 			o.Context = context.Background() |  | ||||||
| 		} |  | ||||||
| 		o.Context = context.WithValue(o.Context, tunnelKey{}, t) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithTransport sets the internal transport |  | ||||||
| func WithTransport(t transport.Transport) transport.Option { |  | ||||||
| 	return func(o *transport.Options) { |  | ||||||
| 		if o.Context == nil { |  | ||||||
| 			o.Context = context.Background() |  | ||||||
| 		} |  | ||||||
| 		o.Context = context.WithValue(o.Context, transportKey{}, t) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,106 +0,0 @@ | |||||||
| // Package tunnel provides gre network tunnelling |  | ||||||
| package tunnel |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"errors" |  | ||||||
| 	"time" |  | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/network/transport" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // DefaultTunnel contains default tunnel implementation |  | ||||||
| var DefaultTunnel Tunnel |  | ||||||
|  |  | ||||||
| const ( |  | ||||||
| 	// Unicast send over one link |  | ||||||
| 	Unicast Mode = iota |  | ||||||
| 	// Multicast send to all channel listeners |  | ||||||
| 	Multicast |  | ||||||
| 	// Broadcast send to all links |  | ||||||
| 	Broadcast |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| var ( |  | ||||||
| 	// DefaultDialTimeout is the dial timeout if none is specified |  | ||||||
| 	DefaultDialTimeout = time.Second * 5 |  | ||||||
| 	// ErrDialTimeout is returned by a call to Dial where the timeout occurs |  | ||||||
| 	ErrDialTimeout = errors.New("dial timeout") |  | ||||||
| 	// ErrDiscoverChan is returned when we failed to receive the "announce" back from a discovery |  | ||||||
| 	ErrDiscoverChan = errors.New("failed to discover channel") |  | ||||||
| 	// ErrLinkNotFound is returned when a link is specified at dial time and does not exist |  | ||||||
| 	ErrLinkNotFound = errors.New("link not found") |  | ||||||
| 	// ErrLinkDisconnected is returned when a link we attempt to send to is disconnected |  | ||||||
| 	ErrLinkDisconnected = errors.New("link not connected") |  | ||||||
| 	// ErrLinkLoopback is returned when attempting to send an outbound message over loopback link |  | ||||||
| 	ErrLinkLoopback = errors.New("link is loopback") |  | ||||||
| 	// ErrLinkRemote is returned when attempting to send a loopback message over remote link |  | ||||||
| 	ErrLinkRemote = errors.New("link is remote") |  | ||||||
| 	// ErrReadTimeout is a timeout on session.Recv |  | ||||||
| 	ErrReadTimeout = errors.New("read timeout") |  | ||||||
| 	// ErrDecryptingData is for when theres a nonce error |  | ||||||
| 	ErrDecryptingData = errors.New("error decrypting data") |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // Mode of the session |  | ||||||
| type Mode uint8 |  | ||||||
|  |  | ||||||
| // Tunnel creates a gre tunnel on top of the micro/transport. |  | ||||||
| // It establishes multiple streams using the Micro-Tunnel-Channel header |  | ||||||
| // and Micro-Tunnel-Session header. The tunnel id is a hash of |  | ||||||
| // the address being requested. |  | ||||||
| type Tunnel interface { |  | ||||||
| 	// Init initializes tunnel with options |  | ||||||
| 	Init(opts ...Option) error |  | ||||||
| 	// Address returns the address the tunnel is listening on |  | ||||||
| 	Address() string |  | ||||||
| 	// Connect connects the tunnel |  | ||||||
| 	Connect(ctx context.Context) error |  | ||||||
| 	// Close closes the tunnel |  | ||||||
| 	Close(ctx context.Context) error |  | ||||||
| 	// Links returns all the links the tunnel is connected to |  | ||||||
| 	Links() []Link |  | ||||||
| 	// Dial allows a client to connect to a channel |  | ||||||
| 	Dial(ctx context.Context, channel string, opts ...DialOption) (Session, error) |  | ||||||
| 	// Listen allows to accept connections on a channel |  | ||||||
| 	Listen(ctx context.Context, channel string, opts ...ListenOption) (Listener, error) |  | ||||||
| 	// String returns the name of the tunnel implementation |  | ||||||
| 	String() string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Link represents internal links to the tunnel |  | ||||||
| type Link interface { |  | ||||||
| 	// Id returns the link unique Id |  | ||||||
| 	Id() string |  | ||||||
| 	// Delay is the current load on the link (lower is better) |  | ||||||
| 	Delay() int64 |  | ||||||
| 	// Length returns the roundtrip time as nanoseconds (lower is better) |  | ||||||
| 	Length() int64 |  | ||||||
| 	// Current transfer rate as bits per second (lower is better) |  | ||||||
| 	Rate() float64 |  | ||||||
| 	// Is this a loopback link |  | ||||||
| 	Loopback() bool |  | ||||||
| 	// State of the link: connected/closed/error |  | ||||||
| 	State() string |  | ||||||
| 	// honours transport socket |  | ||||||
| 	transport.Socket |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Listener provides similar constructs to the transport.Listener |  | ||||||
| type Listener interface { |  | ||||||
| 	Accept() (Session, error) |  | ||||||
| 	Channel() string |  | ||||||
| 	Close() error |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Session is a unique session created when dialling or accepting connections on the tunnel |  | ||||||
| type Session interface { |  | ||||||
| 	// The unique session id |  | ||||||
| 	Id() string |  | ||||||
| 	// The channel name |  | ||||||
| 	Channel() string |  | ||||||
| 	// The link the session is on |  | ||||||
| 	Link() string |  | ||||||
| 	// a transport socket |  | ||||||
| 	transport.Socket |  | ||||||
| } |  | ||||||
							
								
								
									
										22
									
								
								options.go
									
									
									
									
									
								
							
							
						
						
									
										22
									
								
								options.go
									
									
									
									
									
								
							| @@ -5,17 +5,17 @@ import ( | |||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/client" | 	"go.unistack.org/micro/v4/client" | ||||||
| 	"go.unistack.org/micro/v3/config" | 	"go.unistack.org/micro/v4/config" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/meter" | ||||||
| 	"go.unistack.org/micro/v3/register" | 	"go.unistack.org/micro/v4/register" | ||||||
| 	"go.unistack.org/micro/v3/router" | 	"go.unistack.org/micro/v4/router" | ||||||
| 	"go.unistack.org/micro/v3/server" | 	"go.unistack.org/micro/v4/server" | ||||||
| 	"go.unistack.org/micro/v3/store" | 	"go.unistack.org/micro/v4/store" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Options for micro service | // Options for micro service | ||||||
|   | |||||||
							
								
								
									
										222
									
								
								options/options.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										222
									
								
								options/options.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,222 @@ | |||||||
|  | package options | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"reflect" | ||||||
|  | 	"strings" | ||||||
|  | 	"time" | ||||||
|  |  | ||||||
|  | 	"github.com/spf13/cast" | ||||||
|  | 	mreflect "go.unistack.org/micro/v4/util/reflect" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | // Options interface must be used by all options | ||||||
|  | type Validator interface { | ||||||
|  | 	// Validate returns nil, if all options are correct, | ||||||
|  | 	// otherwise returns an error explaining the mistake | ||||||
|  | 	Validate() error | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Option func signature | ||||||
|  | type Option func(interface{}) error | ||||||
|  |  | ||||||
|  | // Apply assign options to struct src | ||||||
|  | func Apply(src interface{}, opts ...Option) error { | ||||||
|  | 	for _, opt := range opts { | ||||||
|  | 		if err := opt(src); err != nil { | ||||||
|  | 			return err | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // SetValueByPath set src struct field to val dst via path | ||||||
|  | func SetValueByPath(src interface{}, dst interface{}, path string) error { | ||||||
|  | 	var err error | ||||||
|  |  | ||||||
|  | 	switch v := dst.(type) { | ||||||
|  | 	case []interface{}: | ||||||
|  | 		if len(v) == 1 { | ||||||
|  | 			dst = v[0] | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	var sv reflect.Value | ||||||
|  | 	switch t := src.(type) { | ||||||
|  | 	case reflect.Value: | ||||||
|  | 		sv = t | ||||||
|  | 	default: | ||||||
|  | 		sv = reflect.ValueOf(src) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	parts := strings.Split(path, ".") | ||||||
|  |  | ||||||
|  | 	for _, p := range parts { | ||||||
|  |  | ||||||
|  | 		if sv.Kind() == reflect.Ptr { | ||||||
|  | 			sv = sv.Elem() | ||||||
|  | 		} | ||||||
|  | 		if sv.Kind() != reflect.Struct { | ||||||
|  | 			return mreflect.ErrInvalidStruct | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		typ := sv.Type() | ||||||
|  | 		for idx := 0; idx < typ.NumField(); idx++ { | ||||||
|  | 			fld := typ.Field(idx) | ||||||
|  | 			val := sv.Field(idx) | ||||||
|  |  | ||||||
|  | 			/* | ||||||
|  | 				if len(fld.PkgPath) != 0 { | ||||||
|  | 					continue | ||||||
|  | 				} | ||||||
|  | 			*/ | ||||||
|  |  | ||||||
|  | 			if fld.Anonymous { | ||||||
|  | 				if len(parts) == 1 && val.Kind() == reflect.Struct { | ||||||
|  | 					if err = SetValueByPath(val, dst, p); err != nil { | ||||||
|  | 						return err | ||||||
|  | 					} | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			if fld.Name != p && !strings.EqualFold(strings.ToLower(fld.Name), strings.ToLower(p)) { | ||||||
|  | 				continue | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			switch val.Interface().(type) { | ||||||
|  | 			case []time.Duration: | ||||||
|  | 				dst, err = cast.ToDurationSliceE(dst) | ||||||
|  | 				if err != nil { | ||||||
|  | 					return err | ||||||
|  | 				} | ||||||
|  | 				reflect.Copy(val, reflect.ValueOf(dst)) | ||||||
|  | 				return nil | ||||||
|  | 			case time.Duration: | ||||||
|  | 				dst, err = cast.ToDurationE(dst) | ||||||
|  | 				if err != nil { | ||||||
|  | 					return err | ||||||
|  | 				} | ||||||
|  | 				val.Set(reflect.ValueOf(dst)) | ||||||
|  | 				return nil | ||||||
|  | 			case time.Time: | ||||||
|  | 				dst, err = cast.ToTimeE(dst) | ||||||
|  | 				if err != nil { | ||||||
|  | 					return err | ||||||
|  | 				} | ||||||
|  | 				val.Set(reflect.ValueOf(dst)) | ||||||
|  | 				return nil | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			switch val.Kind() { | ||||||
|  | 			case reflect.Map: | ||||||
|  | 				if val.IsZero() { | ||||||
|  | 					val.Set(reflect.MakeMap(val.Type())) | ||||||
|  | 				} | ||||||
|  |  | ||||||
|  | 				return setMap(val.Interface(), dst) | ||||||
|  | 			case reflect.Array, reflect.Slice: | ||||||
|  | 				switch val.Type().Elem().Kind() { | ||||||
|  | 				case reflect.Bool: | ||||||
|  | 					dst, err = cast.ToBoolSliceE(dst) | ||||||
|  | 				case reflect.String: | ||||||
|  | 					dst, err = cast.ToStringSliceE(dst) | ||||||
|  | 				case reflect.Float32: | ||||||
|  | 					dst, err = toFloat32SliceE(dst) | ||||||
|  | 				case reflect.Float64: | ||||||
|  | 					dst, err = toFloat64SliceE(dst) | ||||||
|  | 				case reflect.Int8: | ||||||
|  | 					dst, err = toInt8SliceE(dst) | ||||||
|  | 				case reflect.Int: | ||||||
|  | 					dst, err = cast.ToIntSliceE(dst) | ||||||
|  | 				case reflect.Int16: | ||||||
|  | 					dst, err = toInt16SliceE(dst) | ||||||
|  | 				case reflect.Int32: | ||||||
|  | 					dst, err = toInt32SliceE(dst) | ||||||
|  | 				case reflect.Int64: | ||||||
|  | 					dst, err = toInt64SliceE(dst) | ||||||
|  | 				case reflect.Uint8: | ||||||
|  | 					dst, err = toUint8SliceE(dst) | ||||||
|  | 				case reflect.Uint: | ||||||
|  | 					dst, err = toUintSliceE(dst) | ||||||
|  | 				case reflect.Uint16: | ||||||
|  | 					dst, err = toUint16SliceE(dst) | ||||||
|  | 				case reflect.Uint32: | ||||||
|  | 					dst, err = toUint32SliceE(dst) | ||||||
|  | 				case reflect.Uint64: | ||||||
|  | 					dst, err = toUint64SliceE(dst) | ||||||
|  | 				} | ||||||
|  | 				if err != nil { | ||||||
|  | 					return err | ||||||
|  | 				} | ||||||
|  | 				if val.Kind() == reflect.Slice { | ||||||
|  | 					val.Set(reflect.ValueOf(dst)) | ||||||
|  | 				} else { | ||||||
|  | 					reflect.Copy(val, reflect.ValueOf(dst)) | ||||||
|  | 				} | ||||||
|  | 				return nil | ||||||
|  | 			case reflect.Float32: | ||||||
|  | 				dst, err = toFloat32SliceE(dst) | ||||||
|  | 			case reflect.Float64: | ||||||
|  | 				dst, err = toFloat64SliceE(dst) | ||||||
|  | 			case reflect.Bool: | ||||||
|  | 				dst, err = cast.ToBoolE(dst) | ||||||
|  | 			case reflect.String: | ||||||
|  | 				dst, err = cast.ToStringE(dst) | ||||||
|  | 			case reflect.Int8: | ||||||
|  | 				dst, err = cast.ToInt8E(dst) | ||||||
|  | 			case reflect.Int: | ||||||
|  | 				dst, err = cast.ToIntE(dst) | ||||||
|  | 			case reflect.Int16: | ||||||
|  | 				dst, err = cast.ToInt16E(dst) | ||||||
|  | 			case reflect.Int32: | ||||||
|  | 				dst, err = cast.ToInt32E(dst) | ||||||
|  | 			case reflect.Int64: | ||||||
|  | 				dst, err = cast.ToInt64E(dst) | ||||||
|  | 			case reflect.Uint8: | ||||||
|  | 				dst, err = cast.ToUint8E(dst) | ||||||
|  | 			case reflect.Uint: | ||||||
|  | 				dst, err = cast.ToUintE(dst) | ||||||
|  | 			case reflect.Uint16: | ||||||
|  | 				dst, err = cast.ToUint16E(dst) | ||||||
|  | 			case reflect.Uint32: | ||||||
|  | 				dst, err = cast.ToUint32E(dst) | ||||||
|  | 			case reflect.Uint64: | ||||||
|  | 				dst, err = cast.ToUint64E(dst) | ||||||
|  | 			default: | ||||||
|  | 			} | ||||||
|  | 			if err != nil { | ||||||
|  | 				return err | ||||||
|  | 			} | ||||||
|  | 			val.Set(reflect.ValueOf(dst)) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // NewOption create new option with name | ||||||
|  | func NewOption(name string) func(...interface{}) Option { | ||||||
|  | 	return func(dst ...interface{}) Option { | ||||||
|  | 		return func(src interface{}) error { | ||||||
|  | 			return SetValueByPath(src, dst, name) | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | var ( | ||||||
|  | 	Address   = NewOption("Address") | ||||||
|  | 	Name      = NewOption("Name") | ||||||
|  | 	Broker    = NewOption("Broker") | ||||||
|  | 	Logger    = NewOption("Logger") | ||||||
|  | 	Meter     = NewOption("Meter") | ||||||
|  | 	Tracer    = NewOption("Tracer") | ||||||
|  | 	Store     = NewOption("Store") | ||||||
|  | 	Register  = NewOption("Register") | ||||||
|  | 	Router    = NewOption("Router") | ||||||
|  | 	Codec     = NewOption("Codec") | ||||||
|  | 	Codecs    = NewOption("Codecs") | ||||||
|  | 	Client    = NewOption("Client") | ||||||
|  | 	Context   = NewOption("Context") | ||||||
|  | 	TLSConfig = NewOption("TLSConfig") | ||||||
|  | 	Metadata  = NewOption("Metadata") | ||||||
|  | 	Timeout   = NewOption("Timeout") | ||||||
|  | ) | ||||||
							
								
								
									
										181
									
								
								options/options_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										181
									
								
								options/options_test.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,181 @@ | |||||||
|  | package options_test | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"crypto/tls" | ||||||
|  | 	"sync" | ||||||
|  | 	"testing" | ||||||
|  |  | ||||||
|  | 	"go.unistack.org/micro/v4/options" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | type codec interface { | ||||||
|  | 	Marshal(v interface{}, opts ...options.Option) ([]byte, error) | ||||||
|  | 	Unmarshal(b []byte, v interface{}, opts ...options.Option) error | ||||||
|  | 	String() string | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestCodecs(t *testing.T) { | ||||||
|  | 	type s struct { | ||||||
|  | 		Codecs map[string]codec | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	wg := &sync.WaitGroup{} | ||||||
|  | 	tc := &tls.Config{InsecureSkipVerify: true} | ||||||
|  | 	opts := []options.Option{ | ||||||
|  | 		options.NewOption("Codecs")(wg), | ||||||
|  | 		options.NewOption("TLSConfig")(tc), | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	src := &s{} | ||||||
|  |  | ||||||
|  | 	if err := options.Apply(src, opts...); err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestSpecial(t *testing.T) { | ||||||
|  | 	type s struct { | ||||||
|  | 		Wait      *sync.WaitGroup | ||||||
|  | 		TLSConfig *tls.Config | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	wg := &sync.WaitGroup{} | ||||||
|  | 	tc := &tls.Config{InsecureSkipVerify: true} | ||||||
|  | 	opts := []options.Option{ | ||||||
|  | 		options.NewOption("Wait")(wg), | ||||||
|  | 		options.NewOption("TLSConfig")(tc), | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	src := &s{} | ||||||
|  |  | ||||||
|  | 	if err := options.Apply(src, opts...); err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.Wait == nil { | ||||||
|  | 		t.Fatalf("failed to set Wait %#+v", src) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.TLSConfig == nil { | ||||||
|  | 		t.Fatalf("failed to set TLSConfig %#+v", src) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.TLSConfig.InsecureSkipVerify != true { | ||||||
|  | 		t.Fatalf("failed to set TLSConfig %#+v", src) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestNested(t *testing.T) { | ||||||
|  | 	type server struct { | ||||||
|  | 		Address []string | ||||||
|  | 	} | ||||||
|  | 	type ownserver struct { | ||||||
|  | 		server | ||||||
|  | 		OwnField string | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	opts := []options.Option{ | ||||||
|  | 		options.Address("host:port"), | ||||||
|  | 		options.NewOption("OwnField")("fieldval"), | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	src := &ownserver{} | ||||||
|  |  | ||||||
|  | 	if err := options.Apply(src, opts...); err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.Address[0] != "host:port" { | ||||||
|  | 		t.Fatalf("failed to set Address %#+v", src) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.OwnField != "fieldval" { | ||||||
|  | 		t.Fatalf("failed to set OwnField %#+v", src) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestAddress(t *testing.T) { | ||||||
|  | 	type s struct { | ||||||
|  | 		Address []string | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	opts := []options.Option{options.Address("host:port")} | ||||||
|  |  | ||||||
|  | 	src := &s{} | ||||||
|  |  | ||||||
|  | 	if err := options.Apply(src, opts...); err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.Address[0] != "host:port" { | ||||||
|  | 		t.Fatalf("failed to set Address %#+v", src) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestNewOption(t *testing.T) { | ||||||
|  | 	type s struct { | ||||||
|  | 		Address []string | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	opts := []options.Option{options.NewOption("Address")("host1:port1", "host2:port2")} | ||||||
|  |  | ||||||
|  | 	src := &s{} | ||||||
|  |  | ||||||
|  | 	if err := options.Apply(src, opts...); err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.Address[0] != "host1:port1" { | ||||||
|  | 		t.Fatalf("failed to set Address %#+v", src) | ||||||
|  | 	} | ||||||
|  | 	if src.Address[1] != "host2:port2" { | ||||||
|  | 		t.Fatalf("failed to set Address %#+v", src) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestArray(t *testing.T) { | ||||||
|  | 	type s struct { | ||||||
|  | 		Address [1]string | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	opts := []options.Option{options.NewOption("Address")("host:port", "host1:port1")} | ||||||
|  |  | ||||||
|  | 	src := &s{} | ||||||
|  |  | ||||||
|  | 	if err := options.Apply(src, opts...); err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.Address[0] != "host:port" { | ||||||
|  | 		t.Fatalf("failed to set Address %#+v", src) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func TestMap(t *testing.T) { | ||||||
|  | 	type s struct { | ||||||
|  | 		Metadata map[string]string | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	opts := []options.Option{ | ||||||
|  | 		options.NewOption("Metadata")("key1", "val1"), | ||||||
|  | 		options.NewOption("Metadata")(map[string]string{"key2": "val2"}), | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	src := &s{} | ||||||
|  |  | ||||||
|  | 	if err := options.Apply(src, opts...); err != nil { | ||||||
|  | 		t.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if len(src.Metadata) != 2 { | ||||||
|  | 		t.Fatalf("failed to set Metadata %#+v", src) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.Metadata["key1"] != "val1" { | ||||||
|  | 		t.Fatalf("failed to set Metadata %#+v", src) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if src.Metadata["key2"] != "val2" { | ||||||
|  | 		t.Fatalf("failed to set Metadata %#+v", src) | ||||||
|  | 	} | ||||||
|  | } | ||||||
							
								
								
									
										577
									
								
								options/util.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										577
									
								
								options/util.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,577 @@ | |||||||
|  | package options | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"fmt" | ||||||
|  | 	"reflect" | ||||||
|  |  | ||||||
|  | 	"github.com/spf13/cast" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | func toInt8SliceE(i interface{}) ([]int8, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []int8{}, fmt.Errorf("unable to cast %#v of type %T to []int8", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []int8: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]int8, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToInt8E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []int8{}, fmt.Errorf("unable to cast %#v of type %T to []int8", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []int8{}, fmt.Errorf("unable to cast %#v of type %T to []int8", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toInt16SliceE(i interface{}) ([]int16, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []int16{}, fmt.Errorf("unable to cast %#v of type %T to []int16", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []int16: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]int16, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToInt16E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []int16{}, fmt.Errorf("unable to cast %#v of type %T to []int16", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []int16{}, fmt.Errorf("unable to cast %#v of type %T to []int16", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toInt32SliceE(i interface{}) ([]int32, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []int32{}, fmt.Errorf("unable to cast %#v of type %T to []int32", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []int32: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]int32, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToInt32E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []int32{}, fmt.Errorf("unable to cast %#v of type %T to []int32", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []int32{}, fmt.Errorf("unable to cast %#v of type %T to []int32", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toInt64SliceE(i interface{}) ([]int64, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []int64{}, fmt.Errorf("unable to cast %#v of type %T to []int64", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []int64: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]int64, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToInt64E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []int64{}, fmt.Errorf("unable to cast %#v of type %T to []int64", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []int64{}, fmt.Errorf("unable to cast %#v of type %T to []int64", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toUintSliceE(i interface{}) ([]uint, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []uint{}, fmt.Errorf("unable to cast %#v of type %T to []uint", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []uint: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]uint, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToUintE(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []uint{}, fmt.Errorf("unable to cast %#v of type %T to []uint", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []uint{}, fmt.Errorf("unable to cast %#v of type %T to []uint", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toUint8SliceE(i interface{}) ([]uint8, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []uint8{}, fmt.Errorf("unable to cast %#v of type %T to []uint8", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []uint8: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]uint8, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToUint8E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []uint8{}, fmt.Errorf("unable to cast %#v of type %T to []uint8", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []uint8{}, fmt.Errorf("unable to cast %#v of type %T to []uint8", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toUint16SliceE(i interface{}) ([]uint16, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []uint16{}, fmt.Errorf("unable to cast %#v of type %T to []uint16", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []uint16: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]uint16, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToUint16E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []uint16{}, fmt.Errorf("unable to cast %#v of type %T to []uint16", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []uint16{}, fmt.Errorf("unable to cast %#v of type %T to []uint16", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toUint32SliceE(i interface{}) ([]uint32, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []uint32{}, fmt.Errorf("unable to cast %#v of type %T to []uint32", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []uint32: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]uint32, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToUint32E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []uint32{}, fmt.Errorf("unable to cast %#v of type %T to []uint32", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []uint32{}, fmt.Errorf("unable to cast %#v of type %T to []uint32", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toUint64SliceE(i interface{}) ([]uint64, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []uint64{}, fmt.Errorf("unable to cast %#v of type %T to []uint64", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []uint64: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]uint64, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToUint64E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []uint64{}, fmt.Errorf("unable to cast %#v of type %T to []uint64", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []uint64{}, fmt.Errorf("unable to cast %#v of type %T to []uint64", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toFloat32SliceE(i interface{}) ([]float32, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []float32{}, fmt.Errorf("unable to cast %#v of type %T to []float32", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []float32: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]float32, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToFloat32E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []float32{}, fmt.Errorf("unable to cast %#v of type %T to []float32", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []float32{}, fmt.Errorf("unable to cast %#v of type %T to []float32", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func toFloat64SliceE(i interface{}) ([]float64, error) { | ||||||
|  | 	if i == nil { | ||||||
|  | 		return []float64{}, fmt.Errorf("unable to cast %#v of type %T to []float64", i, i) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	switch v := i.(type) { | ||||||
|  | 	case []float64: | ||||||
|  | 		return v, nil | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	kind := reflect.TypeOf(i).Kind() | ||||||
|  | 	switch kind { | ||||||
|  | 	case reflect.Slice, reflect.Array: | ||||||
|  | 		s := reflect.ValueOf(i) | ||||||
|  | 		a := make([]float64, s.Len()) | ||||||
|  | 		for j := 0; j < s.Len(); j++ { | ||||||
|  | 			val, err := cast.ToFloat64E(s.Index(j).Interface()) | ||||||
|  | 			if err != nil { | ||||||
|  | 				return []float64{}, fmt.Errorf("unable to cast %#v of type %T to []float64", i, i) | ||||||
|  | 			} | ||||||
|  | 			a[j] = val | ||||||
|  | 		} | ||||||
|  | 		return a, nil | ||||||
|  | 	default: | ||||||
|  | 		return []float64{}, fmt.Errorf("unable to cast %#v of type %T to []float32", i, i) | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func setMap(src interface{}, dst interface{}) error { | ||||||
|  | 	var err error | ||||||
|  |  | ||||||
|  | 	if src == nil { | ||||||
|  | 		return fmt.Errorf("unable to cast %#v of type %T", src, src) | ||||||
|  | 	} | ||||||
|  | 	if dst == nil { | ||||||
|  | 		return fmt.Errorf("unable to cast %#v of type %T", dst, dst) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	val := reflect.ValueOf(src) | ||||||
|  |  | ||||||
|  | 	keyKind := val.Type().Key().Kind() | ||||||
|  | 	valKind := val.Type().Elem().Kind() | ||||||
|  |  | ||||||
|  | 	switch v := dst.(type) { | ||||||
|  | 	case []interface{}: | ||||||
|  | 		if len(v) == 1 { | ||||||
|  | 			dstVal := reflect.ValueOf(v[0]) | ||||||
|  | 			if dstVal.Kind() != reflect.Map { | ||||||
|  | 				return nil | ||||||
|  | 			} | ||||||
|  | 			mapIter := dstVal.MapRange() | ||||||
|  | 			for mapIter.Next() { | ||||||
|  | 				var ( | ||||||
|  | 					keyVal interface{} | ||||||
|  | 					valVal interface{} | ||||||
|  | 				) | ||||||
|  | 				switch keyKind { | ||||||
|  | 				case reflect.Bool: | ||||||
|  | 					keyVal, err = cast.ToBoolE(mapIter.Key()) | ||||||
|  | 				case reflect.String: | ||||||
|  | 					keyVal, err = cast.ToStringE(mapIter.Key()) | ||||||
|  | 				case reflect.Float32: | ||||||
|  | 					keyVal, err = cast.ToFloat32E(mapIter.Key()) | ||||||
|  | 				case reflect.Float64: | ||||||
|  | 					keyVal, err = cast.ToFloat64E(mapIter.Key()) | ||||||
|  | 				case reflect.Int8: | ||||||
|  | 					keyVal, err = cast.ToInt8E(mapIter.Key()) | ||||||
|  | 				case reflect.Int: | ||||||
|  | 					keyVal, err = cast.ToIntE(mapIter.Key()) | ||||||
|  | 				case reflect.Int16: | ||||||
|  | 					keyVal, err = cast.ToInt16E(mapIter.Key()) | ||||||
|  | 				case reflect.Int32: | ||||||
|  | 					keyVal, err = cast.ToInt32E(mapIter.Key()) | ||||||
|  | 				case reflect.Int64: | ||||||
|  | 					keyVal, err = cast.ToInt64E(mapIter.Key()) | ||||||
|  | 				case reflect.Uint8: | ||||||
|  | 					keyVal, err = cast.ToUint8E(mapIter.Key()) | ||||||
|  | 				case reflect.Uint: | ||||||
|  | 					keyVal, err = cast.ToUintE(mapIter.Key()) | ||||||
|  | 				case reflect.Uint16: | ||||||
|  | 					keyVal, err = cast.ToUint16E(mapIter.Key()) | ||||||
|  | 				case reflect.Uint32: | ||||||
|  | 					keyVal, err = cast.ToUint32E(mapIter.Key()) | ||||||
|  | 				case reflect.Uint64: | ||||||
|  | 					keyVal, err = cast.ToUint64E(mapIter.Key()) | ||||||
|  | 				} | ||||||
|  | 				if err != nil { | ||||||
|  | 					return err | ||||||
|  | 				} | ||||||
|  | 				switch valKind { | ||||||
|  | 				case reflect.Bool: | ||||||
|  | 					valVal, err = cast.ToBoolE(mapIter.Value()) | ||||||
|  | 				case reflect.String: | ||||||
|  | 					valVal, err = cast.ToStringE(mapIter.Value()) | ||||||
|  | 				case reflect.Float32: | ||||||
|  | 					valVal, err = cast.ToFloat32E(mapIter.Value()) | ||||||
|  | 				case reflect.Float64: | ||||||
|  | 					valVal, err = cast.ToFloat64E(mapIter.Value()) | ||||||
|  | 				case reflect.Int8: | ||||||
|  | 					valVal, err = cast.ToInt8E(mapIter.Value()) | ||||||
|  | 				case reflect.Int: | ||||||
|  | 					valVal, err = cast.ToIntE(mapIter.Value()) | ||||||
|  | 				case reflect.Int16: | ||||||
|  | 					valVal, err = cast.ToInt16E(mapIter.Value()) | ||||||
|  | 				case reflect.Int32: | ||||||
|  | 					valVal, err = cast.ToInt32E(mapIter.Value()) | ||||||
|  | 				case reflect.Int64: | ||||||
|  | 					valVal, err = cast.ToInt64E(mapIter.Value()) | ||||||
|  | 				case reflect.Uint8: | ||||||
|  | 					valVal, err = cast.ToUint8E(mapIter.Value()) | ||||||
|  | 				case reflect.Uint: | ||||||
|  | 					valVal, err = cast.ToUintE(mapIter.Value()) | ||||||
|  | 				case reflect.Uint16: | ||||||
|  | 					valVal, err = cast.ToUint16E(mapIter.Value()) | ||||||
|  | 				case reflect.Uint32: | ||||||
|  | 					valVal, err = cast.ToUint32E(mapIter.Value()) | ||||||
|  | 				case reflect.Uint64: | ||||||
|  | 					valVal, err = cast.ToUint64E(mapIter.Value()) | ||||||
|  | 				} | ||||||
|  | 				if err != nil { | ||||||
|  | 					return err | ||||||
|  | 				} | ||||||
|  |  | ||||||
|  | 				val.SetMapIndex(reflect.ValueOf(keyVal), reflect.ValueOf(valVal)) | ||||||
|  | 			} | ||||||
|  | 			return nil | ||||||
|  | 		} | ||||||
|  | 		if l := len(v) % 2; l == 1 { | ||||||
|  | 			v = v[:len(v)-1] | ||||||
|  | 		} | ||||||
|  | 		var ( | ||||||
|  | 			keyVal interface{} | ||||||
|  | 			valVal interface{} | ||||||
|  | 		) | ||||||
|  | 		for i := 0; i < len(v); i += 2 { | ||||||
|  | 			switch keyKind { | ||||||
|  | 			case reflect.Bool: | ||||||
|  | 				keyVal, err = cast.ToBoolE(v[i]) | ||||||
|  | 			case reflect.String: | ||||||
|  | 				keyVal, err = cast.ToStringE(v[i]) | ||||||
|  | 			case reflect.Float32: | ||||||
|  | 				keyVal, err = cast.ToFloat32E(v[i]) | ||||||
|  | 			case reflect.Float64: | ||||||
|  | 				keyVal, err = cast.ToFloat64E(v[i]) | ||||||
|  | 			case reflect.Int8: | ||||||
|  | 				keyVal, err = cast.ToInt8E(v[i]) | ||||||
|  | 			case reflect.Int: | ||||||
|  | 				keyVal, err = cast.ToIntE(v[i]) | ||||||
|  | 			case reflect.Int16: | ||||||
|  | 				keyVal, err = cast.ToInt16E(v[i]) | ||||||
|  | 			case reflect.Int32: | ||||||
|  | 				keyVal, err = cast.ToInt32E(v[i]) | ||||||
|  | 			case reflect.Int64: | ||||||
|  | 				keyVal, err = cast.ToInt64E(v[i]) | ||||||
|  | 			case reflect.Uint8: | ||||||
|  | 				keyVal, err = cast.ToUint8E(v[i]) | ||||||
|  | 			case reflect.Uint: | ||||||
|  | 				keyVal, err = cast.ToUintE(v[i]) | ||||||
|  | 			case reflect.Uint16: | ||||||
|  | 				keyVal, err = cast.ToUint16E(v[i]) | ||||||
|  | 			case reflect.Uint32: | ||||||
|  | 				keyVal, err = cast.ToUint32E(v[i]) | ||||||
|  | 			case reflect.Uint64: | ||||||
|  | 				keyVal, err = cast.ToUint64E(v[i]) | ||||||
|  | 			} | ||||||
|  | 			if err != nil { | ||||||
|  | 				return err | ||||||
|  | 			} | ||||||
|  | 			switch valKind { | ||||||
|  | 			case reflect.Bool: | ||||||
|  | 				valVal, err = cast.ToBoolE(v[i+1]) | ||||||
|  | 			case reflect.String: | ||||||
|  | 				valVal, err = cast.ToStringE(v[i+1]) | ||||||
|  | 			case reflect.Float32: | ||||||
|  | 				valVal, err = cast.ToFloat32E(v[i+1]) | ||||||
|  | 			case reflect.Float64: | ||||||
|  | 				valVal, err = cast.ToFloat64E(v[i+1]) | ||||||
|  | 			case reflect.Int8: | ||||||
|  | 				valVal, err = cast.ToInt8E(v[i+1]) | ||||||
|  | 			case reflect.Int: | ||||||
|  | 				valVal, err = cast.ToIntE(v[i+1]) | ||||||
|  | 			case reflect.Int16: | ||||||
|  | 				valVal, err = cast.ToInt16E(v[i+1]) | ||||||
|  | 			case reflect.Int32: | ||||||
|  | 				valVal, err = cast.ToInt32E(v[i+1]) | ||||||
|  | 			case reflect.Int64: | ||||||
|  | 				valVal, err = cast.ToInt64E(v[i+1]) | ||||||
|  | 			case reflect.Uint8: | ||||||
|  | 				valVal, err = cast.ToUint8E(v[i+1]) | ||||||
|  | 			case reflect.Uint: | ||||||
|  | 				valVal, err = cast.ToUintE(v[i+1]) | ||||||
|  | 			case reflect.Uint16: | ||||||
|  | 				valVal, err = cast.ToUint16E(v[i+1]) | ||||||
|  | 			case reflect.Uint32: | ||||||
|  | 				valVal, err = cast.ToUint32E(v[i+1]) | ||||||
|  | 			case reflect.Uint64: | ||||||
|  | 				valVal, err = cast.ToUint64E(v[i+1]) | ||||||
|  | 			} | ||||||
|  | 			if err != nil { | ||||||
|  | 				return err | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			val.SetMapIndex(reflect.ValueOf(keyVal), reflect.ValueOf(valVal)) | ||||||
|  | 		} | ||||||
|  | 	default: | ||||||
|  | 		dstVal := reflect.ValueOf(dst) | ||||||
|  | 		if dstVal.Kind() != reflect.Map { | ||||||
|  | 			return nil | ||||||
|  | 		} | ||||||
|  | 		mapIter := dstVal.MapRange() | ||||||
|  | 		for mapIter.Next() { | ||||||
|  | 			var ( | ||||||
|  | 				keyVal interface{} | ||||||
|  | 				valVal interface{} | ||||||
|  | 			) | ||||||
|  | 			switch keyKind { | ||||||
|  | 			case reflect.Bool: | ||||||
|  | 				keyVal, err = cast.ToBoolE(mapIter.Key()) | ||||||
|  | 			case reflect.String: | ||||||
|  | 				keyVal, err = cast.ToStringE(mapIter.Key()) | ||||||
|  | 			case reflect.Float32: | ||||||
|  | 				keyVal, err = cast.ToFloat32E(mapIter.Key()) | ||||||
|  | 			case reflect.Float64: | ||||||
|  | 				keyVal, err = cast.ToFloat64E(mapIter.Key()) | ||||||
|  | 			case reflect.Int8: | ||||||
|  | 				keyVal, err = cast.ToInt8E(mapIter.Key()) | ||||||
|  | 			case reflect.Int: | ||||||
|  | 				keyVal, err = cast.ToIntE(mapIter.Key()) | ||||||
|  | 			case reflect.Int16: | ||||||
|  | 				keyVal, err = cast.ToInt16E(mapIter.Key()) | ||||||
|  | 			case reflect.Int32: | ||||||
|  | 				keyVal, err = cast.ToInt32E(mapIter.Key()) | ||||||
|  | 			case reflect.Int64: | ||||||
|  | 				keyVal, err = cast.ToInt64E(mapIter.Key()) | ||||||
|  | 			case reflect.Uint8: | ||||||
|  | 				keyVal, err = cast.ToUint8E(mapIter.Key()) | ||||||
|  | 			case reflect.Uint: | ||||||
|  | 				keyVal, err = cast.ToUintE(mapIter.Key()) | ||||||
|  | 			case reflect.Uint16: | ||||||
|  | 				keyVal, err = cast.ToUint16E(mapIter.Key()) | ||||||
|  | 			case reflect.Uint32: | ||||||
|  | 				keyVal, err = cast.ToUint32E(mapIter.Key()) | ||||||
|  | 			case reflect.Uint64: | ||||||
|  | 				keyVal, err = cast.ToUint64E(mapIter.Key()) | ||||||
|  | 			} | ||||||
|  | 			if err != nil { | ||||||
|  | 				return err | ||||||
|  | 			} | ||||||
|  | 			switch valKind { | ||||||
|  | 			case reflect.Bool: | ||||||
|  | 				valVal, err = cast.ToBoolE(mapIter.Value()) | ||||||
|  | 			case reflect.String: | ||||||
|  | 				valVal, err = cast.ToStringE(mapIter.Value()) | ||||||
|  | 			case reflect.Float32: | ||||||
|  | 				valVal, err = cast.ToFloat32E(mapIter.Value()) | ||||||
|  | 			case reflect.Float64: | ||||||
|  | 				valVal, err = cast.ToFloat64E(mapIter.Value()) | ||||||
|  | 			case reflect.Int8: | ||||||
|  | 				valVal, err = cast.ToInt8E(mapIter.Value()) | ||||||
|  | 			case reflect.Int: | ||||||
|  | 				valVal, err = cast.ToIntE(mapIter.Value()) | ||||||
|  | 			case reflect.Int16: | ||||||
|  | 				valVal, err = cast.ToInt16E(mapIter.Value()) | ||||||
|  | 			case reflect.Int32: | ||||||
|  | 				valVal, err = cast.ToInt32E(mapIter.Value()) | ||||||
|  | 			case reflect.Int64: | ||||||
|  | 				valVal, err = cast.ToInt64E(mapIter.Value()) | ||||||
|  | 			case reflect.Uint8: | ||||||
|  | 				valVal, err = cast.ToUint8E(mapIter.Value()) | ||||||
|  | 			case reflect.Uint: | ||||||
|  | 				valVal, err = cast.ToUintE(mapIter.Value()) | ||||||
|  | 			case reflect.Uint16: | ||||||
|  | 				valVal, err = cast.ToUint16E(mapIter.Value()) | ||||||
|  | 			case reflect.Uint32: | ||||||
|  | 				valVal, err = cast.ToUint32E(mapIter.Value()) | ||||||
|  | 			case reflect.Uint64: | ||||||
|  | 				valVal, err = cast.ToUint64E(mapIter.Value()) | ||||||
|  | 			} | ||||||
|  | 			if err != nil { | ||||||
|  | 				return err | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			val.SetMapIndex(reflect.ValueOf(keyVal), reflect.ValueOf(valVal)) | ||||||
|  | 		} | ||||||
|  | 		return nil | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
| @@ -7,7 +7,7 @@ import ( | |||||||
| 	"net/http/pprof" | 	"net/http/pprof" | ||||||
| 	"sync" | 	"sync" | ||||||
|  |  | ||||||
| 	profile "go.unistack.org/micro/v3/profiler" | 	profile "go.unistack.org/micro/v4/profiler" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type httpProfile struct { | type httpProfile struct { | ||||||
|   | |||||||
| @@ -9,7 +9,7 @@ import ( | |||||||
| 	"sync" | 	"sync" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	profile "go.unistack.org/micro/v3/profiler" | 	profile "go.unistack.org/micro/v4/profiler" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type profiler struct { | type profiler struct { | ||||||
|   | |||||||
| @@ -1,98 +0,0 @@ | |||||||
| // Package proxy is a transparent proxy built on the micro/server |  | ||||||
| package proxy |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"go.unistack.org/micro/v3/client" |  | ||||||
| 	"go.unistack.org/micro/v3/logger" |  | ||||||
| 	"go.unistack.org/micro/v3/meter" |  | ||||||
| 	"go.unistack.org/micro/v3/router" |  | ||||||
| 	"go.unistack.org/micro/v3/tracer" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // Options for proxy |  | ||||||
| type Options struct { |  | ||||||
| 	// Tracer used for tracing |  | ||||||
| 	Tracer tracer.Tracer |  | ||||||
| 	// Client for communication |  | ||||||
| 	Client client.Client |  | ||||||
| 	// Router for routing |  | ||||||
| 	Router router.Router |  | ||||||
| 	// Logger used for logging |  | ||||||
| 	Logger logger.Logger |  | ||||||
| 	// Meter used for metrics |  | ||||||
| 	Meter meter.Meter |  | ||||||
| 	// Links holds the communication links |  | ||||||
| 	Links map[string]client.Client |  | ||||||
| 	// Endpoint holds the destination address |  | ||||||
| 	Endpoint string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Option func signature |  | ||||||
| type Option func(o *Options) |  | ||||||
|  |  | ||||||
| // NewOptions returns new options struct that filled by opts |  | ||||||
| func NewOptions(opts ...Option) Options { |  | ||||||
| 	options := Options{ |  | ||||||
| 		Logger: logger.DefaultLogger, |  | ||||||
| 		Meter:  meter.DefaultMeter, |  | ||||||
| 		Tracer: tracer.DefaultTracer, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, o := range opts { |  | ||||||
| 		o(&options) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return options |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithEndpoint sets a proxy endpoint |  | ||||||
| func WithEndpoint(e string) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Endpoint = e |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithClient sets the client |  | ||||||
| func WithClient(c client.Client) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Client = c |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithRouter specifies the router to use |  | ||||||
| func WithRouter(r router.Router) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Router = r |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithLogger specifies the logger to use |  | ||||||
| func WithLogger(l logger.Logger) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Logger = l |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithMeter specifies the meter to use |  | ||||||
| func WithMeter(m meter.Meter) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Meter = m |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithLink sets a link for outbound requests |  | ||||||
| func WithLink(name string, c client.Client) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		if o.Links == nil { |  | ||||||
| 			o.Links = make(map[string]client.Client) |  | ||||||
| 		} |  | ||||||
| 		o.Links[name] = c |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Tracer to be used for tracing |  | ||||||
| func Tracer(t tracer.Tracer) Option { |  | ||||||
| 	return func(o *Options) { |  | ||||||
| 		o.Tracer = t |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,21 +0,0 @@ | |||||||
| // Package proxy is a transparent proxy built on the micro/server |  | ||||||
| package proxy |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/server" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // DefaultEndpoint holds default proxy address |  | ||||||
| var DefaultEndpoint = "localhost:9090" |  | ||||||
|  |  | ||||||
| // Proxy can be used as a proxy server for micro services |  | ||||||
| type Proxy interface { |  | ||||||
| 	// ProcessMessage handles inbound messages |  | ||||||
| 	ProcessMessage(context.Context, server.Message) error |  | ||||||
| 	// ServeRequest handles inbound requests |  | ||||||
| 	ServeRequest(context.Context, server.Request, server.Response) error |  | ||||||
| 	// Name of the proxy protocol |  | ||||||
| 	String() string |  | ||||||
| } |  | ||||||
| @@ -1,12 +1,9 @@ | |||||||
| package register | package register | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"fmt" |  | ||||||
| 	"reflect" | 	"reflect" | ||||||
| 	"unicode" | 	"unicode" | ||||||
| 	"unicode/utf8" | 	"unicode/utf8" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/metadata" |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // ExtractValue from reflect.Type from specified depth | // ExtractValue from reflect.Type from specified depth | ||||||
| @@ -38,53 +35,6 @@ func ExtractValue(v reflect.Type, d int) string { | |||||||
| 	return v.Name() | 	return v.Name() | ||||||
| } | } | ||||||
|  |  | ||||||
| // ExtractEndpoint extract *Endpoint from reflect.Method |  | ||||||
| func ExtractEndpoint(method reflect.Method) *Endpoint { |  | ||||||
| 	if method.PkgPath != "" { |  | ||||||
| 		return nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	var rspType, reqType reflect.Type |  | ||||||
| 	var stream bool |  | ||||||
| 	mt := method.Type |  | ||||||
|  |  | ||||||
| 	switch mt.NumIn() { |  | ||||||
| 	case 3: |  | ||||||
| 		reqType = mt.In(1) |  | ||||||
| 		rspType = mt.In(2) |  | ||||||
| 	case 4: |  | ||||||
| 		reqType = mt.In(2) |  | ||||||
| 		rspType = mt.In(3) |  | ||||||
| 	default: |  | ||||||
| 		return nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// are we dealing with a stream? |  | ||||||
| 	switch rspType.Kind() { |  | ||||||
| 	case reflect.Func, reflect.Interface: |  | ||||||
| 		stream = true |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	request := ExtractValue(reqType, 0) |  | ||||||
| 	response := ExtractValue(rspType, 0) |  | ||||||
| 	if request == "" || response == "" { |  | ||||||
| 		return nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	ep := &Endpoint{ |  | ||||||
| 		Name:     method.Name, |  | ||||||
| 		Request:  request, |  | ||||||
| 		Response: response, |  | ||||||
| 		Metadata: metadata.New(0), |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if stream { |  | ||||||
| 		ep.Metadata.Set("stream", fmt.Sprintf("%v", stream)) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return ep |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // ExtractSubValue exctact *Value from reflect.Type | // ExtractSubValue exctact *Value from reflect.Type | ||||||
| func ExtractSubValue(typ reflect.Type) string { | func ExtractSubValue(typ reflect.Type) string { | ||||||
| 	var reqType reflect.Type | 	var reqType reflect.Type | ||||||
|   | |||||||
| @@ -2,8 +2,6 @@ package register | |||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| 	"reflect" |  | ||||||
| 	"testing" |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type TestHandler struct{} | type TestHandler struct{} | ||||||
| @@ -15,40 +13,3 @@ type TestResponse struct{} | |||||||
| func (t *TestHandler) Test(ctx context.Context, req *TestRequest, rsp *TestResponse) error { | func (t *TestHandler) Test(ctx context.Context, req *TestRequest, rsp *TestResponse) error { | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestExtractEndpoint(t *testing.T) { |  | ||||||
| 	handler := &TestHandler{} |  | ||||||
| 	typ := reflect.TypeOf(handler) |  | ||||||
|  |  | ||||||
| 	var endpoints []*Endpoint |  | ||||||
|  |  | ||||||
| 	for m := 0; m < typ.NumMethod(); m++ { |  | ||||||
| 		if e := ExtractEndpoint(typ.Method(m)); e != nil { |  | ||||||
| 			endpoints = append(endpoints, e) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if i := len(endpoints); i != 1 { |  | ||||||
| 		t.Fatalf("Expected 1 endpoint, have %d", i) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if endpoints[0].Name != "Test" { |  | ||||||
| 		t.Fatalf("Expected handler Test, got %s", endpoints[0].Name) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if endpoints[0].Request == "" { |  | ||||||
| 		t.Fatal("Expected non nil Request") |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if endpoints[0].Response == "" { |  | ||||||
| 		t.Fatal("Expected non nil Request") |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if endpoints[0].Request != "TestRequest" { |  | ||||||
| 		t.Fatalf("Expected TestRequest got %s", endpoints[0].Request) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if endpoints[0].Response != "TestResponse" { |  | ||||||
| 		t.Fatalf("Expected TestResponse got %s", endpoints[0].Response) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|   | |||||||
| @@ -6,9 +6,10 @@ import ( | |||||||
| 	"sync" | 	"sync" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/register" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	"go.unistack.org/micro/v3/util/id" | 	"go.unistack.org/micro/v4/register" | ||||||
|  | 	"go.unistack.org/micro/v4/util/id" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var ( | var ( | ||||||
| @@ -25,9 +26,7 @@ type node struct { | |||||||
| type record struct { | type record struct { | ||||||
| 	Name    string | 	Name    string | ||||||
| 	Version string | 	Version string | ||||||
| 	Metadata  map[string]string |  | ||||||
| 	Nodes   map[string]*node | 	Nodes   map[string]*node | ||||||
| 	Endpoints []*register.Endpoint |  | ||||||
| } | } | ||||||
|  |  | ||||||
| type memory struct { | type memory struct { | ||||||
| @@ -59,7 +58,7 @@ func (m *memory) ttlPrune() { | |||||||
|  |  | ||||||
| 	for range prune.C { | 	for range prune.C { | ||||||
| 		m.Lock() | 		m.Lock() | ||||||
| 		for domain, services := range m.records { | 		for namespace, services := range m.records { | ||||||
| 			for service, versions := range services { | 			for service, versions := range services { | ||||||
| 				for version, record := range versions { | 				for version, record := range versions { | ||||||
| 					for id, n := range record.Nodes { | 					for id, n := range record.Nodes { | ||||||
| @@ -67,7 +66,7 @@ func (m *memory) ttlPrune() { | |||||||
| 							if m.opts.Logger.V(logger.DebugLevel) { | 							if m.opts.Logger.V(logger.DebugLevel) { | ||||||
| 								m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register TTL expired for node %s of service %s", n.ID, service)) | 								m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register TTL expired for node %s of service %s", n.ID, service)) | ||||||
| 							} | 							} | ||||||
| 							delete(m.records[domain][service][version].Nodes, id) | 							delete(m.records[namespace][service][version].Nodes, id) | ||||||
| 						} | 						} | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
| @@ -131,17 +130,12 @@ func (m *memory) Register(_ context.Context, s *register.Service, opts ...regist | |||||||
| 	options := register.NewRegisterOptions(opts...) | 	options := register.NewRegisterOptions(opts...) | ||||||
|  |  | ||||||
| 	// get the services for this domain from the register | 	// get the services for this domain from the register | ||||||
| 	srvs, ok := m.records[options.Domain] | 	srvs, ok := m.records[options.Namespace] | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		srvs = make(services) | 		srvs = make(services) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	// domain is set in metadata so it can be passed to watchers | 	s.Namespace = options.Namespace | ||||||
| 	if s.Metadata == nil { |  | ||||||
| 		s.Metadata = map[string]string{"domain": options.Domain} |  | ||||||
| 	} else { |  | ||||||
| 		s.Metadata["domain"] = options.Domain |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// ensure the service name exists | 	// ensure the service name exists | ||||||
| 	r := serviceToRecord(s, options.TTL) | 	r := serviceToRecord(s, options.TTL) | ||||||
| @@ -154,8 +148,8 @@ func (m *memory) Register(_ context.Context, s *register.Service, opts ...regist | |||||||
| 		if m.opts.Logger.V(logger.DebugLevel) { | 		if m.opts.Logger.V(logger.DebugLevel) { | ||||||
| 			m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register added new service: %s, version: %s", s.Name, s.Version)) | 			m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register added new service: %s, version: %s", s.Name, s.Version)) | ||||||
| 		} | 		} | ||||||
| 		m.records[options.Domain] = srvs | 		m.records[options.Namespace] = srvs | ||||||
| 		go m.sendEvent(®ister.Result{Action: "create", Service: s}) | 		go m.sendEvent(®ister.Result{Action: register.EventCreate, Service: s}) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	var addedNodes bool | 	var addedNodes bool | ||||||
| @@ -166,22 +160,14 @@ func (m *memory) Register(_ context.Context, s *register.Service, opts ...regist | |||||||
| 			continue | 			continue | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		metadata := make(map[string]string, len(n.Metadata)) | 		md := metadata.Copy(n.Metadata) | ||||||
|  |  | ||||||
| 		// make copy of metadata |  | ||||||
| 		for k, v := range n.Metadata { |  | ||||||
| 			metadata[k] = v |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		// set the domain |  | ||||||
| 		metadata["domain"] = options.Domain |  | ||||||
|  |  | ||||||
| 		// add the node | 		// add the node | ||||||
| 		srvs[s.Name][s.Version].Nodes[n.ID] = &node{ | 		srvs[s.Name][s.Version].Nodes[n.ID] = &node{ | ||||||
| 			Node: ®ister.Node{ | 			Node: ®ister.Node{ | ||||||
| 				ID:       n.ID, | 				ID:       n.ID, | ||||||
| 				Address:  n.Address, | 				Address:  n.Address, | ||||||
| 				Metadata: metadata, | 				Metadata: md, | ||||||
| 			}, | 			}, | ||||||
| 			TTL:      options.TTL, | 			TTL:      options.TTL, | ||||||
| 			LastSeen: time.Now(), | 			LastSeen: time.Now(), | ||||||
| @@ -194,7 +180,7 @@ func (m *memory) Register(_ context.Context, s *register.Service, opts ...regist | |||||||
| 		if m.opts.Logger.V(logger.DebugLevel) { | 		if m.opts.Logger.V(logger.DebugLevel) { | ||||||
| 			m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register added new node to service: %s, version: %s", s.Name, s.Version)) | 			m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register added new node to service: %s, version: %s", s.Name, s.Version)) | ||||||
| 		} | 		} | ||||||
| 		go m.sendEvent(®ister.Result{Action: "update", Service: s}) | 		go m.sendEvent(®ister.Result{Action: register.EventUpdate, Service: s}) | ||||||
| 	} else { | 	} else { | ||||||
| 		// refresh TTL and timestamp | 		// refresh TTL and timestamp | ||||||
| 		for _, n := range s.Nodes { | 		for _, n := range s.Nodes { | ||||||
| @@ -206,7 +192,7 @@ func (m *memory) Register(_ context.Context, s *register.Service, opts ...regist | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	m.records[options.Domain] = srvs | 	m.records[options.Namespace] = srvs | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -216,15 +202,8 @@ func (m *memory) Deregister(ctx context.Context, s *register.Service, opts ...re | |||||||
|  |  | ||||||
| 	options := register.NewDeregisterOptions(opts...) | 	options := register.NewDeregisterOptions(opts...) | ||||||
|  |  | ||||||
| 	// domain is set in metadata so it can be passed to watchers |  | ||||||
| 	if s.Metadata == nil { |  | ||||||
| 		s.Metadata = map[string]string{"domain": options.Domain} |  | ||||||
| 	} else { |  | ||||||
| 		s.Metadata["domain"] = options.Domain |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// if the domain doesn't exist, there is nothing to deregister | 	// if the domain doesn't exist, there is nothing to deregister | ||||||
| 	services, ok := m.records[options.Domain] | 	services, ok := m.records[options.Namespace] | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
| @@ -253,16 +232,16 @@ func (m *memory) Deregister(ctx context.Context, s *register.Service, opts ...re | |||||||
| 	// if the nodes not empty, we replace the version in the store and exist, the rest of the logic | 	// if the nodes not empty, we replace the version in the store and exist, the rest of the logic | ||||||
| 	// is cleanup | 	// is cleanup | ||||||
| 	if len(version.Nodes) > 0 { | 	if len(version.Nodes) > 0 { | ||||||
| 		m.records[options.Domain][s.Name][s.Version] = version | 		m.records[options.Namespace][s.Name][s.Version] = version | ||||||
| 		go m.sendEvent(®ister.Result{Action: "update", Service: s}) | 		go m.sendEvent(®ister.Result{Action: register.EventUpdate, Service: s}) | ||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	// if this version was the only version of the service, we can remove the whole service from the | 	// if this version was the only version of the service, we can remove the whole service from the | ||||||
| 	// register and exit | 	// register and exit | ||||||
| 	if len(versions) == 1 { | 	if len(versions) == 1 { | ||||||
| 		delete(m.records[options.Domain], s.Name) | 		delete(m.records[options.Namespace], s.Name) | ||||||
| 		go m.sendEvent(®ister.Result{Action: "delete", Service: s}) | 		go m.sendEvent(®ister.Result{Action: register.EventDelete, Service: s}) | ||||||
|  |  | ||||||
| 		if m.opts.Logger.V(logger.DebugLevel) { | 		if m.opts.Logger.V(logger.DebugLevel) { | ||||||
| 			m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register removed service: %s", s.Name)) | 			m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register removed service: %s", s.Name)) | ||||||
| @@ -271,8 +250,8 @@ func (m *memory) Deregister(ctx context.Context, s *register.Service, opts ...re | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	// there are other versions of the service running, so only remove this version of it | 	// there are other versions of the service running, so only remove this version of it | ||||||
| 	delete(m.records[options.Domain][s.Name], s.Version) | 	delete(m.records[options.Namespace][s.Name], s.Version) | ||||||
| 	go m.sendEvent(®ister.Result{Action: "delete", Service: s}) | 	go m.sendEvent(®ister.Result{Action: register.EventDelete, Service: s}) | ||||||
| 	if m.opts.Logger.V(logger.DebugLevel) { | 	if m.opts.Logger.V(logger.DebugLevel) { | ||||||
| 		m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register removed service: %s, version: %s", s.Name, s.Version)) | 		m.opts.Logger.Debug(m.opts.Context, fmt.Sprintf("Register removed service: %s, version: %s", s.Name, s.Version)) | ||||||
| 	} | 	} | ||||||
| @@ -284,15 +263,15 @@ func (m *memory) LookupService(ctx context.Context, name string, opts ...registe | |||||||
| 	options := register.NewLookupOptions(opts...) | 	options := register.NewLookupOptions(opts...) | ||||||
|  |  | ||||||
| 	// if it's a wildcard domain, return from all domains | 	// if it's a wildcard domain, return from all domains | ||||||
| 	if options.Domain == register.WildcardDomain { | 	if options.Namespace == register.WildcardNamespace { | ||||||
| 		m.RLock() | 		m.RLock() | ||||||
| 		recs := m.records | 		recs := m.records | ||||||
| 		m.RUnlock() | 		m.RUnlock() | ||||||
|  |  | ||||||
| 		var services []*register.Service | 		var services []*register.Service | ||||||
|  |  | ||||||
| 		for domain := range recs { | 		for namespace := range recs { | ||||||
| 			srvs, err := m.LookupService(ctx, name, append(opts, register.LookupDomain(domain))...) | 			srvs, err := m.LookupService(ctx, name, append(opts, register.LookupNamespace(namespace))...) | ||||||
| 			if err == register.ErrNotFound { | 			if err == register.ErrNotFound { | ||||||
| 				continue | 				continue | ||||||
| 			} else if err != nil { | 			} else if err != nil { | ||||||
| @@ -311,7 +290,7 @@ func (m *memory) LookupService(ctx context.Context, name string, opts ...registe | |||||||
| 	defer m.RUnlock() | 	defer m.RUnlock() | ||||||
|  |  | ||||||
| 	// check the domain exists | 	// check the domain exists | ||||||
| 	services, ok := m.records[options.Domain] | 	services, ok := m.records[options.Namespace] | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		return nil, register.ErrNotFound | 		return nil, register.ErrNotFound | ||||||
| 	} | 	} | ||||||
| @@ -328,7 +307,7 @@ func (m *memory) LookupService(ctx context.Context, name string, opts ...registe | |||||||
| 	var i int | 	var i int | ||||||
|  |  | ||||||
| 	for _, r := range versions { | 	for _, r := range versions { | ||||||
| 		result[i] = recordToService(r, options.Domain) | 		result[i] = recordToService(r, options.Namespace) | ||||||
| 		i++ | 		i++ | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| @@ -339,15 +318,15 @@ func (m *memory) ListServices(ctx context.Context, opts ...register.ListOption) | |||||||
| 	options := register.NewListOptions(opts...) | 	options := register.NewListOptions(opts...) | ||||||
|  |  | ||||||
| 	// if it's a wildcard domain, list from all domains | 	// if it's a wildcard domain, list from all domains | ||||||
| 	if options.Domain == register.WildcardDomain { | 	if options.Namespace == register.WildcardNamespace { | ||||||
| 		m.RLock() | 		m.RLock() | ||||||
| 		recs := m.records | 		recs := m.records | ||||||
| 		m.RUnlock() | 		m.RUnlock() | ||||||
|  |  | ||||||
| 		var services []*register.Service | 		var services []*register.Service | ||||||
|  |  | ||||||
| 		for domain := range recs { | 		for namespace := range recs { | ||||||
| 			srvs, err := m.ListServices(ctx, append(opts, register.ListDomain(domain))...) | 			srvs, err := m.ListServices(ctx, append(opts, register.ListNamespace(namespace))...) | ||||||
| 			if err != nil { | 			if err != nil { | ||||||
| 				return nil, err | 				return nil, err | ||||||
| 			} | 			} | ||||||
| @@ -361,7 +340,7 @@ func (m *memory) ListServices(ctx context.Context, opts ...register.ListOption) | |||||||
| 	defer m.RUnlock() | 	defer m.RUnlock() | ||||||
|  |  | ||||||
| 	// ensure the domain exists | 	// ensure the domain exists | ||||||
| 	services, ok := m.records[options.Domain] | 	services, ok := m.records[options.Namespace] | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		return make([]*register.Service, 0), nil | 		return make([]*register.Service, 0), nil | ||||||
| 	} | 	} | ||||||
| @@ -371,7 +350,7 @@ func (m *memory) ListServices(ctx context.Context, opts ...register.ListOption) | |||||||
|  |  | ||||||
| 	for _, service := range services { | 	for _, service := range services { | ||||||
| 		for _, version := range service { | 		for _, version := range service { | ||||||
| 			result = append(result, recordToService(version, options.Domain)) | 			result = append(result, recordToService(version, options.Namespace)) | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| @@ -426,16 +405,13 @@ func (m *watcher) Next() (*register.Result, error) { | |||||||
| 				continue | 				continue | ||||||
| 			} | 			} | ||||||
|  |  | ||||||
| 			// extract domain from service metadata | 			namespace := register.DefaultNamespace | ||||||
| 			var domain string | 			if r.Service.Namespace != "" { | ||||||
| 			if r.Service.Metadata != nil && len(r.Service.Metadata["domain"]) > 0 { | 				namespace = r.Service.Namespace | ||||||
| 				domain = r.Service.Metadata["domain"] |  | ||||||
| 			} else { |  | ||||||
| 				domain = register.DefaultDomain |  | ||||||
| 			} | 			} | ||||||
|  |  | ||||||
| 			// only send the event if watching the wildcard or this specific domain | 			// only send the event if watching the wildcard or this specific domain | ||||||
| 			if m.wo.Domain == register.WildcardDomain || m.wo.Domain == domain { | 			if m.wo.Namespace == register.WildcardNamespace || m.wo.Namespace == namespace { | ||||||
| 				return r, nil | 				return r, nil | ||||||
| 			} | 			} | ||||||
| 		case <-m.exit: | 		case <-m.exit: | ||||||
| @@ -454,11 +430,6 @@ func (m *watcher) Stop() { | |||||||
| } | } | ||||||
|  |  | ||||||
| func serviceToRecord(s *register.Service, ttl time.Duration) *record { | func serviceToRecord(s *register.Service, ttl time.Duration) *record { | ||||||
| 	metadata := make(map[string]string, len(s.Metadata)) |  | ||||||
| 	for k, v := range s.Metadata { |  | ||||||
| 		metadata[k] = v |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	nodes := make(map[string]*node, len(s.Nodes)) | 	nodes := make(map[string]*node, len(s.Nodes)) | ||||||
| 	for _, n := range s.Nodes { | 	for _, n := range s.Nodes { | ||||||
| 		nodes[n.ID] = &node{ | 		nodes[n.ID] = &node{ | ||||||
| @@ -468,54 +439,23 @@ func serviceToRecord(s *register.Service, ttl time.Duration) *record { | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	endpoints := make([]*register.Endpoint, len(s.Endpoints)) |  | ||||||
| 	copy(endpoints, s.Endpoints) |  | ||||||
|  |  | ||||||
| 	return &record{ | 	return &record{ | ||||||
| 		Name:    s.Name, | 		Name:    s.Name, | ||||||
| 		Version: s.Version, | 		Version: s.Version, | ||||||
| 		Metadata:  metadata, |  | ||||||
| 		Nodes:   nodes, | 		Nodes:   nodes, | ||||||
| 		Endpoints: endpoints, |  | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func recordToService(r *record, domain string) *register.Service { | func recordToService(r *record, namespace string) *register.Service { | ||||||
| 	metadata := make(map[string]string, len(r.Metadata)) |  | ||||||
| 	for k, v := range r.Metadata { |  | ||||||
| 		metadata[k] = v |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// set the domain in metadata so it can be determined when a wildcard query is performed |  | ||||||
| 	metadata["domain"] = domain |  | ||||||
|  |  | ||||||
| 	endpoints := make([]*register.Endpoint, len(r.Endpoints)) |  | ||||||
| 	for i, e := range r.Endpoints { |  | ||||||
| 		md := make(map[string]string, len(e.Metadata)) |  | ||||||
| 		for k, v := range e.Metadata { |  | ||||||
| 			md[k] = v |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		endpoints[i] = ®ister.Endpoint{ |  | ||||||
| 			Name:     e.Name, |  | ||||||
| 			Request:  e.Request, |  | ||||||
| 			Response: e.Response, |  | ||||||
| 			Metadata: md, |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	nodes := make([]*register.Node, len(r.Nodes)) | 	nodes := make([]*register.Node, len(r.Nodes)) | ||||||
| 	i := 0 | 	i := 0 | ||||||
| 	for _, n := range r.Nodes { | 	for _, n := range r.Nodes { | ||||||
| 		md := make(map[string]string, len(n.Metadata)) | 		nmd := metadata.Copy(n.Metadata) | ||||||
| 		for k, v := range n.Metadata { |  | ||||||
| 			md[k] = v |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		nodes[i] = ®ister.Node{ | 		nodes[i] = ®ister.Node{ | ||||||
| 			ID:       n.ID, | 			ID:       n.ID, | ||||||
| 			Address:  n.Address, | 			Address:  n.Address, | ||||||
| 			Metadata: md, | 			Metadata: nmd, | ||||||
| 		} | 		} | ||||||
| 		i++ | 		i++ | ||||||
| 	} | 	} | ||||||
| @@ -523,8 +463,7 @@ func recordToService(r *record, domain string) *register.Service { | |||||||
| 	return ®ister.Service{ | 	return ®ister.Service{ | ||||||
| 		Name:      r.Name, | 		Name:      r.Name, | ||||||
| 		Version:   r.Version, | 		Version:   r.Version, | ||||||
| 		Metadata:  metadata, |  | ||||||
| 		Endpoints: endpoints, |  | ||||||
| 		Nodes:     nodes, | 		Nodes:     nodes, | ||||||
|  | 		Namespace: namespace, | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|   | |||||||
| @@ -7,7 +7,7 @@ import ( | |||||||
| 	"testing" | 	"testing" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/register" | 	"go.unistack.org/micro/v4/register" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var testData = map[string][]*register.Service{ | var testData = map[string][]*register.Service{ | ||||||
| @@ -253,32 +253,32 @@ func TestMemoryWildcard(t *testing.T) { | |||||||
|  |  | ||||||
| 	testSrv := ®ister.Service{Name: "foo", Version: "1.0.0"} | 	testSrv := ®ister.Service{Name: "foo", Version: "1.0.0"} | ||||||
|  |  | ||||||
| 	if err := m.Register(ctx, testSrv, register.RegisterDomain("one")); err != nil { | 	if err := m.Register(ctx, testSrv, register.RegisterNamespace("one")); err != nil { | ||||||
| 		t.Fatalf("Register err: %v", err) | 		t.Fatalf("Register err: %v", err) | ||||||
| 	} | 	} | ||||||
| 	if err := m.Register(ctx, testSrv, register.RegisterDomain("two")); err != nil { | 	if err := m.Register(ctx, testSrv, register.RegisterNamespace("two")); err != nil { | ||||||
| 		t.Fatalf("Register err: %v", err) | 		t.Fatalf("Register err: %v", err) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if recs, err := m.ListServices(ctx, register.ListDomain("one")); err != nil { | 	if recs, err := m.ListServices(ctx, register.ListNamespace("one")); err != nil { | ||||||
| 		t.Errorf("List err: %v", err) | 		t.Errorf("List err: %v", err) | ||||||
| 	} else if len(recs) != 1 { | 	} else if len(recs) != 1 { | ||||||
| 		t.Errorf("Expected 1 record, got %v", len(recs)) | 		t.Errorf("Expected 1 record, got %v", len(recs)) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if recs, err := m.ListServices(ctx, register.ListDomain("*")); err != nil { | 	if recs, err := m.ListServices(ctx, register.ListNamespace("*")); err != nil { | ||||||
| 		t.Errorf("List err: %v", err) | 		t.Errorf("List err: %v", err) | ||||||
| 	} else if len(recs) != 2 { | 	} else if len(recs) != 2 { | ||||||
| 		t.Errorf("Expected 2 records, got %v", len(recs)) | 		t.Errorf("Expected 2 records, got %v", len(recs)) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if recs, err := m.LookupService(ctx, testSrv.Name, register.LookupDomain("one")); err != nil { | 	if recs, err := m.LookupService(ctx, testSrv.Name, register.LookupNamespace("one")); err != nil { | ||||||
| 		t.Errorf("Lookup err: %v", err) | 		t.Errorf("Lookup err: %v", err) | ||||||
| 	} else if len(recs) != 1 { | 	} else if len(recs) != 1 { | ||||||
| 		t.Errorf("Expected 1 record, got %v", len(recs)) | 		t.Errorf("Expected 1 record, got %v", len(recs)) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if recs, err := m.LookupService(ctx, testSrv.Name, register.LookupDomain("*")); err != nil { | 	if recs, err := m.LookupService(ctx, testSrv.Name, register.LookupNamespace("*")); err != nil { | ||||||
| 		t.Errorf("Lookup err: %v", err) | 		t.Errorf("Lookup err: %v", err) | ||||||
| 	} else if len(recs) != 2 { | 	} else if len(recs) != 2 { | ||||||
| 		t.Errorf("Expected 2 records, got %v", len(recs)) | 		t.Errorf("Expected 2 records, got %v", len(recs)) | ||||||
|   | |||||||
| @@ -5,9 +5,10 @@ import ( | |||||||
| 	"crypto/tls" | 	"crypto/tls" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/meter" | ||||||
|  | 	"go.unistack.org/micro/v4/tracer" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Options holds options for register | // Options holds options for register | ||||||
| @@ -26,6 +27,8 @@ type Options struct { | |||||||
| 	Name string | 	Name string | ||||||
| 	// Addrs specifies register addrs | 	// Addrs specifies register addrs | ||||||
| 	Addrs []string | 	Addrs []string | ||||||
|  | 	// Codec used to marshal/unmarshal data in register | ||||||
|  | 	Codec codec.Codec | ||||||
| 	// Timeout specifies timeout | 	// Timeout specifies timeout | ||||||
| 	Timeout time.Duration | 	Timeout time.Duration | ||||||
| } | } | ||||||
| @@ -37,6 +40,7 @@ func NewOptions(opts ...Option) Options { | |||||||
| 		Meter:   meter.DefaultMeter, | 		Meter:   meter.DefaultMeter, | ||||||
| 		Tracer:  tracer.DefaultTracer, | 		Tracer:  tracer.DefaultTracer, | ||||||
| 		Context: context.Background(), | 		Context: context.Background(), | ||||||
|  | 		Codec:   codec.NewCodec(), | ||||||
| 	} | 	} | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| 		o(&options) | 		o(&options) | ||||||
| @@ -47,7 +51,7 @@ func NewOptions(opts ...Option) Options { | |||||||
| // RegisterOptions holds options for register method | // RegisterOptions holds options for register method | ||||||
| type RegisterOptions struct { // nolint: golint,revive | type RegisterOptions struct { // nolint: golint,revive | ||||||
| 	Context   context.Context | 	Context   context.Context | ||||||
| 	Domain   string | 	Namespace string | ||||||
| 	TTL       time.Duration | 	TTL       time.Duration | ||||||
| 	Attempts  int | 	Attempts  int | ||||||
| } | } | ||||||
| @@ -55,7 +59,7 @@ type RegisterOptions struct { // nolint: golint,revive | |||||||
| // NewRegisterOptions returns register options struct filled by opts | // NewRegisterOptions returns register options struct filled by opts | ||||||
| func NewRegisterOptions(opts ...RegisterOption) RegisterOptions { | func NewRegisterOptions(opts ...RegisterOption) RegisterOptions { | ||||||
| 	options := RegisterOptions{ | 	options := RegisterOptions{ | ||||||
| 		Domain:  DefaultDomain, | 		Namespace: DefaultNamespace, | ||||||
| 		Context:   context.Background(), | 		Context:   context.Background(), | ||||||
| 	} | 	} | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| @@ -72,14 +76,14 @@ type WatchOptions struct { | |||||||
| 	// Other options for implementations of the interface | 	// Other options for implementations of the interface | ||||||
| 	// can be stored in a context | 	// can be stored in a context | ||||||
| 	Context context.Context | 	Context context.Context | ||||||
| 	// Domain to watch | 	// Namespace to watch | ||||||
| 	Domain string | 	Namespace string | ||||||
| } | } | ||||||
|  |  | ||||||
| // NewWatchOptions returns watch options filled by opts | // NewWatchOptions returns watch options filled by opts | ||||||
| func NewWatchOptions(opts ...WatchOption) WatchOptions { | func NewWatchOptions(opts ...WatchOption) WatchOptions { | ||||||
| 	options := WatchOptions{ | 	options := WatchOptions{ | ||||||
| 		Domain:  DefaultDomain, | 		Namespace: DefaultNamespace, | ||||||
| 		Context:   context.Background(), | 		Context:   context.Background(), | ||||||
| 	} | 	} | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| @@ -91,8 +95,8 @@ func NewWatchOptions(opts ...WatchOption) WatchOptions { | |||||||
| // DeregisterOptions holds options for deregister method | // DeregisterOptions holds options for deregister method | ||||||
| type DeregisterOptions struct { | type DeregisterOptions struct { | ||||||
| 	Context context.Context | 	Context context.Context | ||||||
| 	// Domain the service was registered in | 	// Namespace the service was registered in | ||||||
| 	Domain string | 	Namespace string | ||||||
| 	// Atempts specify max attempts for deregister | 	// Atempts specify max attempts for deregister | ||||||
| 	Attempts int | 	Attempts int | ||||||
| } | } | ||||||
| @@ -100,7 +104,7 @@ type DeregisterOptions struct { | |||||||
| // NewDeregisterOptions returns options for deregister filled by opts | // NewDeregisterOptions returns options for deregister filled by opts | ||||||
| func NewDeregisterOptions(opts ...DeregisterOption) DeregisterOptions { | func NewDeregisterOptions(opts ...DeregisterOption) DeregisterOptions { | ||||||
| 	options := DeregisterOptions{ | 	options := DeregisterOptions{ | ||||||
| 		Domain:  DefaultDomain, | 		Namespace: DefaultNamespace, | ||||||
| 		Context:   context.Background(), | 		Context:   context.Background(), | ||||||
| 	} | 	} | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| @@ -112,14 +116,14 @@ func NewDeregisterOptions(opts ...DeregisterOption) DeregisterOptions { | |||||||
| // LookupOptions holds lookup options | // LookupOptions holds lookup options | ||||||
| type LookupOptions struct { | type LookupOptions struct { | ||||||
| 	Context context.Context | 	Context context.Context | ||||||
| 	// Domain to scope the request to | 	// Namespace to scope the request to | ||||||
| 	Domain string | 	Namespace string | ||||||
| } | } | ||||||
|  |  | ||||||
| // NewLookupOptions returns lookup options filled by opts | // NewLookupOptions returns lookup options filled by opts | ||||||
| func NewLookupOptions(opts ...LookupOption) LookupOptions { | func NewLookupOptions(opts ...LookupOption) LookupOptions { | ||||||
| 	options := LookupOptions{ | 	options := LookupOptions{ | ||||||
| 		Domain:  DefaultDomain, | 		Namespace: DefaultNamespace, | ||||||
| 		Context:   context.Background(), | 		Context:   context.Background(), | ||||||
| 	} | 	} | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| @@ -130,15 +134,16 @@ func NewLookupOptions(opts ...LookupOption) LookupOptions { | |||||||
|  |  | ||||||
| // ListOptions holds the list options for list method | // ListOptions holds the list options for list method | ||||||
| type ListOptions struct { | type ListOptions struct { | ||||||
|  | 	// Context used to store additional options | ||||||
| 	Context context.Context | 	Context context.Context | ||||||
| 	// Domain to scope the request to | 	// Namespace to scope the request to | ||||||
| 	Domain string | 	Namespace string | ||||||
| } | } | ||||||
|  |  | ||||||
| // NewListOptions returns list options filled by opts | // NewListOptions returns list options filled by opts | ||||||
| func NewListOptions(opts ...ListOption) ListOptions { | func NewListOptions(opts ...ListOption) ListOptions { | ||||||
| 	options := ListOptions{ | 	options := ListOptions{ | ||||||
| 		Domain:  DefaultDomain, | 		Namespace: DefaultNamespace, | ||||||
| 		Context:   context.Background(), | 		Context:   context.Background(), | ||||||
| 	} | 	} | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| @@ -217,10 +222,10 @@ func RegisterContext(ctx context.Context) RegisterOption { // nolint: golint,rev | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // RegisterDomain secifies register domain | // RegisterNamespace secifies register Namespace | ||||||
| func RegisterDomain(d string) RegisterOption { // nolint: golint,revive | func RegisterNamespace(d string) RegisterOption { // nolint: golint,revive | ||||||
| 	return func(o *RegisterOptions) { | 	return func(o *RegisterOptions) { | ||||||
| 		o.Domain = d | 		o.Namespace = d | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -238,10 +243,10 @@ func WatchContext(ctx context.Context) WatchOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // WatchDomain sets the domain for watch | // WatchNamespace sets the Namespace for watch | ||||||
| func WatchDomain(d string) WatchOption { | func WatchNamespace(d string) WatchOption { | ||||||
| 	return func(o *WatchOptions) { | 	return func(o *WatchOptions) { | ||||||
| 		o.Domain = d | 		o.Namespace = d | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -259,10 +264,10 @@ func DeregisterContext(ctx context.Context) DeregisterOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // DeregisterDomain specifies deregister domain | // DeregisterNamespace specifies deregister Namespace | ||||||
| func DeregisterDomain(d string) DeregisterOption { | func DeregisterNamespace(d string) DeregisterOption { | ||||||
| 	return func(o *DeregisterOptions) { | 	return func(o *DeregisterOptions) { | ||||||
| 		o.Domain = d | 		o.Namespace = d | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -273,10 +278,10 @@ func LookupContext(ctx context.Context) LookupOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // LookupDomain sets the domain for lookup | // LookupNamespace sets the Namespace for lookup | ||||||
| func LookupDomain(d string) LookupOption { | func LookupNamespace(d string) LookupOption { | ||||||
| 	return func(o *LookupOptions) { | 	return func(o *LookupOptions) { | ||||||
| 		o.Domain = d | 		o.Namespace = d | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -287,10 +292,10 @@ func ListContext(ctx context.Context) ListOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // ListDomain sets the domain for list method | // ListNamespace sets the Namespace for list method | ||||||
| func ListDomain(d string) ListOption { | func ListNamespace(d string) ListOption { | ||||||
| 	return func(o *ListOptions) { | 	return func(o *ListOptions) { | ||||||
| 		o.Domain = d | 		o.Namespace = d | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -300,3 +305,9 @@ func Name(n string) Option { | |||||||
| 		o.Name = n | 		o.Name = n | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
|  | func Codec(c codec.Codec) Option { | ||||||
|  | 	return func(o *Options) { | ||||||
|  | 		o.Codec = c | ||||||
|  | 	} | ||||||
|  | } | ||||||
|   | |||||||
| @@ -5,16 +5,16 @@ import ( | |||||||
| 	"context" | 	"context" | ||||||
| 	"errors" | 	"errors" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| const ( | const ( | ||||||
| 	// WildcardDomain indicates any domain | 	// WildcardNamespace indicates any Namespace | ||||||
| 	WildcardDomain = "*" | 	WildcardNamespace = "*" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // DefaultDomain to use if none was provided in options | // DefaultNamespace to use if none was provided in options | ||||||
| var DefaultDomain = "micro" | var DefaultNamespace = "micro" | ||||||
|  |  | ||||||
| var ( | var ( | ||||||
| 	// DefaultRegister is the global default register | 	// DefaultRegister is the global default register | ||||||
| @@ -59,26 +59,17 @@ type Register interface { | |||||||
|  |  | ||||||
| // Service holds service register info | // Service holds service register info | ||||||
| type Service struct { | type Service struct { | ||||||
| 	Name      string            `json:"name"` | 	Name      string  `json:"name,omitempty"` | ||||||
| 	Version   string            `json:"version"` | 	Version   string  `json:"version,omitempty"` | ||||||
| 	Metadata  metadata.Metadata `json:"metadata"` | 	Nodes     []*Node `json:"nodes,omitempty"` | ||||||
| 	Endpoints []*Endpoint       `json:"endpoints"` | 	Namespace string  `json:"namespace,omitempty"` | ||||||
| 	Nodes     []*Node           `json:"nodes"` |  | ||||||
| } | } | ||||||
|  |  | ||||||
| // Node holds node register info | // Node holds node register info | ||||||
| type Node struct { | type Node struct { | ||||||
| 	Metadata metadata.Metadata `json:"metadata"` | 	Metadata metadata.Metadata `json:"metadata,omitempty"` | ||||||
| 	ID       string            `json:"id"` | 	ID       string            `json:"id,omitempty"` | ||||||
| 	Address  string            `json:"address"` | 	Address  string            `json:"address,omitempty"` | ||||||
| } |  | ||||||
|  |  | ||||||
| // Endpoint holds endpoint register info |  | ||||||
| type Endpoint struct { |  | ||||||
| 	Request  string            `json:"request"` |  | ||||||
| 	Response string            `json:"response"` |  | ||||||
| 	Metadata metadata.Metadata `json:"metadata"` |  | ||||||
| 	Name     string            `json:"name"` |  | ||||||
| } | } | ||||||
|  |  | ||||||
| // Option func signature | // Option func signature | ||||||
|   | |||||||
| @@ -15,31 +15,31 @@ type Watcher interface { | |||||||
| // the watcher. Actions can be create, update, delete | // the watcher. Actions can be create, update, delete | ||||||
| type Result struct { | type Result struct { | ||||||
| 	// Service holds register service | 	// Service holds register service | ||||||
| 	Service *Service | 	Service *Service `json:"service,omitempty"` | ||||||
| 	// Action holds the action | 	// Action holds the action | ||||||
| 	Action string | 	Action EventType `json:"action,omitempty"` | ||||||
| } | } | ||||||
|  |  | ||||||
| // EventType defines register event type | // EventType defines register event type | ||||||
| type EventType int | type EventType int | ||||||
|  |  | ||||||
| const ( | const ( | ||||||
| 	// Create is emitted when a new service is registered | 	// EventCreate is emitted when a new service is registered | ||||||
| 	Create EventType = iota | 	EventCreate EventType = iota | ||||||
| 	// Delete is emitted when an existing service is deregistered | 	// EventDelete is emitted when an existing service is deregistered | ||||||
| 	Delete | 	EventDelete | ||||||
| 	// Update is emitted when an existing service is updated | 	// EventUpdate is emitted when an existing service is updated | ||||||
| 	Update | 	EventUpdate | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // String returns human readable event type | // String returns human readable event type | ||||||
| func (t EventType) String() string { | func (t EventType) String() string { | ||||||
| 	switch t { | 	switch t { | ||||||
| 	case Create: | 	case EventCreate: | ||||||
| 		return "create" | 		return "create" | ||||||
| 	case Delete: | 	case EventDelete: | ||||||
| 		return "delete" | 		return "delete" | ||||||
| 	case Update: | 	case EventUpdate: | ||||||
| 		return "update" | 		return "update" | ||||||
| 	default: | 	default: | ||||||
| 		return "unknown" | 		return "unknown" | ||||||
| @@ -49,11 +49,11 @@ func (t EventType) String() string { | |||||||
| // Event is register event | // Event is register event | ||||||
| type Event struct { | type Event struct { | ||||||
| 	// Timestamp is event timestamp | 	// Timestamp is event timestamp | ||||||
| 	Timestamp time.Time | 	Timestamp time.Time `json:"timestamp,omitempty"` | ||||||
| 	// Service is register service | 	// Service is register service | ||||||
| 	Service *Service | 	Service *Service `json:"service,omitempty"` | ||||||
| 	// ID is register id | 	// ID is register id | ||||||
| 	ID string | 	ID string `json:"id,omitempty"` | ||||||
| 	// Type defines type of event | 	// Type defines type of event | ||||||
| 	Type EventType | 	Type EventType `json:"type,omitempty"` | ||||||
| } | } | ||||||
|   | |||||||
| @@ -7,7 +7,7 @@ import ( | |||||||
| 	"sync" | 	"sync" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/resolver" | 	"go.unistack.org/micro/v4/resolver" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Resolver is a DNS network resolve | // Resolver is a DNS network resolve | ||||||
|   | |||||||
| @@ -5,7 +5,7 @@ import ( | |||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"net" | 	"net" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/resolver" | 	"go.unistack.org/micro/v4/resolver" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Resolver is a DNS network resolve | // Resolver is a DNS network resolve | ||||||
|   | |||||||
| @@ -8,7 +8,7 @@ import ( | |||||||
| 	"net/http" | 	"net/http" | ||||||
| 	"net/url" | 	"net/url" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/resolver" | 	"go.unistack.org/micro/v4/resolver" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // nolint: golint,revive | // nolint: golint,revive | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
| package noop | package noop | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"go.unistack.org/micro/v3/resolver" | 	"go.unistack.org/micro/v4/resolver" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Resolver contains noop resolver | // Resolver contains noop resolver | ||||||
|   | |||||||
| @@ -4,8 +4,8 @@ package register | |||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/register" | 	"go.unistack.org/micro/v4/register" | ||||||
| 	"go.unistack.org/micro/v3/resolver" | 	"go.unistack.org/micro/v4/resolver" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Resolver is a register network resolver | // Resolver is a register network resolver | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
| package static | package static | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"go.unistack.org/micro/v3/resolver" | 	"go.unistack.org/micro/v4/resolver" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Resolver returns a static list of nodes. In the event the node list | // Resolver returns a static list of nodes. In the event the node list | ||||||
|   | |||||||
| @@ -3,9 +3,9 @@ package router | |||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/register" | 	"go.unistack.org/micro/v4/register" | ||||||
| 	"go.unistack.org/micro/v3/util/id" | 	"go.unistack.org/micro/v4/util/id" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Options are router options | // Options are router options | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ package router | |||||||
| import ( | import ( | ||||||
| 	"hash/fnv" | 	"hash/fnv" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var ( | var ( | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| package random | package random | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"go.unistack.org/micro/v3/selector" | 	"go.unistack.org/micro/v4/selector" | ||||||
| 	"go.unistack.org/micro/v3/util/rand" | 	"go.unistack.org/micro/v4/util/rand" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type random struct{} | type random struct{} | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ package random | |||||||
| import ( | import ( | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/selector" | 	"go.unistack.org/micro/v4/selector" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func TestRandom(t *testing.T) { | func TestRandom(t *testing.T) { | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| package roundrobin | package roundrobin | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"go.unistack.org/micro/v3/selector" | 	"go.unistack.org/micro/v4/selector" | ||||||
| 	"go.unistack.org/micro/v3/util/rand" | 	"go.unistack.org/micro/v4/util/rand" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // NewSelector returns an initialised round robin selector | // NewSelector returns an initialised round robin selector | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ package roundrobin | |||||||
| import ( | import ( | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/selector" | 	"go.unistack.org/micro/v4/selector" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func TestRoundRobin(t *testing.T) { | func TestRoundRobin(t *testing.T) { | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| package server | package server | ||||||
|  |  | ||||||
| import "go.unistack.org/micro/v3/errors" | import "go.unistack.org/micro/v4/errors" | ||||||
|  |  | ||||||
| type Error struct { | type Error struct { | ||||||
| 	id string | 	id string | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ package server | |||||||
| import ( | import ( | ||||||
| 	"testing" | 	"testing" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/errors" | 	"go.unistack.org/micro/v4/errors" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| func TestError(t *testing.T) { | func TestError(t *testing.T) { | ||||||
|   | |||||||
							
								
								
									
										446
									
								
								server/noop.go
									
									
									
									
									
								
							
							
						
						
									
										446
									
								
								server/noop.go
									
									
									
									
									
								
							| @@ -1,25 +1,17 @@ | |||||||
| package server | package server | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" |  | ||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"reflect" | 	"reflect" | ||||||
| 	"runtime/debug" |  | ||||||
| 	"sort" |  | ||||||
| 	"strings" |  | ||||||
| 	"sync" | 	"sync" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/errors" | 	"go.unistack.org/micro/v4/register" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	maddr "go.unistack.org/micro/v4/util/addr" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	mnet "go.unistack.org/micro/v4/util/net" | ||||||
| 	"go.unistack.org/micro/v3/options" | 	"go.unistack.org/micro/v4/util/rand" | ||||||
| 	"go.unistack.org/micro/v3/register" |  | ||||||
| 	maddr "go.unistack.org/micro/v3/util/addr" |  | ||||||
| 	mnet "go.unistack.org/micro/v3/util/net" |  | ||||||
| 	"go.unistack.org/micro/v3/util/rand" |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // DefaultCodecs will be used to encode/decode | // DefaultCodecs will be used to encode/decode | ||||||
| @@ -27,42 +19,21 @@ var DefaultCodecs = map[string]codec.Codec{ | |||||||
| 	"application/octet-stream": codec.NewCodec(), | 	"application/octet-stream": codec.NewCodec(), | ||||||
| } | } | ||||||
|  |  | ||||||
| const ( |  | ||||||
| 	defaultContentType = "application/json" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type rpcHandler struct { | type rpcHandler struct { | ||||||
| 	opts    HandlerOptions | 	opts    HandlerOptions | ||||||
| 	handler interface{} | 	handler interface{} | ||||||
| 	name    string | 	name    string | ||||||
| 	endpoints []*register.Endpoint |  | ||||||
| } | } | ||||||
|  |  | ||||||
| func newRPCHandler(handler interface{}, opts ...HandlerOption) Handler { | func newRPCHandler(handler interface{}, opts ...HandlerOption) Handler { | ||||||
| 	options := NewHandlerOptions(opts...) | 	options := NewHandlerOptions(opts...) | ||||||
|  |  | ||||||
| 	typ := reflect.TypeOf(handler) |  | ||||||
| 	hdlr := reflect.ValueOf(handler) | 	hdlr := reflect.ValueOf(handler) | ||||||
| 	name := reflect.Indirect(hdlr).Type().Name() | 	name := reflect.Indirect(hdlr).Type().Name() | ||||||
|  |  | ||||||
| 	var endpoints []*register.Endpoint |  | ||||||
|  |  | ||||||
| 	for m := 0; m < typ.NumMethod(); m++ { |  | ||||||
| 		if e := register.ExtractEndpoint(typ.Method(m)); e != nil { |  | ||||||
| 			e.Name = name + "." + e.Name |  | ||||||
|  |  | ||||||
| 			for k, v := range options.Metadata[e.Name] { |  | ||||||
| 				e.Metadata[k] = v |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			endpoints = append(endpoints, e) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return &rpcHandler{ | 	return &rpcHandler{ | ||||||
| 		name:    name, | 		name:    name, | ||||||
| 		handler: handler, | 		handler: handler, | ||||||
| 		endpoints: endpoints, |  | ||||||
| 		opts:    options, | 		opts:    options, | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -75,10 +46,6 @@ func (r *rpcHandler) Handler() interface{} { | |||||||
| 	return r.handler | 	return r.handler | ||||||
| } | } | ||||||
|  |  | ||||||
| func (r *rpcHandler) Endpoints() []*register.Endpoint { |  | ||||||
| 	return r.endpoints |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (r *rpcHandler) Options() HandlerOptions { | func (r *rpcHandler) Options() HandlerOptions { | ||||||
| 	return r.opts | 	return r.opts | ||||||
| } | } | ||||||
| @@ -88,7 +55,6 @@ type noopServer struct { | |||||||
| 	wg       *sync.WaitGroup | 	wg       *sync.WaitGroup | ||||||
| 	rsvc     *register.Service | 	rsvc     *register.Service | ||||||
| 	handlers map[string]Handler | 	handlers map[string]Handler | ||||||
| 	subscribers map[*subscriber][]broker.Subscriber |  | ||||||
| 	exit     chan chan error | 	exit     chan chan error | ||||||
| 	opts     Options | 	opts     Options | ||||||
| 	sync.RWMutex | 	sync.RWMutex | ||||||
| @@ -102,25 +68,12 @@ func NewServer(opts ...Option) Server { | |||||||
| 	if n.handlers == nil { | 	if n.handlers == nil { | ||||||
| 		n.handlers = make(map[string]Handler) | 		n.handlers = make(map[string]Handler) | ||||||
| 	} | 	} | ||||||
| 	if n.subscribers == nil { |  | ||||||
| 		n.subscribers = make(map[*subscriber][]broker.Subscriber) |  | ||||||
| 	} |  | ||||||
| 	if n.exit == nil { | 	if n.exit == nil { | ||||||
| 		n.exit = make(chan chan error) | 		n.exit = make(chan chan error) | ||||||
| 	} | 	} | ||||||
| 	return n | 	return n | ||||||
| } | } | ||||||
|  |  | ||||||
| func (n *noopServer) newCodec(contentType string) (codec.Codec, error) { |  | ||||||
| 	if cf, ok := n.opts.Codecs[contentType]; ok { |  | ||||||
| 		return cf, nil |  | ||||||
| 	} |  | ||||||
| 	if cf, ok := DefaultCodecs[contentType]; ok { |  | ||||||
| 		return cf, nil |  | ||||||
| 	} |  | ||||||
| 	return nil, codec.ErrUnknownContentType |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopServer) Live() bool { | func (n *noopServer) Live() bool { | ||||||
| 	return true | 	return true | ||||||
| } | } | ||||||
| @@ -142,65 +95,10 @@ func (n *noopServer) Name() string { | |||||||
| 	return n.opts.Name | 	return n.opts.Name | ||||||
| } | } | ||||||
|  |  | ||||||
| func (n *noopServer) Subscribe(sb Subscriber) error { |  | ||||||
| 	sub, ok := sb.(*subscriber) |  | ||||||
| 	if !ok { |  | ||||||
| 		return fmt.Errorf("invalid subscriber: expected *subscriber") |  | ||||||
| 	} else if len(sub.handlers) == 0 { |  | ||||||
| 		return fmt.Errorf("invalid subscriber: no handler functions") |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := ValidateSubscriber(sb); err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	n.Lock() |  | ||||||
| 	if _, ok = n.subscribers[sub]; ok { |  | ||||||
| 		n.Unlock() |  | ||||||
| 		return fmt.Errorf("subscriber %v already exists", sub) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	n.subscribers[sub] = nil |  | ||||||
| 	n.Unlock() |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type rpcMessage struct { |  | ||||||
| 	payload     interface{} |  | ||||||
| 	codec       codec.Codec |  | ||||||
| 	header      metadata.Metadata |  | ||||||
| 	topic       string |  | ||||||
| 	contentType string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (r *rpcMessage) ContentType() string { |  | ||||||
| 	return r.contentType |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (r *rpcMessage) Topic() string { |  | ||||||
| 	return r.topic |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (r *rpcMessage) Body() interface{} { |  | ||||||
| 	return r.payload |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (r *rpcMessage) Header() metadata.Metadata { |  | ||||||
| 	return r.header |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (r *rpcMessage) Codec() codec.Codec { |  | ||||||
| 	return r.codec |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopServer) NewHandler(h interface{}, opts ...HandlerOption) Handler { | func (n *noopServer) NewHandler(h interface{}, opts ...HandlerOption) Handler { | ||||||
| 	return newRPCHandler(h, opts...) | 	return newRPCHandler(h, opts...) | ||||||
| } | } | ||||||
|  |  | ||||||
| func (n *noopServer) NewSubscriber(topic string, sb interface{}, opts ...SubscriberOption) Subscriber { |  | ||||||
| 	return newSubscriber(topic, sb, opts...) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopServer) Init(opts ...Option) error { | func (n *noopServer) Init(opts ...Option) error { | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| 		o(&n.opts) | 		o(&n.opts) | ||||||
| @@ -209,9 +107,6 @@ func (n *noopServer) Init(opts ...Option) error { | |||||||
| 	if n.handlers == nil { | 	if n.handlers == nil { | ||||||
| 		n.handlers = make(map[string]Handler, 1) | 		n.handlers = make(map[string]Handler, 1) | ||||||
| 	} | 	} | ||||||
| 	if n.subscribers == nil { |  | ||||||
| 		n.subscribers = make(map[*subscriber][]broker.Subscriber, 1) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if n.exit == nil { | 	if n.exit == nil { | ||||||
| 		n.exit = make(chan chan error) | 		n.exit = make(chan chan error) | ||||||
| @@ -249,35 +144,6 @@ func (n *noopServer) Register() error { | |||||||
| 		return err | 		return err | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	n.RLock() |  | ||||||
| 	handlerList := make([]string, 0, len(n.handlers)) |  | ||||||
| 	for n := range n.handlers { |  | ||||||
| 		handlerList = append(handlerList, n) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	sort.Strings(handlerList) |  | ||||||
|  |  | ||||||
| 	subscriberList := make([]*subscriber, 0, len(n.subscribers)) |  | ||||||
| 	for e := range n.subscribers { |  | ||||||
| 		subscriberList = append(subscriberList, e) |  | ||||||
| 	} |  | ||||||
| 	sort.Slice(subscriberList, func(i, j int) bool { |  | ||||||
| 		return subscriberList[i].topic > subscriberList[j].topic |  | ||||||
| 	}) |  | ||||||
|  |  | ||||||
| 	endpoints := make([]*register.Endpoint, 0, len(handlerList)+len(subscriberList)) |  | ||||||
| 	for _, h := range handlerList { |  | ||||||
| 		endpoints = append(endpoints, n.handlers[h].Endpoints()...) |  | ||||||
| 	} |  | ||||||
| 	for _, e := range subscriberList { |  | ||||||
| 		endpoints = append(endpoints, e.Endpoints()...) |  | ||||||
| 	} |  | ||||||
| 	n.RUnlock() |  | ||||||
|  |  | ||||||
| 	service.Nodes[0].Metadata["protocol"] = "noop" |  | ||||||
| 	service.Nodes[0].Metadata["transport"] = service.Nodes[0].Metadata["protocol"] |  | ||||||
| 	service.Endpoints = endpoints |  | ||||||
|  |  | ||||||
| 	n.RLock() | 	n.RLock() | ||||||
| 	registered := n.registered | 	registered := n.registered | ||||||
| 	n.RUnlock() | 	n.RUnlock() | ||||||
| @@ -339,33 +205,6 @@ func (n *noopServer) Deregister() error { | |||||||
|  |  | ||||||
| 	n.registered = false | 	n.registered = false | ||||||
|  |  | ||||||
| 	cx := config.Context |  | ||||||
|  |  | ||||||
| 	wg := sync.WaitGroup{} |  | ||||||
| 	for sb, subs := range n.subscribers { |  | ||||||
| 		for idx := range subs { |  | ||||||
| 			if sb.Options().Context != nil { |  | ||||||
| 				cx = sb.Options().Context |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			ncx := cx |  | ||||||
| 			wg.Add(1) |  | ||||||
| 			go func(s broker.Subscriber) { |  | ||||||
| 				defer wg.Done() |  | ||||||
| 				if config.Logger.V(logger.InfoLevel) { |  | ||||||
| 					config.Logger.Info(n.opts.Context, "unsubscribing from topic: "+s.Topic()) |  | ||||||
| 				} |  | ||||||
| 				if err := s.Unsubscribe(ncx); err != nil { |  | ||||||
| 					if config.Logger.V(logger.ErrorLevel) { |  | ||||||
| 						config.Logger.Error(n.opts.Context, "unsubscribing from topic: "+s.Topic(), err) |  | ||||||
| 					} |  | ||||||
| 				} |  | ||||||
| 			}(subs[idx]) |  | ||||||
| 		} |  | ||||||
| 		n.subscribers[sb] = nil |  | ||||||
| 	} |  | ||||||
| 	wg.Wait() |  | ||||||
|  |  | ||||||
| 	n.Unlock() | 	n.Unlock() | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
| @@ -402,21 +241,6 @@ func (n *noopServer) Start() error { | |||||||
| 	} | 	} | ||||||
| 	n.Unlock() | 	n.Unlock() | ||||||
|  |  | ||||||
| 	// only connect if we're subscribed |  | ||||||
| 	if len(n.subscribers) > 0 { |  | ||||||
| 		// connect to the broker |  | ||||||
| 		if err := config.Broker.Connect(config.Context); err != nil { |  | ||||||
| 			if config.Logger.V(logger.ErrorLevel) { |  | ||||||
| 				config.Logger.Error(n.opts.Context, fmt.Sprintf("broker [%s] connect error", config.Broker.String()), err) |  | ||||||
| 			} |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		if config.Logger.V(logger.InfoLevel) { |  | ||||||
| 			config.Logger.Info(n.opts.Context, fmt.Sprintf("broker [%s] Connected to %s", config.Broker.String(), config.Broker.Address())) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// use RegisterCheck func before register | 	// use RegisterCheck func before register | ||||||
| 	// nolint: nestif | 	// nolint: nestif | ||||||
| 	if err := config.RegisterCheck(config.Context); err != nil { | 	if err := config.RegisterCheck(config.Context); err != nil { | ||||||
| @@ -432,10 +256,6 @@ func (n *noopServer) Start() error { | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err := n.subscribe(); err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	go func() { | 	go func() { | ||||||
| 		t := new(time.Ticker) | 		t := new(time.Ticker) | ||||||
|  |  | ||||||
| @@ -519,42 +339,6 @@ func (n *noopServer) Start() error { | |||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (n *noopServer) subscribe() error { |  | ||||||
| 	config := n.Options() |  | ||||||
|  |  | ||||||
| 	subCtx := config.Context |  | ||||||
|  |  | ||||||
| 	for sb := range n.subscribers { |  | ||||||
|  |  | ||||||
| 		if cx := sb.Options().Context; cx != nil { |  | ||||||
| 			subCtx = cx |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		opts := []broker.SubscribeOption{ |  | ||||||
| 			broker.SubscribeContext(subCtx), |  | ||||||
| 			broker.SubscribeAutoAck(sb.Options().AutoAck), |  | ||||||
| 			broker.SubscribeBodyOnly(sb.Options().BodyOnly), |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		if queue := sb.Options().Queue; len(queue) > 0 { |  | ||||||
| 			opts = append(opts, broker.SubscribeGroup(queue)) |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		if config.Logger.V(logger.InfoLevel) { |  | ||||||
| 			config.Logger.Info(n.opts.Context, "subscribing to topic: "+sb.Topic()) |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		sub, err := config.Broker.Subscribe(subCtx, sb.Topic(), n.createSubHandler(sb, config), opts...) |  | ||||||
| 		if err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		n.subscribers[sb] = []broker.Subscriber{sub} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (n *noopServer) Stop() error { | func (n *noopServer) Stop() error { | ||||||
| 	n.RLock() | 	n.RLock() | ||||||
| 	if !n.started { | 	if !n.started { | ||||||
| @@ -574,221 +358,3 @@ func (n *noopServer) Stop() error { | |||||||
|  |  | ||||||
| 	return err | 	return err | ||||||
| } | } | ||||||
|  |  | ||||||
| func newSubscriber(topic string, sub interface{}, opts ...SubscriberOption) Subscriber { |  | ||||||
| 	var endpoints []*register.Endpoint |  | ||||||
| 	var handlers []*handler |  | ||||||
|  |  | ||||||
| 	options := NewSubscriberOptions(opts...) |  | ||||||
|  |  | ||||||
| 	if typ := reflect.TypeOf(sub); typ.Kind() == reflect.Func { |  | ||||||
| 		h := &handler{ |  | ||||||
| 			method: reflect.ValueOf(sub), |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		switch typ.NumIn() { |  | ||||||
| 		case 1: |  | ||||||
| 			h.reqType = typ.In(0) |  | ||||||
| 		case 2: |  | ||||||
| 			h.ctxType = typ.In(0) |  | ||||||
| 			h.reqType = typ.In(1) |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		handlers = append(handlers, h) |  | ||||||
| 		ep := ®ister.Endpoint{ |  | ||||||
| 			Name:     "Func", |  | ||||||
| 			Request:  register.ExtractSubValue(typ), |  | ||||||
| 			Metadata: metadata.New(2), |  | ||||||
| 		} |  | ||||||
| 		ep.Metadata.Set("topic", topic) |  | ||||||
| 		ep.Metadata.Set("subscriber", "true") |  | ||||||
| 		endpoints = append(endpoints, ep) |  | ||||||
| 	} else { |  | ||||||
| 		hdlr := reflect.ValueOf(sub) |  | ||||||
| 		name := reflect.Indirect(hdlr).Type().Name() |  | ||||||
|  |  | ||||||
| 		for m := 0; m < typ.NumMethod(); m++ { |  | ||||||
| 			method := typ.Method(m) |  | ||||||
| 			h := &handler{ |  | ||||||
| 				method: method.Func, |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			switch method.Type.NumIn() { |  | ||||||
| 			case 2: |  | ||||||
| 				h.reqType = method.Type.In(1) |  | ||||||
| 			case 3: |  | ||||||
| 				h.ctxType = method.Type.In(1) |  | ||||||
| 				h.reqType = method.Type.In(2) |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			handlers = append(handlers, h) |  | ||||||
| 			ep := ®ister.Endpoint{ |  | ||||||
| 				Name:     name + "." + method.Name, |  | ||||||
| 				Request:  register.ExtractSubValue(method.Type), |  | ||||||
| 				Metadata: metadata.New(2), |  | ||||||
| 			} |  | ||||||
| 			ep.Metadata.Set("topic", topic) |  | ||||||
| 			ep.Metadata.Set("subscriber", "true") |  | ||||||
| 			endpoints = append(endpoints, ep) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return &subscriber{ |  | ||||||
| 		rcvr:       reflect.ValueOf(sub), |  | ||||||
| 		typ:        reflect.TypeOf(sub), |  | ||||||
| 		topic:      topic, |  | ||||||
| 		subscriber: sub, |  | ||||||
| 		handlers:   handlers, |  | ||||||
| 		endpoints:  endpoints, |  | ||||||
| 		opts:       options, |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| //nolint:gocyclo |  | ||||||
| func (n *noopServer) createSubHandler(sb *subscriber, opts Options) broker.Handler { |  | ||||||
| 	return func(p broker.Event) (err error) { |  | ||||||
| 		defer func() { |  | ||||||
| 			if r := recover(); r != nil { |  | ||||||
| 				n.RLock() |  | ||||||
| 				config := n.opts |  | ||||||
| 				n.RUnlock() |  | ||||||
| 				if config.Logger.V(logger.ErrorLevel) { |  | ||||||
| 					config.Logger.Error(n.opts.Context, "panic recovered: ", r) |  | ||||||
| 					config.Logger.Error(n.opts.Context, string(debug.Stack())) |  | ||||||
| 				} |  | ||||||
| 				err = errors.InternalServerError(n.opts.Name+".subscriber", "panic recovered: %v", r) |  | ||||||
| 			} |  | ||||||
| 		}() |  | ||||||
|  |  | ||||||
| 		msg := p.Message() |  | ||||||
| 		// if we don't have headers, create empty map |  | ||||||
| 		if msg.Header == nil { |  | ||||||
| 			msg.Header = metadata.New(2) |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		ct := msg.Header["Content-Type"] |  | ||||||
| 		if len(ct) == 0 { |  | ||||||
| 			msg.Header.Set(metadata.HeaderContentType, defaultContentType) |  | ||||||
| 			ct = defaultContentType |  | ||||||
| 		} |  | ||||||
| 		cf, err := n.newCodec(ct) |  | ||||||
| 		if err != nil { |  | ||||||
| 			return err |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		hdr := metadata.New(len(msg.Header)) |  | ||||||
| 		for k, v := range msg.Header { |  | ||||||
| 			hdr.Set(k, v) |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		ctx := metadata.NewIncomingContext(sb.opts.Context, hdr) |  | ||||||
|  |  | ||||||
| 		results := make(chan error, len(sb.handlers)) |  | ||||||
|  |  | ||||||
| 		for i := 0; i < len(sb.handlers); i++ { |  | ||||||
| 			handler := sb.handlers[i] |  | ||||||
|  |  | ||||||
| 			var isVal bool |  | ||||||
| 			var req reflect.Value |  | ||||||
|  |  | ||||||
| 			if handler.reqType.Kind() == reflect.Ptr { |  | ||||||
| 				req = reflect.New(handler.reqType.Elem()) |  | ||||||
| 			} else { |  | ||||||
| 				req = reflect.New(handler.reqType) |  | ||||||
| 				isVal = true |  | ||||||
| 			} |  | ||||||
| 			if isVal { |  | ||||||
| 				req = req.Elem() |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			if err = cf.Unmarshal(msg.Body, req.Interface()); err != nil { |  | ||||||
| 				return err |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			fn := func(ctx context.Context, msg Message) error { |  | ||||||
| 				var vals []reflect.Value |  | ||||||
| 				if sb.typ.Kind() != reflect.Func { |  | ||||||
| 					vals = append(vals, sb.rcvr) |  | ||||||
| 				} |  | ||||||
| 				if handler.ctxType != nil { |  | ||||||
| 					vals = append(vals, reflect.ValueOf(ctx)) |  | ||||||
| 				} |  | ||||||
|  |  | ||||||
| 				vals = append(vals, reflect.ValueOf(msg.Body())) |  | ||||||
|  |  | ||||||
| 				returnValues := handler.method.Call(vals) |  | ||||||
| 				if rerr := returnValues[0].Interface(); rerr != nil { |  | ||||||
| 					return rerr.(error) |  | ||||||
| 				} |  | ||||||
| 				return nil |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			opts.Hooks.EachPrev(func(hook options.Hook) { |  | ||||||
| 				if h, ok := hook.(HookSubHandler); ok { |  | ||||||
| 					fn = h(fn) |  | ||||||
| 				} |  | ||||||
| 			}) |  | ||||||
|  |  | ||||||
| 			if n.wg != nil { |  | ||||||
| 				n.wg.Add(1) |  | ||||||
| 			} |  | ||||||
| 			go func() { |  | ||||||
| 				if n.wg != nil { |  | ||||||
| 					defer n.wg.Done() |  | ||||||
| 				} |  | ||||||
| 				cerr := fn(ctx, &rpcMessage{ |  | ||||||
| 					topic:       sb.topic, |  | ||||||
| 					contentType: ct, |  | ||||||
| 					payload:     req.Interface(), |  | ||||||
| 					header:      msg.Header, |  | ||||||
| 				}) |  | ||||||
| 				results <- cerr |  | ||||||
| 			}() |  | ||||||
| 		} |  | ||||||
| 		var errors []string |  | ||||||
| 		for i := 0; i < len(sb.handlers); i++ { |  | ||||||
| 			if rerr := <-results; rerr != nil { |  | ||||||
| 				errors = append(errors, rerr.Error()) |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
| 		if len(errors) > 0 { |  | ||||||
| 			err = fmt.Errorf("subscriber error: %s", strings.Join(errors, "\n")) |  | ||||||
| 		} |  | ||||||
| 		return err |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (s *subscriber) Topic() string { |  | ||||||
| 	return s.topic |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (s *subscriber) Subscriber() interface{} { |  | ||||||
| 	return s.subscriber |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (s *subscriber) Endpoints() []*register.Endpoint { |  | ||||||
| 	return s.endpoints |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (s *subscriber) Options() SubscriberOptions { |  | ||||||
| 	return s.opts |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type subscriber struct { |  | ||||||
| 	topic string |  | ||||||
|  |  | ||||||
| 	typ        reflect.Type |  | ||||||
| 	subscriber interface{} |  | ||||||
|  |  | ||||||
| 	endpoints []*register.Endpoint |  | ||||||
| 	handlers  []*handler |  | ||||||
|  |  | ||||||
| 	rcvr reflect.Value |  | ||||||
| 	opts SubscriberOptions |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type handler struct { |  | ||||||
| 	reqType reflect.Type |  | ||||||
| 	ctxType reflect.Type |  | ||||||
| 	method  reflect.Value |  | ||||||
| } |  | ||||||
|   | |||||||
| @@ -1,124 +0,0 @@ | |||||||
| package server_test |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"fmt" |  | ||||||
| 	"testing" |  | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" |  | ||||||
| 	"go.unistack.org/micro/v3/client" |  | ||||||
| 	"go.unistack.org/micro/v3/codec" |  | ||||||
| 	"go.unistack.org/micro/v3/logger" |  | ||||||
| 	"go.unistack.org/micro/v3/options" |  | ||||||
| 	"go.unistack.org/micro/v3/server" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type TestHandler struct { |  | ||||||
| 	t *testing.T |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type TestMessage struct { |  | ||||||
| 	Name string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (h *TestHandler) SingleSubHandler(ctx context.Context, msg *codec.Frame) error { |  | ||||||
| 	// fmt.Printf("msg %s\n", msg.Data) |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestNoopSub(t *testing.T) { |  | ||||||
| 	ctx := context.Background() |  | ||||||
|  |  | ||||||
| 	b := broker.NewBroker() |  | ||||||
|  |  | ||||||
| 	if err := b.Init(); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := b.Connect(ctx); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := logger.DefaultLogger.Init(logger.WithLevel(logger.ErrorLevel)); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
| 	s := server.NewServer( |  | ||||||
| 		server.Broker(b), |  | ||||||
| 		server.Codec("application/octet-stream", codec.NewCodec()), |  | ||||||
| 	) |  | ||||||
| 	if err := s.Init(); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	c := client.NewClient( |  | ||||||
| 		client.Broker(b), |  | ||||||
| 		client.Codec("application/octet-stream", codec.NewCodec()), |  | ||||||
| 		client.ContentType("application/octet-stream"), |  | ||||||
| 	) |  | ||||||
| 	if err := c.Init(); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
| 	h := &TestHandler{t: t} |  | ||||||
|  |  | ||||||
| 	if err := s.Subscribe(s.NewSubscriber("single_topic", h.SingleSubHandler, |  | ||||||
| 		server.SubscriberQueue("queue"), |  | ||||||
| 	)); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := s.Start(); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	msgs := make([]client.Message, 0, 8) |  | ||||||
| 	for i := 0; i < 8; i++ { |  | ||||||
| 		msgs = append(msgs, c.NewMessage("batch_topic", &codec.Frame{Data: []byte(fmt.Sprintf(`{"name": "test_name %d"}`, i))})) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if err := c.BatchPublish(ctx, msgs); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	defer func() { |  | ||||||
| 		if err := s.Stop(); err != nil { |  | ||||||
| 			t.Fatal(err) |  | ||||||
| 		} |  | ||||||
| 	}() |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestHooks_Wrap(t *testing.T) { |  | ||||||
| 	n := 5 |  | ||||||
| 	fn1 := func(next server.FuncSubHandler) server.FuncSubHandler { |  | ||||||
| 		return func(ctx context.Context, msg server.Message) (err error) { |  | ||||||
| 			n *= 2 |  | ||||||
| 			return next(ctx, msg) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	fn2 := func(next server.FuncSubHandler) server.FuncSubHandler { |  | ||||||
| 		return func(ctx context.Context, msg server.Message) (err error) { |  | ||||||
| 			n -= 10 |  | ||||||
| 			return next(ctx, msg) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	hs := &options.Hooks{} |  | ||||||
| 	hs.Append(server.HookSubHandler(fn1), server.HookSubHandler(fn2)) |  | ||||||
|  |  | ||||||
| 	var fn = func(ctx context.Context, msg server.Message) error { |  | ||||||
| 		return nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	hs.EachPrev(func(hook options.Hook) { |  | ||||||
| 		if h, ok := hook.(server.HookSubHandler); ok { |  | ||||||
| 			fn = h(fn) |  | ||||||
| 		} |  | ||||||
| 	}) |  | ||||||
|  |  | ||||||
| 	if err := fn(nil, nil); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if n != 0 { |  | ||||||
| 		t.Fatalf("uncorrected hooks call") |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -7,16 +7,16 @@ import ( | |||||||
| 	"sync" | 	"sync" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/codec" | 	"go.unistack.org/micro/v4/codec" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	"go.unistack.org/micro/v3/meter" | 	"go.unistack.org/micro/v4/meter" | ||||||
| 	"go.unistack.org/micro/v3/options" | 	"go.unistack.org/micro/v4/options" | ||||||
| 	"go.unistack.org/micro/v3/register" | 	"go.unistack.org/micro/v4/register" | ||||||
| 	msync "go.unistack.org/micro/v3/sync" | 	msync "go.unistack.org/micro/v4/sync" | ||||||
| 	"go.unistack.org/micro/v3/tracer" | 	"go.unistack.org/micro/v4/tracer" | ||||||
| 	"go.unistack.org/micro/v3/util/id" | 	"go.unistack.org/micro/v4/util/id" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| // Option func | // Option func | ||||||
|   | |||||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user