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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
|
/**
*
* 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.
*
*/
// +-------------------------------------------------------------------------+
// | Tulip Python Bindings |
// | inspired from bindings by the Booggie project development team |
// | (http://booggie.org/) |
// +-------------------------------------------------------------------------+
namespace tlp {
class Event {
%TypeHeaderCode
#include <tulip/Observable.h>
%End
%Docstring
This class is the base one for representing an event in Tulip.
Events are objects sent by objects whose classes derives from the :class:`tlp.Observable` one.
An event is characterized by its type. The base :class:`tlp.Event` class only carries information as to the type of event, nothing specific :
* :const:`tlp.Event.TLP_DELETE` : send directly to all observers/listeners, not affected by :meth:`tlp.Observable.holdObservers`.
* :const:`tlp.Event.TLP_MODIFICATION` : sent to all observers/listeners. That type of event is first sent to observers then to listeners.
* :const:`tlp.Event.TLP_INFORMATION` : sent only to listeners.
* :const:`tlp.Event.TLP_INVALID` : never sent, used internally for delaying events.
Implement a class derived from :class:`tlp.Event` to add custom events.
Here is a sample code below::
class MyEvent(tlp.Event):
# sender must be an instance deriving from tlp.Observable
def __init__(self, sender, data):
tlp.Event.__init__(self, sender, tlp.Event.TLP_MODIFICATION)
self.data = data
def getData(self):
return self.data
%End
%ConvertToSubClassCode
sipType = NULL;
%End
// =======================================================================================================
public:
enum EventType {TLP_DELETE = 0, TLP_MODIFICATION, TLP_INFORMATION, TLP_INVALID};
Event(const tlp::Observable &sender, tlp::Event::EventType type);
virtual ~Event();
// =======================================================================================================
tlp::Observable* sender() const;
%Docstring
tlp.Event.sender()
Returns the object that sent the event.
:rtype: :class:`tlp.Observable` or one of its derived type.
%End
// =======================================================================================================
EventType type() const;
%Docstring
tlp.Event.type()
Returns the type of the event.
:rtype: :const:`tlp.Event.TLP_DELETE` or :const:`tlp.Event.TLP_MODIFICATION` or :const:`tlp.Event.TLP_INFORMATION` or :const:`tlp.Event.TLP_INVALID`
%End
};
// =======================================================================================================
class Observable {
%TypeHeaderCode
#include <tulip/Observable.h>
%End
%Docstring
The :class:`tlp.Observable` class is the base of Tulip's observation system.
Each class that wishes to send or receive notifications needs to inherit from :class:`tlp.Observable`.
Tulip has two separate mechanisms of observation : Observers and Listeners.
These two mechanisms work through the same class, the difference lies in the way an Observer or Listener is attached to
the object whose events it will receive.
The Listener is closer to the original pattern, where events are sent directly to the recipient.
The Observer is a twist for performance purposes, it can receive the events in a delayed fashion, and cannot know
if the event was just sent or was delayed.
The purpose of this twist is to allow algorithms that perform a high number of modifications (e.g. creating a grid to route edges,
creating multiple subgraphs with metrics or layouts) to run smoothly without overcrowding the event queue.
As events are sent for every graph modification (e.g. adding a node, deleting a node, setting a value on a node), the
sheer quantity of events sent by these algortithms would cause a big performance hit.
This is avoided by using the static method :meth:`tlp.Observable.holdObservers`.
This holds all events in a queue and only sends them when the static method :meth:`tlp.Observable.unholdObservers` is called.
The only exception to this mechanism is the :const:`tlp.Event.TLP_DELETE` kind of event, that is never held back.
Think of it as an unmaskable POSIX signal; whatever the connection to the object and the state of holdObserver, this event will get through.
This is used to prevent crashes in the case where and object is listened or observed and is deleted, as it is likely the recipient
keeps a pointer to the now deleted object.
The Listener however is not affected by the use of :meth:`tlp.Observable.holdObservers` and :meth:`tlp.Observable.unholdObservers`.
The observables Observers and Listeners are internally stocked in a graph structure, allowing to visualize the connections easily.
This eases debugging of observation-related bugs.
Events are always sent to Listeners first, and then to Observers, even when there is no hold.
To receive events, inherit from :class:`tlp.Observable`, and implement one of two virtual functions.
To received events without delay, implement method :meth:`tlp.Observable.treatEvent`.
To attach to an object for receiving events, call its :meth:`tlp.Observable.addListener` method.
To receive events after a delay, implement method :class:`tlp.Observable.treatEvents`.
To attach to an object for receiving events, call its :meth:`tlp.Observable.addObserver` method.
%End
%ConvertToSubClassCode
if (dynamic_cast<tlp::Graph *>(sipCpp)) {
sipType = sipFindType("tlp::Graph");
} else if (dynamic_cast<tlp::BooleanProperty *>(sipCpp)) {
sipType = sipFindType("tlp::BooleanProperty");
} else if (dynamic_cast<tlp::ColorProperty *>(sipCpp)) {
sipType = sipFindType("tlp::ColorProperty");
} else if (dynamic_cast<tlp::DoubleProperty *>(sipCpp)) {
sipType = sipFindType("tlp::DoubleProperty");
} else if (dynamic_cast<tlp::GraphProperty *>(sipCpp)) {
sipType = sipFindType("tlp::GraphProperty");
} else if (dynamic_cast<tlp::IntegerProperty *>(sipCpp)) {
sipType = sipFindType("tlp::IntegerProperty");
} else if (dynamic_cast<tlp::LayoutProperty *>(sipCpp)) {
sipType = sipFindType("tlp::LayoutProperty");
} else if (dynamic_cast<tlp::SizeProperty *>(sipCpp)) {
sipType = sipFindType("tlp::SizeProperty");
} else if (dynamic_cast<tlp::StringProperty *>(sipCpp)) {
sipType = sipFindType("tlp::StringProperty");
} else if (dynamic_cast<tlp::BooleanVectorProperty *>(sipCpp)) {
sipType = sipFindType("tlp::BooleanVectorProperty");
} else if (dynamic_cast<tlp::ColorVectorProperty *>(sipCpp)) {
sipType = sipFindType("tlp::ColorVectorProperty");
} else if (dynamic_cast<tlp::DoubleVectorProperty *>(sipCpp)) {
sipType = sipFindType("tlp::DoubleVectorProperty");
} else if (dynamic_cast<tlp::IntegerVectorProperty *>(sipCpp)) {
sipType = sipFindType("tlp::IntegerVectorProperty");
} else if (dynamic_cast<tlp::CoordVectorProperty *>(sipCpp)) {
sipType = sipFindType("tlp::CoordVectorProperty");
} else if (dynamic_cast<tlp::SizeVectorProperty *>(sipCpp)) {
sipType = sipFindType("tlp::SizeVectorProperty");
} else if (dynamic_cast<tlp::StringVectorProperty *>(sipCpp)) {
sipType = sipFindType("tlp::StringVectorProperty");
} else {
sipType = NULL;
}
%End
public:
// =======================================================================================================
static void unholdObservers();
%Docstring
tlp.Observable.unholdObservers()
Static method to send all held events to the Observers.
Listeners are not affected by this function.
%End
// =======================================================================================================
static void holdObservers();
%Docstring
tlp.Observable.holdObservers()
Holds back all events until :meth:`tlp.Observable.unholObservers` is called.
Listeners are not affected by this function.
Once this function is called, all events heading to an Observer will be held, except :const:`tlp.Event.TLP_DELETE` events.
The events are stored in a queue, and will be sent once :meth:`tlp.Observable.unholObservers` is called.
It is possible to nest calls to :meth:`tlp.Observable.holObservers` and :meth:`tlp.Observable.unholObservers`,
and in this case the events will only be sent when there have been as many calls to :meth:`tlp.Observable.unholObservers` as to :meth:`tlp.Observable.holObservers`.
It is possible to check whether the events are being help by checking the :meth:`tlp.Observable.observersHoldCounter` function.
%End
// =======================================================================================================
static unsigned int observersHoldCounter();
%Docstring
tlp.Observable.observableHoldCounters()
Static method to get the number of times :meth:`tlp.Observable.holdObservers` has been called without a matching :meth:`tlp.Observable.unholdObservers` call.
:rtype: integer
%End
// =======================================================================================================
void addObserver(tlp::Observable *obs) const;
%Docstring
tlp.Observable.addObserver(observer)
Adds an Observer to this object.
The Observer will receive events sent by this object, if there is no hold applied.
:param observer: The object that will receive events.
:type observer: :class:`tlp.Observable`
%End
// =======================================================================================================
void addListener(tlp::Observable *obs) const;
%Docstring
tlp.Observable.addListener(listener)
Adds a Listener to this object.
The Listener will receive events regardless of the state of :meth:`tlp.Observable.holdObservers` and :meth:`tlp.Observable.unholdObservers`.
:param listener: The object that will receive events.
:type listener: :class:`tlp.Observable`
%End
// =======================================================================================================
void removeObserver(tlp::Observable *obs) const;
%Docstring
tlp.Observable.removeObserver(observer)
Removes an Observer from this object.
The Observer will no longer receive events from this object.
:param observer: The Observer to remove from this object.
:type observer: :class:`tlp.Observable`
%End
// =======================================================================================================
void removeListener(tlp::Observable *obs) const;
%Docstring
tlp.Observable.removeListener(listener)
Removes a Listener from this object.
The Listener will no longer receive events from this object.
:param listener: The Listener to remove from this object.
:type listener: :class:`tlp.Observable`
%End
// =======================================================================================================
unsigned int getSent() const;
%Docstring
tlp.Observable.getSent()
Gets the number of sent events.
:rtype: integer
%End
// =======================================================================================================
unsigned int getReceived() const;
%Docstring
tlp.Observable.getReceived()
Gets the number of received events.
:rtype: integer
%End
// =======================================================================================================
unsigned int countListeners() const;
%Docstring
tlp.Observable.countListeners()
Gets the number of Listeners attached to this object.
:rtype: integer
%End
// =======================================================================================================
unsigned int countObservers() const;
%Docstring
tlp.Observable.countObservers()
Gets the number of Observers attached to this object.
:rtype: integer
%End
// =======================================================================================================
protected:
Observable();
Observable(const tlp::Observable &);
virtual ~Observable();
// =======================================================================================================
void sendEvent(const tlp::Event &);
%Docstring
tlp.Observable.sendEvent(event)
Sends an event to all the Observers/Listeners.
:param event: the event to send to the Listeners/Observers.
:type event: :class:`tlp.Event`
%End
// =======================================================================================================
virtual void treatEvents(const std::vector<tlp::Event> &events);
%Docstring
tlp.Observable.treatEvents(events)
This function is called when events are sent to Observers, and Observers only.
It is passed a list of all the events that happened since the last call.
If events were on hold, this vector can be pretty large, and if events were not on hold it is likely it only contains a single element.
It is important to note that custom events can not be catched with that method. Only instances
of base :class:`tlp.Event` type are stored in the list.
Moreover when unholding events through a call to :meth:`tlp.Observable.unholdObservers`, if several
events were sent from the same object, only one instance of :class:`tlp.Event` will be stored in the list
for that sender.
:param events: The events that happened since the last :meth:`tlp.Observable.unholdObservers` call.
:type events: list of :class:`tlp.Event`
%End
// =======================================================================================================
virtual void treatEvent(const tlp::Event & /NoCopy/);
%Docstring
tlp.Observable.treatEvent(event)
This function is called when events are sent to the Listeners, and Listeners only.
Is it passed a reference to the event that just happened. Implement that method
to catch events with custom types (like for instance :class:`tlp.GraphEvent` or :class:`tlp.PropertyEvent`)
:param event: The event that was sent.
:type event: :class:`tlp.Event` or types deriving from it
%End
// =======================================================================================================
bool hasOnlookers() const;
%Docstring
tlp.Observable.hasOnlookers()
Returns whether there are Observers/Listeners attached to this object.
:rtype: boolean
%End
// =======================================================================================================
};
};
|