blob: cbe44ed8afec2088df5dc2d97f58aadeb7620722 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Fabio Zadrozny and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Fabio Zadrozny - initial API and implementation - http://eclip.se/8519
*******************************************************************************/
package org.eclipse.e4.core.macros.internal;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
/**
* Helper to convert a map to a JSON without adding new dependencies.
*/
public class JSONHelper {
/**
* Quotes contents of the strings so that a given string can be saved as a valid
* JSON string.
*
* @param string
* the string to be quoted.
* @return a string where the values of the input string are quoted so that it
* forms a valid JSON string.
*/
public static String quote(String string) {
int len = string.length();
if (len == 0) {
return "\"\""; //$NON-NLS-1$
}
StringBuilder sb = new StringBuilder(len + 4);
sb.append('"');
for (int i = 0; i < len; i += 1) {
char c = string.charAt(i);
switch (c) {
case '"':
case '\\':
case '/':
sb.append('\\');
sb.append(c);
break;
case '\b':
sb.append("\\b"); //$NON-NLS-1$
break;
case '\f':
sb.append("\\f"); //$NON-NLS-1$
break;
case '\n':
sb.append("\\n"); //$NON-NLS-1$
break;
case '\r':
sb.append("\\r"); //$NON-NLS-1$
break;
case '\t':
sb.append("\\t"); //$NON-NLS-1$
break;
default:
if (c < ' ') {
String t = "000" + Integer.toHexString(c); //$NON-NLS-1$
sb.append("\\u" + t.substring(t.length() - 4)); //$NON-NLS-1$
} else {
sb.append(c);
}
}
}
sb.append('"');
return sb.toString();
}
/**
* Provides a JSON representation of the passed map.
*
* @param map
* a map to be converted to a JSON string.
* @return a JSON string with the contents of the passed map.
*/
public static String toJSon(Map<String, String> map) {
Iterator<Entry<String, String>> iterator = map.entrySet().iterator();
final StringBuilder buf = new StringBuilder("{"); //$NON-NLS-1$
while (iterator.hasNext()) {
if (buf.length() > 1) {
buf.append(", "); //$NON-NLS-1$
}
Entry<String, String> entry = iterator.next();
buf.append(quote(entry.getKey()));
buf.append(": "); //$NON-NLS-1$
buf.append(quote(entry.getValue()));
}
buf.append('}');
return buf.toString();
}
}