Skip to content

Commit 2ab15f1

Browse files
committed
Remove more outdated APIs related to the old file persistence
1 parent cbef3f9 commit 2ab15f1

File tree

4 files changed

+4
-79
lines changed

4 files changed

+4
-79
lines changed

routers/wanaku-router/src/main/java/ai/wanaku/routers/AbstractProvider.java

-39
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,12 @@
11
package ai.wanaku.routers;
22

3-
import java.io.File;
4-
import java.io.IOException;
5-
import java.util.Collections;
6-
73
import ai.wanaku.core.mcp.common.resolvers.Resolver;
8-
import ai.wanaku.core.util.IndexHelper;
94

105
/**
116
* Base provider class for tools and resources
127
* @param <Y> The type of the resolver
138
*/
149
abstract class AbstractProvider<Y extends Resolver> {
15-
private static File createSettingsDirectory(String settingsDirectory) {
16-
File resourcesDir = new File(settingsDirectory);
17-
if (!resourcesDir.exists()) {
18-
resourcesDir.mkdirs();
19-
}
20-
21-
return resourcesDir;
22-
}
23-
24-
/**
25-
* Initializes the persisted index of resources
26-
* @param resourcesPath the path to the index file
27-
* @param fileName the name of the index file
28-
* @return the File object representing the initialized index of resources
29-
*/
30-
protected File initializeResourcesIndex(String resourcesPath, String fileName) {
31-
File settingsDirectory = createSettingsDirectory(resourcesPath);
32-
File indexFile = new File(settingsDirectory, fileName);
33-
try {
34-
if (!indexFile.exists()) {
35-
IndexHelper.saveResourcesIndex(indexFile, Collections.EMPTY_LIST);
36-
}
37-
} catch (IOException e) {
38-
throw new RuntimeException(e);
39-
}
40-
return indexFile;
41-
}
42-
43-
/**
44-
* Initializes the persisted index of resources
45-
* @return the File object representing the initialized index of resources
46-
*/
47-
abstract File initializeIndex();
48-
4910
/**
5011
* Gets the resolver associated with this provider
5112
* @return the resolver instance
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
package ai.wanaku.routers;
22

3+
import ai.wanaku.core.mcp.common.resolvers.ResourceResolver;
4+
import ai.wanaku.core.mcp.common.resolvers.util.NoopResourceResolver;
5+
import ai.wanaku.core.mcp.providers.ServiceRegistry;
36
import ai.wanaku.routers.proxies.resources.ResourceAcquirerProxy;
7+
import ai.wanaku.routers.resolvers.WanakuResourceResolver;
48
import jakarta.annotation.PostConstruct;
59
import jakarta.enterprise.context.ApplicationScoped;
610
import jakarta.enterprise.inject.Instance;
711
import jakarta.enterprise.inject.Produces;
812
import jakarta.inject.Inject;
9-
10-
import ai.wanaku.core.mcp.common.resolvers.ResourceResolver;
11-
import ai.wanaku.core.mcp.common.resolvers.util.NoopResourceResolver;
12-
import ai.wanaku.core.mcp.providers.ServiceRegistry;
13-
import ai.wanaku.routers.resolvers.WanakuResourceResolver;
14-
import java.io.File;
1513
import picocli.CommandLine;
1614

17-
import static ai.wanaku.core.mcp.common.resolvers.Resolver.DEFAULT_RESOURCES_INDEX_FILE_NAME;
18-
1915
/**
2016
* A provider for resources resolvers
2117
*/
@@ -41,16 +37,6 @@ ResourceResolver getResolver() {
4137
return new NoopResourceResolver();
4238
}
4339

44-
initializeIndex();
4540
return new WanakuResourceResolver(new ResourceAcquirerProxy(serviceRegistry));
4641
}
47-
48-
49-
@Override
50-
protected File initializeIndex() {
51-
String indexPath = parseResult.matchedOptionValue("indexes-path", "${user.home}/.wanaku/router/")
52-
.replace("${user.home}", System.getProperty("user.home"));
53-
54-
return initializeResourcesIndex(indexPath, DEFAULT_RESOURCES_INDEX_FILE_NAME);
55-
}
5642
}

routers/wanaku-router/src/main/java/ai/wanaku/routers/ToolsProvider.java

-18
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ public class ToolsProvider extends AbstractProvider<ToolsResolver> {
3232
@Inject
3333
CommandLine.ParseResult parseResult;
3434

35-
@Inject
36-
WanakuRouterConfig config;
37-
3835
@Inject
3936
Instance<ServiceRegistry> serviceRegistryInstance;
4037

@@ -53,9 +50,6 @@ public ToolsResolver devResolver() {
5350
}
5451

5552
LOG.infof("Wanaku version %s is starting", VersionHelper.VERSION);
56-
File resourcesIndexFile = initializeResourcesIndex(config.indexesPath(), DEFAULT_TOOLS_INDEX_FILE_NAME);
57-
LOG.infof("Using resources index file: %s", resourcesIndexFile.getAbsolutePath());
58-
5953
return new WanakuToolsResolver(new InvokerProxy(serviceRegistry));
6054
}
6155

@@ -67,19 +61,7 @@ ToolsResolver getResolver() {
6761
return new NoopToolsResolver();
6862
}
6963

70-
File resourcesIndexFile = initializeIndex();
71-
7264
LOG.infof("Wanaku version %s is starting", VersionHelper.VERSION);
7365
return new WanakuToolsResolver(new InvokerProxy(serviceRegistry));
7466
}
75-
76-
@Override
77-
protected File initializeIndex() {
78-
String defaultValue = config.indexesPath();
79-
String value = parseResult.matchedOptionValue("indexes-path", defaultValue);
80-
81-
String indexPath = value.replace("${user.home}", System.getProperty("user.home"));
82-
83-
return initializeResourcesIndex(indexPath, DEFAULT_TOOLS_INDEX_FILE_NAME);
84-
}
8567
}

routers/wanaku-router/src/main/java/ai/wanaku/routers/WanakuRouterMain.java

-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ public class WanakuRouterMain implements Runnable, QuarkusApplication {
1616
@Inject
1717
CommandLine.IFactory factory;
1818

19-
@CommandLine.Option(names = {"--indexes-path"}, description = "The path to the index directory",
20-
defaultValue = "${user.home}/.wanaku/router/")
21-
private String indexesPath;
22-
2319
@CommandLine.Option(names = { "-h", "--help" }, usageHelp = true, description = "display a help message")
2420
private boolean helpRequested = false;
2521

0 commit comments

Comments
 (0)