4

我正在尝试用 Python 实现简化的术语重写系统 (TRS)/符号代数系统的方法。为此,我真的希望能够在类实例实例化过程中在特定情况下拦截和修改操作数。我想出的解决方案是创建一个修改类对象(类型为“类型”)的典型调用行为的元类。

class Preprocess(type):
    """
    Operation argument preprocessing Metaclass.
    Classes using this Metaclass must implement the 
        _preprocess_(*operands, **kwargs)
    classmethod.
    """

    def __call__(cls, *operands, **kwargs):
        pops, pargs = cls._preprocess_(*operands, **kwargs)
        return super(Preprocess, cls).__call__(*pops, **pargs)

一个例子是扩展嵌套操作 F(F(a,b),c)-->F(a,b,c)

class Flat(object):
    """
    Use for associative Operations to expand nested 
    expressions of same Head: F(F(x,y),z) => F(x,y,z)
    """
    __metaclass__ = Preprocess
    @classmethod
    def _preprocess_(cls, *operands, **kwargs):
        head = []
        for o in operands:
            if isinstance(o, cls):
                head += list(o.operands)
            else:
                head.append(o)
        return tuple(head), kwargs

所以,现在这种行为可以通过继承来实现:

class Operation(object):
    def __init__(self, *operands):
        self.operands = operands

class F(Flat, Operation):
    pass

这会导致所需的行为:

print F(F(1,2,3),4,5).operands
(1,2,3,4,5)

但是,我想组合几个这样的预处理类,让它们按照自然类 mro 顺序处理操作数。

class Orderless(object):
    """
    Use for commutative Operations to bring into ordered, equivalent 
    form: F(*operands) => F(*sorted(operands))
    """
    __metaclass__ = Preprocess

    @classmethod
    def _preprocess_(cls, *operands, **kwargs):

        return sorted(operands), kwargs

这似乎没有按预期工作。定义扁平无序操作类型

class G(Flat, Orderless, Expression):
    pass

仅导致第一个 Preprocessing 超类处于“活动状态”。

print G(G(3,2,1),-1,-3).operands
(3,2,1,-1,-3)

如何确保在类实例化之前调用所有 Preprocessing 类的预处理方法?

更新:

由于我是新的 stackoverflow 用户,我似乎还不能正式回答我的问题。所以,我相信这可能是我能想到的最好的解决方案:

class Preprocess(type):
    """
    Abstract operation argument preprocessing class.
    Subclasses must implement the 
        _preprocess_(*operands, **kwargs)
    classmethod.
    """

    def __call__(cls, *operands, **kwargs):
        for cc in cls.__mro__:
            if hasattr(cc, "_preprocess_"):
                operands, kwargs = cc._preprocess_(*operands, **kwargs)

        return super(Preprocess, cls).__call__(*operands, **kwargs)

我想问题是它super(Preprocess, cls).__call__(*operands, **kwargs)没有像预期的那样遍历 cls 的 mro。

4

1 回答 1

1

我认为您的做法是错误的;删除元类,改用类和方法装饰器。

例如,将您的公寓定义为:

@init_args_preprocessor
def flat(operands, kwargs): # No need for asterisks
    head = []
    for o in operands:
        if isinstance(o, cls):
            head += list(o.operands)
        else:
            head.append(o)
    return tuple(head), kwargs

使用 init_args_preprocessor 装饰器将该函数转换为类装饰器:

def init_args_preprocessor(preprocessor):
    def class_decorator(cls):
        orig_init = cls.__init__
        def new_init(self, *args, **kwargs):
            args, kwargs = preprocessor(args, kwargs)
            orig_init(self, *args, **kwargs)
        cls.__init__ = new_init
        return cls
   return class_decorator

现在,代替 mixins 使用装饰器:

class Operation(object):
    def __init__(self, *operands):
        self.operands = operands

@flat
class F(Operation):
    pass

你应该没有问题干净地组合类修饰符:

@init_args_preprocessor
def orderless(args, kwargs):
    return sorted(args), kwargs

@orderless
@flat
class G(Expression):
   pass

警告 Emptor:上面的所有代码都未经严格测试。

于 2012-05-15T23:00:30.800 回答