-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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 #1130 from chuntaojun/feature_service_curd
- Loading branch information
Showing
18 changed files
with
1,007 additions
and
121 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
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
52 changes: 52 additions & 0 deletions
52
api/src/main/java/com/alibaba/nacos/api/naming/NamingMaintainFactory.java
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,52 @@ | ||
/* | ||
* Copyright 1999-2018 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed 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 com.alibaba.nacos.api.naming; | ||
|
||
import com.alibaba.nacos.api.exception.NacosException; | ||
|
||
import java.lang.reflect.Constructor; | ||
import java.util.Properties; | ||
|
||
/** | ||
* @author liaochuntao | ||
* @since 1.0.1 | ||
*/ | ||
public class NamingMaintainFactory { | ||
|
||
public static NamingMaintainService createMaintainService(String serverList) throws NacosException { | ||
try { | ||
Class<?> driverImplClass = Class.forName("com.alibaba.nacos.client.naming.NacosNamingMaintainService"); | ||
Constructor constructor = driverImplClass.getConstructor(String.class); | ||
NamingMaintainService vendorImpl = (NamingMaintainService)constructor.newInstance(serverList); | ||
return vendorImpl; | ||
} catch (Throwable e) { | ||
throw new NacosException(-400, e.getMessage()); | ||
} | ||
} | ||
|
||
public static NamingMaintainService createMaintainService(Properties properties) throws NacosException { | ||
try { | ||
Class<?> driverImplClass = Class.forName("com.alibaba.nacos.client.naming.NacosNamingMaintainService"); | ||
Constructor constructor = driverImplClass.getConstructor(Properties.class); | ||
NamingMaintainService vendorImpl = (NamingMaintainService)constructor.newInstance(properties); | ||
return vendorImpl; | ||
} catch (Throwable e) { | ||
throw new NacosException(-400, e.getMessage()); | ||
} | ||
} | ||
|
||
} |
168 changes: 168 additions & 0 deletions
168
api/src/main/java/com/alibaba/nacos/api/naming/NamingMaintainService.java
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,168 @@ | ||
/* | ||
* Copyright 1999-2018 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed 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 com.alibaba.nacos.api.naming; | ||
|
||
import com.alibaba.nacos.api.exception.NacosException; | ||
import com.alibaba.nacos.api.naming.pojo.Instance; | ||
import com.alibaba.nacos.api.naming.pojo.Service; | ||
import com.alibaba.nacos.api.selector.AbstractSelector; | ||
|
||
import java.util.Map; | ||
|
||
/** | ||
* Operations related to Nacos | ||
* | ||
* @author liaochuntao | ||
* @since 1.0.1 | ||
*/ | ||
public interface NamingMaintainService { | ||
|
||
/** | ||
* update instance info | ||
* | ||
* @param serviceName | ||
* @param instance | ||
* @throws NacosException | ||
*/ | ||
void updateInstance(String serviceName, Instance instance) throws NacosException; | ||
|
||
/** | ||
* update instance info | ||
* | ||
* @param serviceName | ||
* @param groupName | ||
* @param instance | ||
* @throws NacosException | ||
*/ | ||
void updateInstance(String serviceName, String groupName, Instance instance) throws NacosException; | ||
|
||
/** | ||
* query service | ||
* | ||
* @param serviceName | ||
* @return | ||
* @throws NacosException | ||
*/ | ||
Service queryService(String serviceName) throws NacosException; | ||
|
||
/** | ||
* query service | ||
* | ||
* @param serviceName | ||
* @param groupName | ||
* @return | ||
* @throws NacosException | ||
*/ | ||
Service queryService(String serviceName, String groupName) throws NacosException; | ||
|
||
/** | ||
* create service to Nacos | ||
* | ||
* @param serviceName name of service | ||
* @throws NacosException | ||
*/ | ||
void createService(String serviceName) throws NacosException; | ||
|
||
/** | ||
* create service to Nacos | ||
* | ||
* @param serviceName name of service | ||
* @param groupName group of service | ||
* @throws NacosException | ||
*/ | ||
void createService(String serviceName, String groupName) throws NacosException; | ||
|
||
/** | ||
* create service to Nacos | ||
* | ||
* @param serviceName name of service | ||
* @param groupName group of service | ||
* @param protectThreshold protectThreshold of service | ||
* @throws NacosException | ||
*/ | ||
void createService(String serviceName, String groupName, float protectThreshold) throws NacosException; | ||
|
||
/** | ||
* create service to Nacos | ||
* | ||
* @param serviceName name of service | ||
* @param groupName group of service | ||
* @param protectThreshold protectThreshold of service | ||
* @param expression expression of selector | ||
* @throws NacosException | ||
*/ | ||
void createService(String serviceName, String groupName, float protectThreshold, String expression) throws NacosException; | ||
|
||
/** | ||
* create service to Nacos | ||
* | ||
* @param service name of service | ||
* @param selector selector | ||
* @throws NacosException | ||
*/ | ||
void createService(Service service, AbstractSelector selector) throws NacosException; | ||
|
||
/** | ||
* delete service from Nacos | ||
* | ||
* @param serviceName name of service | ||
* @return if delete service success return true | ||
* @throws NacosException | ||
*/ | ||
boolean deleteService(String serviceName) throws NacosException; | ||
|
||
/** | ||
* delete service from Nacos | ||
* | ||
* @param serviceName name of service | ||
* @param groupName group of service | ||
* @return if delete service success return true | ||
* @throws NacosException | ||
*/ | ||
boolean deleteService(String serviceName, String groupName) throws NacosException; | ||
|
||
/** | ||
* update service to Nacos | ||
* | ||
* @param serviceName name of service | ||
* @param groupName group of service | ||
* @param protectThreshold protectThreshold of service | ||
* @throws NacosException | ||
*/ | ||
void updateService(String serviceName, String groupName, float protectThreshold) throws NacosException; | ||
|
||
/** | ||
* update service to Nacos | ||
* | ||
* @param serviceName name of service | ||
* @param groupName group of service | ||
* @param protectThreshold protectThreshold of service | ||
* @param metadata metadata of service | ||
* @throws NacosException | ||
*/ | ||
void updateService(String serviceName, String groupName, float protectThreshold, Map<String, String> metadata) throws NacosException; | ||
|
||
/** | ||
* update service to Nacos with selector | ||
* | ||
* @param service {@link Service} pojo of service | ||
* @param selector {@link AbstractSelector} pojo of selector | ||
* @throws NacosException | ||
*/ | ||
void updateService(Service service, AbstractSelector selector) throws NacosException; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
api/src/main/java/com/alibaba/nacos/api/selector/NoneSelector.java
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,28 @@ | ||
/* | ||
* Copyright 1999-2018 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed 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 com.alibaba.nacos.api.selector; | ||
|
||
/** | ||
* @author liaochuntao | ||
* @since 1.0.1 | ||
*/ | ||
public class NoneSelector extends AbstractSelector { | ||
|
||
public NoneSelector() { | ||
this.setType(SelectorType.none.name()); | ||
} | ||
} |
Oops, something went wrong.