Difference between revisions of "SimpleGraph"

From BITPlan Wiki
Jump to navigation Jump to search
Line 211: Line 211:
 
The MapSystem is a simple wrapper for a graph with nodes that have key/value pairs. We would not really need this since Apache Tinkerpop/Gremlin already supplies us with properties per node/vertex.  
 
The MapSystem is a simple wrapper for a graph with nodes that have key/value pairs. We would not really need this since Apache Tinkerpop/Gremlin already supplies us with properties per node/vertex.  
 
Still this system is useful as a helper system and to illustrate the wrapping concepts and possibilities of SimpleGraph
 
Still this system is useful as a helper system and to illustrate the wrapping concepts and possibilities of SimpleGraph
 +
== Unit Test ==
 +
<source lang='java'>
 +
public void testMapSystem() throws Exception {
 +
    MapSystem ms=new MapSystem();
 +
    ms.connect();
 +
    Map[] carbrandmaps= {
 +
        initMap("name","Ferrari","country","Italy","wikidataid","Q27586"),
 +
        initMap("name","Porsche","country","Germany","wikidataid","Q40993"),
 +
        initMap("name","Ford","cuntry","United States","wikidataid","Q44294")
 +
    };
 +
    Map[] carmakemaps= {
 +
        initMap("name","308","year",1984,"wikidataid","Q1407659","brand","Ferrari"),
 +
        initMap("name","328","year",1989,"wikidataid","Q1407669","brand","Ferrari"),
 +
        initMap("name","901","year",1964,"wikidataid","Q2104537","brand","Porsche"),
 +
        initMap("name","2017 GT","year",2017,"wikidataid","Q23856323","brand","Ford")
 +
    };
 +
    MapNode startNode=null;
 +
    for (Map map:carbrandmaps) {
 +
      startNode=new MapNode(ms,"carbrand",map);
 +
    }
 +
    for (Map map:carmakemaps) {
 +
      MapNode mapNode=new MapNode(ms,"car",map);
 +
      ms.g().V().hasLabel("carbrand").has("name",map.get("brand")).forEachRemaining(brandNode->{
 +
        brandNode.addEdge("brand", mapNode.getVertex());
 +
      });
 +
    }
 +
    // any node will do
 +
    ms.setStartNode(startNode);
 +
    debug=true;
 +
    if (debug)
 +
      ms.g().V().forEachRemaining(SimpleNode.printDebug);
 +
    String graphViz = TestRythm.generateGraphViz(ms.getStartNode(), "brand", "name", "wikidataid",
 +
        WIKIDATA_URL_PREFIX,"RL","CarGraph");
 +
    // debug = true;
 +
    if (debug)
 +
      System.out.println(graphViz.trim());
 +
    assertTrue(graphViz.contains("\"Q27586\" [ label=\"Ferrari\" URL=\"https://www.wikidata.org/wiki/Q27586\"]"));
 +
  }
 +
</source>
 
== Graph ==
 
== Graph ==
 
<!--  
 
<!--  

Revision as of 18:04, 26 January 2018

SimpleGraph

SimpleGraph is an open source project that allows to wrap Systems APIs in a way that graph algorithms and storage can be applied. As an implementation Apache Gremlin/Tinkerpop is used.

FileSystem example

Basics

A Filesystem is a graph. It consists of File and Directory nodes

There is parent-child relation between Directories and their subfiles. A Directory may contain files and directories. A file is always leaf of the the tree. A directory may be a leaf if it's empty. In our example we'll go from directories to the containing elements via the "files" edge/relation and from the files/directories to their parents via the "parent" edge.

Example goal

We'd like to analyze some part of a filesystem and we'll use the "src" directory of the SimpleGraph project's source code as a starting point.

The graph below shows the source code structure for the SimpleGraph project with the root of the tree being the "src" directory. The nodes are clickable and will lead you to the corresponding file representation on github.

Example FileSystem Graph or "src" directory

explanation

creating the graph

This graph visualization has been produced with the following Java lines which make sure that the "src" Directory can be handled as a gremlin graph:

 // create a new FileSystem acces supplying the result as a SimpleSystem API
 SimpleSystem fs=new FileSystem();  
 // connect to this system with no extra information (e.g. no credentials) and move to the "src" node 
 SimpleNode start = fs.connect("").moveTo("src");
 // do gremlin style out traversals recusively to any depth 
 start.recursiveOut("files",Integer.MAX_VALUE);

converting the graph to graphviz

The graph is now available and can be traversed to create a graphviz version of it. We use the Rythm template engine to do so. Within Rythm you can use Java code. Basically we try out the code in the TestRythm JUnit test and then use it in the Rythm template graphvizTree.rythm

MapSystem example

The MapSystem is a simple wrapper for a graph with nodes that have key/value pairs. We would not really need this since Apache Tinkerpop/Gremlin already supplies us with properties per node/vertex. Still this system is useful as a helper system and to illustrate the wrapping concepts and possibilities of SimpleGraph

Unit Test

 public void testMapSystem() throws Exception {
    MapSystem ms=new MapSystem();
    ms.connect();
    Map[] carbrandmaps= {
        initMap("name","Ferrari","country","Italy","wikidataid","Q27586"),
        initMap("name","Porsche","country","Germany","wikidataid","Q40993"),
        initMap("name","Ford","cuntry","United States","wikidataid","Q44294")
    };
    Map[] carmakemaps= {
        initMap("name","308","year",1984,"wikidataid","Q1407659","brand","Ferrari"),
        initMap("name","328","year",1989,"wikidataid","Q1407669","brand","Ferrari"),
        initMap("name","901","year",1964,"wikidataid","Q2104537","brand","Porsche"),
        initMap("name","2017 GT","year",2017,"wikidataid","Q23856323","brand","Ford")
    };
    MapNode startNode=null;
    for (Map map:carbrandmaps) {
      startNode=new MapNode(ms,"carbrand",map);
    }
    for (Map map:carmakemaps) {
      MapNode mapNode=new MapNode(ms,"car",map);
      ms.g().V().hasLabel("carbrand").has("name",map.get("brand")).forEachRemaining(brandNode->{
        brandNode.addEdge("brand", mapNode.getVertex());
      });
    }
    // any node will do
    ms.setStartNode(startNode);
    debug=true;
    if (debug)
      ms.g().V().forEachRemaining(SimpleNode.printDebug);
    String graphViz = TestRythm.generateGraphViz(ms.getStartNode(), "brand", "name", "wikidataid",
        WIKIDATA_URL_PREFIX,"RL","CarGraph");
    // debug = true;
    if (debug)
      System.out.println(graphViz.trim());
    assertTrue(graphViz.contains("\"Q27586\" [ label=\"Ferrari\" URL=\"https://www.wikidata.org/wiki/Q27586\"]"));
  }

Graph


In Internet Explorer versions up to 8, things inside the canvas are inaccessible!