static.py :  » Web-Server » SkunkWEB » skunkweb-3.4.4 » pylibs » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Web Server » SkunkWEB 
SkunkWEB » skunkweb 3.4.4 » pylibs » static.py
#  
#  Copyright (C) 2001 Andrew T. Csillag <drew_csillag@geocities.com>
#  
#      You may distribute under the terms of either the GNU General
#      Public License or the SkunkWeb License, as specified in the
#      README file.
#   
#cannot and won't allow overriding of __getattr__,__repr__, __str__ at
#class level
#cannot override __getattr__/__setattr__... yet
import types

def Sisinstance(obj, dataClass):
    """returns 1 if obj is an instance of dataClass"""
    if not isinstance(obj, instance):
        raise TypeError, 'object %s is not a static instance' % repr(obj)
    return Sissubclass(obj._klass, dataClass)

def Sissubclass(sub, super):
    """returns 1 if sub is a PyDO subclass of super"""
    if not isinstance(sub, _StaticBase) \
           and isinstance(super, _StaticBase):
        return 0 
    if sub._klass == super._klass:
        return 1
    for sc in sub._superClasses:
        if Sissubclass(sc, super):
            return 1
    return 0


class _method:
    def __init__(self, obj, meth):
        self.obj = obj
        self.meth = meth

    def __repr__(self):
        return '<%s %s of %s>' % (
            self.__class__.__name__, self.meth.func_name, self.obj._klass)
        
class _unboundmethod(_method):
    def __call__(self, *args, **kw):
        if len(args) == 0 or not Sisinstance(args[0], self.obj):
            raise TypeError, ('unbound method must be called with '
                              'instance of subclass of %s 1st argument' %
                              self.obj._klass)
        return apply(self.meth, args, kw)

class _boundmethod(_method):
    def __call__(self, *args, **kw):
        return apply(self.meth, (self.obj,) + args, kw)

def _findInheritanceRule(klass):
    if klass._staticMethods.has_key('__class_init__'):
        return klass.static___class_init__

    for sc in klass._superClasses:
        f = _findInheritanceRule(sc)
        if f:
            return f
        
class instance:
    def __init__(self, klass, *args, **kw):
        self.__dict__['_getattr_recur_list'] = []
        self.__dict__['_klass'] = klass
        if self.__dict__['_klass']._instanceMethods.has_key('__init__'):
            apply(self.__getattr__('__init__'), args, kw)
    
    def __getattr__(self, attr):
        if attr in ('__getstate__', '__setstate__'):
            raise AttributeError, attr
        
        if not self.__dict__.has_key('_klass'):
            raise AttributeError, attr

        #instance method?
        meth = self.__dict__['_klass']._instanceMethods.get(attr)
        if meth:
            return _boundmethod(self, meth)

        #proxy back to class attributes
        if hasattr(self.__dict__['_klass'], attr):
            return getattr(self.__dict__['_klass'], attr)

        #try __getattr__ method
        # are we __getattr__ hook recursing?  If so, raise Attribute Error
        if attr in self.__dict__['_getattr_recur_list']:
            raise AttributeError, attr

        # if the have a getattr method
        if self.__dict__['_klass']._instanceMethods.has_key('__getattr__'):
            try:
                try:
                    #put attr onto recur list
                    self.__dict__['_getattr_recur_list'].append(attr)
                    #call getattr
                    return _boundmethod(self, self.__dict__['_klass'].
                                        _instanceMethods['__getattr__'])(attr)
                except AttributeError:
                    pass
            finally:
                #make sure we pop current attribute off the recur list
                self.__dict__['_getattr_recur_list'].pop()

        #we didn't find anything, blow
        raise AttributeError, attr

    def __setattr__(self, attr, value):
        k = self.__dict__['_klass']
        #if they have a setattr hook, call it
        if k._instanceMethods.has_key('__setattr__'):
            _boundmethod(self, k._instanceMethods['__setattr__'])(attr, value)
        else: #otherwise, normal behavior
            self.__dict__[attr] = value

try:
    object
    _baseClass=object
except:
    class _baseClass: pass
_fakeMethods = ["__call__"]

class _StaticBase(_baseClass):
    def __init__(self, klass = None, superClasses = (), dict = {}):
        try:
            self._modname = _getModName()
        except:
            pass
        self._klass = klass
        self._superClasses = superClasses
        self._dict = dict

        self._instanceMethods = {}
        self._staticMethods = {}
        self._classAttributes = {}
        for k, v in dict.items():
            if type(v) in (types.MethodType, types.FunctionType):
                if k[:7] == 'static_':
                    self._staticMethods[k[7:]] = v
                else:
                    self._instanceMethods[k] = v
            else:
                self._classAttributes[k] = v

        meth = _findInheritanceRule(self)
        if meth:
            meth(self)
        
    def __repr__(self):
        return '<static class %s at %x>' % (self._klass, id(self))

    def __str__(self):
        return repr(self)

    def __getattr__(self, attr):
        try:
            #print 'attr is', attr
            rv = object.__getattr__(self, attr)
            if attr not in _fakeMethods: return rv
        except:
            pass
                        
        # print 'attr', attr, type(self), dir(self)
        #try static method, bound
        meth = self._staticMethods.get(attr)
        if meth: return _boundmethod(self, meth)

        #try static method, unbound
        if attr[:7] == 'static_':
            meth = self._staticMethods.get(attr[7:])
            if meth: return meth

        #try unbound instance method
        if self._instanceMethods.has_key(attr):
            return _unboundmethod(self, self._instanceMethods[attr])

        #try class attribute
        if self._classAttributes.has_key(attr):
            return self._classAttributes[attr]
        raise AttributeError, attr

    def __getstate__(self):
        try:
            return {'_klass': self._klass, '_modname': self._modname}
        except:
            raise ValueError, ('Object of type %s cannot be pickled because'
                               ' it is not associated with any module'
                               ) %  self._klass

    def __setstate__(self, arg):
        self._klass = arg['_klass']
        self._modname = arg['_modname']
        _updateMe(self)

    def __call__(self, *args, **kw):
        return self.__getattr__('__call__')(*args, **kw)
    
def _getModName():
    S = "someexc"
    import sys
    try:
        raise S, S
    except:
        t, v, tb = sys.exc_info()
        return tb.tb_frame.f_back.f_back.f_globals['__name__']
        
def _updateMe(obj):
    import sys

    m = sys.modules.get(obj._modname)
    if not m:
        m = __import__(obj._modname, None, None, 1)

    if hasattr(m, obj._klass):
        co = getattr(m, obj._klass)
        if isinstance(co, _StaticBase):
            obj.__dict__.update(co.__dict__)
            return
    raise "static.error", 'cannot load static class %s' % obj._klass
                
try:
    object #testing for 2.2

    _static = object
except:
    #print 'doing old way'
    _static = _StaticBase() #old metaclass way

class static(_static):
    __metaclass__ = _StaticBase
    def __repr__(self):
        return '<instance of static class %s at %x>' % (
            self._klass._klass, id(self))
    
    def static___call__(self, *args, **kw):
        return apply(instance, (self,) + args, kw)

    def static___class_init__(self):
        oldim = self._instanceMethods
        oldsm = self._staticMethods
        oldca = self._classAttributes
        
        self._instanceMethods = {}
        self._staticMethods = {}
        self._classAttributes = {}
        
        scs = list(self._superClasses)
        scs.reverse()

        for sc in scs:
            if not isinstance(sc, _StaticBase):
                if sc == _static:
                    continue
                else:
                    raise TypeError, 'cannot inherit from non static base class'
            self._instanceMethods.update(sc._instanceMethods)
            self._staticMethods.update(sc._staticMethods)
            self._classAttributes.update(sc._classAttributes)
        self._instanceMethods.update(oldim)
        self._staticMethods.update(oldsm)
        self._classAttributes.update(oldca)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.