/usr/include/tulip/cxx/minmaxproperty.cxx is in libtulip-dev 4.8.0dfsg-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | /*
*
* This file is part of Tulip (www.tulip-software.org)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux
*
* 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 <tulip/Graph.h>
#include <tulip/Coord.h>
template<typename nodeType, typename edgeType, typename propType>
tlp::MinMaxProperty<nodeType, edgeType, propType>::MinMaxProperty(tlp::Graph* graph, const std::string& name, typename nodeType::RealType NodeMin,
typename nodeType::RealType NodeMax, typename edgeType::RealType EdgeMin, typename edgeType::RealType EdgeMax)
: AbstractProperty<nodeType, edgeType, propType>(graph, name), _nodeMin(NodeMin), _nodeMax(NodeMax), _edgeMin(EdgeMin), _edgeMax(EdgeMax), needGraphListener(false) {
}
template<typename nodeType, typename edgeType, typename propType>
typename nodeType::RealType tlp::MinMaxProperty<nodeType, edgeType, propType>::getNodeMin(tlp::Graph* graph) {
if(!graph) {
graph = this->propType::graph;
}
unsigned int graphID = graph->getId();
MINMAX_MAP(nodeType)::const_iterator it = minMaxNode.find(graphID);
if (it == minMaxNode.end())
return computeMinMaxNode(graph).first;
return it->second.first;
}
template<typename nodeType, typename edgeType, typename propType>
typename nodeType::RealType tlp::MinMaxProperty<nodeType, edgeType, propType>::getNodeMax(tlp::Graph* graph) {
if(!graph) {
graph = this->propType::graph;
}
unsigned int graphID = graph->getId();
MINMAX_MAP(nodeType)::const_iterator it = minMaxNode.find(graphID);
if (it == minMaxNode.end())
return computeMinMaxNode(graph).second;
return it->second.second;
}
template<typename nodeType, typename edgeType, typename propType>
typename edgeType::RealType tlp::MinMaxProperty<nodeType, edgeType, propType>::getEdgeMin(tlp::Graph* graph) {
if(!graph) {
graph = this->propType::graph;
}
unsigned int graphID = graph->getId();
MINMAX_MAP(edgeType)::const_iterator it = minMaxEdge.find(graphID);
if (it == minMaxEdge.end())
return computeMinMaxEdge(graph).first;
return it->second.first;
}
template<typename nodeType, typename edgeType, typename propType>
typename edgeType::RealType tlp::MinMaxProperty<nodeType, edgeType, propType>::getEdgeMax(tlp::Graph* graph) {
if(!graph) {
graph = this->propType::graph;
}
unsigned int graphID = graph->getId();
MINMAX_MAP(edgeType)::const_iterator it = minMaxEdge.find(graphID);
if (it == minMaxEdge.end())
return computeMinMaxEdge(graph).second;
return it->second.second;
}
template<typename nodeType, typename edgeType, typename propType>
MINMAX_PAIR(nodeType) tlp::MinMaxProperty<nodeType, edgeType, propType>::computeMinMaxNode(Graph* graph) {
if(!graph) {
graph = this->propType::graph;
}
typename nodeType::RealType maxN2 = _nodeMin, minN2 = _nodeMax;
if (AbstractProperty<nodeType,edgeType,propType>::numberOfNonDefaultValuatedNodes() == 0)
maxN2 = minN2 = AbstractProperty<nodeType,edgeType,propType>::nodeDefaultValue;
else {
Iterator<node>* nodeIterator = graph->getNodes();
while (nodeIterator->hasNext()) {
node n=nodeIterator->next();
typename nodeType::RealType tmp = this->getNodeValue(n);
if (tmp > maxN2) {
maxN2 = tmp;
}
if (tmp < minN2) {
minN2 = tmp;
}
}
delete nodeIterator;
// be careful to empty graph
if (maxN2 < minN2)
minN2 = maxN2;
}
unsigned int sgi = graph->getId();
// graph observation is now delayed
// until we need to do some minmax computation
// this will minimize the graph loading
if (minMaxNode.find(sgi) == minMaxNode.end() &&
minMaxEdge.find(sgi) == minMaxEdge.end()) {
// launch graph hierarchy observation
graph->addListener(this);
}
MINMAX_PAIR(nodeType) minmax(minN2, maxN2);
return minMaxNode[sgi] = minmax;
}
template<typename nodeType, typename edgeType, typename propType>
MINMAX_PAIR(edgeType) tlp::MinMaxProperty<nodeType, edgeType, propType>::computeMinMaxEdge(Graph* graph) {
typename edgeType::RealType maxE2 = _edgeMin, minE2 = _edgeMax;
if (AbstractProperty<nodeType,edgeType,propType>::numberOfNonDefaultValuatedEdges() == 0)
maxE2 = minE2 = AbstractProperty<nodeType,edgeType,propType>::edgeDefaultValue;
else {
Iterator<edge>* edgeIterator = graph->getEdges();
while (edgeIterator->hasNext()) {
edge ite=edgeIterator->next();
typename edgeType::RealType tmp = this->getEdgeValue(ite);
if (tmp>maxE2)
maxE2 = tmp;
if (tmp<minE2)
minE2 = tmp;
}
delete edgeIterator;
// be careful to no edges graph
if (maxE2 < minE2)
minE2 = maxE2;
}
unsigned int sgi = graph->getId();
// graph observation is now delayed
// until we need to do some minmax computation
// this will minimize the graph loading time
if (minMaxNode.find(sgi) == minMaxNode.end() &&
minMaxEdge.find(sgi) == minMaxEdge.end()) {
// launch graph hierarchy observation
graph->addListener(this);
}
MINMAX_PAIR(edgeType) minmax(minE2, maxE2);
return minMaxEdge[sgi] = minmax;
}
template<typename nodeType, typename edgeType, typename propType>
void tlp::MinMaxProperty<nodeType, edgeType, propType>::removeListenersAndClearNodeMap() {
// we need to clear one of our map
// this will invalidate some minmax computations
// so the graphs corresponding to these cleared minmax computations
// may not have to be longer observed if they have no validated
// minmax computation in the other map
// loop to remove unneeded graph observation
// it is the case if minmax computation
//
MINMAX_MAP(nodeType)::const_iterator it = minMaxNode.begin();
MINMAX_MAP(nodeType)::const_iterator ite = minMaxNode.end();
for(; it != ite; ++it) {
unsigned int gi = it->first;
MINMAX_MAP(edgeType)::const_iterator itg = minMaxEdge.find(gi);
if (itg == minMaxEdge.end()) {
// no computation in the other map
// we can stop observing the current graph
Graph* g =
(propType::graph->getId() == gi) ?
(needGraphListener ? NULL : propType::graph) :
propType::graph->getDescendantGraph(gi);
if (g)
g->removeListener(this);
}
}
// finally clear the map
minMaxNode.clear();
}
template<typename nodeType, typename edgeType, typename propType>
void tlp::MinMaxProperty<nodeType, edgeType, propType>::removeListenersAndClearEdgeMap() {
// we need to clear one of our map
// this will invalidate some minmax computations
// so the graphs corresponding to these cleared minmax computations
// may not have to be longer observed if they have no validated
// minmax computation in the other map
// loop to remove unneeded graph observation
// it is the case if minmax computation
//
MINMAX_MAP(edgeType)::const_iterator it = minMaxEdge.begin();
MINMAX_MAP(edgeType)::const_iterator ite = minMaxEdge.end();
for(; it != ite; ++it) {
unsigned int gi = it->first;
MINMAX_MAP(nodeType)::const_iterator itg = minMaxNode.find(gi);
if (itg == minMaxNode.end()) {
// no computation in the other map
// we can stop observing the current graph
Graph* g =
(propType::graph->getId() == gi) ?
(needGraphListener ? NULL : propType::graph) :
propType::graph->getDescendantGraph(gi);
if (g)
g->removeListener(this);
}
}
// finally clear the map
minMaxEdge.clear();
}
template<typename nodeType, typename edgeType, typename propType>
void tlp::MinMaxProperty<nodeType, edgeType, propType>::updateNodeValue(tlp::node n, typename nodeType::RealType newValue) {
MINMAX_MAP(nodeType)::const_iterator it = minMaxNode.begin();
if (it != minMaxNode.end()) {
typename nodeType::RealType oldV = this->getNodeValue(n);
if (newValue != oldV) {
// loop on subgraph min/max
for(; it != minMaxNode.end(); ++it) {
// if min/max is ok for the current subgraph
// check if min or max has to be updated
typename nodeType::RealType minV = it->second.first;
typename nodeType::RealType maxV = it->second.second;
// check if min or max has to be updated
if ((newValue < minV) || (newValue > maxV) || (oldV == minV) || (oldV == maxV)) {
removeListenersAndClearNodeMap();
break;
}
}
}
}
}
template<typename nodeType, typename edgeType, typename propType>
void tlp::MinMaxProperty<nodeType, edgeType, propType>::updateEdgeValue(tlp::edge e, typename edgeType::RealType newValue) {
MINMAX_MAP(edgeType)::const_iterator it = minMaxEdge.begin();
if (it != minMaxEdge.end()) {
typename edgeType::RealType oldV = this->getEdgeValue(e);
if (newValue != oldV) {
// loop on subgraph min/max
for(; it != minMaxEdge.end(); ++it) {
// if min/max is ok for the current subgraph
// check if min or max has to be updated
typename edgeType::RealType minV = it->second.first;
typename edgeType::RealType maxV = it->second.second;
// check if min or max has to be updated
if ((newValue < minV) || (newValue > maxV) || (oldV == minV) || (oldV == maxV)) {
removeListenersAndClearEdgeMap();
break;
}
}
}
}
}
template<typename nodeType, typename edgeType, typename propType>
void tlp::MinMaxProperty<nodeType, edgeType, propType>::updateAllNodesValues(typename nodeType::RealType newValue) {
MINMAX_MAP(nodeType)::const_iterator it = minMaxNode.begin();
// loop on subgraph min/max
MINMAX_PAIR(nodeType) minmax(newValue, newValue);
for(; it != minMaxNode.end(); ++it) {
unsigned int gid = it->first;
minMaxNode[gid] = minmax;
}
}
template<typename nodeType, typename edgeType, typename propType>
void tlp::MinMaxProperty<nodeType, edgeType, propType>::updateAllEdgesValues(typename edgeType::RealType newValue) {
MINMAX_MAP(edgeType)::const_iterator it = minMaxEdge.begin();
// loop on subgraph min/max
MINMAX_PAIR(edgeType) minmax(newValue, newValue);
for(; it != minMaxEdge.end(); ++it) {
unsigned int gid = it->first;
minMaxEdge[gid] = minmax;
}
}
template<typename nodeType, typename edgeType, typename propType>
void tlp::MinMaxProperty<nodeType, edgeType, propType>::treatEvent(const tlp::Event& ev) {
const GraphEvent* graphEvent = dynamic_cast<const tlp::GraphEvent*>(&ev);
if (graphEvent) {
tlp::Graph* graph = graphEvent->getGraph();
switch(graphEvent->getType()) {
case GraphEvent::TLP_ADD_NODE:
removeListenersAndClearNodeMap();
break;
case GraphEvent::TLP_DEL_NODE: {
unsigned int sgi = graph->getId();
MINMAX_MAP(nodeType)::iterator it = minMaxNode.find(sgi);
if (it != minMaxNode.end()) {
typename nodeType::RealType oldV =
this->getNodeValue(graphEvent->getNode());
// check if min or max has to be updated
if ((oldV == it->second.first) || (oldV == it->second.second)) {
minMaxNode.erase(it);
if ((minMaxEdge.find(sgi) == minMaxEdge.end()) &&
(!needGraphListener || (graph != propType::graph)))
// graph observation is no longer needed
graph->removeListener(this);
}
}
break;
}
case GraphEvent::TLP_ADD_EDGE:
removeListenersAndClearEdgeMap();
break;
case GraphEvent::TLP_DEL_EDGE: {
unsigned int sgi = graph->getId();
MINMAX_MAP(edgeType)::iterator it = minMaxEdge.find(sgi);
if (it != minMaxEdge.end()) {
typename edgeType::RealType oldV =
this->getEdgeValue(graphEvent->getEdge());
// check if min or max has to be updated
if ((oldV == it->second.first) || (oldV == it->second.second)) {
minMaxEdge.erase(it);
if ((minMaxNode.find(sgi) == minMaxNode.end()) &&
(!needGraphListener || (graph != propType::graph)))
// graph observation is no longer needed
graph->removeListener(this);
}
}
break;
}
default:
// we don't care about the rest
break;
}
}
}
|