Skip to content
Snippets Groups Projects
Commit 11dcff0c authored by vito.he's avatar vito.he
Browse files

Mod:change to uber-go/atomic

parent 4bb87299
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ package cluster_impl ...@@ -3,7 +3,7 @@ package cluster_impl
import ( import (
gxnet "github.com/AlexStocks/goext/net" gxnet "github.com/AlexStocks/goext/net"
jerrors "github.com/juju/errors" jerrors "github.com/juju/errors"
"github.com/tevino/abool" "go.uber.org/atomic"
) )
import ( import (
...@@ -16,14 +16,14 @@ import ( ...@@ -16,14 +16,14 @@ import (
type baseClusterInvoker struct { type baseClusterInvoker struct {
directory cluster.Directory directory cluster.Directory
availablecheck bool availablecheck bool
destroyed *abool.AtomicBool destroyed *atomic.Bool
} }
func newBaseClusterInvoker(directory cluster.Directory) baseClusterInvoker { func newBaseClusterInvoker(directory cluster.Directory) baseClusterInvoker {
return baseClusterInvoker{ return baseClusterInvoker{
directory: directory, directory: directory,
availablecheck: true, availablecheck: true,
destroyed: abool.NewBool(false), destroyed: atomic.NewBool(false),
} }
} }
func (invoker *baseClusterInvoker) GetUrl() common.URL { func (invoker *baseClusterInvoker) GetUrl() common.URL {
...@@ -32,7 +32,7 @@ func (invoker *baseClusterInvoker) GetUrl() common.URL { ...@@ -32,7 +32,7 @@ func (invoker *baseClusterInvoker) GetUrl() common.URL {
func (invoker *baseClusterInvoker) Destroy() { func (invoker *baseClusterInvoker) Destroy() {
//this is must atom operation //this is must atom operation
if invoker.destroyed.SetToIf(false, true) { if invoker.destroyed.CAS(false, true) {
invoker.directory.Destroy() invoker.directory.Destroy()
} }
} }
...@@ -56,7 +56,7 @@ func (invoker *baseClusterInvoker) checkInvokers(invokers []protocol.Invoker, in ...@@ -56,7 +56,7 @@ func (invoker *baseClusterInvoker) checkInvokers(invokers []protocol.Invoker, in
//check cluster invoker is destroyed or not //check cluster invoker is destroyed or not
func (invoker *baseClusterInvoker) checkWhetherDestroyed() error { func (invoker *baseClusterInvoker) checkWhetherDestroyed() error {
if invoker.destroyed.IsSet() { if invoker.destroyed.Load() {
ip, _ := gxnet.GetLocalIP() ip, _ := gxnet.GetLocalIP()
return jerrors.Errorf("Rpc cluster invoker for %v on consumer %v use dubbo version %v is now destroyed! can not invoke any more. ", return jerrors.Errorf("Rpc cluster invoker for %v on consumer %v use dubbo version %v is now destroyed! can not invoke any more. ",
invoker.directory.GetUrl().Service(), ip, version.Version) invoker.directory.GetUrl().Service(), ip, version.Version)
......
...@@ -4,7 +4,7 @@ import ( ...@@ -4,7 +4,7 @@ import (
"sync" "sync"
) )
import ( import (
"github.com/tevino/abool" "go.uber.org/atomic"
) )
import ( import (
"github.com/dubbo/go-for-apache-dubbo/common" "github.com/dubbo/go-for-apache-dubbo/common"
...@@ -12,14 +12,14 @@ import ( ...@@ -12,14 +12,14 @@ import (
type BaseDirectory struct { type BaseDirectory struct {
url *common.URL url *common.URL
destroyed *abool.AtomicBool destroyed *atomic.Bool
mutex sync.Mutex mutex sync.Mutex
} }
func NewBaseDirectory(url *common.URL) BaseDirectory { func NewBaseDirectory(url *common.URL) BaseDirectory {
return BaseDirectory{ return BaseDirectory{
url: url, url: url,
destroyed: abool.NewBool(false), destroyed: atomic.NewBool(false),
} }
} }
func (dir *BaseDirectory) GetUrl() common.URL { func (dir *BaseDirectory) GetUrl() common.URL {
...@@ -27,7 +27,7 @@ func (dir *BaseDirectory) GetUrl() common.URL { ...@@ -27,7 +27,7 @@ func (dir *BaseDirectory) GetUrl() common.URL {
} }
func (dir *BaseDirectory) Destroy(doDestroy func()) { func (dir *BaseDirectory) Destroy(doDestroy func()) {
if dir.destroyed.SetToIf(false, true) { if dir.destroyed.CAS(false, true) {
dir.mutex.Lock() dir.mutex.Lock()
doDestroy() doDestroy()
dir.mutex.Unlock() dir.mutex.Unlock()
...@@ -35,5 +35,5 @@ func (dir *BaseDirectory) Destroy(doDestroy func()) { ...@@ -35,5 +35,5 @@ func (dir *BaseDirectory) Destroy(doDestroy func()) {
} }
func (dir *BaseDirectory) IsAvailable() bool { func (dir *BaseDirectory) IsAvailable() bool {
return !dir.destroyed.IsSet() return !dir.destroyed.Load()
} }
...@@ -8,7 +8,6 @@ require ( ...@@ -8,7 +8,6 @@ require (
github.com/juju/errors v0.0.0-20190207033735-e65537c515d7 github.com/juju/errors v0.0.0-20190207033735-e65537c515d7
github.com/samuel/go-zookeeper v0.0.0-20180130194729-c4fab1ac1bec github.com/samuel/go-zookeeper v0.0.0-20180130194729-c4fab1ac1bec
github.com/stretchr/testify v1.3.0 github.com/stretchr/testify v1.3.0
github.com/tevino/abool v0.0.0-20170917061928-9b9efcf221b5
go.uber.org/atomic v1.3.2 go.uber.org/atomic v1.3.2
gopkg.in/yaml.v2 v2.2.2 gopkg.in/yaml.v2 v2.2.2
) )
...@@ -116,8 +116,6 @@ github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0 ...@@ -116,8 +116,6 @@ github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/tevino/abool v0.0.0-20170917061928-9b9efcf221b5 h1:hNna6Fi0eP1f2sMBe/rJicDmaHmoXGe1Ta84FPYHLuE=
github.com/tevino/abool v0.0.0-20170917061928-9b9efcf221b5/go.mod h1:f1SCnEOt6sc3fOJfPQDRDzHOtSXuTtnz0ImG9kPRDV0=
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=
github.com/ugorji/go v1.1.2/go.mod h1:hnLbHMwcvSihnDhEfx2/BzKp2xb0Y+ErdfYcrs9tkJQ= github.com/ugorji/go v1.1.2/go.mod h1:hnLbHMwcvSihnDhEfx2/BzKp2xb0Y+ErdfYcrs9tkJQ=
github.com/ugorji/go/codec v0.0.0-20190320090025-2dc34c0b8780/go.mod h1:iT03XoTwV7xq/+UGwKO3UbC1nNNlopQiY61beSdrtOA= github.com/ugorji/go/codec v0.0.0-20190320090025-2dc34c0b8780/go.mod h1:iT03XoTwV7xq/+UGwKO3UbC1nNNlopQiY61beSdrtOA=
......
package registry package registry
import ( import (
"github.com/tevino/abool" "go.uber.org/atomic"
) )
import ( import (
"github.com/dubbo/go-for-apache-dubbo/common" "github.com/dubbo/go-for-apache-dubbo/common"
...@@ -9,12 +9,12 @@ import ( ...@@ -9,12 +9,12 @@ import (
type MockRegistry struct { type MockRegistry struct {
listener *listener listener *listener
destroyed *abool.AtomicBool destroyed *atomic.Bool
} }
func NewMockRegistry(url *common.URL) (Registry, error) { func NewMockRegistry(url *common.URL) (Registry, error) {
registry := &MockRegistry{ registry := &MockRegistry{
destroyed: abool.NewBool(false), destroyed: atomic.NewBool(false),
} }
listener := &listener{count: 0, registry: registry, listenChan: make(chan *ServiceEvent)} listener := &listener{count: 0, registry: registry, listenChan: make(chan *ServiceEvent)}
registry.listener = listener registry.listener = listener
...@@ -25,11 +25,11 @@ func (*MockRegistry) Register(url common.URL) error { ...@@ -25,11 +25,11 @@ func (*MockRegistry) Register(url common.URL) error {
} }
func (r *MockRegistry) Destroy() { func (r *MockRegistry) Destroy() {
if r.destroyed.SetToIf(false, true) { if r.destroyed.CAS(false, true) {
} }
} }
func (r *MockRegistry) IsAvailable() bool { func (r *MockRegistry) IsAvailable() bool {
return !r.destroyed.IsSet() return !r.destroyed.Load()
} }
func (r *MockRegistry) GetUrl() common.URL { func (r *MockRegistry) GetUrl() common.URL {
return common.URL{} return common.URL{}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment