5a17acfd70
git-svn-id: http://google-refine.googlecode.com/svn/trunk@1613 7d457c2a-affb-35e4-300a-418c747d4874
162 lines
5.3 KiB
Java
162 lines
5.3 KiB
Java
/*
|
|
|
|
Copyright 2010, Google Inc.
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are
|
|
met:
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above
|
|
copyright notice, this list of conditions and the following disclaimer
|
|
in the documentation and/or other materials provided with the
|
|
distribution.
|
|
* Neither the name of Google Inc. nor the names of its
|
|
contributors may be used to endorse or promote products derived from
|
|
this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
package com.google.refine.util;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.InputStreamReader;
|
|
import java.io.Reader;
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.text.ParseException;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.Date;
|
|
import java.util.Properties;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import org.apache.commons.codec.DecoderException;
|
|
import org.apache.commons.codec.net.URLCodec;
|
|
import org.json.JSONArray;
|
|
import org.json.JSONException;
|
|
import org.json.JSONObject;
|
|
import org.json.JSONTokener;
|
|
|
|
public class ParsingUtilities {
|
|
|
|
static final public SimpleDateFormat s_sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
|
|
|
|
static public Properties parseUrlParameters(HttpServletRequest request) {
|
|
Properties options = new Properties();
|
|
|
|
String query = request.getQueryString();
|
|
if (query != null) {
|
|
if (query.startsWith("?")) {
|
|
query = query.substring(1);
|
|
}
|
|
parseParameters(options,query);
|
|
}
|
|
return options;
|
|
}
|
|
|
|
static public Properties parseParameters(Properties p, String str) {
|
|
if (str != null) {
|
|
String[] pairs = str.split("&");
|
|
for (String pairString : pairs) {
|
|
int equal = pairString.indexOf('=');
|
|
String name = (equal >= 0) ? pairString.substring(0, equal) : "";
|
|
String value = (equal >= 0) ? ParsingUtilities.decode(pairString.substring(equal + 1)) : "";
|
|
p.put(name, value);
|
|
}
|
|
}
|
|
return p;
|
|
}
|
|
|
|
static public Properties parseParameters(String str) {
|
|
return (str == null) ? null : parseParameters(new Properties(),str);
|
|
}
|
|
|
|
static public String inputStreamToString(InputStream is) throws IOException {
|
|
Reader reader = new InputStreamReader(is, "UTF-8");
|
|
try {
|
|
return readerToString(reader);
|
|
} finally {
|
|
reader.close();
|
|
}
|
|
}
|
|
|
|
static public String readerToString(Reader reader) throws IOException {
|
|
StringBuffer sb = new StringBuffer();
|
|
|
|
char[] chars = new char[8192];
|
|
int c;
|
|
|
|
while ((c = reader.read(chars)) > 0) {
|
|
sb.insert(sb.length(), chars, 0, c);
|
|
}
|
|
|
|
return sb.toString();
|
|
}
|
|
|
|
static public JSONObject evaluateJsonStringToObject(String s) throws JSONException {
|
|
if( s == null ) throw new IllegalArgumentException("parameter 's' should not be null");
|
|
JSONTokener t = new JSONTokener(s);
|
|
Object o = t.nextValue();
|
|
if (o instanceof JSONObject) {
|
|
return (JSONObject) o;
|
|
} else {
|
|
throw new JSONException(s + " couldn't be parsed as JSON object");
|
|
}
|
|
}
|
|
|
|
static public JSONArray evaluateJsonStringToArray(String s) throws JSONException {
|
|
JSONTokener t = new JSONTokener(s);
|
|
Object o = t.nextValue();
|
|
if (o instanceof JSONArray) {
|
|
return (JSONArray) o;
|
|
} else {
|
|
throw new JSONException(s + " couldn't be parsed as JSON array");
|
|
}
|
|
}
|
|
|
|
private static final URLCodec codec = new URLCodec();
|
|
static public String encode(String s) {
|
|
try {
|
|
return codec.encode(s, "UTF-8");
|
|
} catch (UnsupportedEncodingException e) {
|
|
return s; // should not happen
|
|
}
|
|
}
|
|
static public String decode(String s) {
|
|
try {
|
|
return codec.decode(s, "UTF-8");
|
|
} catch (UnsupportedEncodingException e) {
|
|
return s; // should not happen
|
|
} catch (DecoderException e) {
|
|
return s; // should not happen
|
|
}
|
|
}
|
|
|
|
static public String dateToString(Date d) {
|
|
return s_sdf.format(d);
|
|
}
|
|
|
|
static public Date stringToDate(String s) {
|
|
try {
|
|
return s_sdf.parse(s);
|
|
} catch (ParseException e) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|