0
2
0
| 1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
| 2 | 2 |
* |
| 3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
| 4 | 4 |
* |
| 5 | 5 |
* Copyright (C) 2003-2009 |
| 6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
| 7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
| 8 | 8 |
* |
| 9 | 9 |
* Permission to use, modify and distribute this software is granted |
| 10 | 10 |
* provided that this copyright notice appears in all copies. For |
| 11 | 11 |
* precise terms see the accompanying LICENSE file. |
| 12 | 12 |
* |
| 13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
| 14 | 14 |
* express or implied, and with no claim as to its suitability for any |
| 15 | 15 |
* purpose. |
| 16 | 16 |
* |
| 17 | 17 |
*/ |
| 18 | 18 |
|
| 19 | 19 |
#ifndef LEMON_GRAPH_TO_EPS_H |
| 20 | 20 |
#define LEMON_GRAPH_TO_EPS_H |
| 21 | 21 |
|
| 22 | 22 |
#include<iostream> |
| 23 | 23 |
#include<fstream> |
| 24 | 24 |
#include<sstream> |
| 25 | 25 |
#include<algorithm> |
| 26 | 26 |
#include<vector> |
| 27 | 27 |
|
| 28 | 28 |
#ifndef WIN32 |
| 29 | 29 |
#include<sys/time.h> |
| 30 | 30 |
#include<ctime> |
| 31 | 31 |
#else |
| 32 |
#ifndef WIN32_LEAN_AND_MEAN |
|
| 32 | 33 |
#define WIN32_LEAN_AND_MEAN |
| 34 |
#endif |
|
| 35 |
#ifndef NOMINMAX |
|
| 33 | 36 |
#define NOMINMAX |
| 37 |
#endif |
|
| 34 | 38 |
#include<windows.h> |
| 35 | 39 |
#endif |
| 36 | 40 |
|
| 37 | 41 |
#include<lemon/math.h> |
| 38 | 42 |
#include<lemon/core.h> |
| 39 | 43 |
#include<lemon/dim2.h> |
| 40 | 44 |
#include<lemon/maps.h> |
| 41 | 45 |
#include<lemon/color.h> |
| 42 | 46 |
#include<lemon/bits/bezier.h> |
| 43 | 47 |
#include<lemon/error.h> |
| 44 | 48 |
|
| 45 | 49 |
|
| 46 | 50 |
///\ingroup eps_io |
| 47 | 51 |
///\file |
| 48 | 52 |
///\brief A well configurable tool for visualizing graphs |
| 49 | 53 |
|
| 50 | 54 |
namespace lemon {
|
| 51 | 55 |
|
| 52 | 56 |
namespace _graph_to_eps_bits {
|
| 53 | 57 |
template<class MT> |
| 54 | 58 |
class _NegY {
|
| 55 | 59 |
public: |
| 56 | 60 |
typedef typename MT::Key Key; |
| 57 | 61 |
typedef typename MT::Value Value; |
| 58 | 62 |
const MT ↦ |
| 59 | 63 |
int yscale; |
| 60 | 64 |
_NegY(const MT &m,bool b) : map(m), yscale(1-b*2) {}
|
| 61 | 65 |
Value operator[](Key n) { return Value(map[n].x,map[n].y*yscale);}
|
| 62 | 66 |
}; |
| 63 | 67 |
} |
| 64 | 68 |
|
| 65 | 69 |
///Default traits class of GraphToEps |
| 66 | 70 |
|
| 67 | 71 |
///Default traits class of \ref GraphToEps. |
| 68 | 72 |
/// |
| 69 | 73 |
///\c G is the type of the underlying graph. |
| 70 | 74 |
template<class G> |
| 71 | 75 |
struct DefaultGraphToEpsTraits |
| 72 | 76 |
{
|
| 73 | 77 |
typedef G Graph; |
| 74 | 78 |
typedef typename Graph::Node Node; |
| 75 | 79 |
typedef typename Graph::NodeIt NodeIt; |
| 76 | 80 |
typedef typename Graph::Arc Arc; |
| 77 | 81 |
typedef typename Graph::ArcIt ArcIt; |
| 78 | 82 |
typedef typename Graph::InArcIt InArcIt; |
| 79 | 83 |
typedef typename Graph::OutArcIt OutArcIt; |
| 80 | 84 |
|
| 81 | 85 |
|
| 82 | 86 |
const Graph &g; |
| 83 | 87 |
|
| 84 | 88 |
std::ostream& os; |
| 85 | 89 |
|
| 86 | 90 |
typedef ConstMap<typename Graph::Node,dim2::Point<double> > CoordsMapType; |
| 87 | 91 |
CoordsMapType _coords; |
| 88 | 92 |
ConstMap<typename Graph::Node,double > _nodeSizes; |
| 89 | 93 |
ConstMap<typename Graph::Node,int > _nodeShapes; |
| 90 | 94 |
|
| 91 | 95 |
ConstMap<typename Graph::Node,Color > _nodeColors; |
| 92 | 96 |
ConstMap<typename Graph::Arc,Color > _arcColors; |
| 93 | 97 |
|
| 94 | 98 |
ConstMap<typename Graph::Arc,double > _arcWidths; |
| 95 | 99 |
|
| 96 | 100 |
double _arcWidthScale; |
| 97 | 101 |
|
| 98 | 102 |
double _nodeScale; |
| 99 | 103 |
double _xBorder, _yBorder; |
| 100 | 104 |
double _scale; |
| 101 | 105 |
double _nodeBorderQuotient; |
| 102 | 106 |
|
| 103 | 107 |
bool _drawArrows; |
| 104 | 108 |
double _arrowLength, _arrowWidth; |
| 105 | 109 |
|
| 106 | 110 |
bool _showNodes, _showArcs; |
| 107 | 111 |
|
| 108 | 112 |
bool _enableParallel; |
| 109 | 113 |
double _parArcDist; |
| 110 | 114 |
|
| 111 | 115 |
bool _showNodeText; |
| 112 | 116 |
ConstMap<typename Graph::Node,bool > _nodeTexts; |
| 113 | 117 |
double _nodeTextSize; |
| 114 | 118 |
|
| 115 | 119 |
bool _showNodePsText; |
| 116 | 120 |
ConstMap<typename Graph::Node,bool > _nodePsTexts; |
| 117 | 121 |
char *_nodePsTextsPreamble; |
| 118 | 122 |
|
| 119 | 123 |
bool _undirected; |
| 120 | 124 |
|
| 121 | 125 |
bool _pleaseRemoveOsStream; |
| 122 | 126 |
|
| 123 | 127 |
bool _scaleToA4; |
| 124 | 128 |
|
| 125 | 129 |
std::string _title; |
| 126 | 130 |
std::string _copyright; |
| 127 | 131 |
|
| 128 | 132 |
enum NodeTextColorType |
| 129 | 133 |
{ DIST_COL=0, DIST_BW=1, CUST_COL=2, SAME_COL=3 } _nodeTextColorType;
|
| 130 | 134 |
ConstMap<typename Graph::Node,Color > _nodeTextColors; |
| 131 | 135 |
|
| 132 | 136 |
bool _autoNodeScale; |
| 133 | 137 |
bool _autoArcWidthScale; |
| 134 | 138 |
|
| 135 | 139 |
bool _absoluteNodeSizes; |
| 136 | 140 |
bool _absoluteArcWidths; |
| 137 | 141 |
|
| 138 | 142 |
bool _negY; |
| 139 | 143 |
|
| 140 | 144 |
bool _preScale; |
| 141 | 145 |
///Constructor |
| 142 | 146 |
|
| 143 | 147 |
///Constructor |
| 144 | 148 |
///\param _g Reference to the graph to be printed. |
| 145 | 149 |
///\param _os Reference to the output stream. |
| 146 | 150 |
///\param _os Reference to the output stream. |
| 147 | 151 |
///By default it is <tt>std::cout</tt>. |
| 148 | 152 |
///\param _pros If it is \c true, then the \c ostream referenced by \c _os |
| 149 | 153 |
///will be explicitly deallocated by the destructor. |
| 150 | 154 |
DefaultGraphToEpsTraits(const G &_g,std::ostream& _os=std::cout, |
| 151 | 155 |
bool _pros=false) : |
| 152 | 156 |
g(_g), os(_os), |
| 153 | 157 |
_coords(dim2::Point<double>(1,1)), _nodeSizes(1), _nodeShapes(0), |
| 154 | 158 |
_nodeColors(WHITE), _arcColors(BLACK), |
| 155 | 159 |
_arcWidths(1.0), _arcWidthScale(0.003), |
| 156 | 160 |
_nodeScale(.01), _xBorder(10), _yBorder(10), _scale(1.0), |
| 157 | 161 |
_nodeBorderQuotient(.1), |
| 158 | 162 |
_drawArrows(false), _arrowLength(1), _arrowWidth(0.3), |
| 159 | 163 |
_showNodes(true), _showArcs(true), |
| 160 | 164 |
_enableParallel(false), _parArcDist(1), |
| 161 | 165 |
_showNodeText(false), _nodeTexts(false), _nodeTextSize(1), |
| 162 | 166 |
_showNodePsText(false), _nodePsTexts(false), _nodePsTextsPreamble(0), |
| 163 | 167 |
_undirected(lemon::UndirectedTagIndicator<G>::value), |
| 164 | 168 |
_pleaseRemoveOsStream(_pros), _scaleToA4(false), |
| 165 | 169 |
_nodeTextColorType(SAME_COL), _nodeTextColors(BLACK), |
| 166 | 170 |
_autoNodeScale(false), |
| 167 | 171 |
_autoArcWidthScale(false), |
| 168 | 172 |
_absoluteNodeSizes(false), |
| 169 | 173 |
_absoluteArcWidths(false), |
| 170 | 174 |
_negY(false), |
| 171 | 175 |
_preScale(true) |
| 172 | 176 |
{}
|
| 173 | 177 |
}; |
| 174 | 178 |
|
| 175 | 179 |
///Auxiliary class to implement the named parameters of \ref graphToEps() |
| 176 | 180 |
|
| 177 | 181 |
///Auxiliary class to implement the named parameters of \ref graphToEps(). |
| 178 | 182 |
/// |
| 179 | 183 |
///For detailed examples see the \ref graph_to_eps_demo.cc demo file. |
| 180 | 184 |
template<class T> class GraphToEps : public T |
| 181 | 185 |
{
|
| 182 | 186 |
// Can't believe it is required by the C++ standard |
| 183 | 187 |
using T::g; |
| 184 | 188 |
using T::os; |
| 185 | 189 |
|
| 186 | 190 |
using T::_coords; |
| 187 | 191 |
using T::_nodeSizes; |
| 188 | 192 |
using T::_nodeShapes; |
| 189 | 193 |
using T::_nodeColors; |
| 190 | 194 |
using T::_arcColors; |
| 191 | 195 |
using T::_arcWidths; |
| 192 | 196 |
|
| 193 | 197 |
using T::_arcWidthScale; |
| 194 | 198 |
using T::_nodeScale; |
| 195 | 199 |
using T::_xBorder; |
| 196 | 200 |
using T::_yBorder; |
| 197 | 201 |
using T::_scale; |
| 198 | 202 |
using T::_nodeBorderQuotient; |
| 199 | 203 |
|
| 200 | 204 |
using T::_drawArrows; |
| 201 | 205 |
using T::_arrowLength; |
| 202 | 206 |
using T::_arrowWidth; |
| 203 | 207 |
|
| 204 | 208 |
using T::_showNodes; |
| 205 | 209 |
using T::_showArcs; |
| 206 | 210 |
|
| 207 | 211 |
using T::_enableParallel; |
| 208 | 212 |
using T::_parArcDist; |
| 209 | 213 |
|
| 210 | 214 |
using T::_showNodeText; |
| 211 | 215 |
using T::_nodeTexts; |
| 212 | 216 |
using T::_nodeTextSize; |
| 213 | 217 |
|
| 214 | 218 |
using T::_showNodePsText; |
| 215 | 219 |
using T::_nodePsTexts; |
| 216 | 220 |
using T::_nodePsTextsPreamble; |
| 217 | 221 |
|
| 218 | 222 |
using T::_undirected; |
| 219 | 223 |
|
| 220 | 224 |
using T::_pleaseRemoveOsStream; |
| 221 | 225 |
|
| 222 | 226 |
using T::_scaleToA4; |
| 223 | 227 |
|
| 224 | 228 |
using T::_title; |
| 225 | 229 |
using T::_copyright; |
| 226 | 230 |
|
| 227 | 231 |
using T::NodeTextColorType; |
| 228 | 232 |
using T::CUST_COL; |
| 229 | 233 |
using T::DIST_COL; |
| 230 | 234 |
using T::DIST_BW; |
| 231 | 235 |
using T::_nodeTextColorType; |
| 232 | 236 |
using T::_nodeTextColors; |
| 233 | 237 |
|
| 234 | 238 |
using T::_autoNodeScale; |
| 235 | 239 |
using T::_autoArcWidthScale; |
| 236 | 240 |
|
| 237 | 241 |
using T::_absoluteNodeSizes; |
| 238 | 242 |
using T::_absoluteArcWidths; |
| 239 | 243 |
|
| 240 | 244 |
|
| 241 | 245 |
using T::_negY; |
| 242 | 246 |
using T::_preScale; |
| 243 | 247 |
|
| 244 | 248 |
// dradnats ++C eht yb deriuqer si ti eveileb t'naC |
| 245 | 249 |
|
| 246 | 250 |
typedef typename T::Graph Graph; |
| 247 | 251 |
typedef typename Graph::Node Node; |
| 248 | 252 |
typedef typename Graph::NodeIt NodeIt; |
| 249 | 253 |
typedef typename Graph::Arc Arc; |
| 250 | 254 |
typedef typename Graph::ArcIt ArcIt; |
| 251 | 255 |
typedef typename Graph::InArcIt InArcIt; |
| 252 | 256 |
typedef typename Graph::OutArcIt OutArcIt; |
| 253 | 257 |
|
| 254 | 258 |
static const int INTERPOL_PREC; |
| 255 | 259 |
static const double A4HEIGHT; |
| 256 | 260 |
static const double A4WIDTH; |
| 257 | 261 |
static const double A4BORDER; |
| 258 | 262 |
|
| 259 | 263 |
bool dontPrint; |
| 260 | 264 |
|
| 261 | 265 |
public: |
| 262 | 266 |
///Node shapes |
| 263 | 267 |
|
| 264 | 268 |
///Node shapes. |
| 265 | 269 |
/// |
| 266 | 270 |
enum NodeShapes {
|
| 267 | 271 |
/// = 0 |
| 268 | 272 |
///\image html nodeshape_0.png |
| 269 | 273 |
///\image latex nodeshape_0.eps "CIRCLE shape (0)" width=2cm |
| 270 | 274 |
CIRCLE=0, |
| 271 | 275 |
/// = 1 |
| 272 | 276 |
///\image html nodeshape_1.png |
| 273 | 277 |
///\image latex nodeshape_1.eps "SQUARE shape (1)" width=2cm |
| 274 | 278 |
/// |
| 275 | 279 |
SQUARE=1, |
| 276 | 280 |
/// = 2 |
| 277 | 281 |
///\image html nodeshape_2.png |
| 278 | 282 |
///\image latex nodeshape_2.eps "DIAMOND shape (2)" width=2cm |
| 279 | 283 |
/// |
| 280 | 284 |
DIAMOND=2, |
| 281 | 285 |
/// = 3 |
| 282 | 286 |
///\image html nodeshape_3.png |
| 283 | 287 |
///\image latex nodeshape_2.eps "MALE shape (4)" width=2cm |
| 284 | 288 |
/// |
| 285 | 289 |
MALE=3, |
| 286 | 290 |
/// = 4 |
| 287 | 291 |
///\image html nodeshape_4.png |
| 288 | 292 |
///\image latex nodeshape_2.eps "FEMALE shape (4)" width=2cm |
| 289 | 293 |
/// |
| 290 | 294 |
FEMALE=4 |
| 291 | 295 |
}; |
| 292 | 296 |
|
| 293 | 297 |
private: |
| 294 | 298 |
class arcLess {
|
| 295 | 299 |
const Graph &g; |
| 296 | 300 |
public: |
| 297 | 301 |
arcLess(const Graph &_g) : g(_g) {}
|
| 298 | 302 |
bool operator()(Arc a,Arc b) const |
| 299 | 303 |
{
|
| 300 | 304 |
Node ai=std::min(g.source(a),g.target(a)); |
| 301 | 305 |
Node aa=std::max(g.source(a),g.target(a)); |
| 302 | 306 |
Node bi=std::min(g.source(b),g.target(b)); |
| 303 | 307 |
Node ba=std::max(g.source(b),g.target(b)); |
| 304 | 308 |
return ai<bi || |
| 305 | 309 |
(ai==bi && (aa < ba || |
| 306 | 310 |
(aa==ba && ai==g.source(a) && bi==g.target(b)))); |
| 307 | 311 |
} |
| 308 | 312 |
}; |
| 309 | 313 |
bool isParallel(Arc e,Arc f) const |
| 310 | 314 |
{
|
| 311 | 315 |
return (g.source(e)==g.source(f)&& |
| 312 | 316 |
g.target(e)==g.target(f)) || |
| 313 | 317 |
(g.source(e)==g.target(f)&& |
| 314 | 318 |
g.target(e)==g.source(f)); |
| 315 | 319 |
} |
| 316 | 320 |
template<class TT> |
| 317 | 321 |
static std::string psOut(const dim2::Point<TT> &p) |
| 318 | 322 |
{
|
| 319 | 323 |
std::ostringstream os; |
| 320 | 324 |
os << p.x << ' ' << p.y; |
| 321 | 325 |
return os.str(); |
| 322 | 326 |
} |
| 323 | 327 |
static std::string psOut(const Color &c) |
| 324 | 328 |
{
|
| 325 | 329 |
std::ostringstream os; |
| 326 | 330 |
os << c.red() << ' ' << c.green() << ' ' << c.blue(); |
| 327 | 331 |
return os.str(); |
| 328 | 332 |
} |
| 329 | 333 |
|
| 330 | 334 |
public: |
| 331 | 335 |
GraphToEps(const T &t) : T(t), dontPrint(false) {};
|
| 332 | 336 |
|
| 333 | 337 |
template<class X> struct CoordsTraits : public T {
|
| 334 | 338 |
typedef X CoordsMapType; |
| 335 | 339 |
const X &_coords; |
| 336 | 340 |
CoordsTraits(const T &t,const X &x) : T(t), _coords(x) {}
|
| 337 | 341 |
}; |
| 338 | 342 |
///Sets the map of the node coordinates |
| 339 | 343 |
|
| 340 | 344 |
///Sets the map of the node coordinates. |
| 341 | 345 |
///\param x must be a node map with \ref dim2::Point "dim2::Point<double>" or |
| 342 | 346 |
///\ref dim2::Point "dim2::Point<int>" values. |
| 343 | 347 |
template<class X> GraphToEps<CoordsTraits<X> > coords(const X &x) {
|
| 344 | 348 |
dontPrint=true; |
| 345 | 349 |
return GraphToEps<CoordsTraits<X> >(CoordsTraits<X>(*this,x)); |
| 346 | 350 |
} |
| 347 | 351 |
template<class X> struct NodeSizesTraits : public T {
|
| 348 | 352 |
const X &_nodeSizes; |
| 349 | 353 |
NodeSizesTraits(const T &t,const X &x) : T(t), _nodeSizes(x) {}
|
| 350 | 354 |
}; |
| 351 | 355 |
///Sets the map of the node sizes |
| 352 | 356 |
|
| 353 | 357 |
///Sets the map of the node sizes. |
| 354 | 358 |
///\param x must be a node map with \c double (or convertible) values. |
| 355 | 359 |
template<class X> GraphToEps<NodeSizesTraits<X> > nodeSizes(const X &x) |
| 356 | 360 |
{
|
| 357 | 361 |
dontPrint=true; |
| 358 | 362 |
return GraphToEps<NodeSizesTraits<X> >(NodeSizesTraits<X>(*this,x)); |
| 359 | 363 |
} |
| 360 | 364 |
template<class X> struct NodeShapesTraits : public T {
|
| 361 | 365 |
const X &_nodeShapes; |
| 362 | 366 |
NodeShapesTraits(const T &t,const X &x) : T(t), _nodeShapes(x) {}
|
| 363 | 367 |
}; |
| 364 | 368 |
///Sets the map of the node shapes |
| 365 | 369 |
|
| 366 | 370 |
///Sets the map of the node shapes. |
| 367 | 371 |
///The available shape values |
| 368 | 372 |
///can be found in \ref NodeShapes "enum NodeShapes". |
| 369 | 373 |
///\param x must be a node map with \c int (or convertible) values. |
| 370 | 374 |
///\sa NodeShapes |
| 371 | 375 |
template<class X> GraphToEps<NodeShapesTraits<X> > nodeShapes(const X &x) |
| 372 | 376 |
{
|
| 373 | 377 |
dontPrint=true; |
| 374 | 378 |
return GraphToEps<NodeShapesTraits<X> >(NodeShapesTraits<X>(*this,x)); |
| 375 | 379 |
} |
| 376 | 380 |
template<class X> struct NodeTextsTraits : public T {
|
| 377 | 381 |
const X &_nodeTexts; |
| 378 | 382 |
NodeTextsTraits(const T &t,const X &x) : T(t), _nodeTexts(x) {}
|
| 379 | 383 |
}; |
| 380 | 384 |
///Sets the text printed on the nodes |
| 381 | 385 |
|
| 382 | 386 |
///Sets the text printed on the nodes. |
| 383 | 387 |
///\param x must be a node map with type that can be pushed to a standard |
| 384 | 388 |
///\c ostream. |
| 385 | 389 |
template<class X> GraphToEps<NodeTextsTraits<X> > nodeTexts(const X &x) |
| 386 | 390 |
{
|
| 387 | 391 |
dontPrint=true; |
| 388 | 392 |
_showNodeText=true; |
| 389 | 393 |
return GraphToEps<NodeTextsTraits<X> >(NodeTextsTraits<X>(*this,x)); |
| 390 | 394 |
} |
| 391 | 395 |
template<class X> struct NodePsTextsTraits : public T {
|
| 392 | 396 |
const X &_nodePsTexts; |
| 393 | 397 |
NodePsTextsTraits(const T &t,const X &x) : T(t), _nodePsTexts(x) {}
|
| 394 | 398 |
}; |
| 395 | 399 |
///Inserts a PostScript block to the nodes |
| 396 | 400 |
|
| 397 | 401 |
///With this command it is possible to insert a verbatim PostScript |
| 398 | 402 |
///block to the nodes. |
| 399 | 403 |
///The PS current point will be moved to the center of the node before |
| 400 | 404 |
///the PostScript block inserted. |
| 401 | 405 |
/// |
| 402 | 406 |
///Before and after the block a newline character is inserted so you |
| 403 | 407 |
///don't have to bother with the separators. |
| 404 | 408 |
/// |
| 405 | 409 |
///\param x must be a node map with type that can be pushed to a standard |
| 406 | 410 |
///\c ostream. |
| 407 | 411 |
/// |
| 408 | 412 |
///\sa nodePsTextsPreamble() |
| 409 | 413 |
template<class X> GraphToEps<NodePsTextsTraits<X> > nodePsTexts(const X &x) |
| 410 | 414 |
{
|
| 411 | 415 |
dontPrint=true; |
| 412 | 416 |
_showNodePsText=true; |
| 413 | 417 |
return GraphToEps<NodePsTextsTraits<X> >(NodePsTextsTraits<X>(*this,x)); |
| 414 | 418 |
} |
| 415 | 419 |
template<class X> struct ArcWidthsTraits : public T {
|
| 416 | 420 |
const X &_arcWidths; |
| 417 | 421 |
ArcWidthsTraits(const T &t,const X &x) : T(t), _arcWidths(x) {}
|
| 418 | 422 |
}; |
| 419 | 423 |
///Sets the map of the arc widths |
| 420 | 424 |
|
| 421 | 425 |
///Sets the map of the arc widths. |
| 422 | 426 |
///\param x must be an arc map with \c double (or convertible) values. |
| 423 | 427 |
template<class X> GraphToEps<ArcWidthsTraits<X> > arcWidths(const X &x) |
| 424 | 428 |
{
|
| 425 | 429 |
dontPrint=true; |
| 426 | 430 |
return GraphToEps<ArcWidthsTraits<X> >(ArcWidthsTraits<X>(*this,x)); |
| 427 | 431 |
} |
| 428 | 432 |
|
| 429 | 433 |
template<class X> struct NodeColorsTraits : public T {
|
| 430 | 434 |
const X &_nodeColors; |
| 431 | 435 |
NodeColorsTraits(const T &t,const X &x) : T(t), _nodeColors(x) {}
|
| 432 | 436 |
}; |
| 433 | 437 |
///Sets the map of the node colors |
| 434 | 438 |
|
| 435 | 439 |
///Sets the map of the node colors. |
| 436 | 440 |
///\param x must be a node map with \ref Color values. |
| 437 | 441 |
/// |
| 438 | 442 |
///\sa Palette |
| 439 | 443 |
template<class X> GraphToEps<NodeColorsTraits<X> > |
| 440 | 444 |
nodeColors(const X &x) |
| 441 | 445 |
{
|
| 442 | 446 |
dontPrint=true; |
| 443 | 447 |
return GraphToEps<NodeColorsTraits<X> >(NodeColorsTraits<X>(*this,x)); |
| 444 | 448 |
} |
| 445 | 449 |
template<class X> struct NodeTextColorsTraits : public T {
|
| 446 | 450 |
const X &_nodeTextColors; |
| 447 | 451 |
NodeTextColorsTraits(const T &t,const X &x) : T(t), _nodeTextColors(x) {}
|
| 448 | 452 |
}; |
| 449 | 453 |
///Sets the map of the node text colors |
| 450 | 454 |
|
| 451 | 455 |
///Sets the map of the node text colors. |
| 452 | 456 |
///\param x must be a node map with \ref Color values. |
| 453 | 457 |
/// |
| 454 | 458 |
///\sa Palette |
| 455 | 459 |
template<class X> GraphToEps<NodeTextColorsTraits<X> > |
| 456 | 460 |
nodeTextColors(const X &x) |
| 457 | 461 |
{
|
| 458 | 462 |
dontPrint=true; |
| 459 | 463 |
_nodeTextColorType=CUST_COL; |
| 460 | 464 |
return GraphToEps<NodeTextColorsTraits<X> > |
| 461 | 465 |
(NodeTextColorsTraits<X>(*this,x)); |
| 462 | 466 |
} |
| 463 | 467 |
template<class X> struct ArcColorsTraits : public T {
|
| 464 | 468 |
const X &_arcColors; |
| 465 | 469 |
ArcColorsTraits(const T &t,const X &x) : T(t), _arcColors(x) {}
|
| 466 | 470 |
}; |
| 467 | 471 |
///Sets the map of the arc colors |
| 468 | 472 |
|
| 469 | 473 |
///Sets the map of the arc colors. |
| 470 | 474 |
///\param x must be an arc map with \ref Color values. |
| 471 | 475 |
/// |
| 472 | 476 |
///\sa Palette |
| 473 | 477 |
template<class X> GraphToEps<ArcColorsTraits<X> > |
| 474 | 478 |
arcColors(const X &x) |
| 475 | 479 |
{
|
| 476 | 480 |
dontPrint=true; |
| 477 | 481 |
return GraphToEps<ArcColorsTraits<X> >(ArcColorsTraits<X>(*this,x)); |
| 478 | 482 |
} |
| 479 | 483 |
///Sets a global scale factor for node sizes |
| 480 | 484 |
|
| 481 | 485 |
///Sets a global scale factor for node sizes. |
| 482 | 486 |
/// |
| 483 | 487 |
/// If nodeSizes() is not given, this function simply sets the node |
| 484 | 488 |
/// sizes to \c d. If nodeSizes() is given, but |
| 485 | 489 |
/// autoNodeScale() is not, then the node size given by |
| 486 | 490 |
/// nodeSizes() will be multiplied by the value \c d. |
| 487 | 491 |
/// If both nodeSizes() and autoNodeScale() are used, then the |
| 488 | 492 |
/// node sizes will be scaled in such a way that the greatest size will be |
| 489 | 493 |
/// equal to \c d. |
| 490 | 494 |
/// \sa nodeSizes() |
| 491 | 495 |
/// \sa autoNodeScale() |
| 492 | 496 |
GraphToEps<T> &nodeScale(double d=.01) {_nodeScale=d;return *this;}
|
| 493 | 497 |
///Turns on/off the automatic node size scaling. |
| 494 | 498 |
|
| 495 | 499 |
///Turns on/off the automatic node size scaling. |
| 496 | 500 |
/// |
| 497 | 501 |
///\sa nodeScale() |
| 498 | 502 |
/// |
| 499 | 503 |
GraphToEps<T> &autoNodeScale(bool b=true) {
|
| 500 | 504 |
_autoNodeScale=b;return *this; |
| 501 | 505 |
} |
| 502 | 506 |
|
| 503 | 507 |
///Turns on/off the absolutematic node size scaling. |
| 504 | 508 |
|
| 505 | 509 |
///Turns on/off the absolutematic node size scaling. |
| 506 | 510 |
/// |
| 507 | 511 |
///\sa nodeScale() |
| 508 | 512 |
/// |
| 509 | 513 |
GraphToEps<T> &absoluteNodeSizes(bool b=true) {
|
| 510 | 514 |
_absoluteNodeSizes=b;return *this; |
| 511 | 515 |
} |
| 512 | 516 |
|
| 513 | 517 |
///Negates the Y coordinates. |
| 514 | 518 |
GraphToEps<T> &negateY(bool b=true) {
|
| 515 | 519 |
_negY=b;return *this; |
| 516 | 520 |
} |
| 517 | 521 |
|
| 518 | 522 |
///Turn on/off pre-scaling |
| 519 | 523 |
|
| 520 | 524 |
///By default graphToEps() rescales the whole image in order to avoid |
| 521 | 525 |
///very big or very small bounding boxes. |
| 522 | 526 |
/// |
| 523 | 527 |
///This (p)rescaling can be turned off with this function. |
| 524 | 528 |
/// |
| 525 | 529 |
GraphToEps<T> &preScale(bool b=true) {
|
| 526 | 530 |
_preScale=b;return *this; |
| 527 | 531 |
} |
| 528 | 532 |
|
| 529 | 533 |
///Sets a global scale factor for arc widths |
| 530 | 534 |
|
| 531 | 535 |
/// Sets a global scale factor for arc widths. |
| 532 | 536 |
/// |
| 533 | 537 |
/// If arcWidths() is not given, this function simply sets the arc |
| 534 | 538 |
/// widths to \c d. If arcWidths() is given, but |
| 535 | 539 |
/// autoArcWidthScale() is not, then the arc withs given by |
| 536 | 540 |
/// arcWidths() will be multiplied by the value \c d. |
| 537 | 541 |
/// If both arcWidths() and autoArcWidthScale() are used, then the |
| 538 | 542 |
/// arc withs will be scaled in such a way that the greatest width will be |
| 539 | 543 |
/// equal to \c d. |
| 540 | 544 |
GraphToEps<T> &arcWidthScale(double d=.003) {_arcWidthScale=d;return *this;}
|
| 541 | 545 |
///Turns on/off the automatic arc width scaling. |
| 542 | 546 |
|
| 543 | 547 |
///Turns on/off the automatic arc width scaling. |
| 544 | 548 |
/// |
| 545 | 549 |
///\sa arcWidthScale() |
| 546 | 550 |
/// |
| 547 | 551 |
GraphToEps<T> &autoArcWidthScale(bool b=true) {
|
| 548 | 552 |
_autoArcWidthScale=b;return *this; |
| 549 | 553 |
} |
| 550 | 554 |
///Turns on/off the absolutematic arc width scaling. |
| 551 | 555 |
|
| 552 | 556 |
///Turns on/off the absolutematic arc width scaling. |
| 553 | 557 |
/// |
| 554 | 558 |
///\sa arcWidthScale() |
| 555 | 559 |
/// |
| 556 | 560 |
GraphToEps<T> &absoluteArcWidths(bool b=true) {
|
| 557 | 561 |
_absoluteArcWidths=b;return *this; |
| 558 | 562 |
} |
| 559 | 563 |
///Sets a global scale factor for the whole picture |
| 560 | 564 |
GraphToEps<T> &scale(double d) {_scale=d;return *this;}
|
| 561 | 565 |
///Sets the width of the border around the picture |
| 562 | 566 |
GraphToEps<T> &border(double b=10) {_xBorder=_yBorder=b;return *this;}
|
| 563 | 567 |
///Sets the width of the border around the picture |
| 564 | 568 |
GraphToEps<T> &border(double x, double y) {
|
| 565 | 569 |
_xBorder=x;_yBorder=y;return *this; |
| 566 | 570 |
} |
| 567 | 571 |
///Sets whether to draw arrows |
| 568 | 572 |
GraphToEps<T> &drawArrows(bool b=true) {_drawArrows=b;return *this;}
|
| 569 | 573 |
///Sets the length of the arrowheads |
| 570 | 574 |
GraphToEps<T> &arrowLength(double d=1.0) {_arrowLength*=d;return *this;}
|
| 571 | 575 |
///Sets the width of the arrowheads |
| 572 | 576 |
GraphToEps<T> &arrowWidth(double d=.3) {_arrowWidth*=d;return *this;}
|
| 573 | 577 |
|
| 574 | 578 |
///Scales the drawing to fit to A4 page |
| 575 | 579 |
GraphToEps<T> &scaleToA4() {_scaleToA4=true;return *this;}
|
| 576 | 580 |
|
| 577 | 581 |
///Enables parallel arcs |
| 578 | 582 |
GraphToEps<T> &enableParallel(bool b=true) {_enableParallel=b;return *this;}
|
| 579 | 583 |
|
| 580 | 584 |
///Sets the distance between parallel arcs |
| 581 | 585 |
GraphToEps<T> &parArcDist(double d) {_parArcDist*=d;return *this;}
|
| 582 | 586 |
|
| 583 | 587 |
///Hides the arcs |
| 584 | 588 |
GraphToEps<T> &hideArcs(bool b=true) {_showArcs=!b;return *this;}
|
| 585 | 589 |
///Hides the nodes |
| 586 | 590 |
GraphToEps<T> &hideNodes(bool b=true) {_showNodes=!b;return *this;}
|
| 587 | 591 |
|
| 588 | 592 |
///Sets the size of the node texts |
| 589 | 593 |
GraphToEps<T> &nodeTextSize(double d) {_nodeTextSize=d;return *this;}
|
| 590 | 594 |
|
| 591 | 595 |
///Sets the color of the node texts to be different from the node color |
| 592 | 596 |
|
| 593 | 597 |
///Sets the color of the node texts to be as different from the node color |
| 594 | 598 |
///as it is possible. |
| 595 | 599 |
GraphToEps<T> &distantColorNodeTexts() |
| 596 | 600 |
{_nodeTextColorType=DIST_COL;return *this;}
|
| 597 | 601 |
///Sets the color of the node texts to be black or white and always visible. |
| 598 | 602 |
|
| 599 | 603 |
///Sets the color of the node texts to be black or white according to |
| 600 | 604 |
///which is more different from the node color. |
| 601 | 605 |
GraphToEps<T> &distantBWNodeTexts() |
| 602 | 606 |
{_nodeTextColorType=DIST_BW;return *this;}
|
| 603 | 607 |
|
| 604 | 608 |
///Gives a preamble block for node Postscript block. |
| 605 | 609 |
|
| 606 | 610 |
///Gives a preamble block for node Postscript block. |
| 607 | 611 |
/// |
| 608 | 612 |
///\sa nodePsTexts() |
| 609 | 613 |
GraphToEps<T> & nodePsTextsPreamble(const char *str) {
|
| 610 | 614 |
_nodePsTextsPreamble=str ;return *this; |
| 611 | 615 |
} |
| 612 | 616 |
///Sets whether the graph is undirected |
| 613 | 617 |
|
| 614 | 618 |
///Sets whether the graph is undirected. |
| 615 | 619 |
/// |
| 616 | 620 |
///This setting is the default for undirected graphs. |
| 617 | 621 |
/// |
| 618 | 622 |
///\sa directed() |
| 619 | 623 |
GraphToEps<T> &undirected(bool b=true) {_undirected=b;return *this;}
|
| 620 | 624 |
|
| 621 | 625 |
///Sets whether the graph is directed |
| 622 | 626 |
|
| 623 | 627 |
///Sets whether the graph is directed. |
| 624 | 628 |
///Use it to show the edges as a pair of directed ones. |
| 625 | 629 |
/// |
| 626 | 630 |
///This setting is the default for digraphs. |
| 627 | 631 |
/// |
| 628 | 632 |
///\sa undirected() |
| 629 | 633 |
GraphToEps<T> &directed(bool b=true) {_undirected=!b;return *this;}
|
| 630 | 634 |
|
| 631 | 635 |
///Sets the title. |
| 632 | 636 |
|
| 633 | 637 |
///Sets the title of the generated image, |
| 634 | 638 |
///namely it inserts a <tt>%%Title:</tt> DSC field to the header of |
| 635 | 639 |
///the EPS file. |
| 636 | 640 |
GraphToEps<T> &title(const std::string &t) {_title=t;return *this;}
|
| 637 | 641 |
///Sets the copyright statement. |
| 638 | 642 |
|
| 639 | 643 |
///Sets the copyright statement of the generated image, |
| 640 | 644 |
///namely it inserts a <tt>%%Copyright:</tt> DSC field to the header of |
| 641 | 645 |
///the EPS file. |
| 642 | 646 |
GraphToEps<T> ©right(const std::string &t) {_copyright=t;return *this;}
|
| 643 | 647 |
|
| 644 | 648 |
protected: |
| 645 | 649 |
bool isInsideNode(dim2::Point<double> p, double r,int t) |
| 646 | 650 |
{
|
| 647 | 651 |
switch(t) {
|
| 648 | 652 |
case CIRCLE: |
| 649 | 653 |
case MALE: |
| 650 | 654 |
case FEMALE: |
| 651 | 655 |
return p.normSquare()<=r*r; |
| 652 | 656 |
case SQUARE: |
| 653 | 657 |
return p.x<=r&&p.x>=-r&&p.y<=r&&p.y>=-r; |
| 654 | 658 |
case DIAMOND: |
| 655 | 659 |
return p.x+p.y<=r && p.x-p.y<=r && -p.x+p.y<=r && -p.x-p.y<=r; |
| 656 | 660 |
} |
| 657 | 661 |
return false; |
| 658 | 662 |
} |
| 659 | 663 |
|
| 660 | 664 |
public: |
| 661 | 665 |
~GraphToEps() { }
|
| 662 | 666 |
|
| 663 | 667 |
///Draws the graph. |
| 664 | 668 |
|
| 665 | 669 |
///Like other functions using |
| 666 | 670 |
///\ref named-templ-func-param "named template parameters", |
| 667 | 671 |
///this function calls the algorithm itself, i.e. in this case |
| 668 | 672 |
///it draws the graph. |
| 669 | 673 |
void run() {
|
| 670 | 674 |
const double EPSILON=1e-9; |
| 671 | 675 |
if(dontPrint) return; |
| 672 | 676 |
|
| 673 | 677 |
_graph_to_eps_bits::_NegY<typename T::CoordsMapType> |
| 674 | 678 |
mycoords(_coords,_negY); |
| 675 | 679 |
|
| 676 | 680 |
os << "%!PS-Adobe-2.0 EPSF-2.0\n"; |
| 677 | 681 |
if(_title.size()>0) os << "%%Title: " << _title << '\n'; |
| 678 | 682 |
if(_copyright.size()>0) os << "%%Copyright: " << _copyright << '\n'; |
| 679 | 683 |
os << "%%Creator: LEMON, graphToEps()\n"; |
| 680 | 684 |
|
| 681 | 685 |
{
|
| 682 | 686 |
#ifndef WIN32 |
| 683 | 687 |
timeval tv; |
| 684 | 688 |
gettimeofday(&tv, 0); |
| 685 | 689 |
|
| 686 | 690 |
char cbuf[26]; |
| 687 | 691 |
ctime_r(&tv.tv_sec,cbuf); |
| 688 | 692 |
os << "%%CreationDate: " << cbuf; |
| 689 | 693 |
#else |
| 690 | 694 |
SYSTEMTIME time; |
| 691 |
char buf1[11], buf2[9], buf3[5]; |
|
| 692 |
|
|
| 693 | 695 |
GetSystemTime(&time); |
| 696 |
#if defined(_MSC_VER) && (_MSC_VER < 1500) |
|
| 697 |
LPWSTR buf1, buf2, buf3; |
|
| 694 | 698 |
if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, |
| 695 |
"ddd MMM dd", buf1, 11) && |
|
| 699 |
L"ddd MMM dd", buf1, 11) && |
|
| 696 | 700 |
GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time, |
| 697 |
"HH':'mm':'ss", buf2, 9) && |
|
| 701 |
L"HH':'mm':'ss", buf2, 9) && |
|
| 698 | 702 |
GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, |
| 699 |
|
|
| 703 |
L"yyyy", buf3, 5)) {
|
|
| 700 | 704 |
os << "%%CreationDate: " << buf1 << ' ' |
| 701 | 705 |
<< buf2 << ' ' << buf3 << std::endl; |
| 702 | 706 |
} |
| 707 |
#else |
|
| 708 |
char buf1[11], buf2[9], buf3[5]; |
|
| 709 |
if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, |
|
| 710 |
"ddd MMM dd", buf1, 11) && |
|
| 711 |
GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time, |
|
| 712 |
"HH':'mm':'ss", buf2, 9) && |
|
| 713 |
GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, |
|
| 714 |
"yyyy", buf3, 5)) {
|
|
| 715 |
os << "%%CreationDate: " << buf1 << ' ' |
|
| 716 |
<< buf2 << ' ' << buf3 << std::endl; |
|
| 717 |
} |
|
| 718 |
#endif |
|
| 703 | 719 |
#endif |
| 704 | 720 |
} |
| 705 | 721 |
|
| 706 | 722 |
if (_autoArcWidthScale) {
|
| 707 | 723 |
double max_w=0; |
| 708 | 724 |
for(ArcIt e(g);e!=INVALID;++e) |
| 709 | 725 |
max_w=std::max(double(_arcWidths[e]),max_w); |
| 710 | 726 |
if(max_w>EPSILON) {
|
| 711 | 727 |
_arcWidthScale/=max_w; |
| 712 | 728 |
} |
| 713 | 729 |
} |
| 714 | 730 |
|
| 715 | 731 |
if (_autoNodeScale) {
|
| 716 | 732 |
double max_s=0; |
| 717 | 733 |
for(NodeIt n(g);n!=INVALID;++n) |
| 718 | 734 |
max_s=std::max(double(_nodeSizes[n]),max_s); |
| 719 | 735 |
if(max_s>EPSILON) {
|
| 720 | 736 |
_nodeScale/=max_s; |
| 721 | 737 |
} |
| 722 | 738 |
} |
| 723 | 739 |
|
| 724 | 740 |
double diag_len = 1; |
| 725 | 741 |
if(!(_absoluteNodeSizes&&_absoluteArcWidths)) {
|
| 726 | 742 |
dim2::Box<double> bb; |
| 727 | 743 |
for(NodeIt n(g);n!=INVALID;++n) bb.add(mycoords[n]); |
| 728 | 744 |
if (bb.empty()) {
|
| 729 | 745 |
bb = dim2::Box<double>(dim2::Point<double>(0,0)); |
| 730 | 746 |
} |
| 731 | 747 |
diag_len = std::sqrt((bb.bottomLeft()-bb.topRight()).normSquare()); |
| 732 | 748 |
if(diag_len<EPSILON) diag_len = 1; |
| 733 | 749 |
if(!_absoluteNodeSizes) _nodeScale*=diag_len; |
| 734 | 750 |
if(!_absoluteArcWidths) _arcWidthScale*=diag_len; |
| 735 | 751 |
} |
| 736 | 752 |
|
| 737 | 753 |
dim2::Box<double> bb; |
| 738 | 754 |
for(NodeIt n(g);n!=INVALID;++n) {
|
| 739 | 755 |
double ns=_nodeSizes[n]*_nodeScale; |
| 740 | 756 |
dim2::Point<double> p(ns,ns); |
| 741 | 757 |
switch(_nodeShapes[n]) {
|
| 742 | 758 |
case CIRCLE: |
| 743 | 759 |
case SQUARE: |
| 744 | 760 |
case DIAMOND: |
| 745 | 761 |
bb.add(p+mycoords[n]); |
| 746 | 762 |
bb.add(-p+mycoords[n]); |
| 747 | 763 |
break; |
| 748 | 764 |
case MALE: |
| 749 | 765 |
bb.add(-p+mycoords[n]); |
| 750 | 766 |
bb.add(dim2::Point<double>(1.5*ns,1.5*std::sqrt(3.0)*ns)+mycoords[n]); |
| 751 | 767 |
break; |
| 752 | 768 |
case FEMALE: |
| 753 | 769 |
bb.add(p+mycoords[n]); |
| 754 | 770 |
bb.add(dim2::Point<double>(-ns,-3.01*ns)+mycoords[n]); |
| 755 | 771 |
break; |
| 756 | 772 |
} |
| 757 | 773 |
} |
| 758 | 774 |
if (bb.empty()) {
|
| 759 | 775 |
bb = dim2::Box<double>(dim2::Point<double>(0,0)); |
| 760 | 776 |
} |
| 761 | 777 |
|
| 762 | 778 |
if(_scaleToA4) |
| 763 | 779 |
os <<"%%BoundingBox: 0 0 596 842\n%%DocumentPaperSizes: a4\n"; |
| 764 | 780 |
else {
|
| 765 | 781 |
if(_preScale) {
|
| 766 | 782 |
//Rescale so that BoundingBox won't be neither to big nor too small. |
| 767 | 783 |
while(bb.height()*_scale>1000||bb.width()*_scale>1000) _scale/=10; |
| 768 | 784 |
while(bb.height()*_scale<100||bb.width()*_scale<100) _scale*=10; |
| 769 | 785 |
} |
| 770 | 786 |
|
| 771 | 787 |
os << "%%BoundingBox: " |
| 772 | 788 |
<< int(floor(bb.left() * _scale - _xBorder)) << ' ' |
| 773 | 789 |
<< int(floor(bb.bottom() * _scale - _yBorder)) << ' ' |
| 774 | 790 |
<< int(ceil(bb.right() * _scale + _xBorder)) << ' ' |
| 775 | 791 |
<< int(ceil(bb.top() * _scale + _yBorder)) << '\n'; |
| 776 | 792 |
} |
| 777 | 793 |
|
| 778 | 794 |
os << "%%EndComments\n"; |
| 779 | 795 |
|
| 780 | 796 |
//x1 y1 x2 y2 x3 y3 cr cg cb w |
| 781 | 797 |
os << "/lb { setlinewidth setrgbcolor newpath moveto\n"
|
| 782 | 798 |
<< " 4 2 roll 1 index 1 index curveto stroke } bind def\n"; |
| 783 | 799 |
os << "/l { setlinewidth setrgbcolor newpath moveto lineto stroke }"
|
| 784 | 800 |
<< " bind def\n"; |
| 785 | 801 |
//x y r |
| 786 | 802 |
os << "/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath }"
|
| 787 | 803 |
<< " bind def\n"; |
| 788 | 804 |
//x y r |
| 789 | 805 |
os << "/sq { newpath 2 index 1 index add 2 index 2 index add moveto\n"
|
| 790 | 806 |
<< " 2 index 1 index sub 2 index 2 index add lineto\n" |
| 791 | 807 |
<< " 2 index 1 index sub 2 index 2 index sub lineto\n" |
| 792 | 808 |
<< " 2 index 1 index add 2 index 2 index sub lineto\n" |
| 793 | 809 |
<< " closepath pop pop pop} bind def\n"; |
| 794 | 810 |
//x y r |
| 795 | 811 |
os << "/di { newpath 2 index 1 index add 2 index moveto\n"
|
| 796 | 812 |
<< " 2 index 2 index 2 index add lineto\n" |
| 797 | 813 |
<< " 2 index 1 index sub 2 index lineto\n" |
| 798 | 814 |
<< " 2 index 2 index 2 index sub lineto\n" |
| 799 | 815 |
<< " closepath pop pop pop} bind def\n"; |
| 800 | 816 |
// x y r cr cg cb |
| 801 | 817 |
os << "/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill\n"
|
| 802 | 818 |
<< " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n" |
| 803 | 819 |
<< " } bind def\n"; |
| 804 | 820 |
os << "/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill\n"
|
| 805 | 821 |
<< " setrgbcolor " << 1+_nodeBorderQuotient << " div sq fill\n" |
| 806 | 822 |
<< " } bind def\n"; |
| 807 | 823 |
os << "/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill\n"
|
| 808 | 824 |
<< " setrgbcolor " << 1+_nodeBorderQuotient << " div di fill\n" |
| 809 | 825 |
<< " } bind def\n"; |
| 810 | 826 |
os << "/nfemale { 0 0 0 setrgbcolor 3 index "
|
| 811 | 827 |
<< _nodeBorderQuotient/(1+_nodeBorderQuotient) |
| 812 | 828 |
<< " 1.5 mul mul setlinewidth\n" |
| 813 | 829 |
<< " newpath 5 index 5 index moveto " |
| 814 | 830 |
<< "5 index 5 index 5 index 3.01 mul sub\n" |
| 815 | 831 |
<< " lineto 5 index 4 index .7 mul sub 5 index 5 index 2.2 mul sub" |
| 816 | 832 |
<< " moveto\n" |
| 817 | 833 |
<< " 5 index 4 index .7 mul add 5 index 5 index 2.2 mul sub lineto " |
| 818 | 834 |
<< "stroke\n" |
| 819 | 835 |
<< " 5 index 5 index 5 index c fill\n" |
| 820 | 836 |
<< " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n" |
| 821 | 837 |
<< " } bind def\n"; |
| 822 | 838 |
os << "/nmale {\n"
|
| 823 | 839 |
<< " 0 0 0 setrgbcolor 3 index " |
| 824 | 840 |
<< _nodeBorderQuotient/(1+_nodeBorderQuotient) |
| 825 | 841 |
<<" 1.5 mul mul setlinewidth\n" |
| 826 | 842 |
<< " newpath 5 index 5 index moveto\n" |
| 827 | 843 |
<< " 5 index 4 index 1 mul 1.5 mul add\n" |
| 828 | 844 |
<< " 5 index 5 index 3 sqrt 1.5 mul mul add\n" |
| 829 | 845 |
<< " 1 index 1 index lineto\n" |
| 830 | 846 |
<< " 1 index 1 index 7 index sub moveto\n" |
| 831 | 847 |
<< " 1 index 1 index lineto\n" |
| 832 | 848 |
<< " exch 5 index 3 sqrt .5 mul mul sub exch 5 index .5 mul sub" |
| 833 | 849 |
<< " lineto\n" |
| 834 | 850 |
<< " stroke\n" |
| 835 | 851 |
<< " 5 index 5 index 5 index c fill\n" |
| 836 | 852 |
<< " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n" |
| 837 | 853 |
<< " } bind def\n"; |
| 838 | 854 |
|
| 839 | 855 |
|
| 840 | 856 |
os << "/arrl " << _arrowLength << " def\n"; |
| 841 | 857 |
os << "/arrw " << _arrowWidth << " def\n"; |
| 842 | 858 |
// l dx_norm dy_norm |
| 843 | 859 |
os << "/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def\n";
|
| 844 | 860 |
//len w dx_norm dy_norm x1 y1 cr cg cb |
| 845 | 861 |
os << "/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx "
|
| 846 | 862 |
<< "exch def\n" |
| 847 | 863 |
<< " /w exch def /len exch def\n" |
| 848 | 864 |
//<< "0.1 setlinewidth x1 y1 moveto dx len mul dy len mul rlineto stroke" |
| 849 | 865 |
<< " newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto\n" |
| 850 | 866 |
<< " len w sub arrl sub dx dy lrl\n" |
| 851 | 867 |
<< " arrw dy dx neg lrl\n" |
| 852 | 868 |
<< " dx arrl w add mul dy w 2 div arrw add mul sub\n" |
| 853 | 869 |
<< " dy arrl w add mul dx w 2 div arrw add mul add rlineto\n" |
| 854 | 870 |
<< " dx arrl w add mul neg dy w 2 div arrw add mul sub\n" |
| 855 | 871 |
<< " dy arrl w add mul neg dx w 2 div arrw add mul add rlineto\n" |
| 856 | 872 |
<< " arrw dy dx neg lrl\n" |
| 857 | 873 |
<< " len w sub arrl sub neg dx dy lrl\n" |
| 858 | 874 |
<< " closepath fill } bind def\n"; |
| 859 | 875 |
os << "/cshow { 2 index 2 index moveto dup stringwidth pop\n"
|
| 860 | 876 |
<< " neg 2 div fosi .35 mul neg rmoveto show pop pop} def\n"; |
| 861 | 877 |
|
| 862 | 878 |
os << "\ngsave\n"; |
| 863 | 879 |
if(_scaleToA4) |
| 864 | 880 |
if(bb.height()>bb.width()) {
|
| 865 | 881 |
double sc= std::min((A4HEIGHT-2*A4BORDER)/bb.height(), |
| 866 | 882 |
(A4WIDTH-2*A4BORDER)/bb.width()); |
| 867 | 883 |
os << ((A4WIDTH -2*A4BORDER)-sc*bb.width())/2 + A4BORDER << ' ' |
| 868 | 884 |
<< ((A4HEIGHT-2*A4BORDER)-sc*bb.height())/2 + A4BORDER |
| 869 | 885 |
<< " translate\n" |
| 870 | 886 |
<< sc << " dup scale\n" |
| 871 | 887 |
<< -bb.left() << ' ' << -bb.bottom() << " translate\n"; |
| 872 | 888 |
} |
| 873 | 889 |
else {
|
| 874 | 890 |
double sc= std::min((A4HEIGHT-2*A4BORDER)/bb.width(), |
| 875 | 891 |
(A4WIDTH-2*A4BORDER)/bb.height()); |
| 876 | 892 |
os << ((A4WIDTH -2*A4BORDER)-sc*bb.height())/2 + A4BORDER << ' ' |
| 877 | 893 |
<< ((A4HEIGHT-2*A4BORDER)-sc*bb.width())/2 + A4BORDER |
| 878 | 894 |
<< " translate\n" |
| 879 | 895 |
<< sc << " dup scale\n90 rotate\n" |
| 880 | 896 |
<< -bb.left() << ' ' << -bb.top() << " translate\n"; |
| 881 | 897 |
} |
| 882 | 898 |
else if(_scale!=1.0) os << _scale << " dup scale\n"; |
| 883 | 899 |
|
| 884 | 900 |
if(_showArcs) {
|
| 885 | 901 |
os << "%Arcs:\ngsave\n"; |
| 886 | 902 |
if(_enableParallel) {
|
| 887 | 903 |
std::vector<Arc> el; |
| 888 | 904 |
for(ArcIt e(g);e!=INVALID;++e) |
| 889 | 905 |
if((!_undirected||g.source(e)<g.target(e))&&_arcWidths[e]>0 |
| 890 | 906 |
&&g.source(e)!=g.target(e)) |
| 891 | 907 |
el.push_back(e); |
| 892 | 908 |
std::sort(el.begin(),el.end(),arcLess(g)); |
| 893 | 909 |
|
| 894 | 910 |
typename std::vector<Arc>::iterator j; |
| 895 | 911 |
for(typename std::vector<Arc>::iterator i=el.begin();i!=el.end();i=j) {
|
| 896 | 912 |
for(j=i+1;j!=el.end()&&isParallel(*i,*j);++j) ; |
| 897 | 913 |
|
| 898 | 914 |
double sw=0; |
| 899 | 915 |
for(typename std::vector<Arc>::iterator e=i;e!=j;++e) |
| 900 | 916 |
sw+=_arcWidths[*e]*_arcWidthScale+_parArcDist; |
| 901 | 917 |
sw-=_parArcDist; |
| 902 | 918 |
sw/=-2.0; |
| 903 | 919 |
dim2::Point<double> |
| 904 | 920 |
dvec(mycoords[g.target(*i)]-mycoords[g.source(*i)]); |
| 905 | 921 |
double l=std::sqrt(dvec.normSquare()); |
| 906 | 922 |
dim2::Point<double> d(dvec/std::max(l,EPSILON)); |
| 907 | 923 |
dim2::Point<double> m; |
| 908 | 924 |
// m=dim2::Point<double>(mycoords[g.target(*i)]+ |
| 909 | 925 |
// mycoords[g.source(*i)])/2.0; |
| 910 | 926 |
|
| 911 | 927 |
// m=dim2::Point<double>(mycoords[g.source(*i)])+ |
| 912 | 928 |
// dvec*(double(_nodeSizes[g.source(*i)])/ |
| 913 | 929 |
// (_nodeSizes[g.source(*i)]+_nodeSizes[g.target(*i)])); |
| 914 | 930 |
|
| 915 | 931 |
m=dim2::Point<double>(mycoords[g.source(*i)])+ |
| 916 | 932 |
d*(l+_nodeSizes[g.source(*i)]-_nodeSizes[g.target(*i)])/2.0; |
| 917 | 933 |
|
| 918 | 934 |
for(typename std::vector<Arc>::iterator e=i;e!=j;++e) {
|
| 919 | 935 |
sw+=_arcWidths[*e]*_arcWidthScale/2.0; |
| 920 | 936 |
dim2::Point<double> mm=m+rot90(d)*sw/.75; |
| 921 | 937 |
if(_drawArrows) {
|
| 922 | 938 |
int node_shape; |
| 923 | 939 |
dim2::Point<double> s=mycoords[g.source(*e)]; |
| 924 | 940 |
dim2::Point<double> t=mycoords[g.target(*e)]; |
| 925 | 941 |
double rn=_nodeSizes[g.target(*e)]*_nodeScale; |
| 926 | 942 |
node_shape=_nodeShapes[g.target(*e)]; |
| 927 | 943 |
dim2::Bezier3 bez(s,mm,mm,t); |
| 928 | 944 |
double t1=0,t2=1; |
| 929 | 945 |
for(int ii=0;ii<INTERPOL_PREC;++ii) |
| 930 | 946 |
if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t2=(t1+t2)/2; |
| 931 | 947 |
else t1=(t1+t2)/2; |
| 932 | 948 |
dim2::Point<double> apoint=bez((t1+t2)/2); |
| 933 | 949 |
rn = _arrowLength+_arcWidths[*e]*_arcWidthScale; |
| 934 | 950 |
rn*=rn; |
| 935 | 951 |
t2=(t1+t2)/2;t1=0; |
| 936 | 952 |
for(int ii=0;ii<INTERPOL_PREC;++ii) |
| 937 | 953 |
if((bez((t1+t2)/2)-apoint).normSquare()>rn) t1=(t1+t2)/2; |
| 938 | 954 |
else t2=(t1+t2)/2; |
| 939 | 955 |
dim2::Point<double> linend=bez((t1+t2)/2); |
| 940 | 956 |
bez=bez.before((t1+t2)/2); |
| 941 | 957 |
// rn=_nodeSizes[g.source(*e)]*_nodeScale; |
| 942 | 958 |
// node_shape=_nodeShapes[g.source(*e)]; |
| 943 | 959 |
// t1=0;t2=1; |
| 944 | 960 |
// for(int i=0;i<INTERPOL_PREC;++i) |
| 945 | 961 |
// if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) |
| 946 | 962 |
// t1=(t1+t2)/2; |
| 947 | 963 |
// else t2=(t1+t2)/2; |
| 948 | 964 |
// bez=bez.after((t1+t2)/2); |
| 949 | 965 |
os << _arcWidths[*e]*_arcWidthScale << " setlinewidth " |
| 950 | 966 |
<< _arcColors[*e].red() << ' ' |
| 951 | 967 |
<< _arcColors[*e].green() << ' ' |
| 952 | 968 |
<< _arcColors[*e].blue() << " setrgbcolor newpath\n" |
| 953 | 969 |
<< bez.p1.x << ' ' << bez.p1.y << " moveto\n" |
| 954 | 970 |
<< bez.p2.x << ' ' << bez.p2.y << ' ' |
| 955 | 971 |
<< bez.p3.x << ' ' << bez.p3.y << ' ' |
| 956 | 972 |
<< bez.p4.x << ' ' << bez.p4.y << " curveto stroke\n"; |
| 957 | 973 |
dim2::Point<double> dd(rot90(linend-apoint)); |
| 958 | 974 |
dd*=(.5*_arcWidths[*e]*_arcWidthScale+_arrowWidth)/ |
| 959 | 975 |
std::sqrt(dd.normSquare()); |
| 960 | 976 |
os << "newpath " << psOut(apoint) << " moveto " |
| 961 | 977 |
<< psOut(linend+dd) << " lineto " |
| 962 | 978 |
<< psOut(linend-dd) << " lineto closepath fill\n"; |
| 963 | 979 |
} |
| 964 | 980 |
else {
|
| 965 | 981 |
os << mycoords[g.source(*e)].x << ' ' |
| 966 | 982 |
<< mycoords[g.source(*e)].y << ' ' |
| 967 | 983 |
<< mm.x << ' ' << mm.y << ' ' |
| 968 | 984 |
<< mycoords[g.target(*e)].x << ' ' |
| 969 | 985 |
<< mycoords[g.target(*e)].y << ' ' |
| 970 | 986 |
<< _arcColors[*e].red() << ' ' |
| 971 | 987 |
<< _arcColors[*e].green() << ' ' |
| 972 | 988 |
<< _arcColors[*e].blue() << ' ' |
| 973 | 989 |
<< _arcWidths[*e]*_arcWidthScale << " lb\n"; |
| 974 | 990 |
} |
| 975 | 991 |
sw+=_arcWidths[*e]*_arcWidthScale/2.0+_parArcDist; |
| 976 | 992 |
} |
| 977 | 993 |
} |
| 978 | 994 |
} |
| 979 | 995 |
else for(ArcIt e(g);e!=INVALID;++e) |
| 980 | 996 |
if((!_undirected||g.source(e)<g.target(e))&&_arcWidths[e]>0 |
| 981 | 997 |
&&g.source(e)!=g.target(e)) {
|
| 982 | 998 |
if(_drawArrows) {
|
| 983 | 999 |
dim2::Point<double> d(mycoords[g.target(e)]-mycoords[g.source(e)]); |
| 984 | 1000 |
double rn=_nodeSizes[g.target(e)]*_nodeScale; |
| 985 | 1001 |
int node_shape=_nodeShapes[g.target(e)]; |
| 986 | 1002 |
double t1=0,t2=1; |
| 987 | 1003 |
for(int i=0;i<INTERPOL_PREC;++i) |
| 988 | 1004 |
if(isInsideNode((-(t1+t2)/2)*d,rn,node_shape)) t1=(t1+t2)/2; |
| 989 | 1005 |
else t2=(t1+t2)/2; |
| 990 | 1006 |
double l=std::sqrt(d.normSquare()); |
| 991 | 1007 |
d/=l; |
| 992 | 1008 |
|
| 993 | 1009 |
os << l*(1-(t1+t2)/2) << ' ' |
| 994 | 1010 |
<< _arcWidths[e]*_arcWidthScale << ' ' |
| 995 | 1011 |
<< d.x << ' ' << d.y << ' ' |
| 996 | 1012 |
<< mycoords[g.source(e)].x << ' ' |
| 997 | 1013 |
<< mycoords[g.source(e)].y << ' ' |
| 998 | 1014 |
<< _arcColors[e].red() << ' ' |
| 999 | 1015 |
<< _arcColors[e].green() << ' ' |
| 1000 | 1016 |
<< _arcColors[e].blue() << " arr\n"; |
| 1001 | 1017 |
} |
| 1002 | 1018 |
else os << mycoords[g.source(e)].x << ' ' |
| 1003 | 1019 |
<< mycoords[g.source(e)].y << ' ' |
| 1004 | 1020 |
<< mycoords[g.target(e)].x << ' ' |
| 1005 | 1021 |
<< mycoords[g.target(e)].y << ' ' |
| 1006 | 1022 |
<< _arcColors[e].red() << ' ' |
| 1007 | 1023 |
<< _arcColors[e].green() << ' ' |
| 1008 | 1024 |
<< _arcColors[e].blue() << ' ' |
| 1009 | 1025 |
<< _arcWidths[e]*_arcWidthScale << " l\n"; |
| 1010 | 1026 |
} |
| 1011 | 1027 |
os << "grestore\n"; |
| 1012 | 1028 |
} |
| 1013 | 1029 |
if(_showNodes) {
|
| 1014 | 1030 |
os << "%Nodes:\ngsave\n"; |
| 1015 | 1031 |
for(NodeIt n(g);n!=INVALID;++n) {
|
| 1016 | 1032 |
os << mycoords[n].x << ' ' << mycoords[n].y << ' ' |
| 1017 | 1033 |
<< _nodeSizes[n]*_nodeScale << ' ' |
| 1018 | 1034 |
<< _nodeColors[n].red() << ' ' |
| 1019 | 1035 |
<< _nodeColors[n].green() << ' ' |
| 1020 | 1036 |
<< _nodeColors[n].blue() << ' '; |
| 1021 | 1037 |
switch(_nodeShapes[n]) {
|
| 1022 | 1038 |
case CIRCLE: |
| 1023 | 1039 |
os<< "nc";break; |
| 1024 | 1040 |
case SQUARE: |
| 1025 | 1041 |
os<< "nsq";break; |
| 1026 | 1042 |
case DIAMOND: |
| 1027 | 1043 |
os<< "ndi";break; |
| 1028 | 1044 |
case MALE: |
| 1029 | 1045 |
os<< "nmale";break; |
| 1030 | 1046 |
case FEMALE: |
| 1031 | 1047 |
os<< "nfemale";break; |
| 1032 | 1048 |
} |
| 1033 | 1049 |
os<<'\n'; |
| 1034 | 1050 |
} |
| 1035 | 1051 |
os << "grestore\n"; |
| 1036 | 1052 |
} |
| 1037 | 1053 |
if(_showNodeText) {
|
| 1038 | 1054 |
os << "%Node texts:\ngsave\n"; |
| 1039 | 1055 |
os << "/fosi " << _nodeTextSize << " def\n"; |
| 1040 | 1056 |
os << "(Helvetica) findfont fosi scalefont setfont\n"; |
| 1041 | 1057 |
for(NodeIt n(g);n!=INVALID;++n) {
|
| 1042 | 1058 |
switch(_nodeTextColorType) {
|
| 1043 | 1059 |
case DIST_COL: |
| 1044 | 1060 |
os << psOut(distantColor(_nodeColors[n])) << " setrgbcolor\n"; |
| 1045 | 1061 |
break; |
| 1046 | 1062 |
case DIST_BW: |
| 1047 | 1063 |
os << psOut(distantBW(_nodeColors[n])) << " setrgbcolor\n"; |
| 1048 | 1064 |
break; |
| 1049 | 1065 |
case CUST_COL: |
| 1050 | 1066 |
os << psOut(distantColor(_nodeTextColors[n])) << " setrgbcolor\n"; |
| 1051 | 1067 |
break; |
| 1052 | 1068 |
default: |
| 1053 | 1069 |
os << "0 0 0 setrgbcolor\n"; |
| 1054 | 1070 |
} |
| 1055 | 1071 |
os << mycoords[n].x << ' ' << mycoords[n].y |
| 1056 | 1072 |
<< " (" << _nodeTexts[n] << ") cshow\n";
|
| 1057 | 1073 |
} |
| 1058 | 1074 |
os << "grestore\n"; |
| 1059 | 1075 |
} |
| 1060 | 1076 |
if(_showNodePsText) {
|
| 1061 | 1077 |
os << "%Node PS blocks:\ngsave\n"; |
| 1062 | 1078 |
for(NodeIt n(g);n!=INVALID;++n) |
| 1063 | 1079 |
os << mycoords[n].x << ' ' << mycoords[n].y |
| 1064 | 1080 |
<< " moveto\n" << _nodePsTexts[n] << "\n"; |
| 1065 | 1081 |
os << "grestore\n"; |
| 1066 | 1082 |
} |
| 1067 | 1083 |
|
| 1068 | 1084 |
os << "grestore\nshowpage\n"; |
| 1069 | 1085 |
|
| 1070 | 1086 |
//CleanUp: |
| 1071 | 1087 |
if(_pleaseRemoveOsStream) {delete &os;}
|
| 1072 | 1088 |
} |
| 1073 | 1089 |
|
| 1074 | 1090 |
///\name Aliases |
| 1075 | 1091 |
///These are just some aliases to other parameter setting functions. |
| 1076 | 1092 |
|
| 1077 | 1093 |
///@{
|
| 1078 | 1094 |
|
| 1079 | 1095 |
///An alias for arcWidths() |
| 1080 | 1096 |
template<class X> GraphToEps<ArcWidthsTraits<X> > edgeWidths(const X &x) |
| 1081 | 1097 |
{
|
| 1082 | 1098 |
return arcWidths(x); |
| 1083 | 1099 |
} |
| 1084 | 1100 |
|
| 1085 | 1101 |
///An alias for arcColors() |
| 1086 | 1102 |
template<class X> GraphToEps<ArcColorsTraits<X> > |
| 1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
| 2 | 2 |
* |
| 3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
| 4 | 4 |
* |
| 5 | 5 |
* Copyright (C) 2003-2009 |
| 6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
| 7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
| 8 | 8 |
* |
| 9 | 9 |
* Permission to use, modify and distribute this software is granted |
| 10 | 10 |
* provided that this copyright notice appears in all copies. For |
| 11 | 11 |
* precise terms see the accompanying LICENSE file. |
| 12 | 12 |
* |
| 13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
| 14 | 14 |
* express or implied, and with no claim as to its suitability for any |
| 15 | 15 |
* purpose. |
| 16 | 16 |
* |
| 17 | 17 |
*/ |
| 18 | 18 |
|
| 19 | 19 |
#ifndef LEMON_TIME_MEASURE_H |
| 20 | 20 |
#define LEMON_TIME_MEASURE_H |
| 21 | 21 |
|
| 22 | 22 |
///\ingroup timecount |
| 23 | 23 |
///\file |
| 24 | 24 |
///\brief Tools for measuring cpu usage |
| 25 | 25 |
|
| 26 | 26 |
#ifdef WIN32 |
| 27 |
#ifndef WIN32_LEAN_AND_MEAN |
|
| 27 | 28 |
#define WIN32_LEAN_AND_MEAN |
| 29 |
#endif |
|
| 30 |
#ifndef NOMINMAX |
|
| 28 | 31 |
#define NOMINMAX |
| 32 |
#endif |
|
| 29 | 33 |
#include <windows.h> |
| 30 | 34 |
#include <cmath> |
| 31 | 35 |
#else |
| 36 |
#include <unistd.h> |
|
| 32 | 37 |
#include <sys/times.h> |
| 33 | 38 |
#include <sys/time.h> |
| 34 | 39 |
#endif |
| 35 | 40 |
|
| 36 | 41 |
#include <string> |
| 37 | 42 |
#include <fstream> |
| 38 | 43 |
#include <iostream> |
| 39 | 44 |
|
| 40 | 45 |
namespace lemon {
|
| 41 | 46 |
|
| 42 | 47 |
/// \addtogroup timecount |
| 43 | 48 |
/// @{
|
| 44 | 49 |
|
| 45 | 50 |
/// A class to store (cpu)time instances. |
| 46 | 51 |
|
| 47 | 52 |
/// This class stores five time values. |
| 48 | 53 |
/// - a real time |
| 49 | 54 |
/// - a user cpu time |
| 50 | 55 |
/// - a system cpu time |
| 51 | 56 |
/// - a user cpu time of children |
| 52 | 57 |
/// - a system cpu time of children |
| 53 | 58 |
/// |
| 54 | 59 |
/// TimeStamp's can be added to or substracted from each other and |
| 55 | 60 |
/// they can be pushed to a stream. |
| 56 | 61 |
/// |
| 57 | 62 |
/// In most cases, perhaps the \ref Timer or the \ref TimeReport |
| 58 | 63 |
/// class is what you want to use instead. |
| 59 | 64 |
|
| 60 | 65 |
class TimeStamp |
| 61 | 66 |
{
|
| 62 | 67 |
double utime; |
| 63 | 68 |
double stime; |
| 64 | 69 |
double cutime; |
| 65 | 70 |
double cstime; |
| 66 | 71 |
double rtime; |
| 67 | 72 |
|
| 68 | 73 |
void _reset() {
|
| 69 | 74 |
utime = stime = cutime = cstime = rtime = 0; |
| 70 | 75 |
} |
| 71 | 76 |
|
| 72 | 77 |
public: |
| 73 | 78 |
|
| 74 | 79 |
///Read the current time values of the process |
| 75 | 80 |
void stamp() |
| 76 | 81 |
{
|
| 77 | 82 |
#ifndef WIN32 |
| 78 | 83 |
timeval tv; |
| 79 | 84 |
gettimeofday(&tv, 0); |
| 80 | 85 |
rtime=tv.tv_sec+double(tv.tv_usec)/1e6; |
| 81 | 86 |
|
| 82 | 87 |
tms ts; |
| 83 | 88 |
double tck=sysconf(_SC_CLK_TCK); |
| 84 | 89 |
times(&ts); |
| 85 | 90 |
utime=ts.tms_utime/tck; |
| 86 | 91 |
stime=ts.tms_stime/tck; |
| 87 | 92 |
cutime=ts.tms_cutime/tck; |
| 88 | 93 |
cstime=ts.tms_cstime/tck; |
| 89 | 94 |
#else |
| 90 | 95 |
static const double ch = 4294967296.0e-7; |
| 91 | 96 |
static const double cl = 1.0e-7; |
| 92 | 97 |
|
| 93 | 98 |
FILETIME system; |
| 94 | 99 |
GetSystemTimeAsFileTime(&system); |
| 95 | 100 |
rtime = ch * system.dwHighDateTime + cl * system.dwLowDateTime; |
| 96 | 101 |
|
| 97 | 102 |
FILETIME create, exit, kernel, user; |
| 98 | 103 |
if (GetProcessTimes(GetCurrentProcess(),&create, &exit, &kernel, &user)) {
|
| 99 | 104 |
utime = ch * user.dwHighDateTime + cl * user.dwLowDateTime; |
| 100 | 105 |
stime = ch * kernel.dwHighDateTime + cl * kernel.dwLowDateTime; |
| 101 | 106 |
cutime = 0; |
| 102 | 107 |
cstime = 0; |
| 103 | 108 |
} else {
|
| 104 | 109 |
rtime = 0; |
| 105 | 110 |
utime = 0; |
| 106 | 111 |
stime = 0; |
| 107 | 112 |
cutime = 0; |
| 108 | 113 |
cstime = 0; |
| 109 | 114 |
} |
| 110 | 115 |
#endif |
| 111 | 116 |
} |
| 112 | 117 |
|
| 113 | 118 |
/// Constructor initializing with zero |
| 114 | 119 |
TimeStamp() |
| 115 | 120 |
{ _reset(); }
|
| 116 | 121 |
///Constructor initializing with the current time values of the process |
| 117 | 122 |
TimeStamp(void *) { stamp();}
|
| 118 | 123 |
|
| 119 | 124 |
///Set every time value to zero |
| 120 | 125 |
TimeStamp &reset() {_reset();return *this;}
|
| 121 | 126 |
|
| 122 | 127 |
///\e |
| 123 | 128 |
TimeStamp &operator+=(const TimeStamp &b) |
| 124 | 129 |
{
|
| 125 | 130 |
utime+=b.utime; |
| 126 | 131 |
stime+=b.stime; |
| 127 | 132 |
cutime+=b.cutime; |
| 128 | 133 |
cstime+=b.cstime; |
| 129 | 134 |
rtime+=b.rtime; |
| 130 | 135 |
return *this; |
| 131 | 136 |
} |
| 132 | 137 |
///\e |
| 133 | 138 |
TimeStamp operator+(const TimeStamp &b) const |
| 134 | 139 |
{
|
| 135 | 140 |
TimeStamp t(*this); |
| 136 | 141 |
return t+=b; |
| 137 | 142 |
} |
| 138 | 143 |
///\e |
| 139 | 144 |
TimeStamp &operator-=(const TimeStamp &b) |
| 140 | 145 |
{
|
| 141 | 146 |
utime-=b.utime; |
| 142 | 147 |
stime-=b.stime; |
| 143 | 148 |
cutime-=b.cutime; |
| 144 | 149 |
cstime-=b.cstime; |
| 145 | 150 |
rtime-=b.rtime; |
| 146 | 151 |
return *this; |
| 147 | 152 |
} |
| 148 | 153 |
///\e |
| 149 | 154 |
TimeStamp operator-(const TimeStamp &b) const |
| 150 | 155 |
{
|
| 151 | 156 |
TimeStamp t(*this); |
| 152 | 157 |
return t-=b; |
| 153 | 158 |
} |
| 154 | 159 |
///\e |
| 155 | 160 |
TimeStamp &operator*=(double b) |
| 156 | 161 |
{
|
| 157 | 162 |
utime*=b; |
| 158 | 163 |
stime*=b; |
| 159 | 164 |
cutime*=b; |
| 160 | 165 |
cstime*=b; |
| 161 | 166 |
rtime*=b; |
| 162 | 167 |
return *this; |
| 163 | 168 |
} |
| 164 | 169 |
///\e |
| 165 | 170 |
TimeStamp operator*(double b) const |
| 166 | 171 |
{
|
| 167 | 172 |
TimeStamp t(*this); |
| 168 | 173 |
return t*=b; |
| 169 | 174 |
} |
| 170 | 175 |
friend TimeStamp operator*(double b,const TimeStamp &t); |
| 171 | 176 |
///\e |
| 172 | 177 |
TimeStamp &operator/=(double b) |
| 173 | 178 |
{
|
| 174 | 179 |
utime/=b; |
| 175 | 180 |
stime/=b; |
| 176 | 181 |
cutime/=b; |
| 177 | 182 |
cstime/=b; |
| 178 | 183 |
rtime/=b; |
| 179 | 184 |
return *this; |
| 180 | 185 |
} |
| 181 | 186 |
///\e |
| 182 | 187 |
TimeStamp operator/(double b) const |
| 183 | 188 |
{
|
| 184 | 189 |
TimeStamp t(*this); |
| 185 | 190 |
return t/=b; |
| 186 | 191 |
} |
| 187 | 192 |
///The time ellapsed since the last call of stamp() |
| 188 | 193 |
TimeStamp ellapsed() const |
| 189 | 194 |
{
|
| 190 | 195 |
TimeStamp t(NULL); |
| 191 | 196 |
return t-*this; |
| 192 | 197 |
} |
| 193 | 198 |
|
| 194 | 199 |
friend std::ostream& operator<<(std::ostream& os,const TimeStamp &t); |
| 195 | 200 |
|
| 196 | 201 |
///Gives back the user time of the process |
| 197 | 202 |
double userTime() const |
| 198 | 203 |
{
|
| 199 | 204 |
return utime; |
| 200 | 205 |
} |
| 201 | 206 |
///Gives back the system time of the process |
| 202 | 207 |
double systemTime() const |
| 203 | 208 |
{
|
| 204 | 209 |
return stime; |
| 205 | 210 |
} |
| 206 | 211 |
///Gives back the user time of the process' children |
| 207 | 212 |
|
| 208 | 213 |
///\note On <tt>WIN32</tt> platform this value is not calculated. |
| 209 | 214 |
/// |
| 210 | 215 |
double cUserTime() const |
| 211 | 216 |
{
|
| 212 | 217 |
return cutime; |
| 213 | 218 |
} |
| 214 | 219 |
///Gives back the user time of the process' children |
| 215 | 220 |
|
| 216 | 221 |
///\note On <tt>WIN32</tt> platform this value is not calculated. |
| 217 | 222 |
/// |
| 218 | 223 |
double cSystemTime() const |
| 219 | 224 |
{
|
| 220 | 225 |
return cstime; |
| 221 | 226 |
} |
| 222 | 227 |
///Gives back the real time |
| 223 | 228 |
double realTime() const {return rtime;}
|
| 224 | 229 |
}; |
| 225 | 230 |
|
| 226 | 231 |
TimeStamp operator*(double b,const TimeStamp &t) |
| 227 | 232 |
{
|
| 228 | 233 |
return t*b; |
| 229 | 234 |
} |
| 230 | 235 |
|
| 231 | 236 |
///Prints the time counters |
| 232 | 237 |
|
| 233 | 238 |
///Prints the time counters in the following form: |
| 234 | 239 |
/// |
| 235 | 240 |
/// <tt>u: XX.XXs s: XX.XXs cu: XX.XXs cs: XX.XXs real: XX.XXs</tt> |
| 236 | 241 |
/// |
| 237 | 242 |
/// where the values are the |
| 238 | 243 |
/// \li \c u: user cpu time, |
| 239 | 244 |
/// \li \c s: system cpu time, |
| 240 | 245 |
/// \li \c cu: user cpu time of children, |
| 241 | 246 |
/// \li \c cs: system cpu time of children, |
| 242 | 247 |
/// \li \c real: real time. |
| 243 | 248 |
/// \relates TimeStamp |
| 244 | 249 |
/// \note On <tt>WIN32</tt> platform the cummulative values are not |
| 245 | 250 |
/// calculated. |
| 246 | 251 |
inline std::ostream& operator<<(std::ostream& os,const TimeStamp &t) |
| 247 | 252 |
{
|
| 248 | 253 |
os << "u: " << t.userTime() << |
| 249 | 254 |
"s, s: " << t.systemTime() << |
| 250 | 255 |
"s, cu: " << t.cUserTime() << |
| 251 | 256 |
"s, cs: " << t.cSystemTime() << |
| 252 | 257 |
"s, real: " << t.realTime() << "s"; |
| 253 | 258 |
return os; |
| 254 | 259 |
} |
| 255 | 260 |
|
| 256 | 261 |
///Class for measuring the cpu time and real time usage of the process |
| 257 | 262 |
|
| 258 | 263 |
///Class for measuring the cpu time and real time usage of the process. |
| 259 | 264 |
///It is quite easy-to-use, here is a short example. |
| 260 | 265 |
///\code |
| 261 | 266 |
/// #include<lemon/time_measure.h> |
| 262 | 267 |
/// #include<iostream> |
| 263 | 268 |
/// |
| 264 | 269 |
/// int main() |
| 265 | 270 |
/// {
|
| 266 | 271 |
/// |
| 267 | 272 |
/// ... |
| 268 | 273 |
/// |
| 269 | 274 |
/// Timer t; |
| 270 | 275 |
/// doSomething(); |
| 271 | 276 |
/// std::cout << t << '\n'; |
| 272 | 277 |
/// t.restart(); |
| 273 | 278 |
/// doSomethingElse(); |
| 274 | 279 |
/// std::cout << t << '\n'; |
| 275 | 280 |
/// |
| 276 | 281 |
/// ... |
| 277 | 282 |
/// |
| 278 | 283 |
/// } |
| 279 | 284 |
///\endcode |
| 280 | 285 |
/// |
| 281 | 286 |
///The \ref Timer can also be \ref stop() "stopped" and |
| 282 | 287 |
///\ref start() "started" again, so it is possible to compute collected |
| 283 | 288 |
///running times. |
| 284 | 289 |
/// |
| 285 | 290 |
///\warning Depending on the operation system and its actual configuration |
| 286 | 291 |
///the time counters have a certain (10ms on a typical Linux system) |
| 287 | 292 |
///granularity. |
| 288 | 293 |
///Therefore this tool is not appropriate to measure very short times. |
| 289 | 294 |
///Also, if you start and stop the timer very frequently, it could lead to |
| 290 | 295 |
///distorted results. |
| 291 | 296 |
/// |
| 292 | 297 |
///\note If you want to measure the running time of the execution of a certain |
| 293 | 298 |
///function, consider the usage of \ref TimeReport instead. |
| 294 | 299 |
/// |
| 295 | 300 |
///\sa TimeReport |
| 296 | 301 |
class Timer |
| 297 | 302 |
{
|
| 298 | 303 |
int _running; //Timer is running iff _running>0; (_running>=0 always holds) |
| 299 | 304 |
TimeStamp start_time; //This is the relativ start-time if the timer |
| 300 | 305 |
//is _running, the collected _running time otherwise. |
| 301 | 306 |
|
| 302 | 307 |
void _reset() {if(_running) start_time.stamp(); else start_time.reset();}
|
| 303 | 308 |
|
| 304 | 309 |
public: |
| 305 | 310 |
///Constructor. |
| 306 | 311 |
|
| 307 | 312 |
///\param run indicates whether or not the timer starts immediately. |
| 308 | 313 |
/// |
| 309 | 314 |
Timer(bool run=true) :_running(run) {_reset();}
|
| 310 | 315 |
|
| 311 | 316 |
///\name Control the state of the timer |
| 312 | 317 |
///Basically a Timer can be either running or stopped, |
| 313 | 318 |
///but it provides a bit finer control on the execution. |
| 314 | 319 |
///The \ref lemon::Timer "Timer" also counts the number of |
| 315 | 320 |
///\ref lemon::Timer::start() "start()" executions, and it stops |
| 316 | 321 |
///only after the same amount (or more) \ref lemon::Timer::stop() |
| 317 | 322 |
///"stop()"s. This can be useful e.g. to compute the running time |
| 318 | 323 |
///of recursive functions. |
| 319 | 324 |
|
| 320 | 325 |
///@{
|
| 321 | 326 |
|
| 322 | 327 |
///Reset and stop the time counters |
| 323 | 328 |
|
| 324 | 329 |
///This function resets and stops the time counters |
| 325 | 330 |
///\sa restart() |
| 326 | 331 |
void reset() |
| 327 | 332 |
{
|
| 328 | 333 |
_running=0; |
| 329 | 334 |
_reset(); |
| 330 | 335 |
} |
| 331 | 336 |
|
| 332 | 337 |
///Start the time counters |
| 333 | 338 |
|
| 334 | 339 |
///This function starts the time counters. |
| 335 | 340 |
/// |
| 336 | 341 |
///If the timer is started more than ones, it will remain running |
| 337 | 342 |
///until the same amount of \ref stop() is called. |
| 338 | 343 |
///\sa stop() |
| 339 | 344 |
void start() |
| 340 | 345 |
{
|
| 341 | 346 |
if(_running) _running++; |
| 342 | 347 |
else {
|
| 343 | 348 |
_running=1; |
| 344 | 349 |
TimeStamp t; |
| 345 | 350 |
t.stamp(); |
| 346 | 351 |
start_time=t-start_time; |
| 347 | 352 |
} |
| 348 | 353 |
} |
| 349 | 354 |
|
| 350 | 355 |
|
| 351 | 356 |
///Stop the time counters |
| 352 | 357 |
|
| 353 | 358 |
///This function stops the time counters. If start() was executed more than |
| 354 | 359 |
///once, then the same number of stop() execution is necessary the really |
| 355 | 360 |
///stop the timer. |
| 356 | 361 |
/// |
| 357 | 362 |
///\sa halt() |
| 358 | 363 |
///\sa start() |
| 359 | 364 |
///\sa restart() |
| 360 | 365 |
///\sa reset() |
| 361 | 366 |
|
| 362 | 367 |
void stop() |
| 363 | 368 |
{
|
| 364 | 369 |
if(_running && !--_running) {
|
| 365 | 370 |
TimeStamp t; |
| 366 | 371 |
t.stamp(); |
| 367 | 372 |
start_time=t-start_time; |
| 368 | 373 |
} |
| 369 | 374 |
} |
| 370 | 375 |
|
| 371 | 376 |
///Halt (i.e stop immediately) the time counters |
| 372 | 377 |
|
| 373 | 378 |
///This function stops immediately the time counters, i.e. <tt>t.halt()</tt> |
| 374 | 379 |
///is a faster |
| 375 | 380 |
///equivalent of the following. |
| 376 | 381 |
///\code |
| 377 | 382 |
/// while(t.running()) t.stop() |
| 378 | 383 |
///\endcode |
| 379 | 384 |
/// |
| 380 | 385 |
/// |
| 381 | 386 |
///\sa stop() |
| 382 | 387 |
///\sa restart() |
| 383 | 388 |
///\sa reset() |
| 384 | 389 |
|
| 385 | 390 |
void halt() |
| 386 | 391 |
{
|
| 387 | 392 |
if(_running) {
|
| 388 | 393 |
_running=0; |
| 389 | 394 |
TimeStamp t; |
| 390 | 395 |
t.stamp(); |
| 391 | 396 |
start_time=t-start_time; |
| 392 | 397 |
} |
| 393 | 398 |
} |
| 394 | 399 |
|
| 395 | 400 |
///Returns the running state of the timer |
| 396 | 401 |
|
| 397 | 402 |
///This function returns the number of stop() exections that is |
| 398 | 403 |
///necessary to really stop the timer. |
| 399 | 404 |
///For example the timer |
| 400 | 405 |
///is running if and only if the return value is \c true |
| 401 | 406 |
///(i.e. greater than |
| 402 | 407 |
///zero). |
| 403 | 408 |
int running() { return _running; }
|
| 404 | 409 |
|
| 405 | 410 |
|
| 406 | 411 |
///Restart the time counters |
| 407 | 412 |
|
| 408 | 413 |
///This function is a shorthand for |
| 409 | 414 |
///a reset() and a start() calls. |
| 410 | 415 |
/// |
| 411 | 416 |
void restart() |
| 412 | 417 |
{
|
| 413 | 418 |
reset(); |
| 414 | 419 |
start(); |
| 415 | 420 |
} |
0 comments (0 inline)