net.echinopsii.ariane.community.core.directory.wat.json.ds.technical.network.RoutingAreaJSON.java Source code

Java tutorial

Introduction

Here is the source code for net.echinopsii.ariane.community.core.directory.wat.json.ds.technical.network.RoutingAreaJSON.java

Source

/**
 * Directory WAT
 * RoutingArea to JSON tools
 * Copyright (C) 06/05/14 echinopsii
 *
 * 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 net.echinopsii.ariane.community.core.directory.wat.json.ds.technical.network;

import com.fasterxml.jackson.core.JsonEncoding;
import com.fasterxml.jackson.core.JsonGenerator;
import net.echinopsii.ariane.community.core.directory.base.model.technical.network.Datacenter;
import net.echinopsii.ariane.community.core.directory.base.model.technical.network.RoutingArea;
import net.echinopsii.ariane.community.core.directory.base.model.technical.network.Subnet;
import net.echinopsii.ariane.community.core.directory.wat.DirectoryBootstrap;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.HashSet;
import java.util.Iterator;

/**
 * Our own object to JSON tools as :
 *  - we can have cycle in object graphs
 *  - we still want to have references to linked objects through IDs (and so we don't want @XmlTransient or @JsonIgnore)
 */
public class RoutingAreaJSON {

    public final static String RAREA_ID = "routingAreaID";
    public final static String RAREA_VERSION = "routingAreaVersion";
    public final static String RAREA_NAME = "routingAreaName";
    public final static String RAREA_TYPE = "routingAreaType";
    public final static String RAREA_MULTICAST = "routingAreaMulticast";
    public final static String RAREA_DESCRIPTION = "routingAreaDescription";
    public final static String RAREA_SUBNETS_ID = "routingAreaSubnetsID";
    public final static String RAREA_DC_ID = "routingAreaDatacentersID";

    public final static void routingArea2JSON(RoutingArea routingArea, JsonGenerator jgenerator)
            throws IOException {
        jgenerator.writeStartObject();
        jgenerator.writeNumberField(RAREA_ID, routingArea.getId());
        jgenerator.writeNumberField(RAREA_VERSION, routingArea.getVersion());
        jgenerator.writeStringField(RAREA_NAME, routingArea.getName());
        jgenerator.writeStringField(RAREA_TYPE, routingArea.getType());
        jgenerator.writeStringField(RAREA_MULTICAST, routingArea.getMulticast());
        jgenerator.writeStringField(RAREA_DESCRIPTION, routingArea.getDescription());
        jgenerator.writeArrayFieldStart(RAREA_SUBNETS_ID);
        for (Subnet subnet : routingArea.getSubnets())
            jgenerator.writeNumber(subnet.getId());
        jgenerator.writeEndArray();
        jgenerator.writeArrayFieldStart(RAREA_DC_ID);
        for (Datacenter dc : routingArea.getDatacenters())
            jgenerator.writeNumber(dc.getId());
        jgenerator.writeEndArray();
        jgenerator.writeEndObject();
    }

    public final static void oneRoutingArea2JSON(RoutingArea routingArea, ByteArrayOutputStream outStream)
            throws IOException {
        JsonGenerator jgenerator = DirectoryBootstrap.getjFactory().createGenerator(outStream, JsonEncoding.UTF8);
        RoutingAreaJSON.routingArea2JSON(routingArea, jgenerator);
        jgenerator.close();
    }

    public final static void manyRoutingAreas2JSON(HashSet<RoutingArea> routingAreas,
            ByteArrayOutputStream outStream) throws IOException {
        JsonGenerator jgenerator = DirectoryBootstrap.getjFactory().createGenerator(outStream, JsonEncoding.UTF8);
        jgenerator.writeStartObject();
        jgenerator.writeArrayFieldStart("routingAreas");
        Iterator<RoutingArea> iter = routingAreas.iterator();
        while (iter.hasNext()) {
            RoutingArea current = iter.next();
            RoutingAreaJSON.routingArea2JSON(current, jgenerator);
        }
        jgenerator.writeEndArray();
        jgenerator.writeEndObject();
        jgenerator.close();
    }
}