[json-simple]convert line endings to \n

This commit is contained in:
yushijinhun 2018-04-14 23:32:22 +08:00
parent d146d09ecf
commit 1ed74901b8
No known key found for this signature in database
GPG key ID: 5BC167F73EA558E4
12 changed files with 2503 additions and 2503 deletions

View file

@ -1,147 +1,147 @@
/* /*
* $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.to2mbn.authlibinjector.internal.org.json.simple; package org.to2mbn.authlibinjector.internal.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()); append.add(s.substring(prevPos,pos).trim());
pos+=sp.length(); pos+=sp.length();
}while(pos!=-1); }while(pos!=-1);
append.add(s.substring(prevPos).trim()); append.add(s.substring(prevPos).trim());
} }
public void setSP(String sp){ public void setSP(String sp){
this.sp=sp; this.sp=sp;
} }
public void add(int i,String item){ public void add(int i,String item){
if(item==null) if(item==null)
return; return;
items.add(i,item.trim()); items.add(i,item.trim());
} }
public void add(String item){ public void add(String item){
if(item==null) if(item==null)
return; return;
items.add(item.trim()); items.add(item.trim());
} }
public void addAll(ItemList list){ public void addAll(ItemList list){
items.addAll(list.items); items.addAll(list.items);
} }
public void addAll(String s){ public void addAll(String s){
this.split(s,sp,items); this.split(s,sp,items);
} }
public void addAll(String s,String sp){ public void addAll(String s,String sp){
this.split(s,sp,items); this.split(s,sp,items);
} }
public void addAll(String s,String sp,boolean isMultiToken){ public void addAll(String s,String sp,boolean isMultiToken){
this.split(s,sp,items,isMultiToken); this.split(s,sp,items,isMultiToken);
} }
/** /**
* @param i 0-based * @param i 0-based
* @return * @return
*/ */
public String get(int i){ public String get(int i){
return (String)items.get(i); return (String)items.get(i);
} }
public int size(){ public int size(){
return items.size(); return items.size();
} }
public String toString(){ public String toString(){
return toString(sp); return toString(sp);
} }
public String toString(String sp){ public String toString(String sp){
StringBuffer sb=new StringBuffer(); StringBuffer sb=new StringBuffer();
for(int i=0;i<items.size();i++){ for(int i=0;i<items.size();i++){
if(i==0) if(i==0)
sb.append(items.get(i)); sb.append(items.get(i));
else{ else{
sb.append(sp); sb.append(sp);
sb.append(items.get(i)); sb.append(items.get(i));
} }
} }
return sb.toString(); return sb.toString();
} }
public void clear(){ public void clear(){
items.clear(); items.clear();
} }
public void reset(){ public void reset(){
sp=","; sp=",";
items.clear(); items.clear();
} }
} }

View file

@ -1,381 +1,381 @@
/* /*
* $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.to2mbn.authlibinjector.internal.org.json.simple; package org.to2mbn.authlibinjector.internal.org.json.simple;
import java.io.IOException; import java.io.IOException;
import java.io.StringWriter; import java.io.StringWriter;
import java.io.Writer; import java.io.Writer;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;
import java.util.Iterator; import java.util.Iterator;
/** /**
* 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 JSONAware, JSONStreamAware { public class JSONArray extends ArrayList implements JSONAware, JSONStreamAware {
private static final long serialVersionUID = 3957988303675231981L; private static final long serialVersionUID = 3957988303675231981L;
/** /**
* Constructs an empty JSONArray. * Constructs an empty JSONArray.
*/ */
public JSONArray(){ public JSONArray(){
super(); super();
} }
/** /**
* Constructs a JSONArray containing the elements of the specified * Constructs a JSONArray containing the elements of the specified
* collection, in the order they are returned by the collection's iterator. * collection, in the order they are returned by the collection's iterator.
* *
* @param c the collection whose elements are to be placed into this JSONArray * @param c the collection whose elements are to be placed into this JSONArray
*/ */
public JSONArray(Collection c){ public JSONArray(Collection c){
super(c); super(c);
} }
/** /**
* 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.to2mbn.authlibinjector.internal.org.json.simple.JSONValue#writeJSONString(Object, Writer) * @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONValue#writeJSONString(Object, Writer)
* *
* @param collection * @param collection
* @param out * @param out
*/ */
public static void writeJSONString(Collection collection, Writer out) throws IOException{ public static void writeJSONString(Collection collection, Writer out) throws IOException{
if(collection == null){ if(collection == null){
out.write("null"); out.write("null");
return; return;
} }
boolean first = true; boolean first = true;
Iterator iter=collection.iterator(); Iterator iter=collection.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.to2mbn.authlibinjector.internal.org.json.simple.JSONValue#toJSONString(Object) * @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONValue#toJSONString(Object)
* *
* @param collection * @param collection
* @return JSON text, or "null" if list is null. * @return JSON text, or "null" if list is null.
*/ */
public static String toJSONString(Collection collection){ public static String toJSONString(Collection collection){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(collection, writer); writeJSONString(collection, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public static void writeJSONString(byte[] array, Writer out) throws IOException{ public static void writeJSONString(byte[] array, Writer out) throws IOException{
if(array == null){ if(array == null){
out.write("null"); out.write("null");
} else if(array.length == 0) { } else if(array.length == 0) {
out.write("[]"); out.write("[]");
} else { } else {
out.write("["); out.write("[");
out.write(String.valueOf(array[0])); out.write(String.valueOf(array[0]));
for(int i = 1; i < array.length; i++){ for(int i = 1; i < array.length; i++){
out.write(","); out.write(",");
out.write(String.valueOf(array[i])); out.write(String.valueOf(array[i]));
} }
out.write("]"); out.write("]");
} }
} }
public static String toJSONString(byte[] array){ public static String toJSONString(byte[] array){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(array, writer); writeJSONString(array, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public static void writeJSONString(short[] array, Writer out) throws IOException{ public static void writeJSONString(short[] array, Writer out) throws IOException{
if(array == null){ if(array == null){
out.write("null"); out.write("null");
} else if(array.length == 0) { } else if(array.length == 0) {
out.write("[]"); out.write("[]");
} else { } else {
out.write("["); out.write("[");
out.write(String.valueOf(array[0])); out.write(String.valueOf(array[0]));
for(int i = 1; i < array.length; i++){ for(int i = 1; i < array.length; i++){
out.write(","); out.write(",");
out.write(String.valueOf(array[i])); out.write(String.valueOf(array[i]));
} }
out.write("]"); out.write("]");
} }
} }
public static String toJSONString(short[] array){ public static String toJSONString(short[] array){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(array, writer); writeJSONString(array, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public static void writeJSONString(int[] array, Writer out) throws IOException{ public static void writeJSONString(int[] array, Writer out) throws IOException{
if(array == null){ if(array == null){
out.write("null"); out.write("null");
} else if(array.length == 0) { } else if(array.length == 0) {
out.write("[]"); out.write("[]");
} else { } else {
out.write("["); out.write("[");
out.write(String.valueOf(array[0])); out.write(String.valueOf(array[0]));
for(int i = 1; i < array.length; i++){ for(int i = 1; i < array.length; i++){
out.write(","); out.write(",");
out.write(String.valueOf(array[i])); out.write(String.valueOf(array[i]));
} }
out.write("]"); out.write("]");
} }
} }
public static String toJSONString(int[] array){ public static String toJSONString(int[] array){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(array, writer); writeJSONString(array, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public static void writeJSONString(long[] array, Writer out) throws IOException{ public static void writeJSONString(long[] array, Writer out) throws IOException{
if(array == null){ if(array == null){
out.write("null"); out.write("null");
} else if(array.length == 0) { } else if(array.length == 0) {
out.write("[]"); out.write("[]");
} else { } else {
out.write("["); out.write("[");
out.write(String.valueOf(array[0])); out.write(String.valueOf(array[0]));
for(int i = 1; i < array.length; i++){ for(int i = 1; i < array.length; i++){
out.write(","); out.write(",");
out.write(String.valueOf(array[i])); out.write(String.valueOf(array[i]));
} }
out.write("]"); out.write("]");
} }
} }
public static String toJSONString(long[] array){ public static String toJSONString(long[] array){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(array, writer); writeJSONString(array, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public static void writeJSONString(float[] array, Writer out) throws IOException{ public static void writeJSONString(float[] array, Writer out) throws IOException{
if(array == null){ if(array == null){
out.write("null"); out.write("null");
} else if(array.length == 0) { } else if(array.length == 0) {
out.write("[]"); out.write("[]");
} else { } else {
out.write("["); out.write("[");
out.write(String.valueOf(array[0])); out.write(String.valueOf(array[0]));
for(int i = 1; i < array.length; i++){ for(int i = 1; i < array.length; i++){
out.write(","); out.write(",");
out.write(String.valueOf(array[i])); out.write(String.valueOf(array[i]));
} }
out.write("]"); out.write("]");
} }
} }
public static String toJSONString(float[] array){ public static String toJSONString(float[] array){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(array, writer); writeJSONString(array, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public static void writeJSONString(double[] array, Writer out) throws IOException{ public static void writeJSONString(double[] array, Writer out) throws IOException{
if(array == null){ if(array == null){
out.write("null"); out.write("null");
} else if(array.length == 0) { } else if(array.length == 0) {
out.write("[]"); out.write("[]");
} else { } else {
out.write("["); out.write("[");
out.write(String.valueOf(array[0])); out.write(String.valueOf(array[0]));
for(int i = 1; i < array.length; i++){ for(int i = 1; i < array.length; i++){
out.write(","); out.write(",");
out.write(String.valueOf(array[i])); out.write(String.valueOf(array[i]));
} }
out.write("]"); out.write("]");
} }
} }
public static String toJSONString(double[] array){ public static String toJSONString(double[] array){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(array, writer); writeJSONString(array, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public static void writeJSONString(boolean[] array, Writer out) throws IOException{ public static void writeJSONString(boolean[] array, Writer out) throws IOException{
if(array == null){ if(array == null){
out.write("null"); out.write("null");
} else if(array.length == 0) { } else if(array.length == 0) {
out.write("[]"); out.write("[]");
} else { } else {
out.write("["); out.write("[");
out.write(String.valueOf(array[0])); out.write(String.valueOf(array[0]));
for(int i = 1; i < array.length; i++){ for(int i = 1; i < array.length; i++){
out.write(","); out.write(",");
out.write(String.valueOf(array[i])); out.write(String.valueOf(array[i]));
} }
out.write("]"); out.write("]");
} }
} }
public static String toJSONString(boolean[] array){ public static String toJSONString(boolean[] array){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(array, writer); writeJSONString(array, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public static void writeJSONString(char[] array, Writer out) throws IOException{ public static void writeJSONString(char[] array, Writer out) throws IOException{
if(array == null){ if(array == null){
out.write("null"); out.write("null");
} else if(array.length == 0) { } else if(array.length == 0) {
out.write("[]"); out.write("[]");
} else { } else {
out.write("[\""); out.write("[\"");
out.write(String.valueOf(array[0])); out.write(String.valueOf(array[0]));
for(int i = 1; i < array.length; i++){ for(int i = 1; i < array.length; i++){
out.write("\",\""); out.write("\",\"");
out.write(String.valueOf(array[i])); out.write(String.valueOf(array[i]));
} }
out.write("\"]"); out.write("\"]");
} }
} }
public static String toJSONString(char[] array){ public static String toJSONString(char[] array){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(array, writer); writeJSONString(array, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public static void writeJSONString(Object[] array, Writer out) throws IOException{ public static void writeJSONString(Object[] array, Writer out) throws IOException{
if(array == null){ if(array == null){
out.write("null"); out.write("null");
} else if(array.length == 0) { } else if(array.length == 0) {
out.write("[]"); out.write("[]");
} else { } else {
out.write("["); out.write("[");
JSONValue.writeJSONString(array[0], out); JSONValue.writeJSONString(array[0], out);
for(int i = 1; i < array.length; i++){ for(int i = 1; i < array.length; i++){
out.write(","); out.write(",");
JSONValue.writeJSONString(array[i], out); JSONValue.writeJSONString(array[i], out);
} }
out.write("]"); out.write("]");
} }
} }
public static String toJSONString(Object[] array){ public static String toJSONString(Object[] array){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(array, writer); writeJSONString(array, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public String toJSONString(){ public String toJSONString(){
return toJSONString(this); return toJSONString(this);
} }
/** /**
* Returns a string representation of this array. This is equivalent to * Returns a string representation of this array. This is equivalent to
* calling {@link JSONArray#toJSONString()}. * calling {@link JSONArray#toJSONString()}.
*/ */
public String toString() { public String toString() {
return toJSONString(); return toJSONString();
} }
} }

View file

@ -1,12 +1,12 @@
package org.to2mbn.authlibinjector.internal.org.json.simple; package org.to2mbn.authlibinjector.internal.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,132 +1,132 @@
/* /*
* $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.to2mbn.authlibinjector.internal.org.json.simple; package org.to2mbn.authlibinjector.internal.org.json.simple;
import java.io.IOException; import java.io.IOException;
import java.io.StringWriter; import java.io.StringWriter;
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;
public JSONObject() { public JSONObject() {
super(); super();
} }
/** /**
* Allows creation of a JSONObject from a Map. After that, both the * Allows creation of a JSONObject from a Map. After that, both the
* generated JSONObject and the Map can be modified independently. * generated JSONObject and the Map can be modified independently.
* *
* @param map * @param map
*/ */
public JSONObject(Map map) { public JSONObject(Map map) {
super(map); super(map);
} }
/** /**
* 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.to2mbn.authlibinjector.internal.org.json.simple.JSONValue#writeJSONString(Object, Writer) * @see org.to2mbn.authlibinjector.internal.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(); Map.Entry entry=(Map.Entry)iter.next();
out.write('\"'); out.write('\"');
out.write(escape(String.valueOf(entry.getKey()))); out.write(escape(String.valueOf(entry.getKey())));
out.write('\"'); out.write('\"');
out.write(':'); out.write(':');
JSONValue.writeJSONString(entry.getValue(), out); JSONValue.writeJSONString(entry.getValue(), 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 map to JSON text. The result is a JSON object. * 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. * If this map is also a JSONAware, JSONAware specific behaviours will be omitted at this top level.
* *
* @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONValue#toJSONString(Object) * @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONValue#toJSONString(Object)
* *
* @param map * @param map
* @return JSON text, or "null" if map is null. * @return JSON text, or "null" if map is null.
*/ */
public static String toJSONString(Map map){ public static String toJSONString(Map map){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try { try {
writeJSONString(map, writer); writeJSONString(map, writer);
return writer.toString(); return writer.toString();
} catch (IOException e) { } catch (IOException e) {
// This should never happen with a StringWriter // This should never happen with a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
public String toJSONString(){ public String toJSONString(){
return toJSONString(this); return toJSONString(this);
} }
public String toString(){ public String toString(){
return toJSONString(); return toJSONString();
} }
public static String toString(String key,Object value){ public static String toString(String key,Object value){
StringBuffer sb = new StringBuffer(); StringBuffer sb = new StringBuffer();
sb.append('\"'); sb.append('\"');
if(key == null) if(key == null)
sb.append("null"); sb.append("null");
else else
JSONValue.escape(key, sb); JSONValue.escape(key, sb);
sb.append('\"').append(':'); sb.append('\"').append(':');
sb.append(JSONValue.toJSONString(value)); sb.append(JSONValue.toJSONString(value));
return sb.toString(); return sb.toString();
} }
/** /**
* Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F). * Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).
* It's the same as JSONValue.escape() only for compatibility here. * It's the same as JSONValue.escape() only for compatibility here.
* *
* @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONValue#escape(String) * @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONValue#escape(String)
* *
* @param s * @param s
* @return * @return
*/ */
public static String escape(String s){ public static String escape(String s){
return JSONValue.escape(s); return JSONValue.escape(s);
} }
} }

View file

@ -1,15 +1,15 @@
package org.to2mbn.authlibinjector.internal.org.json.simple; package org.to2mbn.authlibinjector.internal.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,315 +1,315 @@
/* /*
* $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.to2mbn.authlibinjector.internal.org.json.simple; package org.to2mbn.authlibinjector.internal.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.StringWriter; import java.io.StringWriter;
import java.io.Writer; import java.io.Writer;
import java.util.Collection; import java.util.Collection;
// import java.util.List; // import java.util.List;
import java.util.Map; import java.util.Map;
import org.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser; import org.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser;
import org.to2mbn.authlibinjector.internal.org.json.simple.parser.ParseException; import org.to2mbn.authlibinjector.internal.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.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser#parse(Reader) * @see org.to2mbn.authlibinjector.internal.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
* *
* @deprecated this method may throw an {@code Error} instead of returning * @deprecated this method may throw an {@code Error} instead of returning
* {@code null}; please use {@link JSONValue#parseWithException(Reader)} * {@code null}; please use {@link JSONValue#parseWithException(Reader)}
* instead * instead
*/ */
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){ catch(Exception e){
return null; return null;
} }
} }
/** /**
* Parse JSON text into java object from the given string. * Parse JSON text into java object from the given string.
* 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.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser#parse(Reader) * @see org.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser#parse(Reader)
* @see #parseWithException(Reader) * @see #parseWithException(Reader)
* *
* @param s * @param s
* @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
* *
* @deprecated this method may throw an {@code Error} instead of returning * @deprecated this method may throw an {@code Error} instead of returning
* {@code null}; please use {@link JSONValue#parseWithException(String)} * {@code null}; please use {@link JSONValue#parseWithException(String)}
* instead * instead
*/ */
public static Object parse(String s){ public static Object parse(String s){
StringReader in=new StringReader(s); StringReader in=new StringReader(s);
return parse(in); 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.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser * @see org.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser
* *
* @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
* *
* @throws IOException * @throws IOException
* @throws ParseException * @throws ParseException
*/ */
public static Object parseWithException(Reader in) throws IOException, ParseException{ public static Object parseWithException(Reader in) throws IOException, ParseException{
JSONParser parser=new JSONParser(); JSONParser parser=new JSONParser();
return parser.parse(in); return parser.parse(in);
} }
public static Object parseWithException(String s) throws ParseException{ public static Object parseWithException(String s) throws ParseException{
JSONParser parser=new JSONParser(); JSONParser parser=new JSONParser();
return parser.parse(s); return parser.parse(s);
} }
/** /**
* Encode an object into JSON text and write it to out. * Encode an object into JSON text and write it to out.
* <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. * 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>
* DO NOT call this method from writeJSONString(Writer) of a class that implements both JSONStreamAware and (Map or List) with * 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. * "this" as the first parameter, use JSONObject.writeJSONString(Map, Writer) or JSONArray.writeJSONString(List, Writer) instead.
* *
* @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONObject#writeJSONString(Map, Writer) * @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONObject#writeJSONString(Map, Writer)
* @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONArray#writeJSONString(List, Writer) * @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONArray#writeJSONString(List, Writer)
* *
* @param value * @param value
* @param writer * @param writer
*/ */
public static void writeJSONString(Object value, Writer out) throws IOException { public static void writeJSONString(Object value, Writer out) throws IOException {
if(value == null){ if(value == null){
out.write("null"); out.write("null");
return; return;
} }
if(value instanceof String){ if(value instanceof String){
out.write('\"'); out.write('\"');
out.write(escape((String)value)); out.write(escape((String)value));
out.write('\"'); out.write('\"');
return; return;
} }
if(value instanceof Double){ if(value instanceof Double){
if(((Double)value).isInfinite() || ((Double)value).isNaN()) if(((Double)value).isInfinite() || ((Double)value).isNaN())
out.write("null"); out.write("null");
else else
out.write(value.toString()); 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 Collection){ if(value instanceof Collection){
JSONArray.writeJSONString((Collection)value, out); JSONArray.writeJSONString((Collection)value, out);
return; return;
} }
if(value instanceof byte[]){ if(value instanceof byte[]){
JSONArray.writeJSONString((byte[])value, out); JSONArray.writeJSONString((byte[])value, out);
return; return;
} }
if(value instanceof short[]){ if(value instanceof short[]){
JSONArray.writeJSONString((short[])value, out); JSONArray.writeJSONString((short[])value, out);
return; return;
} }
if(value instanceof int[]){ if(value instanceof int[]){
JSONArray.writeJSONString((int[])value, out); JSONArray.writeJSONString((int[])value, out);
return; return;
} }
if(value instanceof long[]){ if(value instanceof long[]){
JSONArray.writeJSONString((long[])value, out); JSONArray.writeJSONString((long[])value, out);
return; return;
} }
if(value instanceof float[]){ if(value instanceof float[]){
JSONArray.writeJSONString((float[])value, out); JSONArray.writeJSONString((float[])value, out);
return; return;
} }
if(value instanceof double[]){ if(value instanceof double[]){
JSONArray.writeJSONString((double[])value, out); JSONArray.writeJSONString((double[])value, out);
return; return;
} }
if(value instanceof boolean[]){ if(value instanceof boolean[]){
JSONArray.writeJSONString((boolean[])value, out); JSONArray.writeJSONString((boolean[])value, out);
return; return;
} }
if(value instanceof char[]){ if(value instanceof char[]){
JSONArray.writeJSONString((char[])value, out); JSONArray.writeJSONString((char[])value, out);
return; return;
} }
if(value instanceof Object[]){ if(value instanceof Object[]){
JSONArray.writeJSONString((Object[])value, out); JSONArray.writeJSONString((Object[])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.to2mbn.authlibinjector.internal.org.json.simple.JSONObject#toJSONString(Map) * @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONObject#toJSONString(Map)
* @see org.to2mbn.authlibinjector.internal.org.json.simple.JSONArray#toJSONString(List) * @see org.to2mbn.authlibinjector.internal.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){
final StringWriter writer = new StringWriter(); final StringWriter writer = new StringWriter();
try{ try{
writeJSONString(value, writer); writeJSONString(value, writer);
return writer.toString(); return writer.toString();
} catch(IOException e){ } catch(IOException e){
// This should never happen for a StringWriter // This should never happen for a StringWriter
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
/** /**
* Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F). * Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).
* @param s * @param s
* @return * @return
*/ */
public static String escape(String s){ public static String escape(String s){
if(s==null) if(s==null)
return null; return null;
StringBuffer sb = new StringBuffer(); StringBuffer sb = new StringBuffer();
escape(s, sb); escape(s, sb);
return sb.toString(); return sb.toString();
} }
/** /**
* @param s - Must not be null. * @param s - Must not be null.
* @param sb * @param sb
*/ */
static void escape(String s, StringBuffer sb) { static void escape(String s, StringBuffer sb) {
final int len = s.length(); final int len = s.length();
for(int i=0;i<len;i++){ for(int i=0;i<len;i++){
char ch=s.charAt(i); char ch=s.charAt(i);
switch(ch){ switch(ch){
case '"': case '"':
sb.append("\\\""); sb.append("\\\"");
break; break;
case '\\': case '\\':
sb.append("\\\\"); sb.append("\\\\");
break; break;
case '\b': case '\b':
sb.append("\\b"); sb.append("\\b");
break; break;
case '\f': case '\f':
sb.append("\\f"); sb.append("\\f");
break; break;
case '\n': case '\n':
sb.append("\\n"); sb.append("\\n");
break; break;
case '\r': case '\r':
sb.append("\\r"); sb.append("\\r");
break; break;
case '\t': case '\t':
sb.append("\\t"); sb.append("\\t");
break; break;
case '/': case '/':
sb.append("\\/"); sb.append("\\/");
break; break;
default: default:
//Reference: http://www.unicode.org/versions/Unicode5.1.0/ //Reference: http://www.unicode.org/versions/Unicode5.1.0/
if((ch>='\u0000' && ch<='\u001F') || (ch>='\u007F' && ch<='\u009F') || (ch>='\u2000' && ch<='\u20FF')){ if((ch>='\u0000' && ch<='\u001F') || (ch>='\u007F' && ch<='\u009F') || (ch>='\u2000' && ch<='\u20FF')){
String ss=Integer.toHexString(ch); String ss=Integer.toHexString(ch);
sb.append("\\u"); sb.append("\\u");
for(int k=0;k<4-ss.length();k++){ for(int k=0;k<4-ss.length();k++){
sb.append('0'); sb.append('0');
} }
sb.append(ss.toUpperCase()); sb.append(ss.toUpperCase());
} }
else{ else{
sb.append(ch); sb.append(ch);
} }
} }
}//for }//for
} }
} }

View file

@ -1,23 +1,23 @@
package org.to2mbn.authlibinjector.internal.org.json.simple.parser; package org.to2mbn.authlibinjector.internal.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.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser#parse(java.io.Reader, ContainerFactory) * @see org.to2mbn.authlibinjector.internal.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,110 @@
package org.to2mbn.authlibinjector.internal.org.json.simple.parser; package org.to2mbn.authlibinjector.internal.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.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser#parse(java.io.Reader, ContentHandler, boolean) * @see org.to2mbn.authlibinjector.internal.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;
} }

View file

@ -1,90 +1,90 @@
package org.to2mbn.authlibinjector.internal.org.json.simple.parser; package org.to2mbn.authlibinjector.internal.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 = -7880698968187728547L; private static final long serialVersionUID = -7880698968187728547L;
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 int errorType;
private Object unexpectedObject; private Object unexpectedObject;
private int position; private int position;
public ParseException(int errorType){ public ParseException(int errorType){
this(-1, errorType, null); this(-1, errorType, null);
} }
public ParseException(int errorType, Object unexpectedObject){ public ParseException(int errorType, Object unexpectedObject){
this(-1, errorType, unexpectedObject); this(-1, errorType, unexpectedObject);
} }
public ParseException(int position, int errorType, Object unexpectedObject){ public ParseException(int position, int errorType, Object unexpectedObject){
this.position = position; this.position = position;
this.errorType = errorType; this.errorType = errorType;
this.unexpectedObject = unexpectedObject; this.unexpectedObject = unexpectedObject;
} }
public int getErrorType() { public int getErrorType() {
return errorType; return errorType;
} }
public void setErrorType(int errorType) { public void setErrorType(int errorType) {
this.errorType = errorType; this.errorType = errorType;
} }
/** /**
* @see org.to2mbn.authlibinjector.internal.org.json.simple.parser.JSONParser#getPosition() * @see org.to2mbn.authlibinjector.internal.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() { public int getPosition() {
return position; return position;
} }
public void setPosition(int position) { public void setPosition(int position) {
this.position = position; this.position = position;
} }
/** /**
* @see org.to2mbn.authlibinjector.internal.org.json.simple.parser.Yytoken * @see org.to2mbn.authlibinjector.internal.org.json.simple.parser.Yytoken
* *
* @return One of the following base on the value of errorType: * @return One of the following base on the value of errorType:
* ERROR_UNEXPECTED_CHAR java.lang.Character * ERROR_UNEXPECTED_CHAR java.lang.Character
* ERROR_UNEXPECTED_TOKEN org.json.simple.parser.Yytoken * ERROR_UNEXPECTED_TOKEN org.json.simple.parser.Yytoken
* ERROR_UNEXPECTED_EXCEPTION java.lang.Exception * ERROR_UNEXPECTED_EXCEPTION java.lang.Exception
*/ */
public Object getUnexpectedObject() { public Object getUnexpectedObject() {
return unexpectedObject; return unexpectedObject;
} }
public void setUnexpectedObject(Object unexpectedObject) { public void setUnexpectedObject(Object unexpectedObject) {
this.unexpectedObject = unexpectedObject; this.unexpectedObject = unexpectedObject;
} }
public String getMessage() { public String getMessage() {
StringBuffer sb = new StringBuffer(); StringBuffer sb = new StringBuffer();
switch(errorType){ switch(errorType){
case ERROR_UNEXPECTED_CHAR: case ERROR_UNEXPECTED_CHAR:
sb.append("Unexpected character (").append(unexpectedObject).append(") at position ").append(position).append("."); sb.append("Unexpected character (").append(unexpectedObject).append(") at position ").append(position).append(".");
break; break;
case ERROR_UNEXPECTED_TOKEN: case ERROR_UNEXPECTED_TOKEN:
sb.append("Unexpected token ").append(unexpectedObject).append(" at position ").append(position).append("."); sb.append("Unexpected token ").append(unexpectedObject).append(" at position ").append(position).append(".");
break; break;
case ERROR_UNEXPECTED_EXCEPTION: case ERROR_UNEXPECTED_EXCEPTION:
sb.append("Unexpected exception at position ").append(position).append(": ").append(unexpectedObject); sb.append("Unexpected exception at position ").append(position).append(": ").append(unexpectedObject);
break; break;
default: default:
sb.append("Unkown error at position ").append(position).append("."); sb.append("Unkown error at position ").append(position).append(".");
break; break;
} }
return sb.toString(); return sb.toString();
} }
} }

View file

@ -1,58 +1,58 @@
/* /*
* $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.to2mbn.authlibinjector.internal.org.json.simple.parser; package org.to2mbn.authlibinjector.internal.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();
} }
} }