com.torodb.kvdocument.conversion.json.GsonJsonParser.java Source code

Java tutorial

Introduction

Here is the source code for com.torodb.kvdocument.conversion.json.GsonJsonParser.java

Source

/*
 * ToroDB
 * Copyright  2014 8Kdata Technology (www.8kdata.com)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

package com.torodb.kvdocument.conversion.json;

import com.google.common.base.Charsets;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.torodb.kvdocument.values.KvDocument;

import java.io.InputStream;
import java.io.InputStreamReader;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

@SuppressWarnings("unchecked")
public class GsonJsonParser implements JsonParser {

    private static Gson gson = new Gson();

    private static final MapToKvValueConverter converter = new MapToKvValueConverter();
    private static final HashMap<String, Object> sampleClass = new HashMap<String, Object>();
    private static final Type type = new TypeToken<List<HashMap<String, Object>>>() {
    }.getType();

    @Override
    public KvDocument createFromJson(String json) {
        return converter.convert(gson.fromJson(json, sampleClass.getClass()));
    }

    @Override
    public List<KvDocument> createListFromJson(String json) {
        return converter.convert((List<Map<String, Object>>) gson.fromJson(json, type));
    }

    @Override
    public KvDocument createFrom(InputStream is) {
        return converter.convert(gson.fromJson(new InputStreamReader(is, Charsets.UTF_8), sampleClass.getClass()));
    }

    @Override
    public List<KvDocument> createListFrom(InputStream is) {
        return converter.convert(
                (List<Map<String, Object>>) gson.fromJson(new InputStreamReader(is, Charsets.UTF_8), type));
    }

    @Override
    public KvDocument createFromResource(String name) {
        return createFrom(this.getClass().getClassLoader().getResourceAsStream(name));
    }

    @Override
    public List<KvDocument> createListFromResource(String name) {
        return createListFrom(this.getClass().getClassLoader().getResourceAsStream(name));
    }
}