org.komodo.rest.json.LinkSerializer.java Source code

Java tutorial

Introduction

Here is the source code for org.komodo.rest.json.LinkSerializer.java

Source

/*
 * JBoss, Home of Professional Open Source.
 * See the COPYRIGHT.txt file distributed with this work for information
 * regarding copyright ownership.  Some portions may be licensed
 * to Red Hat, Inc. under one or more contributor license agreements.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301 USA.
 */
package org.komodo.rest.json;

import static org.komodo.rest.Messages.Error.INCOMPLETE_JSON;
import static org.komodo.rest.Messages.Error.UNEXPECTED_JSON_TOKEN;
import java.io.IOException;
import javax.ws.rs.core.UriBuilder;
import org.komodo.rest.Messages;
import org.komodo.rest.RestLink;
import org.komodo.rest.RestLink.LinkType;
import org.komodo.rest.relational.response.RestVdbImport;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;

/**
 * A GSON serializer/deserializer for {@link RestLink}s.
 */
public final class LinkSerializer extends TypeAdapter<RestLink> {

    private boolean isComplete(final RestLink link) {
        return ((link.getRel() != null) && (link.getHref() != null));
    }

    /**
     * {@inheritDoc}
     *
     * @see com.google.gson.TypeAdapter#read(com.google.gson.stream.JsonReader)
     */
    @Override
    public RestLink read(final JsonReader in) throws IOException {
        final RestLink link = new RestLink();
        in.beginObject();

        while (in.hasNext()) {
            final String name = in.nextName();

            switch (name) {
            case JsonConstants.HREF:
                final String uri = in.nextString();
                link.setHref(UriBuilder.fromUri(uri).build());
                break;
            case JsonConstants.REL:
                final String rel = in.nextString();
                link.setRel(LinkType.fromString(rel));
                break;
            default:
                throw new IOException(Messages.getString(UNEXPECTED_JSON_TOKEN, name));
            }
        }

        in.endObject();

        if (!isComplete(link)) {
            throw new IOException(Messages.getString(INCOMPLETE_JSON, RestVdbImport.class.getSimpleName()));
        }

        return link;
    }

    /**
     * {@inheritDoc}
     *
     * @see com.google.gson.TypeAdapter#write(com.google.gson.stream.JsonWriter, java.lang.Object)
     */
    @Override
    public void write(final JsonWriter out, final RestLink value) throws IOException {
        if (!isComplete(value)) {
            throw new IOException(Messages.getString(INCOMPLETE_JSON, RestLink.class.getSimpleName()));
        }

        out.beginObject();

        // rel
        out.name(JsonConstants.REL);
        out.value(value.getRel().toString());

        // href
        out.name(JsonConstants.HREF);
        out.value(value.getHref().toString());

        out.endObject();
    }

}