-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from zhaoyunxing92/nacos
add:nacos client
- Loading branch information
Showing
6 changed files
with
209 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package nacos | ||
|
||
import ( | ||
"sync" | ||
) | ||
|
||
import ( | ||
"github.com/nacos-group/nacos-sdk-go/clients" | ||
"github.com/nacos-group/nacos-sdk-go/clients/config_client" | ||
"github.com/nacos-group/nacos-sdk-go/clients/naming_client" | ||
"github.com/nacos-group/nacos-sdk-go/common/constant" | ||
"github.com/nacos-group/nacos-sdk-go/vo" | ||
) | ||
|
||
var ( | ||
clientPool nacosClientPool | ||
clientPoolOnce sync.Once | ||
) | ||
|
||
var ( | ||
configClientPool nacosConfigClientPool | ||
configClientPoolOnce sync.Once | ||
) | ||
|
||
type nacosClientPool struct { | ||
sync.Mutex | ||
namingClient map[string]naming_client.INamingClient | ||
} | ||
|
||
type nacosConfigClientPool struct { | ||
sync.Mutex | ||
configClient map[string]config_client.IConfigClient | ||
} | ||
|
||
func initNacosClientPool() { | ||
clientPool.namingClient = make(map[string]naming_client.INamingClient) | ||
} | ||
|
||
func initNacosConfigClientPool() { | ||
configClientPool.configClient = make(map[string]config_client.IConfigClient) | ||
} | ||
|
||
// NewNacosNamingClient create nacos client | ||
func NewNacosNamingClient(name string, share bool, sc []constant.ServerConfig, | ||
cc constant.ClientConfig) (naming_client.INamingClient, error) { | ||
if !share { | ||
return newNamingClient(sc, cc) | ||
} | ||
clientPoolOnce.Do(initNacosClientPool) | ||
clientPool.Lock() | ||
defer clientPool.Unlock() | ||
if client, ok := clientPool.namingClient[name]; ok { | ||
return client, nil | ||
} | ||
|
||
client, err := newNamingClient(sc, cc) | ||
if err == nil { | ||
clientPool.namingClient[name] = client | ||
} | ||
return client, err | ||
} | ||
|
||
// NewNacosConfigClient create config client | ||
func NewNacosConfigClient(name string, share bool, sc []constant.ServerConfig, | ||
cc constant.ClientConfig) (config_client.IConfigClient, error) { | ||
if !share { | ||
return newConfigClient(sc, cc) | ||
} | ||
configClientPoolOnce.Do(initNacosConfigClientPool) | ||
configClientPool.Lock() | ||
defer configClientPool.Unlock() | ||
if client, ok := configClientPool.configClient[name]; ok { | ||
return client, nil | ||
} | ||
|
||
client, err := newConfigClient(sc, cc) | ||
if err == nil { | ||
configClientPool.configClient[name] = client | ||
} | ||
return client, err | ||
} | ||
|
||
func newNamingClient(sc []constant.ServerConfig, cc constant.ClientConfig) (naming_client.INamingClient, error) { | ||
cfg := vo.NacosClientParam{ClientConfig: &cc, ServerConfigs: sc} | ||
return clients.NewNamingClient(cfg) | ||
} | ||
|
||
func newConfigClient(sc []constant.ServerConfig, cc constant.ClientConfig) (config_client.IConfigClient, error) { | ||
cfg := vo.NacosClientParam{ClientConfig: &cc, ServerConfigs: sc} | ||
return clients.NewConfigClient(cfg) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package nacos | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
import ( | ||
"github.com/nacos-group/nacos-sdk-go/common/constant" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestNewNacosClient(t *testing.T) { | ||
|
||
scs := []constant.ServerConfig{ | ||
*constant.NewServerConfig("console.nacos.io", 80), | ||
} | ||
|
||
cc := constant.ClientConfig{ | ||
TimeoutMs: 5 * 1000, | ||
NotLoadCacheAtStart: true, | ||
} | ||
|
||
t.Run("naming_client", func(t *testing.T) { | ||
client1, err := NewNacosNamingClient("nacos", true, scs, cc) | ||
client2, err := NewNacosNamingClient("nacos", true, scs, cc) | ||
client3, err := NewNacosNamingClient("nacos", false, scs, cc) | ||
client4, err := NewNacosNamingClient("test", true, scs, cc) | ||
|
||
assert.Nil(t, err) | ||
assert.Equal(t, client1, client2) | ||
assert.NotEqual(t, client1, client3) | ||
assert.NotEqual(t, client1, client4) | ||
}) | ||
|
||
t.Run("config_client", func(t *testing.T) { | ||
client1, err := NewNacosConfigClient("nacos", true, scs, cc) | ||
client2, err := NewNacosConfigClient("nacos", true, scs, cc) | ||
client3, err := NewNacosConfigClient("nacos", false, scs, cc) | ||
client4, err := NewNacosConfigClient("test", true, scs, cc) | ||
|
||
assert.Nil(t, err) | ||
assert.Equal(t, client1, client2) | ||
assert.Equal(t, client1, client3) | ||
assert.Equal(t, client1, client4) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.