mirror of
https://github.com/corda/corda.git
synced 2025-01-01 10:46:46 +00:00
factor Properties and PropertieResourceBundle out of ResourceBundle
This commit is contained in:
parent
b0bb443fa2
commit
86999df5f2
104
classpath/java/util/Properties.java
Normal file
104
classpath/java/util/Properties.java
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
package java.util;
|
||||||
|
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public class Properties extends Hashtable {
|
||||||
|
public void load(InputStream in) throws IOException {
|
||||||
|
new Parser().parse(in, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class Parser {
|
||||||
|
private StringBuilder key = null;
|
||||||
|
private StringBuilder value = null;
|
||||||
|
private StringBuilder current = null;
|
||||||
|
|
||||||
|
private void append(int c) {
|
||||||
|
if (current == null) {
|
||||||
|
if (key == null) {
|
||||||
|
current = key = new StringBuilder();
|
||||||
|
} else {
|
||||||
|
current = value = new StringBuilder();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
current.append((char) c);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void finishLine(Map<String, Object> map) {
|
||||||
|
if (key != null) {
|
||||||
|
map.put(key.toString(),
|
||||||
|
(value == null ? "" : value.toString().trim()));
|
||||||
|
}
|
||||||
|
|
||||||
|
key = value = current = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void parse(InputStream in, Map map)
|
||||||
|
throws IOException
|
||||||
|
{
|
||||||
|
boolean escaped = false;
|
||||||
|
|
||||||
|
int c;
|
||||||
|
while ((c = in.read()) != -1) {
|
||||||
|
if (c == '\\') {
|
||||||
|
if (escaped) {
|
||||||
|
escaped = false;
|
||||||
|
append(c);
|
||||||
|
} else {
|
||||||
|
escaped = true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
switch (c) {
|
||||||
|
case '#':
|
||||||
|
case '!':
|
||||||
|
if (key == null) {
|
||||||
|
while ((c = in.read()) != -1 && c != '\n');
|
||||||
|
} else {
|
||||||
|
append(c);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ' ':
|
||||||
|
case '\r':
|
||||||
|
case '\t':
|
||||||
|
if (escaped || (current != null && value == current)) {
|
||||||
|
append(c);
|
||||||
|
} else if (key == current) {
|
||||||
|
current = null;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ':':
|
||||||
|
case '=':
|
||||||
|
if (escaped || (current != null && value == current)) {
|
||||||
|
append(c);
|
||||||
|
} else {
|
||||||
|
if (key == null) {
|
||||||
|
key = new StringBuilder();
|
||||||
|
}
|
||||||
|
current = null;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case '\n':
|
||||||
|
if (escaped) {
|
||||||
|
append(c);
|
||||||
|
} else {
|
||||||
|
finishLine(map);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
append(c);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
escaped = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
finishLine(map);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
16
classpath/java/util/PropertyResourceBundle.java
Normal file
16
classpath/java/util/PropertyResourceBundle.java
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
package java.util;
|
||||||
|
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public class PropertyResourceBundle extends ResourceBundle {
|
||||||
|
private final Properties map = new Properties();
|
||||||
|
|
||||||
|
public PropertyResourceBundle(InputStream in) throws IOException {
|
||||||
|
map.load(in);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Object handleGetObject(String key) {
|
||||||
|
return map.get(key);
|
||||||
|
}
|
||||||
|
}
|
@ -25,7 +25,10 @@ public abstract class ResourceBundle {
|
|||||||
(replace('.', '/', name) + ".properties");
|
(replace('.', '/', name) + ".properties");
|
||||||
if (in != null) {
|
if (in != null) {
|
||||||
try {
|
try {
|
||||||
return new MapResourceBundle(name, parent, new Parser().parse(in));
|
ResourceBundle r = new PropertyResourceBundle(in);
|
||||||
|
r.name = name;
|
||||||
|
r.parent = parent;
|
||||||
|
return r;
|
||||||
} finally {
|
} finally {
|
||||||
in.close();
|
in.close();
|
||||||
}
|
}
|
||||||
@ -105,117 +108,4 @@ public abstract class ResourceBundle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected abstract Object handleGetObject(String key);
|
protected abstract Object handleGetObject(String key);
|
||||||
|
|
||||||
private static class MapResourceBundle extends ResourceBundle {
|
|
||||||
private final Map<String, Object> map;
|
|
||||||
|
|
||||||
public MapResourceBundle(String name, ResourceBundle parent,
|
|
||||||
Map<String, Object> map)
|
|
||||||
{
|
|
||||||
this.name = name;
|
|
||||||
this.parent = parent;
|
|
||||||
this.map = map;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected Object handleGetObject(String key) {
|
|
||||||
return map.get(key);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static class Parser {
|
|
||||||
private StringBuilder key = null;
|
|
||||||
private StringBuilder value = null;
|
|
||||||
private StringBuilder current = null;
|
|
||||||
|
|
||||||
private void append(int c) {
|
|
||||||
if (current == null) {
|
|
||||||
if (key == null) {
|
|
||||||
current = key = new StringBuilder();
|
|
||||||
} else {
|
|
||||||
current = value = new StringBuilder();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
current.append((char) c);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void finishLine(Map<String, Object> map) {
|
|
||||||
if (key != null) {
|
|
||||||
map.put(key.toString(),
|
|
||||||
(value == null ? "" : value.toString().trim()));
|
|
||||||
}
|
|
||||||
|
|
||||||
key = value = current = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private Map<String, Object> parse(InputStream in)
|
|
||||||
throws IOException
|
|
||||||
{
|
|
||||||
Map<String, Object> map = new HashMap();
|
|
||||||
boolean escaped = false;
|
|
||||||
|
|
||||||
int c;
|
|
||||||
while ((c = in.read()) != -1) {
|
|
||||||
if (c == '\\') {
|
|
||||||
if (escaped) {
|
|
||||||
escaped = false;
|
|
||||||
append(c);
|
|
||||||
} else {
|
|
||||||
escaped = true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
switch (c) {
|
|
||||||
case '#':
|
|
||||||
case '!':
|
|
||||||
if (key == null) {
|
|
||||||
while ((c = in.read()) != -1 && c != '\n');
|
|
||||||
} else {
|
|
||||||
append(c);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ' ':
|
|
||||||
case '\r':
|
|
||||||
case '\t':
|
|
||||||
if (escaped || key != current) {
|
|
||||||
append(c);
|
|
||||||
} else {
|
|
||||||
current = null;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ':':
|
|
||||||
case '=':
|
|
||||||
if (escaped || key != current) {
|
|
||||||
append(c);
|
|
||||||
} else {
|
|
||||||
if (key == null) {
|
|
||||||
key = new StringBuilder();
|
|
||||||
}
|
|
||||||
current = null;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case '\n':
|
|
||||||
if (escaped) {
|
|
||||||
append(c);
|
|
||||||
} else {
|
|
||||||
finishLine(map);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
append(c);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
escaped = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
finishLine(map);
|
|
||||||
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user