Skip to content

Commit c1ea078

Browse files
committed
Simplifies service management
- Move the registry of services to an external Valkey instance - Register the instances on service startup - Remove the link/unlink APIs and commands This resolves #78.
1 parent a15dfe8 commit c1ea078

File tree

66 files changed

+866
-718
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+866
-718
lines changed

.env

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
VALKEY_HOST=host.docker.internal
2+
VALKEY_PORT=6379
3+
VALKEY_TIMEOUT=10

archetypes/wanaku-provider-archetype/src/main/resources/archetype-resources/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@
6363
<version>${project.version}</version>
6464
</dependency>
6565

66+
<dependency>
67+
<groupId>ai.wanaku</groupId>
68+
<artifactId>core-service-discovery</artifactId>
69+
<version>${project.version}</version>
70+
</dependency>
71+
6672
<dependency>
6773
<groupId>io.quarkus</groupId>
6874
<artifactId>quarkus-arc</artifactId>

archetypes/wanaku-provider-archetype/src/main/resources/archetype-resources/src/main/java/ResourceService.java

+28-3
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,38 @@
1717

1818
package ai.wanaku.provider;
1919

20+
import jakarta.enterprise.event.Observes;
2021
import jakarta.inject.Inject;
2122

2223
import ai.wanaku.core.exchange.InquireReply;
2324
import ai.wanaku.core.exchange.InquireRequest;
2425
import ai.wanaku.core.exchange.Inquirer;
25-
import io.quarkus.grpc.GrpcService;
26-
import io.smallrye.common.annotation.Blocking;
27-
import io.smallrye.mutiny.Uni;
2826
import ai.wanaku.core.exchange.ResourceAcquirer;
2927
import ai.wanaku.core.exchange.ResourceAcquirerDelegate;
3028
import ai.wanaku.core.exchange.ResourceReply;
3129
import ai.wanaku.core.exchange.ResourceRequest;
30+
import ai.wanaku.core.service.discovery.util.DiscoveryUtil;
31+
import ai.wanaku.core.services.config.WanakuProviderConfig;
32+
import io.quarkus.grpc.GrpcService;
33+
import io.quarkus.runtime.ShutdownEvent;
34+
import io.quarkus.runtime.StartupEvent;
35+
import io.smallrye.mutiny.Uni;
36+
import org.eclipse.microprofile.config.inject.ConfigProperty;
37+
import org.jboss.logging.Logger;
3238

3339
@GrpcService
3440
public class ResourceService implements ResourceAcquirer, Inquirer {
41+
private static final Logger LOG = Logger.getLogger(ResourceService.class);
3542

3643
@Inject
3744
ResourceAcquirerDelegate delegate;
3845

46+
@Inject
47+
WanakuProviderConfig config;
48+
49+
@ConfigProperty(name = "quarkus.grpc.server.port")
50+
int port;
51+
3952
@Override
4053
@Blocking
4154
public Uni<ResourceReply> resourceAcquire(ResourceRequest request) {
@@ -51,4 +64,16 @@ public Uni<InquireReply> inquire(InquireRequest request) {
5164

5265
return Uni.createFrom().item(() -> reply);
5366
}
67+
68+
void register(@Observes StartupEvent ev) {
69+
LOG.info("Registering resource service");
70+
71+
delegate.register(config.name(), DiscoveryUtil.resolveRegistrationAddress(), port);
72+
}
73+
74+
void deregister(@Observes ShutdownEvent ev) {
75+
LOG.info("De-registering resource service");
76+
77+
delegate.deregister(config.name(), DiscoveryUtil.resolveRegistrationAddress(), port);
78+
}
5479
}

archetypes/wanaku-provider-archetype/src/main/resources/archetype-resources/src/main/resources/application.properties

+12
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ quarkus.log.category."ai.wanaku".level=INFO
3131
wanaku.service.provider.name=${name.toLowerCase()}
3232
wanaku.service.provider.base-uri=${name.toLowerCase()}://
3333

34+
%dev.wanaku.service.provider.router.address=http://localhost:8080
35+
%test.wanaku.service.provider.router.address=http://localhost:8080
36+
3437
# The service may have user-exposable parameters that can be set via CLI. The
3538
# example below is exposed as "noop" with the description
3639
# "Whether to do nothing or do something".
@@ -40,6 +43,15 @@ wanaku.service.provider.base-uri=${name.toLowerCase()}://
4043
# not set by the user
4144
# wanaku.service.provider.service.defaults.noop=true
4245

46+
# Valkey configuration
47+
48+
# Address of the Valkey host
49+
# valkey.host=address
50+
51+
# Port which Valkey is listening to on
52+
# valkey.port=6379
4353

54+
# Timeout
55+
# valkey.timeout=10
4456

4557

archetypes/wanaku-tool-service-archetype/src/main/resources/archetype-resources/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@
6363
<version>${project.version}</version>
6464
</dependency>
6565

66+
<dependency>
67+
<groupId>ai.wanaku</groupId>
68+
<artifactId>core-service-discovery</artifactId>
69+
<version>${project.version}</version>
70+
</dependency>
71+
6672
<dependency>
6773
<groupId>io.quarkus</groupId>
6874
<artifactId>quarkus-arc</artifactId>

archetypes/wanaku-tool-service-archetype/src/main/resources/archetype-resources/src/main/java/InvocationService.java

+30-3
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,37 @@
1717

1818
package ai.wanaku.routing.service;
1919

20+
import jakarta.enterprise.event.Observes;
2021
import jakarta.inject.Inject;
2122

22-
import io.quarkus.grpc.GrpcService;
23-
import io.smallrye.mutiny.Uni;
24-
import ai.wanaku.core.exchange.InvocationDelegate;
23+
import ai.wanaku.core.exchange.InquireReply;
24+
import ai.wanaku.core.exchange.InquireRequest;
2525
import ai.wanaku.core.exchange.Inquirer;
26+
import ai.wanaku.core.exchange.InvocationDelegate;
2627
import ai.wanaku.core.exchange.ToolInvokeReply;
2728
import ai.wanaku.core.exchange.ToolInvokeRequest;
2829
import ai.wanaku.core.exchange.ToolInvoker;
30+
import ai.wanaku.core.service.discovery.util.DiscoveryUtil;
31+
import ai.wanaku.core.services.config.WanakuRoutingConfig;
32+
import io.quarkus.grpc.GrpcService;
33+
import io.quarkus.runtime.ShutdownEvent;
34+
import io.quarkus.runtime.StartupEvent;
35+
import io.smallrye.mutiny.Uni;
36+
import org.eclipse.microprofile.config.inject.ConfigProperty;
37+
import org.jboss.logging.Logger;
2938

3039
@GrpcService
3140
public class InvocationService implements ToolInvoker, Inquirer {
3241

3342
@Inject
3443
InvocationDelegate delegate;
3544

45+
@Inject
46+
WanakuRoutingConfig config;
47+
48+
@ConfigProperty(name = "quarkus.grpc.server.port")
49+
int port;
50+
3651
@Override
3752
public Uni<ToolInvokeReply> invokeTool(ToolInvokeRequest request) {
3853
return Uni.createFrom().item(() -> delegate.invoke(request));
@@ -47,4 +62,16 @@ public Uni<InquireReply> inquire(InquireRequest request) {
4762

4863
return Uni.createFrom().item(() -> reply);
4964
}
65+
66+
void register(@Observes StartupEvent ev) {
67+
LOG.info("Registering resource service");
68+
69+
delegate.register(config.name(), DiscoveryUtil.resolveRegistrationAddress(), port);
70+
}
71+
72+
void deregister(@Observes ShutdownEvent ev) {
73+
LOG.info("De-registering resource service");
74+
75+
delegate.deregister(config.name(), DiscoveryUtil.resolveRegistrationAddress(), port);
76+
}
5077
}

archetypes/wanaku-tool-service-archetype/src/main/resources/archetype-resources/src/main/resources/application.properties

+10
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,13 @@ quarkus.log.category."ai.wanaku".level=INFO
2929
%test.quarkus.log.category."ai.wanaku".level=INFO
3030

3131

32+
# Valkey configuration
33+
34+
# Address of the Valkey host
35+
# valkey.host=address
36+
37+
# Port which Valkey is listening to on
38+
# valkey.port=6379
39+
40+
# Timeout
41+
# valkey.timeout=10

cli/src/main/java/ai/wanaku/cli/main/commands/targets/resources/Resources.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import picocli.CommandLine;
55

66
@CommandLine.Command(name = "resources",
7-
description = "Manage targets", subcommands = { ResourcesLink.class, ResourcesUnlink.class, ResourcesLinkedList.class, ResourcesConfigure.class })
7+
description = "Manage targets", subcommands = { ResourcesLinkedList.class, ResourcesConfigure.class })
88
public class Resources extends BaseCommand {
99
@Override
1010
public void run() {

cli/src/main/java/ai/wanaku/cli/main/commands/targets/resources/ResourcesLink.java

-16
This file was deleted.

cli/src/main/java/ai/wanaku/cli/main/commands/targets/resources/ResourcesUnlink.java

-15
This file was deleted.

cli/src/main/java/ai/wanaku/cli/main/commands/targets/tools/Tools.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import picocli.CommandLine;
55

66
@CommandLine.Command(name = "tools",
7-
description = "Manage targets", subcommands = { ToolsLink.class, ToolsUnlink.class, ToolsLinkedList.class, ToolsConfigure.class })
7+
description = "Manage targets", subcommands = { ToolsLinkedList.class, ToolsConfigure.class })
88
public class Tools extends BaseCommand {
99
@Override
1010
public void run() {

cli/src/main/java/ai/wanaku/cli/main/commands/targets/tools/ToolsLink.java

-16
This file was deleted.

cli/src/main/java/ai/wanaku/cli/main/commands/targets/tools/ToolsUnlink.java

-15
This file was deleted.

cli/src/main/java/ai/wanaku/cli/main/services/LinkService.java

-20
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,6 @@
1717
@Path("/api/v1/management/targets")
1818
public interface LinkService {
1919

20-
@Path("/tools/link")
21-
@PUT
22-
@Consumes(MediaType.TEXT_PLAIN)
23-
void toolsLink(@QueryParam("service") String service, @QueryParam("target") String target);
24-
25-
@Path("/tools/unlink")
26-
@PUT
27-
@Consumes(MediaType.TEXT_PLAIN)
28-
void toolsUnlink(@QueryParam("service") String service);
29-
3020
@Path("/tools/list")
3121
@GET
3222
@Consumes(MediaType.TEXT_PLAIN)
@@ -37,16 +27,6 @@ public interface LinkService {
3727
@Consumes(MediaType.TEXT_PLAIN)
3828
Response toolsConfigure(@RestPath("service") String service, @QueryParam("option") String option, @QueryParam("value") String value);
3929

40-
@Path("/resources/link")
41-
@PUT
42-
@Consumes(MediaType.TEXT_PLAIN)
43-
void resourcesLink(@QueryParam("service") String service, @QueryParam("target") String target);
44-
45-
@Path("/resources/unlink")
46-
@PUT
47-
@Consumes(MediaType.TEXT_PLAIN)
48-
void resourcesUnlink(@QueryParam("service") String service);
49-
5030
@Path("/resources/list")
5131
@GET
5232
@Consumes(MediaType.TEXT_PLAIN)

core/core-exchange/src/main/java/ai/wanaku/core/exchange/InvocationDelegate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* A delegate that can be used by services that invoke tools
55
*/
6-
public interface InvocationDelegate extends ConfigurableDelegate {
6+
public interface InvocationDelegate extends ConfigurableDelegate, RegisterAware {
77
/**
88
* Invokes the tool
99
* @param request
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package ai.wanaku.core.exchange;
2+
3+
/**
4+
* Defines services that can be registered with the router
5+
*/
6+
public interface RegisterAware {
7+
/**
8+
* Register a service with the router
9+
* @param host the router host
10+
* @param service the service to register
11+
* @param port the port where the service is listening to on
12+
*/
13+
void register(String host, String service, int port);
14+
15+
/**
16+
* Deregister a service with the router
17+
* @param host the router host
18+
* @param service the service to deregister
19+
*/
20+
void deregister(String host, String service, int port);
21+
}

core/core-exchange/src/main/java/ai/wanaku/core/exchange/ResourceAcquirerDelegate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* A delegate that can be used by services that provide resources
55
*/
6-
public interface ResourceAcquirerDelegate extends ConfigurableDelegate {
6+
public interface ResourceAcquirerDelegate extends ConfigurableDelegate, RegisterAware {
77

88
/**
99
* Acquire the resource and provide it to the requester

core/core-mcp/src/main/java/ai/wanaku/core/mcp/providers/Registry.java

-31
This file was deleted.

core/core-mcp/src/main/java/ai/wanaku/core/mcp/providers/ResourceRegistry.java

-15
This file was deleted.

0 commit comments

Comments
 (0)