// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "dotgraph.h" #include "lalr.h" #include DotGraph::DotGraph(QTextStream &o): out (o) { } void DotGraph::operator () (Automaton *aut) { Grammar *g = aut->_M_grammar; out << "digraph {" << Qt::endl << Qt::endl; out << "subgraph Includes {" << Qt::endl; for (Automaton::IncludesGraph::iterator incl = Automaton::IncludesGraph::begin_nodes (); incl != Automaton::IncludesGraph::end_nodes (); ++incl) { for (Automaton::IncludesGraph::edge_iterator edge = incl->begin (); edge != incl->end (); ++edge) { out << "\t\"(" << aut->id (incl->data.state) << ", " << incl->data.nt << ")\""; out << "\t->\t"; out << "\"(" << aut->id ((*edge)->data.state) << ", " << (*edge)->data.nt << ")\"\t"; out << "[label=\"" << incl->data.state->follows [incl->data.nt] << "\"]"; out << Qt::endl; } } out << "}" << Qt::endl << Qt::endl; out << "subgraph LRA {" << Qt::endl; //out << "node [shape=record];" << Qt::endl << Qt::endl; for (StatePointer q = aut->states.begin (); q != aut->states.end (); ++q) { int state = aut->id (q); out << "\t" << state << "\t[shape=record,label=\"{"; out << "<0> State " << state; int index = 1; for (ItemPointer item = q->kernel.begin (); item != q->kernel.end (); ++item) out << "| <" << index++ << "> " << *item; out << "}\"]" << Qt::endl; for (Bundle::iterator a = q->bundle.begin (); a != q->bundle.end (); ++a) { const char *clr = g->isTerminal (a.key ()) ? "blue" : "red"; out << "\t" << state << "\t->\t" << aut->id (*a) << "\t[color=\"" << clr << "\",label=\"" << a.key () << "\"]" << Qt::endl; } out << Qt::endl; } out << "}" << Qt::endl; out << Qt::endl << Qt::endl << "}" << Qt::endl; }