/*
* Copyright (C) 2015 Google Inc.
*
* Licensed 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 interactivespaces.util.data.json;
import interactivespaces.InteractiveSpacesException;
import org.codehaus.jackson.JsonGenerator;
import org.codehaus.jackson.map.ObjectMapper;
import java.util.Map;
/**
* The standard JSON Mapper.
*
* @author Keith M. Hughes
*/
public class StandardJsonMapper implements JsonMapper {
/**
* A global mapper everyone can use.
*/
public static final JsonMapper INSTANCE = new StandardJsonMapper();
/**
* The JSON mapper.
*/
private static final ObjectMapper MAPPER;
static {
MAPPER = new ObjectMapper();
MAPPER.getJsonFactory().enable(JsonGenerator.Feature.ESCAPE_NON_ASCII);
}
@Override
public Map<String, Object> parseObject(String object) throws InteractiveSpacesException {
try {
@SuppressWarnings("unchecked")
Map<String, Object> map = MAPPER.readValue(object, Map.class);
return map;
} catch (Throwable e) {
throw new JsonInteractiveSpacesException("Could not parse JSON string", e);
}
}
@Override
public String toString(Object data) throws InteractiveSpacesException {
try {
return MAPPER.writeValueAsString(data);
} catch (Throwable e) {
throw new JsonInteractiveSpacesException("Could not serialize JSON object as string", e);
}
}
}