/usr/lib/python2.7/dist-packages/gtkmvc/model.py is in python-gtkmvc 1.99.1-1.1.
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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 | # Author: Roberto Cavada <roboogle@gmail.com>
#
# Copyright (c) 2005 by Roberto Cavada
#
# pygtkmvc 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 2 of the License, or (at your option) any later version.
#
# pygtkmvc 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110, USA.
#
# For more information on pygtkmvc see <http://pygtkmvc.sourceforge.net>
# or email to the author Roberto Cavada <roboogle@gmail.com>.
# Please report bugs to <roboogle@gmail.com>.
import gtk
import inspect
import types
import support.metaclasses
from support.wrappers import ObsWrapperBase
from observer import Observer, NTInfo
from observable import Signal
from support.log import logger
from support import decorators
import itertools
# Pass prop_name to this method?
WITH_NAME = True
WITHOUT_NAME = False
class Model (Observer):
"""
.. attribute:: __observables__
Class attribute. A list or tuple of name strings. The metaclass
:class:`~gtkmvc.support.metaclasses.ObservablePropertyMeta`
uses it to create properties.
*Value properties* have to exist as an attribute with an
initial value, which may be ``None``.
*Logical properties* require a getter and may have a setter method in
the class.
"""
__metaclass__ = support.metaclasses.ObservablePropertyMeta
__properties__ = {} # override this
# this class is used internally and by metaclass only
class __accinfo:
def __init__(self, func, has_args):
self.func = func; self.has_args = has_args
pass
@classmethod
@decorators.good_decorator_accepting_args
def getter(cls, *args):
"""
Decorate a method as a logical property getter. Comes in two flavours:
.. method:: getter()
:noindex:
Uses the name of the method as the property name.
The method must not require arguments.
.. method:: getter(one, two, ...)
:noindex:
Takes a variable number of strings as the property
name(s). The name of the method does not matter.
The method must take a property name as its sole argument.
"""
@decorators.good_decorator
def __decorator(_func):
# creates the getters dictionary if needed
_dict = getattr(cls, support.metaclasses.LOGICAL_GETTERS_MAP_NAME, None)
if _dict is None:
_dict = dict()
setattr(cls, support.metaclasses.LOGICAL_GETTERS_MAP_NAME, _dict)
pass
# names is an array which is set in the outer frame.
if 0 == len(names):
if _dict.has_key(_func.__name__):
# error: the name is used multiple times
raise ValueError("The same pattern is used multiple times")
_dict[_func.__name__] = cls.__accinfo(_func, False)
else:
# annotates getters for all names
for name in names:
if _dict.has_key(name):
# error: the name is used multiple times
raise ValueError("The same pattern is used multiple times")
_dict[name] = cls.__accinfo(_func, True)
pass
# here we can return whatever, it will in anycase
# substituted by the metaclass constructor, to be a
# property
return _func
assert 0 < len(args)
if 1 == len(args) and isinstance(args[0], types.FunctionType):
# decorator is used without arguments (args[0] contains
# the decorated function)
names = [] # names is used in __decorator
return __decorator(args[0])
# Here decorator is used with arguments
# checks arguments types
for arg in args:
if not isinstance(arg, types.StringType):
raise TypeError("Arguments of decorator must be strings")
pass
names = args # names is used in __decorator
return __decorator
# ----------------------------------------------------------------------
@classmethod
@decorators.good_decorator_accepting_args
def setter(cls, *args):
"""
Decorate a method as a logical property setter. The counterpart to
:meth:`getter`. Also comes in two flavours:
.. method:: setter()
:noindex:
Uses the name of the method as the property name.
The method must take one argument, the new value.
.. method:: getter(one, two, ...)
:noindex:
Takes a variable number of strings as the property
name(s). The name of the method does not matter.
The method must take two arguments, the property name and new value.
"""
@decorators.good_decorator
def __decorator(_func):
# creates the setters dictionary if needed
_dict = getattr(cls, support.metaclasses.LOGICAL_SETTERS_MAP_NAME, None)
if _dict is None:
_dict = dict()
setattr(cls, support.metaclasses.LOGICAL_SETTERS_MAP_NAME, _dict)
pass
# names is an array which is set in the outer frame.
if 0 == len(names):
if _dict.has_key(_func.__name__):
# error: the name is used multiple times
raise ValueError("The same pattern is used multiple times")
_dict[_func.__name__] = cls.__accinfo(_func, False)
else:
# annotates getters for all names
for name in names:
if _dict.has_key(name):
# error: the name is used multiple times
raise ValueError("The same pattern is used multiple times")
_dict[name] = cls.__accinfo(_func, True)
pass
pass
# here we can return whatever, it will in anycase
# substituted by the metaclass constructor, to be a
# property
return _func
assert 0 < len(args)
if 1 == len(args) and isinstance(args[0], types.FunctionType):
# decorator is used without arguments (args[0] contains
# the decorated function)
names = [] # names is used in __decorator
return __decorator(args[0])
# Here decorator is used with arguments
# checks arguments types
for arg in args:
if not isinstance(arg, types.StringType):
raise TypeError("Arguments of decorator must be strings")
pass
names = args # names is used in __decorator
return __decorator
# ----------------------------------------------------------------------
def __init__(self):
Observer.__init__(self)
self.__observers = []
# keys are properties names, values are pairs (method,
# kwargs|None) inside the observer. kwargs is the keyword
# argument possibly specified when explicitly defining the
# notification method in observers, and it is used to build
# the NTInfo instance passed down when the notification method
# is invoked. If kwargs is None (special case), the
# notification method is "old style" (property_<name>_...) and
# won't be receiving the property name.
self.__value_notifications = {}
self.__instance_notif_before = {}
self.__instance_notif_after = {}
self.__signal_notif = {}
for key in self.get_properties(): self.register_property(key)
return
def register_property(self, name):
"""Registers an existing property to be monitored, and sets
up notifiers for notifications"""
if not self.__value_notifications.has_key(name):
self.__value_notifications[name] = []
pass
# registers observable wrappers
prop = getattr(self, "_prop_%s" % name, None)
if isinstance(prop, ObsWrapperBase):
prop.__add_model__(self, name)
if isinstance(prop, Signal):
if not self.__signal_notif.has_key(name):
self.__signal_notif[name] = []
pass
pass
else:
if not self.__instance_notif_before.has_key(name):
self.__instance_notif_before[name] = []
pass
if not self.__instance_notif_after.has_key(name):
self.__instance_notif_after[name] = []
pass
pass
pass
return
def has_property(self, name):
"""Returns true if given property name refers an observable
property inside self or inside derived classes."""
return name in self.get_properties()
def register_observer(self, observer):
"""Register given observer among those observers which are
interested in observing the model."""
if observer in self.__observers: return # not already registered
assert isinstance(observer, Observer)
self.__observers.append(observer)
for key in self.get_properties():
self.__add_observer_notification(observer, key)
pass
return
def unregister_observer(self, observer):
"""Unregister the given observer that is no longer interested
in observing the model."""
assert isinstance(observer, Observer)
if observer not in self.__observers: return
for key in self.get_properties():
self.__remove_observer_notification(observer, key)
pass
self.__observers.remove(observer)
return
def _reset_property_notification(self, prop_name, old=None):
"""Called when it has be done an assignment that changes the
type of a property or the instance of the property has been
changed to a different instance. In this case it must be
unregistered and registered again. Optional parameter old has
to be used when the old value is an instance (derived from
ObsWrapperBase) which needs to unregisters from the model, via
a call to method old.__remove_model__(model, prop_name)"""
# unregister_property
if isinstance(old, ObsWrapperBase):
old.__remove_model__(self, prop_name)
pass
self.register_property(prop_name)
for observer in self.__observers:
self.__remove_observer_notification(observer, prop_name)
self.__add_observer_notification(observer, prop_name)
pass
return
def get_properties(self):
"""
All observable properties accessible from this instance.
:rtype: frozenset of strings
"""
return getattr(self, support.metaclasses.ALL_OBS_SET, frozenset())
def __add_observer_notification(self, observer, prop_name):
"""
Find observing methods and store them for later notification.
*observer* an instance.
*prop_name* a string.
This checks for magic names as well as methods explicitly added through
decorators or at runtime. In the latter case the type of the notification
is inferred from the number of arguments it takes.
"""
value = getattr(self, "_prop_%s" % prop_name, None)
# --- Some services ---
def getmeth(format, numargs):
name = format % prop_name
meth = getattr(observer, name)
args, varargs, _, _ = inspect.getargspec(meth)
if not varargs and len(args) != numargs:
logger.warn("Ignoring notification %s: exactly %d arguments"
" are expected", name, numargs)
raise AttributeError
return meth
def add_value(notification, kw=None):
pair = (notification, kw)
if pair in self.__value_notifications[prop_name]: return
logger.debug("Will call %s.%s after assignment to %s.%s",
observer.__class__.__name__, notification.__name__,
self.__class__.__name__, prop_name)
self.__value_notifications[prop_name].append(pair)
return
def add_before(notification, kw=None):
if (not isinstance(value, ObsWrapperBase) or
isinstance(value, Signal)):
return
pair = (notification, kw)
if pair in self.__instance_notif_before[prop_name]: return
logger.debug("Will call %s.%s before mutation of %s.%s",
observer.__class__.__name__, notification.__name__,
self.__class__.__name__, prop_name)
self.__instance_notif_before[prop_name].append(pair)
return
def add_after(notification, kw=None):
if (not isinstance(value, ObsWrapperBase) or
isinstance(value, Signal)):
return
pair = (notification, kw)
if pair in self.__instance_notif_after[prop_name]: return
logger.debug("Will call %s.%s after mutation of %s.%s",
observer.__class__.__name__, notification.__name__,
self.__class__.__name__, prop_name)
self.__instance_notif_after[prop_name].append(pair)
return
def add_signal(notification, kw=None):
if not isinstance(value, Signal): return
pair = (notification, kw)
if pair in self.__signal_notif[prop_name]: return
logger.debug("Will call %s.%s after emit on %s.%s",
observer.__class__.__name__, notification.__name__,
self.__class__.__name__, prop_name)
self.__signal_notif[prop_name].append(pair)
return
# ---------------------
try: notification = getmeth("property_%s_signal_emit", 3)
except AttributeError: pass
else: add_signal(notification)
try: notification = getmeth("property_%s_value_change", 4)
except AttributeError: pass
else: add_value(notification)
try: notification = getmeth("property_%s_before_change", 6)
except AttributeError: pass
else: add_before(notification)
try: notification = getmeth("property_%s_after_change", 7)
except AttributeError: pass
else: add_after(notification)
# here explicit notification methods are handled (those which
# have been statically or dynamically registered)
type_to_adding_method = {
'assign' : add_value,
'before' : add_before,
'after' : add_after,
'signal' : add_signal,
}
for meth in observer.get_observing_methods(prop_name):
added = False
kw = observer.get_observing_method_kwargs(prop_name, meth)
for flag, adding_meth in type_to_adding_method.iteritems():
if flag in kw:
added = True
adding_meth(meth, kw)
pass
pass
if not added: raise ValueError("In %s notification method %s is "
"marked to be observing property "
"'%s', but no notification type "
"information were specified." %
(observer.__class__,
meth.__name__, prop_name))
pass
return
def __remove_observer_notification(self, observer, prop_name):
"""
Remove all stored notifications.
*observer* an instance.
*prop_name* a string.
"""
def side_effect(seq):
for meth, kw in reversed(seq):
if meth.im_self is observer:
seq.remove((meth, kw))
yield meth
for meth in side_effect(self.__value_notifications.get(prop_name, ())):
logger.debug("Stop calling '%s' after assignment", meth.__name__)
for meth in side_effect(self.__signal_notif.get(prop_name, ())):
logger.debug("Stop calling '%s' after emit", meth.__name__)
for meth in side_effect(self.__instance_notif_before.get(prop_name, ())):
logger.debug("Stop calling '%s' before mutation", meth.__name__)
for meth in side_effect(self.__instance_notif_after.get(prop_name, ())):
logger.debug("Stop calling '%s' after mutation", meth.__name__)
return
def __notify_observer__(self, observer, method, *args, **kwargs):
"""This can be overridden by derived class in order to call
the method in a different manner (for example, in
multithreading, or a rpc, etc.) This implementation simply
calls the given method with the given arguments"""
return method(*args, **kwargs)
# -------------------------------------------------------------
# Notifiers:
# -------------------------------------------------------------
def notify_property_value_change(self, prop_name, old, new):
"""
Send a notification to all registered observers.
*old* the value before the change occured.
"""
assert(self.__value_notifications.has_key(prop_name))
for method, kw in self.__value_notifications[prop_name] :
obs = method.im_self
# notification occurs checking spuriousness of the observer
if old != new or obs.accepts_spurious_change():
if kw is None: # old style call without name
self.__notify_observer__(obs, method,
self, old, new)
elif 'old_style_call' in kw: # old style call with name
self.__notify_observer__(obs, method,
self, prop_name, old, new)
else:
# New style explicit notification.
# notice that named arguments overwrite any
# existing key:val in kw, which is precisely what
# it is expected to happen
info = NTInfo('assign',
kw, model=self, prop_name=prop_name,
old=old, new=new)
self.__notify_observer__(obs, method,
self, prop_name, info)
pass
pass
pass
return
def notify_method_before_change(self, prop_name, instance, meth_name,
args, kwargs):
"""
Send a notification to all registered observers.
*instance* the object stored in the property.
*meth_name* name of the method we are about to call on *instance*.
"""
assert(self.__instance_notif_before.has_key(prop_name))
for method, kw in self.__instance_notif_before[prop_name]:
obs = method.im_self
# notifies the change
if kw is None: # old style call without name
self.__notify_observer__(obs, method,
self, instance,
meth_name, args, kwargs)
elif 'old_style_call' in kw: # old style call with name
self.__notify_observer__(obs, method,
self, prop_name, instance,
meth_name, args, kwargs)
else:
# New style explicit notification.
# notice that named arguments overwrite any
# existing key:val in kw, which is precisely what
# it is expected to happen
info = NTInfo('before',
kw,
model=self, prop_name=prop_name,
instance=instance, method_name=meth_name,
args=args, kwargs=kwargs)
self.__notify_observer__(obs, method,
self, prop_name, info)
pass
pass
return
def notify_method_after_change(self, prop_name, instance, meth_name,
res, args, kwargs):
"""
Send a notification to all registered observers.
*args* the arguments we just passed to *meth_name*.
*res* the return value of the method call.
"""
assert(self.__instance_notif_after.has_key(prop_name))
for method, kw in self.__instance_notif_after[prop_name]:
obs = method.im_self
# notifies the change
if kw is None: # old style call without name
self.__notify_observer__(obs, method,
self, instance,
meth_name, res, args, kwargs)
elif 'old_style_call' in kw: # old style call with name
self.__notify_observer__(obs, method,
self, prop_name, instance,
meth_name, res, args, kwargs)
else:
# New style explicit notification.
# notice that named arguments overwrite any
# existing key:val in kw, which is precisely what
# it is expected to happen
info = NTInfo('after',
kw,
model=self, prop_name=prop_name,
instance=instance, method_name=meth_name,
result=res, args=args, kwargs=kwargs)
self.__notify_observer__(obs, method,
self, prop_name, info)
pass
pass
return
def notify_signal_emit(self, prop_name, arg):
"""
Emit a signal to all registered observers.
*prop_name* the property storing the :class:`~gtkmvc.observable.Signal`
instance.
*arg* one arbitrary argument passed to observing methods.
"""
assert(self.__signal_notif.has_key(prop_name))
for method, kw in self.__signal_notif[prop_name]:
obs = method.im_self
# notifies the signal emit
if kw is None: # old style call, without name
self.__notify_observer__(obs, method,
self, arg)
elif 'old_style_call' in kw: # old style call with name
self.__notify_observer__(obs, method,
self, prop_name, arg)
else:
# New style explicit notification.
# notice that named arguments overwrite any
# existing key:val in kw, which is precisely what
# it is expected to happen
info = NTInfo('signal',
kw,
model=self, prop_name=prop_name, arg=arg)
self.__notify_observer__(obs, method,
self, prop_name, info)
pass
pass
return
pass # end of class Model
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
class TreeStoreModel (Model, gtk.TreeStore):
"""Use this class as base class for your model derived by
gtk.TreeStore"""
__metaclass__ = support.metaclasses.ObservablePropertyGObjectMeta
def __init__(self, column_type, *args):
gtk.TreeStore.__init__(self, column_type, *args)
Model.__init__(self)
return
pass
# ----------------------------------------------------------------------
class ListStoreModel (Model, gtk.ListStore):
"""Use this class as base class for your model derived by
gtk.ListStore"""
__metaclass__ = support.metaclasses.ObservablePropertyGObjectMeta
def __init__(self, column_type, *args):
gtk.ListStore.__init__(self, column_type, *args)
Model.__init__(self)
return
pass
# ----------------------------------------------------------------------
class TextBufferModel (Model, gtk.TextBuffer):
"""Use this class as base class for your model derived by
gtk.TextBuffer"""
__metaclass__ = support.metaclasses.ObservablePropertyGObjectMeta
def __init__(self, table=None):
gtk.TextBuffer.__init__(self, table)
Model.__init__(self)
return
pass
# ----------------------------------------------------------------------
try:
from sqlobject.inheritance import InheritableSQLObject
except: pass # sqlobject not available
else:
class SQLObjectModel(InheritableSQLObject, Model):
"""
SQLObject uses a class's name for the corresponding table, so
subclasses of this need application-wide unique names, no
matter what package they're in!
After defining subclasses (not before!) you have to call
``.createTable`` on each, including SQLObjectModel itself.
"""
__metaclass__ = support.metaclasses.ObservablePropertyMetaSQL
def _init(self, *args, **kargs):
# Using __init__ or not calling super _init results in incomplete
# objects. Model init will then raise missing _SO_writeLock.
InheritableSQLObject._init(self, *args, **kargs)
Model.__init__(self)
return
@classmethod
def createTables(cls, *args, **kargs):
"""
Recursively calls InheritableSQLObject.createTable on this
and all subclasses, passing any arguments on.
Call this during startup, after setting up the DB
connection and importing all your persistent models. Pass
``ifNotExists=True unless`` you want to wipe the database.
"""
cls.createTable(*args, **kargs)
for child in cls.__subclasses__():
child.createTables(*args, **kargs)
pass
return
pass # end of class
pass
# ----------------------------------------------------------------------
|