You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2017/01/20 08:33:09 UTC

svn commit: r1779575 - in /felix/trunk/webconsole: changelog.txt pom.xml src/main/java/org/apache/felix/webconsole/json/ src/main/java/org/apache/felix/webconsole/json/JSONWriter.java

Author: cziegeler
Date: Fri Jan 20 08:33:09 2017
New Revision: 1779575

URL: http://svn.apache.org/viewvc?rev=1779575&view=rev
Log:
FELIX-5503 : Add simple json writer

Added:
    felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/json/
    felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/json/JSONWriter.java   (with props)
Modified:
    felix/trunk/webconsole/changelog.txt
    felix/trunk/webconsole/pom.xml

Modified: felix/trunk/webconsole/changelog.txt
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/changelog.txt?rev=1779575&r1=1779574&r2=1779575&view=diff
==============================================================================
--- felix/trunk/webconsole/changelog.txt (original)
+++ felix/trunk/webconsole/changelog.txt Fri Jan 20 08:33:09 2017
@@ -1,3 +1,9 @@
+Changes from 4.2.18 to 4.3.0
+----------------------------
+** Improvement
+    * [FELIX-5503] - Add simple json writer
+
+
 Changes from 4.2.16 to 4.2.18
 -----------------------------
 ** Bug

Modified: felix/trunk/webconsole/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/pom.xml?rev=1779575&r1=1779574&r2=1779575&view=diff
==============================================================================
--- felix/trunk/webconsole/pom.xml (original)
+++ felix/trunk/webconsole/pom.xml Fri Jan 20 08:33:09 2017
@@ -44,7 +44,8 @@
         <webconsole.exports>
             org.apache.felix.webconsole;version=3.2.0;provide:=true,
             org.apache.felix.webconsole.bundleinfo;version=1.0.0;provide:=true,
-            org.apache.felix.webconsole.i18n;version=1.0.0;provide:=true
+            org.apache.felix.webconsole.i18n;version=1.0.0;provide:=true,
+            org.apache.felix.webconsole.json;version=1.0.0;provide:=true
         </webconsole.exports>
     </properties>
 

Added: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/json/JSONWriter.java
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/json/JSONWriter.java?rev=1779575&view=auto
==============================================================================
--- felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/json/JSONWriter.java (added)
+++ felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/json/JSONWriter.java Fri Jan 20 08:33:09 2017
@@ -0,0 +1,200 @@
+/*
+ * 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.apache.felix.webconsole.json;
+
+import java.io.PrintWriter;
+
+/**
+ * Simple JSON writer to be used on top of a {@link PrintWriter}.
+ */
+public class JSONWriter
+{
+
+    private final PrintWriter pw;
+
+    private boolean comma;
+
+    public JSONWriter(final PrintWriter pw)
+    {
+        this.comma = false;
+        this.pw = pw;
+    }
+
+    public JSONWriter object()
+    {
+        if (this.comma)  this.pw.write(',');
+        this.pw.write("{");
+        this.comma = false;
+        return this;
+    }
+
+    public JSONWriter endObject()
+    {
+        this.pw.write('}');
+        this.comma = true;
+        return this;
+    }
+
+    public JSONWriter array()
+    {
+        if (this.comma)  this.pw.write(',');
+        this.pw.write("[");
+        this.comma = false;
+        return this;
+    }
+
+    public JSONWriter endArray()
+    {
+        this.pw.write(']');
+        this.comma = true;
+        return this;
+    }
+
+    public JSONWriter key(String key)
+    {
+        if (this.comma)  this.pw.write(',');
+        quote(key);
+        this.pw.write(':');
+        this.comma = false;
+        return this;
+    }
+
+    public JSONWriter value(final boolean b)
+    {
+        if (this.comma)  this.pw.write(',');
+        this.pw.write(b ? "true" : "false");
+        this.comma = true;
+        return this;
+    }
+
+    public JSONWriter value(final double d)
+    {
+        return this.value(new Double(d));
+    }
+
+    public JSONWriter value(final int i)
+    {
+        if (this.comma)  this.pw.write(',');
+        this.pw.write(String.valueOf(i));
+        this.comma = true;
+        return this;
+    }
+
+    public JSONWriter value(final long l)
+    {
+        if (this.comma)  this.pw.write(',');
+        this.pw.write(String.valueOf(l));
+        this.comma = true;
+        return this;
+    }
+
+    public JSONWriter value(final Object value)
+    {
+        if (this.comma)
+        {
+            this.pw.write(',');
+        }
+        if (value == null || value.equals(null))
+        {
+            this.pw.write("null");
+        }
+        else if (value instanceof Boolean )
+        {
+            this.pw.write(value.toString());
+        }
+        else if (value instanceof Number)
+        {
+            String str = value.toString();
+            if ( str.indexOf('.') == -1 || str.indexOf('e') > 0 || str.indexOf('E') > 0 )
+            {
+                this.pw.write(str);
+            } else {
+                while (str.endsWith("0"))
+                {
+                    str = str.substring(0, str.length() - 1);
+                }
+                if (str.endsWith("."))
+                {
+                    str = str.substring(0, str.length() - 1);
+                }
+                this.pw.write(str);
+            }
+        }
+        else
+        {
+            quote(value.toString());
+        }
+        this.comma = true;
+        return this;
+    }
+
+    /**
+     * Quote the provided value and escape some characters.
+     * @param value The value to quote
+     */
+    private void quote(final String value)
+    {
+        pw.print('"');
+        final int len = value.length();
+        for(int i=0;i<len;i++)
+        {
+            final char c = value.charAt(i);
+            switch(c){
+            case '"':
+                pw.print("\\\"");
+                break;
+            case '\\':
+                pw.print("\\\\");
+                break;
+            case '\b':
+                pw.print("\\b");
+                break;
+            case '\f':
+                pw.print("\\f");
+                break;
+            case '\n':
+                pw.print("\\n");
+                break;
+            case '\r':
+                pw.print("\\r");
+                break;
+            case '\t':
+                pw.print("\\t");
+                break;
+            case '/':
+                pw.print("\\/");
+                break;
+            default:
+                if ((c>='\u0000' && c<='\u001F') || (c>='\u007F' && c<='\u009F') || (c>='\u2000' && c<='\u20FF'))
+                {
+                    final String hex=Integer.toHexString(c);
+                    pw.print("\\u");
+                    for(int k=0;k<4-hex.length();k++){
+                        pw.print('0');
+                    }
+                    pw.print(hex.toUpperCase());
+                }
+                else{
+                    pw.print(c);
+                }
+            }
+        }
+        pw.print('"');
+    }
+}

Propchange: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/json/JSONWriter.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/json/JSONWriter.java
------------------------------------------------------------------------------
    svn:keywords = author date id revision rev url