[DEV] add capabiliry to the URI

This commit is contained in:
Edouard DUPIN 2022-02-19 15:04:52 +01:00
parent 3c2cf9ca2b
commit e53ed45d42

View File

@ -233,7 +233,7 @@ public class Uri {
public static Uri valueOf(String value) { public static Uri valueOf(String value) {
String group = null; String group = null;
String path = null; String path = null;
String lib = null; Map<String, String> prop = new HashMap<>();
if (value.contains(":")) { if (value.contains(":")) {
final String[] ret = value.split(":", 2); final String[] ret = value.split(":", 2);
group = ret[0].toUpperCase(); group = ret[0].toUpperCase();
@ -241,17 +241,30 @@ public class Uri {
} else { } else {
group = "DATA"; group = "DATA";
} }
if (value.contains("?lib=")) { int index = value.indexOf('?');
final String[] ret = value.split("\\?lib=", 2); if (index != -1) {
path = ret[0]; final String valuesMetadata = value.substring(index + 1);
lib = ret[1].toLowerCase(); final String[] elementMetaData = valuesMetadata.split("&");
for (int iii = 0; iii < elementMetaData.length; iii++) {
final String[] keyVal = elementMetaData[iii].split("=", 2);
if (keyVal.length == 1) {
prop.put(keyVal[0], "");
} else {
if (keyVal[0].equals("lib")) {
prop.put(keyVal[0], keyVal[1].toLowerCase());
} else {
prop.put(keyVal[0], keyVal[1]);
}
}
}
path = value.substring(0, index);
} else { } else {
path = value; path = value;
} }
return new Uri(group, path, lib); return new Uri(group, path, prop);
} }
public static void writeAll(final Uri uri, final String data) throws IOException { public static void writeAll(final Uri uri, final String data) throws IOException {
BufferedWriter out = null; BufferedWriter out = null;
try { try {
FileWriter fstream = new FileWriter(uri.getPath(), false); //true tells to append data. FileWriter fstream = new FileWriter(uri.getPath(), false); //true tells to append data.
@ -358,29 +371,30 @@ public class Uri {
return ret[ret.length - 1]; return ret[ret.length - 1];
} }
public String getGroup() {
return this.group;
}
public Uri getParent() {
String path = this.path.substring(0, this.path.lastIndexOf("/"));
return new Uri(getGroup(), path, this.properties);
}
/** /**
* Get the filename of the URI with the extension "plop.txt" * Get the filename of the URI with the extension "plop.txt"
* @return simple filename * @return simple filename
*/ */
public String getFileName() { public String getFileName() {
return this.path.substring(this.path.lastIndexOf("/")+1); return this.path.substring(this.path.lastIndexOf("/") + 1);
} }
/** /**
* Get the filename of the URI without the extension "plop" * Get the filename of the URI without the extension "plop"
* @return simple filename * @return simple filename
*/ */
public String getFileNameNoExt() { public String getFileNameNoExt() {
String ext = getExtention(); String ext = getExtention();
return this.path.substring(this.path.lastIndexOf("/")+1, this.path.length()-ext.length()+1); return this.path.substring(this.path.lastIndexOf("/") + 1, this.path.length() - ext.length() + 1);
}
public String getGroup() {
return this.group;
}
public Uri getParent() {
String path = this.path.substring(0, this.path.lastIndexOf("/"));
return new Uri(getGroup(), path, this.properties);
} }
public String getPath() { public String getPath() {
@ -391,7 +405,7 @@ public class Uri {
return this.properties; return this.properties;
} }
public String getproperty(final String key) { public String getProperty(final String key) {
return this.properties.get(key); return this.properties.get(key);
} }
@ -399,6 +413,10 @@ public class Uri {
return toString(); return toString();
} }
public boolean hasProperty(final String key) {
return this.properties.containsKey(key);
}
public boolean isEmpty() { public boolean isEmpty() {
return this.path == null || this.path.isEmpty(); return this.path == null || this.path.isEmpty();
} }