7.17. “扩充”声明
“augment
”语句允许模块或子模块添加到在外部模块或当前模块及其子模块中定义的模式树中,并通过“uses
”语句中的分组添加到节点中。 参数是标识架构树中节点的字符串。 这个节点被称为增广的目标节点。 目标节点必须是container
,list
,choice
,case
,input
,output
或notification
节点。 随着“augment
”语句之后的子语句中定义的节点的增加。
参数字符串是一个模式节点标识符(参见第6.5节)。如果“augment
”语句位于模块或子模块的顶层,必须使用模式节点标识符的绝对格式(由第14节中的规则“absolute-schema-nodeid
”定义)。如果“augment
”语句是“uses
”语句的子语句,则必须使用后代形式(由第14节中的规则“descendant-schema-nodeid
”定义)。
如果目标节点是容器,列表,case
,输入,输出或通知节点,则“container
”,“leaf
”,“list
”,“leaf-list
”,“uses
”和“choice
”语句可以是在“augment
”声明中使用。
如果目标节点是容器或列表节点,则可以在“augment
”语句中使用“Operation
”和“notification
”语句。
如果目标节点是一个choice
节点,则可以在“augment
”语句中使用“case
”语句或简写“case
”语句(参见第7.9.2节)。
“augment
”语句绝不能将同一个模块中具有相同名称的多个节点添加到目标节点。
如果增加在另一个模块中添加了表示配置到目标节点的强制节点(参见第3节),则必须使用“when
”语句使该扩充有条件。定义“when
”表达式时必须小心,以避免不知道扩充模块的客户端中断。
在下面的例子中,用“mandatory-leaf
”扩充“interface
”条目是可以的,因为增加依赖于对“some-new-iftype
”的支持。旧客户端不知道这种类型,所以它不会选择这种类型,因此不会添加强制数据节点。
module example-augment {
yang-version 1.1;
namespace "urn:example:augment";
prefix mymod;
import ietf-interfaces {
prefix if;
}
identity some-new-iftype {
base if:interface-type;
}
augment "/if:interfaces/if:interface" {
when 'derived-from-or-self(if:type, "mymod:some-new-iftype")';
leaf mandatory-leaf {
mandatory true;
type string;
}
}
}
7.17.1. augment
子语句
+--------------+---------+-------------+
| substatement | section | cardinality |
+--------------+---------+-------------+
| action | 7.15 | 0..n |
| anydata | 7.10 | 0..n |
| anyxml | 7.11 | 0..n |
| case | 7.9.2 | 0..n |
| choice | 7.9 | 0..n |
| container | 7.5 | 0..n |
| description | 7.21.3 | 0..1 |
| if-feature | 7.20.2 | 0..n |
| leaf | 7.6 | 0..n |
| leaf-list | 7.7 | 0..n |
| list | 7.8 | 0..n |
| notification | 7.16 | 0..n |
| reference | 7.21.4 | 0..1 |
| status | 7.21.2 | 0..1 |
| uses | 7.13 | 0..n |
| when | 7.21.5 | 0..1 |
+--------------+---------+-------------+
7.17.2. XML
编码规则
在“augment
”语句中定义的所有数据节点都被定义为指定“augment
”的模块的XML
名称空间中的XML
元素。
当一个节点被扩充时,扩充子节点以任何顺序被编码为扩充节点的子元素。
7.17.3. 使用示例
在命名空间urn:example:interface-module
,我们有:
container interfaces {
list ifEntry {
key "ifIndex";
leaf ifIndex {
type uint32;
}
leaf ifDescr {
type string;
}
leaf ifType {
type iana:IfType;
}
leaf ifMtu {
type int32;
}
}
}
然后,在命名空间urn:example:ds0
,我们有:
import example-interface-module {
prefix "if";
}
augment "/if:interfaces/if:ifEntry" {
when "if:ifType='ds0'";
leaf ds0ChannelNumber {
type ChannelNumber;
}
}
相应的XML
实例示例:
<interfaces xmlns="urn:example:interface-module"
xmlns:ds0="urn:example:ds0">
<ifEntry>
<ifIndex>1</ifIndex>
<ifDescr>Flintstone Inc Ethernet A562</ifDescr>
<ifType>ethernetCsmacd</ifType>
<ifMtu>1500</ifMtu>
</ifEntry>
<ifEntry>
<ifIndex>2</ifIndex>
<ifDescr>Flintstone Inc DS0</ifDescr>
<ifType>ds0</ifType>
<ds0:ds0ChannelNumber>1</ds0:ds0ChannelNumber>
</ifEntry>
</interfaces>
作为另一个例子,假设我们有7.9.6节定义的选择。 以下构造可用于扩展协议定义:
augment /ex:system/ex:protocol/ex:name {
case c {
leaf smtp {
type empty;
}
}
}
相应的XML
实例示例:
<ex:system>
<ex:protocol>
<ex:tcp/>
</ex:protocol>
</ex:system>
或
<ex:system>
<ex:protocol>
<other:smtp/>
</ex:protocol>
</ex:system>