本文整理了Java中org.opendaylight.yangtools.yang.parser.rfc7950.repo.YinTextToDomTransformer
类的一些代码示例,展示了YinTextToDomTransformer
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YinTextToDomTransformer
类的具体详情如下:
包路径:org.opendaylight.yangtools.yang.parser.rfc7950.repo.YinTextToDomTransformer
类名称:YinTextToDomTransformer
[英]A SchemaSourceTransformer which handles translation of models from YinTextSchemaSource representation into YinDomSchemaSource.
[中]一个SchemaSourceTransformer,处理模型从YinTextSchemaSource表示到YinDomainSchemaSource的转换。
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
private YinTextToDomTransformer(final SchemaRepository provider, final SchemaSourceRegistry consumer) {
super(provider, YinTextSchemaSource.class, consumer, YinDomSchemaSource.class,
input -> Futures.immediateFuture(transformSource(input)));
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
public static YinTextToDomTransformer create(final SchemaRepository provider, final SchemaSourceRegistry consumer) {
return new YinTextToDomTransformer(provider, consumer);
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-impl
private static StatementStreamSource sourceToStatementStream(final SchemaSourceRepresentation source)
throws IOException, YangSyntaxErrorException {
requireNonNull(source);
if (source instanceof ASTSchemaSource) {
return YangStatementStreamSource.create((ASTSchemaSource) source);
} else if (source instanceof YangTextSchemaSource) {
return YangStatementStreamSource.create((YangTextSchemaSource) source);
} else if (source instanceof YinDomSchemaSource) {
return YinStatementStreamSource.create((YinDomSchemaSource) source);
} else if (source instanceof YinTextSchemaSource) {
try {
return YinStatementStreamSource.create(YinTextToDomTransformer.transformSource(
(YinTextSchemaSource) source));
} catch (SAXException e) {
throw new YangSyntaxErrorException(source.getIdentifier(), 0, 0, "Failed to parse XML text", e);
}
} else if (source instanceof YinXmlSchemaSource) {
try {
return YinStatementStreamSource.create((YinXmlSchemaSource) source);
} catch (TransformerException e) {
throw new YangSyntaxErrorException(source.getIdentifier(), 0, 0,
"Failed to assemble in-memory representation", e);
}
} else {
throw new IllegalArgumentException("Unsupported source " + source);
}
}
}
代码示例来源:origin: opendaylight/yangtools
private static StatementStreamSource sourceToStatementStream(final SchemaSourceRepresentation source)
throws IOException, YangSyntaxErrorException {
requireNonNull(source);
if (source instanceof ASTSchemaSource) {
return YangStatementStreamSource.create((ASTSchemaSource) source);
} else if (source instanceof YangTextSchemaSource) {
return YangStatementStreamSource.create((YangTextSchemaSource) source);
} else if (source instanceof YinDomSchemaSource) {
return YinStatementStreamSource.create((YinDomSchemaSource) source);
} else if (source instanceof YinTextSchemaSource) {
try {
return YinStatementStreamSource.create(YinTextToDomTransformer.transformSource(
(YinTextSchemaSource) source));
} catch (SAXException e) {
throw new YangSyntaxErrorException(source.getIdentifier(), 0, 0, "Failed to parse XML text", e);
}
} else if (source instanceof YinXmlSchemaSource) {
try {
return YinStatementStreamSource.create((YinXmlSchemaSource) source);
} catch (TransformerException e) {
throw new YangSyntaxErrorException(source.getIdentifier(), 0, 0,
"Failed to assemble in-memory representation", e);
}
} else {
throw new IllegalArgumentException("Unsupported source " + source);
}
}
}
内容来源于网络,如有侵权,请联系作者删除!