1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/**
*
* This file is part of Tulip (www.tulip-software.org)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux 1 and Inria Bordeaux - Sud Ouest
*
* Tulip 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 3
* of the License, or (at your option) any later version.
*
* Tulip 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 Public License for more details.
*
*/
#include <cmath>
#include <iostream>
#include <iomanip>
#include <tulip/TulipPlugin.h>
#include <tulip/AbstractProperty.h>
using namespace std;
using namespace tlp;
void printFloat(ostream &os, const string &name , float f) {
/*float a=floor(f);
float b=(f-a)*1000;
if (b<0) b*=-1;*/
os << name << f << endl;
}
void printCoord(ostream &os,const Coord &v) {
printFloat(os,"x ",v.getX());
printFloat(os,"y ",v.getY());
printFloat(os,"z ",v.getZ());
}
void printPoint(ostream &os,const Coord &v) {
os << "point [" << endl;
printCoord(os,v);
os << "]" << endl;
}
void printSize(ostream &os,const Size &v) {
printFloat(os,"h ",v.getW());
printFloat(os,"w ",v.getH());
printFloat(os,"d ",v.getD());
}
/** \addtogroup export */
/*@{*/
/// Export plugin for GML format.
/**
* This plugin records a Tulip graph structure using the GML File format.
* This format is the file format used by Graphlet.
* See www.infosun.fmi.uni-passau.de/Graphlet/GML/ for details.
*/
class GMLExport:public ExportModule {
public:
GMLExport(AlgorithmContext context):ExportModule(context)
{}
~GMLExport() {}
string convert(string tmp) {
string newStr;
for (unsigned int i=0; i<tmp.length(); i++) {
if (tmp[i]=='\"')
newStr+="\\\"";
else
newStr+=tmp[i];
}
return newStr;
}
bool exportGraph(ostream &os) {
os << "graph [" << endl;
os << "directed 1" << endl;
os << "version 2" << endl;
LayoutProperty *layout = graph->getProperty<LayoutProperty>("viewLayout");
StringProperty *label = graph->getProperty<StringProperty>("viewLabel");
// IntegerProperty *shape =getProperty<IntegerProperty>(graph->getPropertyManager(),"viewShape");
ColorProperty *colors = graph->getProperty<ColorProperty>("viewColor");
SizeProperty *sizes = graph->getProperty<SizeProperty>("viewSize");
//Save Nodes
Iterator<node> *itN=graph->getNodes();
if (itN->hasNext()) {
for (; itN->hasNext();) {
node itn=itN->next();
os << "node [" << endl;
os << "id "<< itn.id << endl ;
os << "label \"" << convert(label->getNodeValue(itn)) << "\"" << endl;
os << "graphics [" << endl;
printCoord(os,layout->getNodeValue(itn));
printSize(os,sizes->getNodeValue(itn));
os << "type \"rectangle\"" << endl;
os << "width 0.12" << endl;
os << "fill \"#"<< hex << setfill('0') << setw(2) <<(int)colors->getNodeValue(itn).getR()
<< hex << setfill('0') << setw(2) <<(int)colors->getNodeValue(itn).getG()
<< hex << setfill('0') << setw(2) <<(int)colors->getNodeValue(itn).getB() << "\""<< endl;
// os << "outline \"#"<< hex << setfill('0') << setw(2) <<(int)colors->getNodeValue(itn).getR()
// << hex << setfill('0') << setw(2) <<(int)colors->getNodeValue(itn).getG()
// << hex << setfill('0') << setw(2) <<(int)colors->getNodeValue(itn).getB() << "\""<< endl;
os << "outline \"#000000\"" << endl;
os << dec << setfill(' ') << setw(6) << "]" << endl;
os << ']' << endl;
}
}
delete itN;
//Save edges
Iterator<edge> *itE=graph->getEdges();
for (; itE->hasNext();) {
edge ite=itE->next();
os << "edge [" << endl;
os << "source " << graph->source(ite).id << endl;
os << "target " << graph->target(ite).id << endl;
os << "id " << ite.id << endl;
os << "label \"" << label->getEdgeValue(ite) << "\"" << endl;
os << "graphics [" << endl;
os << "type \"line\"" << endl;
os << "arrow \"last\"" << endl;
os << "width 0.1" << endl;
os << "Line [" << endl;
vector<Coord> lcoord;
vector<Coord>::const_iterator it;
lcoord=layout->getEdgeValue(ite);
if (!lcoord.empty()) {
node itn=graph->source(ite);
printPoint(os,layout->getNodeValue(itn));
}
for (it=lcoord.begin(); it!=lcoord.end(); ++it) {
printPoint(os,*it);
}
if (!lcoord.empty()) {
node itn=graph->target(ite);
printPoint(os,layout->getNodeValue(itn));
}
os << "]" << endl;
os << "]" << endl;
os << "]" << endl;
}
delete itE;
os << "]" << endl;
return true;
}
};
/*@}*/
EXPORTPLUGIN(GMLExport,"GML","Auber David","31/07/2001","GML Export plugin","1.0")
|