19

我正在尝试查找“bb.utils.contains”的文档。我在 pokey/bitbake/lib/utils.py 中找到了代码,但该代码的文档记录很差。例如,它接受一个名为“d”的参数。什么是“d”?你如何开始使用这样一个简短的非描述性名称?

我已经下载并搜索了所有 yocto 和 poky 文档,并进行了多次网络搜索,但无济于事。

有人知道对内置 bitbake python 实用程序的很好参考吗?

4

2 回答 2

13

我能找到的最好的文档是代码本身的文档字符串。见这里:https ://github.com/openembedded/bitbake/blob/master/lib/bb/utils.py#L974

def contains(variable, checkvalues, truevalue, falsevalue, d):
    """Check if a variable contains all the values specified.
      Arguments:
        variable -- the variable name. This will be fetched and expanded (using
          d.getVar(variable, True)) and then split into a set().
        checkvalues -- if this is a string it is split on whitespace into a set(),
          otherwise coerced directly into a set().
        truevalue -- the value to return if checkvalues is a subset of variable.
        falsevalue -- the value to return if variable is empty or if checkvalues is
          not a subset of variable.
        d -- the data store.
    """
于 2016-09-07T14:29:51.923 回答
3

'd' 是从环境和配方中提取的所有值的当前字典。请参阅 data.py 和 data_smart.py。

我同意 bitbake 文档并不总是完整的,但是有一个 bitbake-dev 邮件列表也可以提供帮助。

于 2014-07-26T02:02:20.980 回答