检查同步特征:Traits/TraitsUI

Inspect for synchronized traits: Traits/TraitsUI

我正在浏览一个大型程序中的所有 Traits,我们的许多 traits 是同步的。例如,考虑结构的 HasTrait 对象:

a = Material1.ShellMaterial
b = Material2.CoreMaterial
c = Material3.MaterialX

在我们的应用程序中,事实证明 a 和 c 是同步特征。换句话说,Material3.MaterialXMaterial1.ShellMaterial是一样的,他们已经用sync_trait()(HasTraits API)设置了。

是否可以检查a,b,c动态判断a和c是否同步?

目标是绘制所有这些,但对用户隐藏冗余图。尽管这些对象代表相同的数据,但它们之间的典型比较如 a==c return False

据我所知,没有官方的 API 允许检查特征的同步状态。

当然,您可以简单地再次调用sync_trait()方法来确保特征是同步的(或者不同步,如果您使用remove=True)。结果,你会知道特征的同步状态。

如果您不想更改同步状态,则必须依赖非官方的 API 函数,这些函数没有记录并且可能会发生变化——因此使用它们需要您自担风险。

from traits.api import HasTraits, Float
class AA(HasTraits):
    a =Float()
class BB(HasTraits):
    b = Float()
aa = AA()
bb = BB()
aa.sync_trait("a", bb, "b")

# aa.a and bb.b are synchronized
# Now we use non-official API functions
info = aa._get_sync_trait_info()

synced = info.has_key("a") # True if aa.a is synchronized to some other trait
if synced:
    sync_info = info["a"] # fails if a is not a synchronized trait
    # sync_info is a dictionary which maps (id(bb),"b") to a tuple (wr, "b")
    # If you do not know the id() of the HasTraits-object and the name of
    # the trait, you have to loop through all elements of sync_info and
    # search for the entry you want...
    wr, name = sync_info[(id(bb), "b")]
    # wr is a weakref to the class of bb, and name is the name 
    # of the trait which aa.a is synced to
    cls = wr() # <__main__.BB at 0x6923a98>

同样,使用风险自负,但它对我有用。