Can derived attributes be persisted and derivation disabled in Ecore and OCL?

不问归期 提交于 2019-12-22 08:55:36

问题


I want to port a legacy data format, which consists of concepts similar to Eclipse Modeling Framework (EMF) Ecore: Elements with Parameters which have different datatypes and default values.

A custom-made tool lets you edit such model instances by a fancy table-based GUI.

Also, a common feature for the Parameters is that a Derivation Rule can be added which specifies that the Parameter value gets computed automatically from other parameters. That also seems similar to Ecore derived Attributes which could be implemented by Java Code or OCLinEcore.

However, the automatic derivation of a Parameter in the legacy format is optional. I.e. a user can always select such a derived parameter and select that he or she wants to enter the value manually. Hence, even derived Parameter values are not transient but always persisted, including the state whether the parameter is in "auto" or "manual" mode.

Is there any way in Ecore (including extensions like OCLinEcore) to persist derived attributes and to selectively/temporarily enable/disable derivation at runtime?

Workaround could be not to use Ecore's derived Attribute feature but to implement the optional derivation in the client code manually. However, the declaration of the optional derivation rule would be no Standard way. Any way to reuse OCLinEcore or alike?


回答1:


Here is how do I do it in Xcore:

interface Identifier {
    id String uid
    boolean derive_enabled = "true"
    unsettable String uid_derived

    readonly String uid_generated get {  // this is the 'derived' parameter
        if (uid_derived == null || uid_derived.isEmpty) {
            uid_derived  = EcoreUtil.generateUUID().toString
        }
        if (derive_enabled) {
            uid = uid_derived
        }
        return uid
    }
}

You can easily implement it in Ecore/OCL-in-Ecore as well.

I persist the derived value of the parameter, but I can always change it manually (if I like) by changing the value of the boolean parameter. Then, I implement this interface for any class I need, so I have this feature globally.




回答2:


I'm not convinced that it is directly possible. The problem is that you have two possible values: manual and derived, which might be the same. If the derived is not persisted easy. But if the derived is persisted how do you know which is the master.

A similar problem arises in the the EMF Properties Views where it would be nice to distinguish with between a computed and an explicit value with a greyed/not-greyed background. e.g. is the GenModel Edit Plugin Id computed or explicit. Worse is a blank Property default-literal unset or explicitly blank.

Once you have an additional master-flag in your metamodel it should be relatively easy. Until then you may have a solution that works most times but other times can be confusing.



来源:https://stackoverflow.com/questions/34903043/can-derived-attributes-be-persisted-and-derivation-disabled-in-ecore-and-ocl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!