0

AppEngineアプリに単純なVersionedModelベースモデルクラスを実装したいと思います。コピーするフィールドを明示的に選択する必要のないパターンを探しています。

私はこのようなことを試していますが、それは私の好みのためにハックすることであり、まだ実稼働環境でそれをテストしていません。

class VersionedModel(BaseModel):
    is_history_copy     = db.BooleanProperty(default=False)
    version             = db.IntegerProperty()
    created             = db.DateTimeProperty(auto_now_add=True)
    edited              = db.DateTimeProperty()
    user                = db.UserProperty(auto_current_user=True)

    def put(self, **kwargs):
        if self.is_history_copy:
            if self.is_saved():
                raise Exception, "History copies of %s are not allowed to change" % type(self).__name__
            return super(VersionedModel, self).put(**kwargs)
        if self.version is None:
            self.version = 1
        else:
            self.version = self.version +1
        self.edited =  datetime.now() # auto_now would also affect copies making them out of sync
        history_copy = copy.copy(self)
        history_copy.is_history_copy = True
        history_copy._key = None
        history_copy._key_name = None
        history_copy._entity = None
        history_copy._parent = self
        def tx():
            result = super(VersionedModel, self).put(**kwargs)
            history_copy._parent_key = self.key()
            history_copy.put()
            return result
        return db.run_in_transaction(tx)

App Engineモデルのバージョンの履歴を保持するためのよりシンプルでクリーンなソリューションを持っている人はいますか?

編集:copy txから移動しました。提案のためのThx@AdamCrossland。

4

1 に答える 1

2

Model クラスのプロパティstatic メソッドを見てください。これにより、プロパティのリストを取得し、それを使用して値を取得できます。次のようになります。

  @classmethod
  def clone(cls, other, **kwargs):
    """Clones another entity."""
    klass = other.__class__
    properties = other.properties().items()
    kwargs.update((k, p.__get__(other, klass)) for k, p in properties)
    return cls(**kwargs)
于 2010-09-13T10:36:38.630 に答える