Initial commit

This commit is contained in:
Tinglyyy
2026-01-18 14:40:25 +01:00
commit 1637078249
13 changed files with 262 additions and 0 deletions

39
.gitignore vendored Normal file
View File

@@ -0,0 +1,39 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
.kotlin
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

10
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,10 @@
# Default ignored files
/shelf/
/workspace.xml
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/

7
.idea/encodings.xml generated Normal file
View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
</component>
</project>

14
.idea/misc.xml generated Normal file
View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>
<option value="$PROJECT_DIR$/pom.xml" />
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_22" default="true" project-jdk-name="openjdk-22" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

7
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

31
pom.xml Normal file
View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openautonomousconnection.infonamelib</groupId>
<artifactId>InfoNameLib</artifactId>
<version>1.0.0-BETAS.1.0</version>
<properties>
<maven.compiler.source>22</maven.compiler.source>
<maven.compiler.target>22</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.38</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>6.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,24 @@
/* Author: Maple
* Jan. 18 2026
* */
package org.openautonomousconnection.infonamelib;
import org.openautonomousconnection.infonamelib.protocols.ftp.FTPInfoNameURLStreamHandler;
import org.openautonomousconnection.infonamelib.protocols.web.WebInfoNameURLStreamHandler;
import java.net.URLStreamHandler;
import java.net.URLStreamHandlerFactory;
public class InfoNameURLStreamHandlerFactory implements URLStreamHandlerFactory {
@Override
public URLStreamHandler createURLStreamHandler(String protocol) {
return switch (protocol) {
case "web" -> new WebInfoNameURLStreamHandler();
case "ftp" -> new FTPInfoNameURLStreamHandler();
default -> null;
};
}
}

View File

@@ -0,0 +1,16 @@
/* Author: Maple
* Jan. 18 2026
* */
package org.openautonomousconnection.infonamelib;
import java.net.URL;
public class InfoNames {
/**
* Switches accepted Schemes in URLs to InfoName ones
*/
public static void registerOACInfoNameProtocols() {
URL.setURLStreamHandlerFactory(new InfoNameURLStreamHandlerFactory());
}
}

View File

@@ -0,0 +1,26 @@
/* Author: Maple
* Jan. 18 2026
* */
package org.openautonomousconnection.infonamelib.protocols.ftp;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
public class FTPInfoNameURLConnection extends URLConnection {
/**
* Constructs a URL connection to the specified URL. A connection to
* the object referenced by the URL is not created.
*
* @param url the specified URL.
*/
protected FTPInfoNameURLConnection(URL url) {
super(url);
}
@Override
public void connect() throws IOException {
}
}

View File

@@ -0,0 +1,17 @@
/* Author: Maple
* Jan. 18 2026
* */
package org.openautonomousconnection.infonamelib.protocols.ftp;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;
public class FTPInfoNameURLStreamHandler extends URLStreamHandler {
@Override
protected URLConnection openConnection(URL url) throws IOException {
return new FTPInfoNameURLConnection(url);
}
}

View File

@@ -0,0 +1,26 @@
/* Author: Maple
* Jan. 18 2026
* */
package org.openautonomousconnection.infonamelib.protocols.web;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
public class WebInfoNameURLConnection extends URLConnection {
/**
* Constructs a URL connection to the specified URL. A connection to
* the object referenced by the URL is not created.
*
* @param url the specified URL.
*/
protected WebInfoNameURLConnection(URL url) {
super(url);
}
@Override
public void connect() throws IOException {
}
}

View File

@@ -0,0 +1,17 @@
/* Author: Maple
* Jan. 18 2026
* */
package org.openautonomousconnection.infonamelib.protocols.web;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;
public class WebInfoNameURLStreamHandler extends URLStreamHandler {
@Override
protected URLConnection openConnection(URL url) throws IOException {
return new WebInfoNameURLConnection(url);
}
}

View File

@@ -0,0 +1,28 @@
package org.openautonomousconnection.infonamelib.test;
import org.junit.jupiter.api.Test;
import org.openautonomousconnection.infonamelib.InfoNames;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URL;
public class URLTests {
@Test
public void createWebUrl() {
System.out.println("Registering OAC protocols");
InfoNames.registerOACInfoNameProtocols();
System.out.println("Creating url to: web://localhost:8080");
URI uri = URI.create("web://localhost:8080");
try {
URL url = uri.toURL();
} catch (MalformedURLException e) {
throw new RuntimeException(e);
}
}
}