Author: doogie Date: Tue Apr 21 01:08:08 2015 New Revision: 1675018 URL: http://svn.apache.org/r1675018 Log: OFBIZ-6270: This class used to be a javacc-based grammer for parsing json; this method of json integration has been removed, in favor of base/lang/JSON. However, some external projects still use this legacy form of json parsing. So, this class implements the old api, but users will get a deprecation warning when compiling against it.
Added: ofbiz/branches/OFBIZ-6270/framework/base/src/org/ofbiz/base/json/ ofbiz/branches/OFBIZ-6270/framework/base/src/org/ofbiz/base/json/JSON.java Added: ofbiz/branches/OFBIZ-6270/framework/base/src/org/ofbiz/base/json/JSON.java URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6270/framework/base/src/org/ofbiz/base/json/JSON.java?rev=1675018&view=auto ============================================================================== --- ofbiz/branches/OFBIZ-6270/framework/base/src/org/ofbiz/base/json/JSON.java (added) +++ ofbiz/branches/OFBIZ-6270/framework/base/src/org/ofbiz/base/json/JSON.java Tue Apr 21 01:08:08 2015 @@ -0,0 +1,103 @@ +/******************************************************************************* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + *******************************************************************************/ +package org.ofbiz.base.json; + +import java.io.FileInputStream; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.IOException; +import java.io.Reader; +import java.util.List; +import java.util.Map; + +@Deprecated +public final class JSON { + private final org.ofbiz.base.lang.JSON json; + + private JSON(org.ofbiz.base.lang.JSON json) { + this.json = json; + } + + // these methods are left out; there is no good way to implement + // them with the replacement json library + + //public JSON(String filename) { + //} + + public JSON(InputStream in) throws IOException { + this(org.ofbiz.base.lang.JSON.from(in)); + } + + public JSON(InputStream in, String encoding) throws IOException { + this(new InputStreamReader(in, encoding)); + } + + public JSON(Reader reader) throws IOException { + this(org.ofbiz.base.lang.JSON.from(reader)); + } + + //public Object JSONValue() { + //} + + //public Object JSONItem() { + //} + + //public Object JSONResolve() { + //} + + private <T> T toObject(Class<T> targetClass) { + try { + return json.toObject(targetClass); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + public String JSONString() { + return toObject(String.class); + } + + public Double JSONFloat() { + return toObject(Double.class); + } + + public Long JSONLong() { + return toObject(Long.class); + } + + public Map JSONObject() { + return toObject(Map.class); + } + + //public void JSONObjectEntry(Map<String, Object> map) { + //} + + public List JSONArray() { + return toObject(List.class); + } + + //public Boolean True() { + //} + + //public Boolean False() { + //} + + //public Object Null() { + //} +}