- Type Parameters:
- V- the graph vertex type
- E- the graph edge type
- All Implemented Interfaces:
- GraphImporter<V,E>
public class GraphMLImporter<V,E> extends BaseEventDrivenImporter<V,E> implements GraphImporter<V,E>
For a description of the format see http://en.wikipedia.org/wiki/ GraphML or the GraphML Primer.
Below is small example of a graph in GraphML format.
 
 <?xml version="1.0" encoding="UTF-8"?>
 <graphml xmlns="http://graphml.graphdrawing.org/xmlns"  
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns 
     http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
   <key id="d0" for="node" attr.name="color" attr.type="string">
     <default>yellow</default>
   </key>
   <key id="d1" for="edge" attr.name="weight" attr.type="double"/>
   <graph id="G" edgedefault="undirected">
     <node id="n0">
       <data key="d0">green</data>
     </node>
     <node id="n1"/>
     <node id="n2">
       <data key="d0">blue</data>
     </node>
     <node id="n3">
       <data key="d0">red</data>
     </node>
     <node id="n4"/>
     <node id="n5">
       <data key="d0">turquoise</data>
     </node>
     <edge id="e0" source="n0" target="n2">
       <data key="d1">1.0</data>
     </edge>
     <edge id="e1" source="n0" target="n1">
       <data key="d1">1.0</data>
     </edge>
     <edge id="e2" source="n1" target="n3">
       <data key="d1">2.0</data>
     </edge>
     <edge id="e3" source="n3" target="n2"/>
     <edge id="e4" source="n2" target="n4"/>
     <edge id="e5" source="n3" target="n5"/>
     <edge id="e6" source="n5" target="n4">
       <data key="d1">1.1</data>
     </edge>
   </graph>
 </graphml>
 
 
 
 
 The importer reads the input into a graph which is provided by the user. In case the graph is
 weighted and the corresponding edge key with attr.name="weight" is defined, the importer also
 reads edge weights. Otherwise edge weights are ignored. To test whether the graph is weighted,
 method Graph.getType() can be used.
 
 
GraphML-Attributes Values are read as string key-value pairs and passed on to the vertex or edge attribute consumers respectively.
The provided graph object, where the imported graph will be stored, must be able to support the features of the graph that is read. For example if the GraphML file contains self-loops then the graph provided must also support self-loops. The same for multiple edges. Moreover, the parser completely ignores the attribute "edgedefault" which denotes whether an edge is directed or not. Whether edges are directed or not depends on the underlying implementation of the user provided graph object.
 The importer by default validates the input using the 1.0
 GraphML Schema. The user can
 (not recommended) disable the validation by calling setSchemaValidation(boolean).
 
The graph vertices and edges are build using the corresponding graph suppliers. The id of the vertices in the original dot file are reported as a vertex attribute named "ID". Thus, in case vertices in the dot file also contain an "ID" attribute, such an attribute will be reported multiple times.
 The default behavior of the importer is to use the graph vertex supplier in order to create
 vertices. The user can also bypass vertex creation by providing a custom vertex factory method
 using setVertexFactory(Function). The factory method is responsible to create a new
 graph vertex given the vertex identifier read from file.
- Author:
- Dimitrios Michail
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringDEFAULT_VERTEX_ID_KEYDefault key used for vertex ID.
- 
Constructor SummaryConstructors Constructor Description GraphMLImporter()Constructs a new importer.
- 
Method SummaryModifier and Type Method Description java.lang.StringgetEdgeWeightAttributeName()Get the attribute name for edge weightsjava.util.function.Function<java.lang.String,V>getVertexFactory()Get the user custom vertex factory.voidimportGraph(Graph<V,E> graph, java.io.Reader input)Import a graph.booleanisSchemaValidation()Whether the importer validates the inputvoidsetEdgeWeightAttributeName(java.lang.String edgeWeightAttributeName)Set the attribute name to use for edge weights.voidsetSchemaValidation(boolean schemaValidation)Set whether the importer should validate the inputvoidsetVertexFactory(java.util.function.Function<java.lang.String,V> vertexFactory)Set the user custom vertex factory.Methods inherited from class org.jgrapht.nio.BaseEventDrivenImporteraddEdgeAttributeConsumer, addEdgeConsumer, addEdgeCountConsumer, addEdgeWithAttributesConsumer, addGraphAttributeConsumer, addImportEventConsumer, addVertexAttributeConsumer, addVertexConsumer, addVertexCountConsumer, addVertexWithAttributesConsumer, notifyEdge, notifyEdgeAttribute, notifyEdgeCount, notifyEdgeWithAttributes, notifyGraphAttribute, notifyImportEvent, notifyVertex, notifyVertexAttribute, notifyVertexCount, notifyVertexWithAttributes, removeEdgeAttributeConsumer, removeEdgeConsumer, removeEdgeCountConsumer, removeEdgeWithAttributesConsumer, removeGraphAttributeConsumer, removeImportEventConsumer, removeVertexAttributeConsumer, removeVertexConsumer, removeVertexCountConsumer, removeVertexWithAttributesConsumer
- 
Field Details- 
DEFAULT_VERTEX_ID_KEYpublic static final java.lang.String DEFAULT_VERTEX_ID_KEYDefault key used for vertex ID.- See Also:
- Constant Field Values
 
 
- 
- 
Constructor Details- 
GraphMLImporterpublic GraphMLImporter()Constructs a new importer.
 
- 
- 
Method Details- 
getEdgeWeightAttributeNamepublic java.lang.String getEdgeWeightAttributeName()Get the attribute name for edge weights- Returns:
- the attribute name
 
- 
setEdgeWeightAttributeNamepublic void setEdgeWeightAttributeName(java.lang.String edgeWeightAttributeName)Set the attribute name to use for edge weights.- Parameters:
- edgeWeightAttributeName- the attribute name
 
- 
isSchemaValidationpublic boolean isSchemaValidation()Whether the importer validates the input- Returns:
- true if the importer validates the input
 
- 
setSchemaValidationpublic void setSchemaValidation(boolean schemaValidation)Set whether the importer should validate the input- Parameters:
- schemaValidation- value for schema validation
 
- 
getVertexFactoryGet the user custom vertex factory. This is null by default and the graph supplier is used instead.- Returns:
- the user custom vertex factory
 
- 
setVertexFactorySet the user custom vertex factory. The default behavior is being null in which case the graph vertex supplier is used. If supplied the vertex factory is called every time a new vertex is encountered in the file. The method is called with parameter the vertex identifier from the file and should return the actual graph vertex to add to the graph.- Parameters:
- vertexFactory- a vertex factory
 
- 
importGraphImport a graph.The provided graph must be able to support the features of the graph that is read. For example if the GraphML file contains self-loops then the graph provided must also support self-loops. The same for multiple edges. If the provided graph is a weighted graph, the importer also reads edge weights. GraphML-Attributes Values are read as string key-value pairs and propagated to the user as events. - Specified by:
- importGraphin interface- GraphImporter<V,E>
- Parameters:
- graph- the output graph
- input- the input reader
- Throws:
- ImportException- in case an error occurs, such as I/O or parse error
 
 
-