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
|
from DynPersist import DynPersist
from Globals import Persistent
from ComputedAttribute import ComputedAttribute
from Acquisition import ImplicitAcquisitionWrapper,aq_base
from DataManagers import DefaultDataManager
from PropertySheets import VirtualSheets, DataSkinSheet
from Globals import default__class_init__
from OFS.ObjectManager import ObjectManager
from OFS.CopySupport import CopySource
from AttributeProviders import NOT_FOUND
from ZClasses.Property import ZInstanceSheetsSheet
from ZClasses.ZClass import ZClassSheets
from Products.PlugIns import genericAddForm
from Transactions import Kept
_marker = []
_v_dm_ = '_v_dm_'
_v_status_ = '_v_status_'
ChangedStatus = 'Changed'
DeletedStatus = 'Deleted'
AddedStatus = 'Added'
manage_afterAdd = ObjectManager.manage_afterAdd.im_func
manage_beforeDelete = ObjectManager.manage_beforeDelete.im_func
manage_afterClone = ObjectManager.manage_afterClone.im_func
class Token:
status = memento = None
def __init__(self,client,agent):
self._p_jar = agent
self.client = client
get_transaction().register(self)
class DataSkin(DynPersist,Persistent,Kept):
"""Mixin for objects that want to delegate storage issues externally"""
_rackMounted = 0
_isRackMountable = 1
def __init__(self, id=None):
# we could ditch this whole method except for backward compatibility :(
pass
def _setRack(self, rack):
"""Called by the rack before returning the object"""
d = self.__dict__
d[_v_dm_] = rack; d['_rackMounted'] = 1
def _setSlot(self, slot):
"""
Set up the slot object for persistent storage of object
'baggage' (e.g. WebDAV property sheets, etc.). Called by
ZODB-based racks at object retrieval, or by non-ZODB based
racks at the object's request.
"""
self._v_readableSlot = self._v_writeableSlot = slot
def commitSubtransaction(self): return get_transaction().commit(1)
def _getTokenFor(self,agent):
"""Return a transaction state monitor for this DataSkin/agent combo"""
t,a = self._v_Tokens, id(agent.aq_base)
if not t.has_key(a): t[a]=Token(self,agent)
return t[a]
# Computed attributes to handle on-demand slot retrieval/allocation, etc.
__per_transaction_cache_attrs__ = (
'_v_currentSheets', '_v_attrCache', '_v_status_',
'_v_changedAttrs_', '_v_Tokens', '_v_dependencyMap'
)
def _getCache(self):
"""Return attribute cache"""
return self._v_attrCache
def _v_readableSlot(self,_v_dm_=_v_dm_):
return self.__dict__[_v_dm_]._readableSlotFor(self)
def _v_writeableSlot(self,_v_dm_=_v_dm_):
return self.__dict__[_v_dm_]._writeableSlotFor(self)
def _v_attrCache(self):
"""Cache of external attribute values"""
v = self._v_attrCache = {}; return v
def _v_Tokens(self):
"""Cache of agent transaction monitoring tokens"""
v = self._v_Tokens = {}; return v
_v_readableSlot = ComputedAttribute(_v_readableSlot)
_v_writeableSlot = ComputedAttribute(_v_writeableSlot)
_v_attrCache = ComputedAttribute(_v_attrCache)
_v_Tokens = ComputedAttribute(_v_Tokens)
# Event management (avoids sequential repeats of same events)
def _v_changedAttrs_(self):
"""Cache of changed attribute names"""
v = self._v_changedAttrs_ = {}
return v
_v_changedAttrs_ = ComputedAttribute(_v_changedAttrs_)
def _v_dependencyMap(self):
"""Map of attrs to be uncached if key attr changes"""
v = self._v_dependencyMap = {}
return v
_v_dependencyMap = ComputedAttribute(_v_dependencyMap)
def _setDependencies(self, attr, dependencies):
"""Make it so attr will be dropped from cache if
any of the attrs named in the dependencies list
are changed."""
m = self._v_dependencyMap
for dep in dependencies:
if m.has_key(dep): m[dep].append(attr)
else: m[dep]=[attr]
def _objectChanging(self,name,_v_status_=_v_status_,_v_dm_=_v_dm_):
d=self.__dict__
c=self._v_changedAttrs_
v=self._v_attrCache
if self._v_status_ is not ChangedStatus:
d[_v_dm_]._objectChanging(self)
d[_v_status_] = ChangedStatus
if not c.has_key(name):
c[name]=getattr(self,name,NOT_FOUND)
if d.has_key(name):
del d[name]; self._p_changed=1
if v.has_key(name): del v[name]
if self._v_dependencyMap:
for attr in self._v_dependencyMap.get(name, ()):
if v.has_key(attr):
del v[attr]
def _objectAdding(self,_v_status_=_v_status_,_v_dm_=_v_dm_):
if self._v_status_ is not AddedStatus:
d=self.__dict__
d[_v_dm_]._objectAdding(self)
d[_v_status_] = AddedStatus
def _objectCreating(self,_v_dm_=_v_dm_):
self.__dict__[_v_dm_]._objectCreating(self)
def _objectDeleting(self,_v_status_=_v_status_,_v_dm_=_v_dm_):
if self._v_status_ is not DeletedStatus:
d=self.__dict__
d[_v_dm_]._objectDeleting(self)
d[_v_status_] = DeletedStatus
# Attribute handling
def __get_attr__(self,name,_v_dm_=_v_dm_):
cache = self._v_attrCache
v = cache.get(name,_marker)
if v is _marker:
v = getattr(self.__class__,'class_default_for_'+name,NOT_FOUND)
cache[name] = v
dm = self.__dict__[_v_dm_]
self = self._canonicalForm()
for ap in dm._getProvidersFor(self,'getattr',(name,'*')):
v = ap._AttributeFor(self,name,NOT_FOUND)
if v is not NOT_FOUND:
cache[name]=v
return v
v = cache[name]
if v is not NOT_FOUND:
return v
raise AttributeError, name
def _canonicalForm(self):
self._v_Keeper # force existence of a keeper
return ImplicitAcquisitionWrapper(
aq_base(self),
self.__dict__['_v_parent']
)
def __set_attr__(self,name,val,_v_dm_=_v_dm_):
try:
dm = self.__dict__[_v_dm_]
except KeyError:
if name=='id' and val==self.__dict__['id']: return
raise
self = self._canonicalForm()
self._objectChanging(name)
for ap in dm._getProvidersFor(self,'setattr',(name,'*')):
if ap._SetAttributeFor(self,name,val):
return
if not self._rackMounted or name in ('id','__name__'):
self.__dict__[name]=val
self._p_changed = 1
return
# XXX default behavior for rackmounted?
raise AttributeError, name
def __del_attr__(self,name,_v_dm_=_v_dm_):
dm = self.__dict__[_v_dm_]
self = self._canonicalForm()
self._objectChanging(name)
for ap in dm._getProvidersFor(self,'delattr',(name,'*')):
if ap._DelAttributeFor(self,name):
return
if not self._rackMounted:
if self._v_changedAttrs_[name] is NOT_FOUND:
del self._v_changedAttrs_[name]
return
# XXX default behavior for rackmounted?
raise AttributeError, name
# DataManager hookup
_DefaultDataManager = DefaultDataManager()
def __of__(self,parent,
_iaw=ImplicitAcquisitionWrapper,_v_dm_=_v_dm_,type=type
):
# Bound to unwrapped parent, just try again
if type(parent) is not _iaw or not hasattr(parent,'REQUEST'):
return self
# Create our canonical form
new_self = _iaw(self,parent)
if type(self) is _iaw: # Been wrapped already?
return new_self # No special handling
self.__dict__['_v_parent'] = parent # save our canonical parent
# Rackmounted? just save/return canonical form
if self._rackMounted:
return new_self
# Otherwise, find our data manager
dm = self._DefaultDataManager
try: _gdmf = parent.aq_acquire('_getDataManagerFor')
except: pass
else: dm = _gdmf(new_self, dm)
self.__dict__[_v_dm_] = dm
return new_self
# ObjectManager Hooks to ensure event generation
def manage_afterAdd(self,item,container):
self._objectAdding()
if hasattr(self.aq_base,'objectValues'):
manage_afterAdd(self,item,container)
def manage_beforeDelete(self,item,container):
if hasattr(self.aq_base,'objectValues'):
manage_beforeDelete(self,item,container)
self._objectDeleting()
# Copy Support
def _getCopy(self, container):
self = aq_base(self).__of__(container)
ob = CopySource._getCopy.im_func(self,container)
ob.__of__(container) # force DM hookup
return ob
def manage_afterClone(self,item,_v_dm_=_v_dm_):
self = aq_base(self)
self = self._canonicalForm()
if hasattr(self.aq_base,'objectValues'):
manage_afterClone(self,item)
# Propertysheets
propertysheets = VirtualSheets()
def _addPropertySheet(self,name='',xmlns='',_v_dm_=_v_dm_):
"""
Return new propertysheet matching name or xmlns, if possible.
Otherwise return None.
"""
d=self.__dict__
if d.has_key('_v_currentSheets'):
del d['_v_currentSheets']
return self._delegateToSheetProviders(name,xmlns,'_addPropertySheetFor')
def _delPropertySheet(self,name='',xmlns='',_v_dm_=_v_dm_):
"""
Delete propertysheet matching name or xmlns, if present. Always
returns None (unless an unexpected error occurs, of course)
"""
d=self.__dict__
if d.has_key('_v_currentSheets'):
del d['_v_currentSheets']
return self._delegateToSheetProviders(name,xmlns,'_delPropertySheetFor')
def _delegateToSheetProviders(self,name,xmlns,mname):
dm = self.__dict__[_v_dm_]
self = self._canonicalForm()
if name:
for sp in dm._getProvidersFor(self,'sheet_names',(name,'*')):
s = getattr(sp,mname)(self, name=name, xmlns=xmlns)
if s is not None: return s
if xmlns:
for sp in dm._getProvidersFor(self,'sheet_xmlns',(xmlns,'*')):
s = getattr(sp,mname)(self, name=name, xmlns=xmlns)
if s is not None: return s
return None
def _v_currentSheets(self,_v_dm_=_v_dm_):
"""PropertySheets tuple (analagous to __propsets__)"""
l = []
for sp in self.__dict__[_v_dm_]._uniqueProviders(('sheets',)):
l.extend(list(sp._PropertySheetsFor(self)))
self._v_currentSheets = tuple(l)
return self._v_currentSheets
_v_currentSheets = ComputedAttribute(_v_currentSheets)
def manage_delete(self,_v_dm_=_v_dm_):
"""Delete this object"""
if self._rackMounted:
self.__dict__[_v_dm_]._objectDeleting(self)
return 'OK'
raise TypeError, "Not rack-mounted; please use container to delete"
meta_type = "Data Skin"
__ac_permissions__ = (
('Delete rack-mounted objects', ('manage_delete',)),
)
# DEPRECATED STUFF
def PropertySheets(self):
"""
Returns a 'propertysheets'-type object
DEPRECATED - use 'propertysheets' attribute instead.
"""
return self.propertysheets
def PropertySheet(self, name='', xmlns=''):
"""
Return a specific property sheet (DEPRECATED)
Doesn't work w/ZClass sheets! Use propertysheets.get() instead.
"""
return self._delegateToSheetProviders(name,xmlns,'_PropertySheetFor')
_v_status_ = ''
default__class_init__(DataSkin)
class SkinZISS(ZInstanceSheetsSheet):
manage_addDataSkinSheetForm = genericAddForm(DataSkinSheet)
def manage_addDataSkinSheet(self, id, title, REQUEST=None):
"""Add a DataSkin sheet"""
o=DataSkinSheet(id, title)
self._setObject(id, o)
if REQUEST is not None: return self.manage_main(self, REQUEST)
meta_types = (
{'name':DataSkinSheet.meta_type, 'action':'manage_addDataSkinSheetForm'},
) + ZInstanceSheetsSheet.meta_types
class SZHolder:
""" """
def __init__(self):
ZClassSheets.__init__.im_func(self)
self.common=SkinZISS('common')
class _ZClass_for_DataSkin:
propertysheets = SZHolder()
_zclass_ = DataSkin
manage_options = ()
def initialize(context):
context.registerZClass(_ZClass_for_DataSkin)
|