Source code for ontoviz.graph

#!/usr/bin/env python
import argparse
from uuid import uuid4
from collections import defaultdict
from rdflib import Graph, URIRef, Literal, BNode
from rdflib.plugins.sparql import prepareQuery
from rdflib.namespace import RDF, RDFS, SKOS, XSD, DOAP, FOAF, OWL

from ontoviz.namespace import NamespaceManager, split_uri
from ontoviz.graph_element import Node
from ontoviz.utils import Config, SCHEMA


[docs]query_classes = prepareQuery( """ SELECT ?s { { ?s a owl:Class } UNION { ?s owl:subClassOf+ ?o . ?o a owl:Class . } } """, initNs={'owl': OWL},
)
[docs]query_properties = prepareQuery( """ SELECT ?s { { ?s a ?property } UNION { ?s owl:subPropertyOf+ ?o . ?o a ?property } FILTER ( ?property IN ( owl:DatatypeProperty, owl:ObjectProperty ) ) } """, initNs={'owl': OWL},
)
[docs]common_ns = {URIRef(ns) for ns in (RDF, RDFS, SKOS, SCHEMA, XSD, DOAP, FOAF)}
[docs]class OntologyGraph: def __init__(self, files, config, format='ttl', ontology=None): self.g = Graph() self.g.namespace_manager = NamespaceManager(self.g) if ontology is not None: g = Graph() self._load_files(g, ontology) self.ontology_defined = True self.ontology_cls = {cls for cls, in g.query(query_classes)} self.ontology_pty = {pty for pty, in g.query(query_properties)} else: self.ontology_defined = False self.config = config self._load_files(self.g, files, format) self.classes = set() self.instances = dict() self.edges = set() self.labels = dict() self.tooltips = defaultdict(list) self.literals = set() self._read_graph() @staticmethod
[docs] def _load_files(graph, files, format='ttl'): if isinstance(files, str): files = [files] for file in files: graph.parse(file, format=format)
[docs] def _read_graph(self): for s, p, o in self.g: if any(uri in self.config.blacklist for uri in (s, p, o)): continue if p == RDF.type: if o == OWL.Class: self.add_to_classes(s) else: self.instances[s] = o if str(o) not in self.config.colors.ins: self.add_to_classes(o) self.add_edge((s, p, o)) elif p in self.config.label_property: self.labels[s] = o elif p in self.config.tooltip_property: self.tooltips[s].append(o) elif isinstance(o, Literal): literal_id = uuid4().hex self.literals.add((literal_id, o)) self.add_edge((s, p, literal_id)) else: if p in self.config.class_inference_in_object: self.add_to_classes(o) # if p in self.config.property_inference_in_object: self.instances[o] = self.instances.get(o, None) self.add_edge((s, p, o))
[docs] def add_to_classes(self, cls): if self.ontology_defined: if cls not in self.classes and cls not in self.ontology_cls: print("[WARNING] Class {} doesn't exist in the ontology!".format(cls)) self.ontology_cls.add(cls) # Only bark once self.classes.add(cls)
[docs] def add_edge(self, triple): if self.ontology_defined: _, p, _ = triple if p not in self.ontology_pty: prefix, _ = split_uri(p) if URIRef(prefix) not in common_ns: print("[WARNING] Property {} doesn't exist in the ontology!".format(p)) self.ontology_pty.add(p) # Only bark once self.edges.add(triple)
[docs] def convert(self): node_strings = [] edge_strings = [] for class_ in self.classes: node_strings.append(self._dot_class_node(class_)) for instance, class_ in self.instances.items(): node_strings.append(self._dot_instance_node(instance, class_)) for uri, literal in self.literals: node = Node(uri, node_color(self.config.colors.lit)) node.update({"label": text_justify(literal, self.config.max_label_length), "shape": "rect"}) node_strings.append(node.to_draw()) for s, p, o in self.edges: edge_strings.append(' "{}" -> "{}" [label="{}"]'.format(s, o, self._pred_label(p))) return node_strings, edge_strings
[docs] def _dot_class_node(self, class_): color = node_color(self.config.get_cls_color(class_)) return self._dot_node(class_, color)
[docs] def _dot_instance_node(self, instance, class_=None): color = node_color(self.config.get_ins_color(class_)) return self._dot_node(instance, color)
[docs] def _dot_node(self, uri, attrs): node = Node(uri, attrs) if self.tooltips[uri]: node.update({"tooltip": " ".join(self.tooltips[uri])}) if isinstance(uri, BNode) or self.config.bnode_regex_match(uri): node.update({"label": "", "shape": "circle"}) return node.to_draw() node.update({"label": self.compute_label(uri, self.config.max_label_length)}) return node.to_draw()
@classmethod
[docs] def generate_dotstring(cls, node_strings, edge_strings, fill): dot = ['digraph G {', ' rankdir=BT'] if fill: dot.append(' node[style="filled" height=.3]') else: dot.append(' node[height=.3]') dot.extend(node_strings) dot.extend(edge_strings) dot.append('}') return '\n'.join(dot)
[docs] def generate(self): nodes, edges = self.convert() dot = self.generate_dotstring(nodes, edges, self.config.colors.filled) return dot
[docs] def graph(self, format='svg'): try: from graphviz import Source except ImportError: raise ImportError( "You don't have graphviz package installed.\n" "Please install graphviz or use write_file function to save dot file and generate the " "graph manually." ) dot = self.generate() graph = Source(dot) graph.format = format return graph
[docs] def write_file(self, file): dot = self.generate() with open(file, 'w') as f: f.write(dot)
[docs] pred_map = {RDF.type: 'a'}
[docs] def _pred_label(self, uri): return self.pred_map.get(uri, self.compute_label(uri, 0))
[docs] def compute_label(self, uri, length=20): if uri in self.labels: label = self.labels[uri] else: prefix, _, name = self.g.compute_qname(uri) label = '{}:{}'.format(prefix, name) if prefix else name if length and len(label) > length: label = label[: length - 3] + '...' return label
[docs]def node_color(color): return {"fillcolor": color, "color": color}
[docs]def text_justify(words, max_width): words = words.replace('"', '\\"').split() res, cur, num_of_letters = [], [], 0 max_ = 0 for w in words: if num_of_letters + len(w) + len(cur) > max_width: res.append(' '.join(cur)) max_ = max(max_, num_of_letters) cur, num_of_letters = [], 0 cur.append(w) num_of_letters += len(w) words = res + [' '.join(cur).center(max_)] return '\\n'.join(words)