More formatting

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot 2011-01-03 15:35:30 +00:00
parent 346e41a6e5
commit 05b2a299c0
12 changed files with 2190 additions and 2184 deletions

View file

@ -1,147 +1,150 @@
/* /*
* $Id: ItemList.java,v 1.1 2006/04/15 14:10:48 platform Exp $ * $Id: ItemList.java,v 1.1 2006/04/15 14:10:48 platform Exp $
* Created on 2006-3-24 * Created on 2006-3-24
*/ */
package org.json.simple; package org.json.simple;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.StringTokenizer; import java.util.StringTokenizer;
/** /**
* |a:b:c| => |a|,|b|,|c| * |a:b:c| => |a|,|b|,|c|
* |:| => ||,|| * |:| => ||,||
* |a:| => |a|,|| * |a:| => |a|,||
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
*/ */
public class ItemList { public class ItemList {
private String sp=","; private String sp = ",";
List items=new ArrayList(); List items = new ArrayList();
public ItemList() {
public ItemList(){} }
public ItemList(String s) {
public ItemList(String s){ this.split(s, sp, items);
this.split(s,sp,items); }
}
public ItemList(String s, String sp) {
public ItemList(String s,String sp){ this.sp = s;
this.sp=s; this.split(s, sp, items);
this.split(s,sp,items); }
}
public ItemList(String s, String sp, boolean isMultiToken) {
public ItemList(String s,String sp,boolean isMultiToken){ split(s, sp, items, isMultiToken);
split(s,sp,items,isMultiToken); }
}
public List getItems() {
public List getItems(){ return this.items;
return this.items; }
}
public String[] getArray() {
public String[] getArray(){ return (String[]) this.items.toArray();
return (String[])this.items.toArray(); }
}
public void split(String s, String sp, List append, boolean isMultiToken) {
public void split(String s,String sp,List append,boolean isMultiToken){ if (s == null || sp == null) {
if(s==null || sp==null) return;
return; }
if(isMultiToken){ if (isMultiToken) {
StringTokenizer tokens=new StringTokenizer(s,sp); StringTokenizer tokens = new StringTokenizer(s, sp);
while(tokens.hasMoreTokens()){ while (tokens.hasMoreTokens()) {
append.add(tokens.nextToken().trim()); append.add(tokens.nextToken().trim());
} }
} } else {
else{ this.split(s, sp, append);
this.split(s,sp,append); }
} }
}
public void split(String s, String sp, List append) {
public void split(String s,String sp,List append){ if (s == null || sp == null) {
if(s==null || sp==null) return;
return; }
int pos=0; int pos = 0;
int prevPos=0; int prevPos = 0;
do{ do {
prevPos=pos; prevPos = pos;
pos=s.indexOf(sp,pos); pos = s.indexOf(sp, pos);
if(pos==-1) if (pos == -1) {
break; break;
append.add(s.substring(prevPos,pos).trim()); }
pos+=sp.length(); append.add(s.substring(prevPos, pos).trim());
}while(pos!=-1); pos += sp.length();
append.add(s.substring(prevPos).trim()); } while (pos != -1);
} append.add(s.substring(prevPos).trim());
}
public void setSP(String sp){
this.sp=sp; public void setSP(String sp) {
} this.sp = sp;
}
public void add(int i,String item){
if(item==null) public void add(int i, String item) {
return; if (item == null) {
items.add(i,item.trim()); return;
} }
items.add(i, item.trim());
public void add(String item){ }
if(item==null)
return; public void add(String item) {
items.add(item.trim()); if (item == null) {
} return;
}
public void addAll(ItemList list){ items.add(item.trim());
items.addAll(list.items); }
}
public void addAll(ItemList list) {
public void addAll(String s){ items.addAll(list.items);
this.split(s,sp,items); }
}
public void addAll(String s) {
public void addAll(String s,String sp){ this.split(s, sp, items);
this.split(s,sp,items); }
}
public void addAll(String s, String sp) {
public void addAll(String s,String sp,boolean isMultiToken){ this.split(s, sp, items);
this.split(s,sp,items,isMultiToken); }
}
public void addAll(String s, String sp, boolean isMultiToken) {
/** this.split(s, sp, items, isMultiToken);
* @param i 0-based }
* @return
*/ /**
public String get(int i){ * @param i 0-based
return (String)items.get(i); * @return
} */
public String get(int i) {
public int size(){ return (String) items.get(i);
return items.size(); }
}
public int size() {
public String toString(){ return items.size();
return toString(sp); }
}
public String toString() {
public String toString(String sp){ return toString(sp);
StringBuffer sb=new StringBuffer(); }
for(int i=0;i<items.size();i++){ public String toString(String sp) {
if(i==0) StringBuffer sb = new StringBuffer();
sb.append(items.get(i));
else{ for (int i = 0; i < items.size(); i++) {
sb.append(sp); if (i == 0) {
sb.append(items.get(i)); sb.append(items.get(i));
} } else {
} sb.append(sp);
return sb.toString(); sb.append(items.get(i));
}
} }
return sb.toString();
public void clear(){
items.clear(); }
}
public void clear() {
public void reset(){ items.clear();
sp=","; }
items.clear();
} public void reset() {
} sp = ",";
items.clear();
}
}

View file

@ -1,107 +1,106 @@
/* /*
* $Id: JSONArray.java,v 1.1 2006/04/15 14:10:48 platform Exp $ * $Id: JSONArray.java,v 1.1 2006/04/15 14:10:48 platform Exp $
* Created on 2006-4-10 * Created on 2006-4-10
*/ */
package org.json.simple; package org.json.simple;
import java.io.IOException; import java.io.IOException;
import java.io.Writer; import java.io.Writer;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
/**
/** * A JSON array. JSONObject supports java.util.List interface.
* A JSON array. JSONObject supports java.util.List interface. *
* * @author FangYidong<fangyidong@yahoo.com.cn>
* @author FangYidong<fangyidong@yahoo.com.cn> */
*/ public class JSONArray extends ArrayList implements List, JSONAware, JSONStreamAware {
public class JSONArray extends ArrayList implements List, JSONAware, JSONStreamAware { private static final long serialVersionUID = 3957988303675231981L;
private static final long serialVersionUID = 3957988303675231981L;
/**
/** * Encode a list into JSON text and write it to out.
* Encode a list into JSON text and write it to out. * If this list is also a JSONStreamAware or a JSONAware, JSONStreamAware and JSONAware specific behaviours will be ignored at this top level.
* If this list is also a JSONStreamAware or a JSONAware, JSONStreamAware and JSONAware specific behaviours will be ignored at this top level. *
* * @see org.json.simple.JSONValue#writeJSONString(Object, Writer)
* @see org.json.simple.JSONValue#writeJSONString(Object, Writer) *
* * @param list
* @param list * @param out
* @param out */
*/ public static void writeJSONString(List list, Writer out) throws IOException {
public static void writeJSONString(List list, Writer out) throws IOException{ if (list == null) {
if(list == null){ out.write("null");
out.write("null"); return;
return; }
}
boolean first = true;
boolean first = true; Iterator iter = list.iterator();
Iterator iter=list.iterator();
out.write('[');
out.write('['); while (iter.hasNext()) {
while(iter.hasNext()){ if (first) {
if(first) first = false;
first = false; } else {
else out.write(',');
out.write(','); }
Object value=iter.next(); Object value = iter.next();
if(value == null){ if (value == null) {
out.write("null"); out.write("null");
continue; continue;
} }
JSONValue.writeJSONString(value, out); JSONValue.writeJSONString(value, out);
} }
out.write(']'); out.write(']');
} }
public void writeJSONString(Writer out) throws IOException{ public void writeJSONString(Writer out) throws IOException {
writeJSONString(this, out); writeJSONString(this, out);
} }
/** /**
* Convert a list to JSON text. The result is a JSON array. * Convert a list to JSON text. The result is a JSON array.
* If this list is also a JSONAware, JSONAware specific behaviours will be omitted at this top level. * If this list is also a JSONAware, JSONAware specific behaviours will be omitted at this top level.
* *
* @see org.json.simple.JSONValue#toJSONString(Object) * @see org.json.simple.JSONValue#toJSONString(Object)
* *
* @param list * @param list
* @return JSON text, or "null" if list is null. * @return JSON text, or "null" if list is null.
*/ */
public static String toJSONString(List list){ public static String toJSONString(List list) {
if(list == null) if (list == null) {
return "null"; return "null";
}
boolean first = true;
StringBuffer sb = new StringBuffer(); boolean first = true;
Iterator iter=list.iterator(); StringBuffer sb = new StringBuffer();
Iterator iter = list.iterator();
sb.append('[');
while(iter.hasNext()){ sb.append('[');
if(first) while (iter.hasNext()) {
first = false; if (first) {
else first = false;
sb.append(','); } else {
sb.append(',');
Object value=iter.next(); }
if(value == null){
sb.append("null"); Object value = iter.next();
continue; if (value == null) {
} sb.append("null");
sb.append(JSONValue.toJSONString(value)); continue;
} }
sb.append(']'); sb.append(JSONValue.toJSONString(value));
return sb.toString(); }
} sb.append(']');
return sb.toString();
public String toJSONString(){ }
return toJSONString(this);
} public String toJSONString() {
return toJSONString(this);
public String toString() { }
return toJSONString();
} public String toString() {
return toJSONString();
}
}
}

View file

@ -1,12 +1,12 @@
package org.json.simple; package org.json.simple;
/** /**
* Beans that support customized output of JSON text shall implement this interface. * Beans that support customized output of JSON text shall implement this interface.
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
*/ */
public interface JSONAware { public interface JSONAware {
/** /**
* @return JSON text * @return JSON text
*/ */
String toJSONString(); String toJSONString();
} }

View file

@ -1,129 +1,133 @@
/* /*
* $Id: JSONObject.java,v 1.1 2006/04/15 14:10:48 platform Exp $ * $Id: JSONObject.java,v 1.1 2006/04/15 14:10:48 platform Exp $
* Created on 2006-4-10 * Created on 2006-4-10
*/ */
package org.json.simple; package org.json.simple;
import java.io.IOException; import java.io.IOException;
import java.io.Writer; import java.io.Writer;
import java.util.HashMap; import java.util.HashMap;
import java.util.Iterator; import java.util.Iterator;
import java.util.Map; import java.util.Map;
/** /**
* A JSON object. Key value pairs are unordered. JSONObject supports java.util.Map interface. * A JSON object. Key value pairs are unordered. JSONObject supports java.util.Map interface.
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
*/ */
public class JSONObject extends HashMap implements Map, JSONAware, JSONStreamAware{ public class JSONObject extends HashMap implements Map, JSONAware, JSONStreamAware {
private static final long serialVersionUID = -503443796854799292L; private static final long serialVersionUID = -503443796854799292L;
/** /**
* Encode a map into JSON text and write it to out. * Encode a map into JSON text and write it to out.
* If this map is also a JSONAware or JSONStreamAware, JSONAware or JSONStreamAware specific behaviours will be ignored at this top level. * If this map is also a JSONAware or JSONStreamAware, JSONAware or JSONStreamAware specific behaviours will be ignored at this top level.
* *
* @see org.json.simple.JSONValue#writeJSONString(Object, Writer) * @see org.json.simple.JSONValue#writeJSONString(Object, Writer)
* *
* @param map * @param map
* @param out * @param out
*/ */
public static void writeJSONString(Map map, Writer out) throws IOException { public static void writeJSONString(Map map, Writer out) throws IOException {
if(map == null){ if (map == null) {
out.write("null"); out.write("null");
return; return;
} }
boolean first = true; boolean first = true;
Iterator iter=map.entrySet().iterator(); Iterator iter = map.entrySet().iterator();
out.write('{'); out.write('{');
while(iter.hasNext()){ while (iter.hasNext()) {
if(first) if (first) {
first = false; first = false;
else } else {
out.write(','); out.write(',');
Map.Entry entry=(Map.Entry)iter.next(); }
out.write('\"'); Map.Entry entry = (Map.Entry) iter.next();
out.write(escape(String.valueOf(entry.getKey()))); out.write('\"');
out.write('\"'); out.write(escape(String.valueOf(entry.getKey())));
out.write(':'); out.write('\"');
JSONValue.writeJSONString(entry.getValue(), out); out.write(':');
} JSONValue.writeJSONString(entry.getValue(), out);
out.write('}'); }
} out.write('}');
}
public void writeJSONString(Writer out) throws IOException{
writeJSONString(this, out); public void writeJSONString(Writer out) throws IOException {
} writeJSONString(this, out);
}
/**
* Convert a map to JSON text. The result is a JSON object. /**
* If this map is also a JSONAware, JSONAware specific behaviours will be omitted at this top level. * Convert a map to JSON text. The result is a JSON object.
* * If this map is also a JSONAware, JSONAware specific behaviours will be omitted at this top level.
* @see org.json.simple.JSONValue#toJSONString(Object) *
* * @see org.json.simple.JSONValue#toJSONString(Object)
* @param map *
* @return JSON text, or "null" if map is null. * @param map
*/ * @return JSON text, or "null" if map is null.
public static String toJSONString(Map map){ */
if(map == null) public static String toJSONString(Map map) {
return "null"; if (map == null) {
return "null";
StringBuffer sb = new StringBuffer(); }
boolean first = true;
Iterator iter=map.entrySet().iterator(); StringBuffer sb = new StringBuffer();
boolean first = true;
sb.append('{'); Iterator iter = map.entrySet().iterator();
while(iter.hasNext()){
if(first) sb.append('{');
first = false; while (iter.hasNext()) {
else if (first) {
sb.append(','); first = false;
} else {
Map.Entry entry=(Map.Entry)iter.next(); sb.append(',');
toJSONString(String.valueOf(entry.getKey()),entry.getValue(), sb); }
}
sb.append('}'); Map.Entry entry = (Map.Entry) iter.next();
return sb.toString(); toJSONString(String.valueOf(entry.getKey()), entry.getValue(), sb);
} }
sb.append('}');
public String toJSONString(){ return sb.toString();
return toJSONString(this); }
}
public String toJSONString() {
private static String toJSONString(String key,Object value, StringBuffer sb){ return toJSONString(this);
sb.append('\"'); }
if(key == null)
sb.append("null"); private static String toJSONString(String key, Object value, StringBuffer sb) {
else sb.append('\"');
JSONValue.escape(key, sb); if (key == null) {
sb.append('\"').append(':'); sb.append("null");
} else {
sb.append(JSONValue.toJSONString(value)); JSONValue.escape(key, sb);
}
return sb.toString(); sb.append('\"').append(':');
}
sb.append(JSONValue.toJSONString(value));
public String toString(){
return toJSONString(); return sb.toString();
} }
public static String toString(String key,Object value){ public String toString() {
StringBuffer sb = new StringBuffer(); return toJSONString();
toJSONString(key, value, sb); }
return sb.toString();
} public static String toString(String key, Object value) {
StringBuffer sb = new StringBuffer();
/** toJSONString(key, value, sb);
* Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F). return sb.toString();
* It's the same as JSONValue.escape() only for compatibility here. }
*
* @see org.json.simple.JSONValue#escape(String) /**
* * Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).
* @param s * It's the same as JSONValue.escape() only for compatibility here.
* @return *
*/ * @see org.json.simple.JSONValue#escape(String)
public static String escape(String s){ *
return JSONValue.escape(s); * @param s
} * @return
} */
public static String escape(String s) {
return JSONValue.escape(s);
}
}

View file

@ -1,15 +1,15 @@
package org.json.simple; package org.json.simple;
import java.io.IOException; import java.io.IOException;
import java.io.Writer; import java.io.Writer;
/** /**
* Beans that support customized output of JSON text to a writer shall implement this interface. * Beans that support customized output of JSON text to a writer shall implement this interface.
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
*/ */
public interface JSONStreamAware { public interface JSONStreamAware {
/** /**
* write JSON string to out. * write JSON string to out.
*/ */
void writeJSONString(Writer out) throws IOException; void writeJSONString(Writer out) throws IOException;
} }

View file

@ -1,272 +1,280 @@
/* /*
* $Id: JSONValue.java,v 1.1 2006/04/15 14:37:04 platform Exp $ * $Id: JSONValue.java,v 1.1 2006/04/15 14:37:04 platform Exp $
* Created on 2006-4-15 * Created on 2006-4-15
*/ */
package org.json.simple; package org.json.simple;
import java.io.IOException; import java.io.IOException;
import java.io.Reader; import java.io.Reader;
import java.io.StringReader; import java.io.StringReader;
import java.io.Writer; import java.io.Writer;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import org.json.simple.parser.JSONParser; import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException; import org.json.simple.parser.ParseException;
/**
/** * @author FangYidong<fangyidong@yahoo.com.cn>
* @author FangYidong<fangyidong@yahoo.com.cn> */
*/ public class JSONValue {
public class JSONValue { /**
/** * Parse JSON text into java object from the input source.
* Parse JSON text into java object from the input source. * Please use parseWithException() if you don't want to ignore the exception.
* Please use parseWithException() if you don't want to ignore the exception. *
* * @see org.json.simple.parser.JSONParser#parse(Reader)
* @see org.json.simple.parser.JSONParser#parse(Reader) * @see #parseWithException(Reader)
* @see #parseWithException(Reader) *
* * @param in
* @param in * @return Instance of the following:
* @return Instance of the following: * org.json.simple.JSONObject,
* org.json.simple.JSONObject, * org.json.simple.JSONArray,
* org.json.simple.JSONArray, * java.lang.String,
* java.lang.String, * java.lang.Number,
* java.lang.Number, * java.lang.Boolean,
* java.lang.Boolean, * null
* null *
* */
*/ public static Object parse(Reader in) {
public static Object parse(Reader in){ try {
try{ JSONParser parser = new JSONParser();
JSONParser parser=new JSONParser(); return parser.parse(in);
return parser.parse(in); } catch (Exception e) {
} return null;
catch(Exception e){ }
return null; }
}
} public static Object parse(String s) {
StringReader in = new StringReader(s);
public static Object parse(String s){ return parse(in);
StringReader in=new StringReader(s); }
return parse(in);
} /**
* Parse JSON text into java object from the input source.
/** *
* Parse JSON text into java object from the input source. * @see org.json.simple.parser.JSONParser
* *
* @see org.json.simple.parser.JSONParser * @param in
* * @return Instance of the following:
* @param in * org.json.simple.JSONObject,
* @return Instance of the following: * org.json.simple.JSONArray,
* org.json.simple.JSONObject, * java.lang.String,
* org.json.simple.JSONArray, * java.lang.Number,
* java.lang.String, * java.lang.Boolean,
* java.lang.Number, * null
* java.lang.Boolean, *
* null * @throws IOException
* * @throws ParseException
* @throws IOException */
* @throws ParseException public static Object parseWithException(Reader in) throws IOException, ParseException {
*/ JSONParser parser = new JSONParser();
public static Object parseWithException(Reader in) throws IOException, ParseException{ return parser.parse(in);
JSONParser parser=new JSONParser(); }
return parser.parse(in);
} public static Object parseWithException(String s) throws ParseException {
JSONParser parser = new JSONParser();
public static Object parseWithException(String s) throws ParseException{ return parser.parse(s);
JSONParser parser=new JSONParser(); }
return parser.parse(s);
} /**
* Encode an object into JSON text and write it to out.
/** * <p>
* Encode an object into JSON text and write it to out. * If this object is a Map or a List, and it's also a JSONStreamAware or a JSONAware, JSONStreamAware or JSONAware will be considered firstly.
* <p> * <p>
* If this object is a Map or a List, and it's also a JSONStreamAware or a JSONAware, JSONStreamAware or JSONAware will be considered firstly. * DO NOT call this method from writeJSONString(Writer) of a class that implements both JSONStreamAware and (Map or List) with
* <p> * "this" as the first parameter, use JSONObject.writeJSONString(Map, Writer) or JSONArray.writeJSONString(List, Writer) instead.
* DO NOT call this method from writeJSONString(Writer) of a class that implements both JSONStreamAware and (Map or List) with *
* "this" as the first parameter, use JSONObject.writeJSONString(Map, Writer) or JSONArray.writeJSONString(List, Writer) instead. * @see org.json.simple.JSONObject#writeJSONString(Map, Writer)
* * @see org.json.simple.JSONArray#writeJSONString(List, Writer)
* @see org.json.simple.JSONObject#writeJSONString(Map, Writer) *
* @see org.json.simple.JSONArray#writeJSONString(List, Writer) * @param value
* * @param writer
* @param value */
* @param writer public static void writeJSONString(Object value, Writer out) throws IOException {
*/ if (value == null) {
public static void writeJSONString(Object value, Writer out) throws IOException { out.write("null");
if(value == null){ return;
out.write("null"); }
return;
} if (value instanceof String) {
out.write('\"');
if(value instanceof String){ out.write(escape((String) value));
out.write('\"'); out.write('\"');
out.write(escape((String)value)); return;
out.write('\"'); }
return;
} if (value instanceof Double) {
if (((Double) value).isInfinite() || ((Double) value).isNaN()) {
if(value instanceof Double){ out.write("null");
if(((Double)value).isInfinite() || ((Double)value).isNaN()) } else {
out.write("null"); out.write(value.toString());
else }
out.write(value.toString()); return;
return; }
}
if (value instanceof Float) {
if(value instanceof Float){ if (((Float) value).isInfinite() || ((Float) value).isNaN()) {
if(((Float)value).isInfinite() || ((Float)value).isNaN()) out.write("null");
out.write("null"); } else {
else out.write(value.toString());
out.write(value.toString()); }
return; return;
} }
if(value instanceof Number){ if (value instanceof Number) {
out.write(value.toString()); out.write(value.toString());
return; return;
} }
if(value instanceof Boolean){ if (value instanceof Boolean) {
out.write(value.toString()); out.write(value.toString());
return; return;
} }
if((value instanceof JSONStreamAware)){ if ((value instanceof JSONStreamAware)) {
((JSONStreamAware)value).writeJSONString(out); ((JSONStreamAware) value).writeJSONString(out);
return; return;
} }
if((value instanceof JSONAware)){ if ((value instanceof JSONAware)) {
out.write(((JSONAware)value).toJSONString()); out.write(((JSONAware) value).toJSONString());
return; return;
} }
if(value instanceof Map){ if (value instanceof Map) {
JSONObject.writeJSONString((Map)value, out); JSONObject.writeJSONString((Map) value, out);
return; return;
} }
if(value instanceof List){ if (value instanceof List) {
JSONArray.writeJSONString((List)value, out); JSONArray.writeJSONString((List) value, out);
return; return;
} }
out.write(value.toString()); out.write(value.toString());
} }
/** /**
* Convert an object to JSON text. * Convert an object to JSON text.
* <p> * <p>
* If this object is a Map or a List, and it's also a JSONAware, JSONAware will be considered firstly. * If this object is a Map or a List, and it's also a JSONAware, JSONAware will be considered firstly.
* <p> * <p>
* DO NOT call this method from toJSONString() of a class that implements both JSONAware and Map or List with * DO NOT call this method from toJSONString() of a class that implements both JSONAware and Map or List with
* "this" as the parameter, use JSONObject.toJSONString(Map) or JSONArray.toJSONString(List) instead. * "this" as the parameter, use JSONObject.toJSONString(Map) or JSONArray.toJSONString(List) instead.
* *
* @see org.json.simple.JSONObject#toJSONString(Map) * @see org.json.simple.JSONObject#toJSONString(Map)
* @see org.json.simple.JSONArray#toJSONString(List) * @see org.json.simple.JSONArray#toJSONString(List)
* *
* @param value * @param value
* @return JSON text, or "null" if value is null or it's an NaN or an INF number. * @return JSON text, or "null" if value is null or it's an NaN or an INF number.
*/ */
public static String toJSONString(Object value){ public static String toJSONString(Object value) {
if(value == null) if (value == null) {
return "null"; return "null";
}
if(value instanceof String)
return "\""+escape((String)value)+"\""; if (value instanceof String) {
return "\"" + escape((String) value) + "\"";
if(value instanceof Double){ }
if(((Double)value).isInfinite() || ((Double)value).isNaN())
return "null"; if (value instanceof Double) {
else if (((Double) value).isInfinite() || ((Double) value).isNaN()) {
return value.toString(); return "null";
} } else {
return value.toString();
if(value instanceof Float){ }
if(((Float)value).isInfinite() || ((Float)value).isNaN()) }
return "null";
else if (value instanceof Float) {
return value.toString(); if (((Float) value).isInfinite() || ((Float) value).isNaN()) {
} return "null";
} else {
if(value instanceof Number) return value.toString();
return value.toString(); }
}
if(value instanceof Boolean)
return value.toString(); if (value instanceof Number) {
return value.toString();
if((value instanceof JSONAware)) }
return ((JSONAware)value).toJSONString();
if (value instanceof Boolean) {
if(value instanceof Map) return value.toString();
return JSONObject.toJSONString((Map)value); }
if(value instanceof List) if ((value instanceof JSONAware)) {
return JSONArray.toJSONString((List)value); return ((JSONAware) value).toJSONString();
}
return value.toString();
} if (value instanceof Map) {
return JSONObject.toJSONString((Map) value);
/** }
* Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).
* @param s if (value instanceof List) {
* @return return JSONArray.toJSONString((List) value);
*/ }
public static String escape(String s){
if(s==null) return value.toString();
return null; }
StringBuffer sb = new StringBuffer();
escape(s, sb); /**
return sb.toString(); * Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).
} * @param s
* @return
/** */
* @param s - Must not be null. public static String escape(String s) {
* @param sb if (s == null) {
*/ return null;
static void escape(String s, StringBuffer sb) { }
for(int i=0;i<s.length();i++){ StringBuffer sb = new StringBuffer();
char ch=s.charAt(i); escape(s, sb);
switch(ch){ return sb.toString();
case '"': }
sb.append("\\\"");
break; /**
case '\\': * @param s - Must not be null.
sb.append("\\\\"); * @param sb
break; */
case '\b': static void escape(String s, StringBuffer sb) {
sb.append("\\b"); for (int i = 0; i < s.length(); i++) {
break; char ch = s.charAt(i);
case '\f': switch (ch) {
sb.append("\\f"); case '"':
break; sb.append("\\\"");
case '\n': break;
sb.append("\\n"); case '\\':
break; sb.append("\\\\");
case '\r': break;
sb.append("\\r"); case '\b':
break; sb.append("\\b");
case '\t': break;
sb.append("\\t"); case '\f':
break; sb.append("\\f");
case '/': break;
sb.append("\\/"); case '\n':
break; sb.append("\\n");
default: break;
//Reference: http://www.unicode.org/versions/Unicode5.1.0/ case '\r':
if((ch>='\u0000' && ch<='\u001F') || (ch>='\u007F' && ch<='\u009F') || (ch>='\u2000' && ch<='\u20FF')){ sb.append("\\r");
String ss=Integer.toHexString(ch); break;
sb.append("\\u"); case '\t':
for(int k=0;k<4-ss.length();k++){ sb.append("\\t");
sb.append('0'); break;
} case '/':
sb.append(ss.toUpperCase()); sb.append("\\/");
} break;
else{ default:
sb.append(ch); //Reference: http://www.unicode.org/versions/Unicode5.1.0/
} if ((ch >= '\u0000' && ch <= '\u001F') || (ch >= '\u007F' && ch <= '\u009F') || (ch >= '\u2000' && ch <= '\u20FF')) {
} String ss = Integer.toHexString(ch);
}//for sb.append("\\u");
} for (int k = 0; k < 4 - ss.length(); k++) {
sb.append('0');
} }
sb.append(ss.toUpperCase());
} else {
sb.append(ch);
}
}
}//for
}
}

View file

@ -1,23 +1,23 @@
package org.json.simple.parser; package org.json.simple.parser;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
/** /**
* Container factory for creating containers for JSON object and JSON array. * Container factory for creating containers for JSON object and JSON array.
* *
* @see org.json.simple.parser.JSONParser#parse(java.io.Reader, ContainerFactory) * @see org.json.simple.parser.JSONParser#parse(java.io.Reader, ContainerFactory)
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
*/ */
public interface ContainerFactory { public interface ContainerFactory {
/** /**
* @return A Map instance to store JSON object, or null if you want to use org.json.simple.JSONObject. * @return A Map instance to store JSON object, or null if you want to use org.json.simple.JSONObject.
*/ */
Map createObjectContainer(); Map createObjectContainer();
/** /**
* @return A List instance to store JSON array, or null if you want to use org.json.simple.JSONArray. * @return A List instance to store JSON array, or null if you want to use org.json.simple.JSONArray.
*/ */
List creatArrayContainer(); List creatArrayContainer();
} }

View file

@ -1,110 +1,109 @@
package org.json.simple.parser; package org.json.simple.parser;
import java.io.IOException; import java.io.IOException;
/** /**
* A simplified and stoppable SAX-like content handler for stream processing of JSON text. * A simplified and stoppable SAX-like content handler for stream processing of JSON text.
* *
* @see org.xml.sax.ContentHandler * @see org.xml.sax.ContentHandler
* @see org.json.simple.parser.JSONParser#parse(java.io.Reader, ContentHandler, boolean) * @see org.json.simple.parser.JSONParser#parse(java.io.Reader, ContentHandler, boolean)
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
*/ */
public interface ContentHandler { public interface ContentHandler {
/** /**
* Receive notification of the beginning of JSON processing. * Receive notification of the beginning of JSON processing.
* The parser will invoke this method only once. * The parser will invoke this method only once.
* *
* @throws ParseException * @throws ParseException
* - JSONParser will stop and throw the same exception to the caller when receiving this exception. * - JSONParser will stop and throw the same exception to the caller when receiving this exception.
*/ */
void startJSON() throws ParseException, IOException; void startJSON() throws ParseException, IOException;
/** /**
* Receive notification of the end of JSON processing. * Receive notification of the end of JSON processing.
* *
* @throws ParseException * @throws ParseException
*/ */
void endJSON() throws ParseException, IOException; void endJSON() throws ParseException, IOException;
/** /**
* Receive notification of the beginning of a JSON object. * Receive notification of the beginning of a JSON object.
* *
* @return false if the handler wants to stop parsing after return. * @return false if the handler wants to stop parsing after return.
* @throws ParseException * @throws ParseException
* - JSONParser will stop and throw the same exception to the caller when receiving this exception. * - JSONParser will stop and throw the same exception to the caller when receiving this exception.
* @see #endJSON * @see #endJSON
*/ */
boolean startObject() throws ParseException, IOException; boolean startObject() throws ParseException, IOException;
/** /**
* Receive notification of the end of a JSON object. * Receive notification of the end of a JSON object.
* *
* @return false if the handler wants to stop parsing after return. * @return false if the handler wants to stop parsing after return.
* @throws ParseException * @throws ParseException
* *
* @see #startObject * @see #startObject
*/ */
boolean endObject() throws ParseException, IOException; boolean endObject() throws ParseException, IOException;
/** /**
* Receive notification of the beginning of a JSON object entry. * Receive notification of the beginning of a JSON object entry.
* *
* @param key - Key of a JSON object entry. * @param key - Key of a JSON object entry.
* *
* @return false if the handler wants to stop parsing after return. * @return false if the handler wants to stop parsing after return.
* @throws ParseException * @throws ParseException
* *
* @see #endObjectEntry * @see #endObjectEntry
*/ */
boolean startObjectEntry(String key) throws ParseException, IOException; boolean startObjectEntry(String key) throws ParseException, IOException;
/** /**
* Receive notification of the end of the value of previous object entry. * Receive notification of the end of the value of previous object entry.
* *
* @return false if the handler wants to stop parsing after return. * @return false if the handler wants to stop parsing after return.
* @throws ParseException * @throws ParseException
* *
* @see #startObjectEntry * @see #startObjectEntry
*/ */
boolean endObjectEntry() throws ParseException, IOException; boolean endObjectEntry() throws ParseException, IOException;
/** /**
* Receive notification of the beginning of a JSON array. * Receive notification of the beginning of a JSON array.
* *
* @return false if the handler wants to stop parsing after return. * @return false if the handler wants to stop parsing after return.
* @throws ParseException * @throws ParseException
* *
* @see #endArray * @see #endArray
*/ */
boolean startArray() throws ParseException, IOException; boolean startArray() throws ParseException, IOException;
/** /**
* Receive notification of the end of a JSON array. * Receive notification of the end of a JSON array.
* *
* @return false if the handler wants to stop parsing after return. * @return false if the handler wants to stop parsing after return.
* @throws ParseException * @throws ParseException
* *
* @see #startArray * @see #startArray
*/ */
boolean endArray() throws ParseException, IOException; boolean endArray() throws ParseException, IOException;
/** /**
* Receive notification of the JSON primitive values: * Receive notification of the JSON primitive values:
* java.lang.String, * java.lang.String,
* java.lang.Number, * java.lang.Number,
* java.lang.Boolean * java.lang.Boolean
* null * null
* *
* @param value - Instance of the following: * @param value - Instance of the following:
* java.lang.String, * java.lang.String,
* java.lang.Number, * java.lang.Number,
* java.lang.Boolean * java.lang.Boolean
* null * null
* *
* @return false if the handler wants to stop parsing after return. * @return false if the handler wants to stop parsing after return.
* @throws ParseException * @throws ParseException
*/ */
boolean primitive(Object value) throws ParseException, IOException; boolean primitive(Object value) throws ParseException, IOException;
}
}

File diff suppressed because it is too large Load diff

View file

@ -1,90 +1,88 @@
package org.json.simple.parser; package org.json.simple.parser;
/** /**
* ParseException explains why and where the error occurs in source JSON text. * ParseException explains why and where the error occurs in source JSON text.
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
* *
*/ */
public class ParseException extends Exception { public class ParseException extends Exception {
private static final long serialVersionUID = -7880698968187728548L; private static final long serialVersionUID = -7880698968187728548L;
public static final int ERROR_UNEXPECTED_CHAR = 0;
public static final int ERROR_UNEXPECTED_CHAR = 0; public static final int ERROR_UNEXPECTED_TOKEN = 1;
public static final int ERROR_UNEXPECTED_TOKEN = 1; public static final int ERROR_UNEXPECTED_EXCEPTION = 2;
public static final int ERROR_UNEXPECTED_EXCEPTION = 2; private int errorType;
private Object unexpectedObject;
private int errorType; private int position;
private Object unexpectedObject;
private int position; public ParseException(int errorType) {
this(-1, errorType, null);
public ParseException(int errorType){ }
this(-1, errorType, null);
} public ParseException(int errorType, Object unexpectedObject) {
this(-1, errorType, unexpectedObject);
public ParseException(int errorType, Object unexpectedObject){ }
this(-1, errorType, unexpectedObject);
} public ParseException(int position, int errorType, Object unexpectedObject) {
this.position = position;
public ParseException(int position, int errorType, Object unexpectedObject){ this.errorType = errorType;
this.position = position; this.unexpectedObject = unexpectedObject;
this.errorType = errorType; }
this.unexpectedObject = unexpectedObject;
} public int getErrorType() {
return errorType;
public int getErrorType() { }
return errorType;
} public void setErrorType(int errorType) {
this.errorType = errorType;
public void setErrorType(int errorType) { }
this.errorType = errorType;
} /**
* @see org.json.simple.parser.JSONParser#getPosition()
/** *
* @see org.json.simple.parser.JSONParser#getPosition() * @return The character position (starting with 0) of the input where the error occurs.
* */
* @return The character position (starting with 0) of the input where the error occurs. public int getPosition() {
*/ return position;
public int getPosition() { }
return position;
} public void setPosition(int position) {
this.position = position;
public void setPosition(int position) { }
this.position = position;
} /**
* @see org.json.simple.parser.Yytoken
/** *
* @see org.json.simple.parser.Yytoken * @return One of the following base on the value of errorType:
* * ERROR_UNEXPECTED_CHAR java.lang.Character
* @return One of the following base on the value of errorType: * ERROR_UNEXPECTED_TOKEN org.json.simple.parser.Yytoken
* ERROR_UNEXPECTED_CHAR java.lang.Character * ERROR_UNEXPECTED_EXCEPTION java.lang.Exception
* ERROR_UNEXPECTED_TOKEN org.json.simple.parser.Yytoken */
* ERROR_UNEXPECTED_EXCEPTION java.lang.Exception public Object getUnexpectedObject() {
*/ return unexpectedObject;
public Object getUnexpectedObject() { }
return unexpectedObject;
} public void setUnexpectedObject(Object unexpectedObject) {
this.unexpectedObject = unexpectedObject;
public void setUnexpectedObject(Object unexpectedObject) { }
this.unexpectedObject = unexpectedObject;
} public String toString() {
StringBuffer sb = new StringBuffer();
public String toString(){
StringBuffer sb = new StringBuffer(); switch (errorType) {
case ERROR_UNEXPECTED_CHAR:
switch(errorType){ sb.append("Unexpected character (").append(unexpectedObject).append(") at position ").append(position).append(".");
case ERROR_UNEXPECTED_CHAR: break;
sb.append("Unexpected character (").append(unexpectedObject).append(") at position ").append(position).append("."); case ERROR_UNEXPECTED_TOKEN:
break; sb.append("Unexpected token ").append(unexpectedObject).append(" at position ").append(position).append(".");
case ERROR_UNEXPECTED_TOKEN: break;
sb.append("Unexpected token ").append(unexpectedObject).append(" at position ").append(position).append("."); case ERROR_UNEXPECTED_EXCEPTION:
break; sb.append("Unexpected exception at position ").append(position).append(": ").append(unexpectedObject);
case ERROR_UNEXPECTED_EXCEPTION: break;
sb.append("Unexpected exception at position ").append(position).append(": ").append(unexpectedObject); default:
break; sb.append("Unkown error at position ").append(position).append(".");
default: break;
sb.append("Unkown error at position ").append(position).append("."); }
break; return sb.toString();
} }
return sb.toString(); }
}
}

File diff suppressed because it is too large Load diff

View file

@ -1,58 +1,57 @@
/* /*
* $Id: Yytoken.java,v 1.1 2006/04/15 14:10:48 platform Exp $ * $Id: Yytoken.java,v 1.1 2006/04/15 14:10:48 platform Exp $
* Created on 2006-4-15 * Created on 2006-4-15
*/ */
package org.json.simple.parser; package org.json.simple.parser;
/** /**
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
*/ */
public class Yytoken { public class Yytoken {
public static final int TYPE_VALUE=0;//JSON primitive value: string,number,boolean,null public static final int TYPE_VALUE = 0;//JSON primitive value: string,number,boolean,null
public static final int TYPE_LEFT_BRACE=1; public static final int TYPE_LEFT_BRACE = 1;
public static final int TYPE_RIGHT_BRACE=2; public static final int TYPE_RIGHT_BRACE = 2;
public static final int TYPE_LEFT_SQUARE=3; public static final int TYPE_LEFT_SQUARE = 3;
public static final int TYPE_RIGHT_SQUARE=4; public static final int TYPE_RIGHT_SQUARE = 4;
public static final int TYPE_COMMA=5; public static final int TYPE_COMMA = 5;
public static final int TYPE_COLON=6; public static final int TYPE_COLON = 6;
public static final int TYPE_EOF=-1;//end of file public static final int TYPE_EOF = -1;//end of file
public int type = 0;
public int type=0; public Object value = null;
public Object value=null;
public Yytoken(int type, Object value) {
public Yytoken(int type,Object value){ this.type = type;
this.type=type; this.value = value;
this.value=value; }
}
public String toString() {
public String toString(){ StringBuffer sb = new StringBuffer();
StringBuffer sb = new StringBuffer(); switch (type) {
switch(type){ case TYPE_VALUE:
case TYPE_VALUE: sb.append("VALUE(").append(value).append(")");
sb.append("VALUE(").append(value).append(")"); break;
break; case TYPE_LEFT_BRACE:
case TYPE_LEFT_BRACE: sb.append("LEFT BRACE({)");
sb.append("LEFT BRACE({)"); break;
break; case TYPE_RIGHT_BRACE:
case TYPE_RIGHT_BRACE: sb.append("RIGHT BRACE(})");
sb.append("RIGHT BRACE(})"); break;
break; case TYPE_LEFT_SQUARE:
case TYPE_LEFT_SQUARE: sb.append("LEFT SQUARE([)");
sb.append("LEFT SQUARE([)"); break;
break; case TYPE_RIGHT_SQUARE:
case TYPE_RIGHT_SQUARE: sb.append("RIGHT SQUARE(])");
sb.append("RIGHT SQUARE(])"); break;
break; case TYPE_COMMA:
case TYPE_COMMA: sb.append("COMMA(,)");
sb.append("COMMA(,)"); break;
break; case TYPE_COLON:
case TYPE_COLON: sb.append("COLON(:)");
sb.append("COLON(:)"); break;
break; case TYPE_EOF:
case TYPE_EOF: sb.append("END OF FILE");
sb.append("END OF FILE"); break;
break; }
} return sb.toString();
return sb.toString(); }
} }
}