All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anwiba.tools.graphml.io.GraphMarkupLanguageWriter Maven / Gradle / Ivy

There is a newer version: 1.2.50
Show newest version
/*
 * #%L
 * anwiba commons tools
 * %%
 * Copyright (C) 2007 - 2016 Andreas Bartels
 * %%
 * This program 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 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 General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */
package net.anwiba.tools.graphml.io;

import java.io.Closeable;
import java.io.IOException;
import java.io.Writer;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;

import net.anwiba.tools.simple.graphml.generated.Edge;
import net.anwiba.tools.simple.graphml.generated.Graph;
import net.anwiba.tools.simple.graphml.generated.GraphMl;
import net.anwiba.tools.simple.graphml.generated.Key;
import net.anwiba.tools.simple.graphml.generated.Node;

public class GraphMarkupLanguageWriter implements Closeable {

  private final Writer writer;
  private final GraphMl root;

  public GraphMarkupLanguageWriter(final Writer writer) {
    final Graph graph = new Graph();
    graph.setId("G"); //$NON-NLS-1$
    graph.setEdgedefault("directed"); //$NON-NLS-1$
    this.writer = writer;
    this.root = new GraphMl();
    this.root.setGraph(graph);
  }

  public void set(final Graph graph) {
    this.root.setGraph(graph);
  }

  public void add(final Key key) {
    this.root.getKey().add(key);
  }

  public void add(final Node node) {
    this.root.getGraph().getNode().add(node);
  }

  public void add(final Edge edge) {
    this.root.getGraph().getEdge().add(edge);
  }

  @Override
  public void close() throws IOException {
    try {

      final JAXBContext jaxbContext =
          JAXBContext.newInstance(
              net.anwiba.tools.simple.graphml.generated.GraphMl.class,
              net.anwiba.tools.simple.graphml.generated.Graph.class,
              net.anwiba.tools.simple.graphml.generated.Key.class,
              net.anwiba.tools.simple.graphml.generated.Node.class,
              net.anwiba.tools.simple.graphml.generated.Data.class,
              net.anwiba.tools.simple.graphml.generated.Edge.class,
              net.anwiba.tools.yworks.shapenode.generated.ShapeNode.class,
              net.anwiba.tools.yworks.shapenode.generated.NodeLabel.class,
              net.anwiba.tools.yworks.labels.generated.Labels.class,
              net.anwiba.tools.yworks.labels.generated.Label.class,
              net.anwiba.tools.yworks.labels.generated.Text.class);
      final Marshaller marshaller = jaxbContext.createMarshaller();
      marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
      marshaller.marshal(this.root, this.writer);
    } catch (final JAXBException exception) {
      throw new IOException(exception);
    } finally {
      if (this.writer != null) {
        this.writer.close();
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy