- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.opendaylight.yangtools.yang.parser.rfc7950.repo.YangStatementStreamSource
类的一些代码示例,展示了YangStatementStreamSource
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YangStatementStreamSource
类的具体详情如下:
包路径:org.opendaylight.yangtools.yang.parser.rfc7950.repo.YangStatementStreamSource
类名称:YangStatementStreamSource
[英]This class represents implementation of StatementStreamSource in order to emit YANG statements using supplied StatementWriter.
[中]此类表示StatementStreamSource的实现,以便使用提供的StatementWriter发出YANG语句。
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
public static YangStatementStreamSource create(final SourceIdentifier identifier, final StatementContext context,
final String symbolicName) {
return new YangStatementStreamSource(identifier, context, symbolicName);
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
@Override
public String toString() {
return MoreObjects.toStringHelper(this).add("identifier", getIdentifier()).toString();
}
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
@Override
public void writeFull(final StatementWriter writer, final QNameToStatementDefinition stmtDef,
final PrefixToModule prefixes) {
writeFull(writer, stmtDef, prefixes, YangVersion.VERSION_1);
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
/**
* Create a {@link YangStatementStreamSource} for a {@link ASTSchemaSource}.
*
* @param source YangTextSchemaSource, must not be null
* @return A new {@link YangStatementStreamSource}
*/
public static YangStatementStreamSource create(final ASTSchemaSource source) {
final ParserRuleContext ast = source.getAST();
checkArgument(ast instanceof StatementContext,
"Unsupported context class %s for source %s", ast.getClass(), source.getIdentifier());
return create(source.getIdentifier(), (StatementContext) ast, source.getSymbolicName().orElse(null));
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
/**
* Extracts {@link YangModelDependencyInfo} from input stream containing a YANG model. This parsing does not
* validate full YANG module, only parses header up to the revisions and imports.
*
* @param refClass Base search class
* @param resourceName resource name, relative to refClass
* @return {@link YangModelDependencyInfo}
* @throws YangSyntaxErrorException If the resource does not pass syntactic analysis
* @throws IOException When the resource cannot be read
* @throws IllegalArgumentException
* If input stream is not valid YANG stream
*/
@VisibleForTesting
public static YangModelDependencyInfo forResource(final Class<?> refClass, final String resourceName)
throws IOException, YangSyntaxErrorException {
final YangStatementStreamSource source = YangStatementStreamSource.create(
YangTextSchemaSource.forResource(refClass, resourceName));
final ParserRuleContext ast = source.getYangAST();
checkArgument(ast instanceof StatementContext);
return parseAST((StatementContext) ast, source.getIdentifier());
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
public static ASTSchemaSource transformText(final YangTextSchemaSource text) throws SchemaSourceException,
IOException, YangSyntaxErrorException {
final YangStatementStreamSource src = YangStatementStreamSource.create(text);
final ParserRuleContext ctx = src.getYangAST();
LOG.debug("Model {} parsed successfully", text);
// TODO: missing validation (YangModelBasicValidationListener should be re-implemented to new parser)
return ASTSchemaSource.create(text.getIdentifier(), text.getSymbolicName().orElse(null), ctx);
}
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
/**
* Create a {@link YangStatementStreamSource} for a {@link YangTextSchemaSource}.
*
* @param source YangTextSchemaSource, must not be null
* @return A new {@link YangStatementStreamSource}
* @throws IOException When we fail to read the source
* @throws YangSyntaxErrorException If the source fails basic parsing
*/
public static YangStatementStreamSource create(final YangTextSchemaSource source) throws IOException,
YangSyntaxErrorException {
final StatementContext context;
try (InputStream stream = source.openStream()) {
context = parseYangSource(source.getIdentifier(), stream);
}
return new YangStatementStreamSource(source.getIdentifier(), context, source.getSymbolicName().orElse(null));
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
@Override
public void writeLinkageAndStatementDefinitions(final StatementWriter writer,
final QNameToStatementDefinition stmtDef, final PrefixToModule prefixes) {
writeLinkageAndStatementDefinitions(writer, stmtDef, prefixes, YangVersion.VERSION_1);
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
@Override
public void writeLinkage(final StatementWriter writer, final QNameToStatementDefinition stmtDef,
final PrefixToModule preLinkagePrefixes) {
writeLinkage(writer, stmtDef, preLinkagePrefixes, YangVersion.VERSION_1);
}
代码示例来源:origin: org.onap.ccsdk.sli.plugins/restconf-client-provider
/**
* Returns the schema context of the YANG files present in a directory.
*
* @param di directory path
* @return YANG schema context
* @throws SvcLogicException when YANG file reading fails
*/
static SchemaContext getSchemaCtxFromDir(String di)
throws SvcLogicException {
Path d = Paths.get(di);
File dir = d.toFile();
List<File> yangFiles = new LinkedList<>();
getYangFiles(dir, yangFiles);
final Collection<YangStatementStreamSource> sources =
new ArrayList<>(yangFiles.size());
for (File file : yangFiles) {
try {
sources.add(create(forFile(file)));
} catch (IOException | YangSyntaxErrorException e) {
throw new SvcLogicException(YANG_FILE_ERR + e.getMessage(), e);
}
}
final CrossSourceStatementReactor.BuildAction reactor = defaultReactor()
.newBuild(DEFAULT_MODE).addSources(sources);
try {
return reactor.buildEffective();
} catch (ReactorException e) {
throw new SvcLogicException(YANG_FILE_ERR + e.getMessage(), e);
}
}
代码示例来源: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);
}
}
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-impl
parserRuleCtx.getClass(), e.getKey());
reactor.addSource(YangStatementStreamSource.create(e.getKey(), (StatementContext) parserRuleCtx,
ast.getSymbolicName().orElse(null)));
代码示例来源:origin: opendaylight/yangtools
parserRuleCtx.getClass(), e.getKey());
reactor.addSource(YangStatementStreamSource.create(e.getKey(), (StatementContext) parserRuleCtx,
ast.getSymbolicName().orElse(null)));
我尝试理解[c代码 -> 汇编]代码 void node::Check( data & _data1, vector& _data2) { -> push ebp -> mov ebp,esp ->
我需要在当前表单(代码)的上下文中运行文本文件中的代码。其中一项要求是让代码创建新控件并将其添加到当前窗体。 例如,在Form1.cs中: using System.Windows.Forms; ..
我有此 C++ 代码并将其转换为 C# (.net Framework 4) 代码。有没有人给我一些关于 malloc、free 和 sprintf 方法的提示? int monate = ee; d
我的网络服务器代码有问题 #include #include #include #include #include #include #include int
给定以下 html 代码,将列表中的第三个元素(即“美丽”一词)以斜体显示的 CSS 代码是什么?当然,我可以给这个元素一个 id 或一个 class,但 html 代码必须保持不变。谢谢
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
我试图制作一个宏来避免重复代码和注释。 我试过这个: #define GrowOnPage(any Page, any Component) Component.Width := Page.Surfa
我正在尝试将我的旧 C++ 代码“翻译”成头条新闻所暗示的 C# 代码。问题是我是 C# 中的新手,并不是所有的东西都像 C++ 中那样。在 C++ 中这些解决方案运行良好,但在 C# 中只是不能。我
在 Windows 10 上工作,R 语言的格式化程序似乎没有在 Visual Studio Code 中完成它的工作。我试过R support for Visual Studio Code和 R-T
我正在处理一些报告(计数),我必须获取不同参数的计数。非常简单但乏味。 一个参数的示例查询: qCountsEmployee = ( "select count(*) from %s wher
最近几天我尝试从 d00m 调试网络错误。我开始用尽想法/线索,我希望其他 SO 用户拥有可能有用的宝贵经验。我希望能够提供所有相关信息,但我个人无法控制服务器环境。 整个事情始于用户注意到我们应用程
我有一个 app.js 文件,其中包含如下 dojo amd 模式代码: require(["dojo/dom", ..], function(dom){ dom.byId('someId').i
我对“-gencode”语句中的“code=sm_X”选项有点困惑。 一个例子:NVCC 编译器选项有什么作用 -gencode arch=compute_13,code=sm_13 嵌入库中? 只有
我为我的表格使用 X-editable 框架。 但是我有一些问题。 $(document).ready(function() { $('.access').editable({
我一直在通过本教程学习 flask/python http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-wo
我想将 Vim 和 EMACS 用于 CNC、G 代码和 M 代码。 Vim 或 EMACS 是否有任何语法或模式来处理这种类型的代码? 最佳答案 一些快速搜索使我找到了 this vim 和 thi
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve this
这个问题在这里已经有了答案: Enabling markdown highlighting in Vim (5 个回答) 6年前关闭。 当我在 Vim 中编辑包含 Markdown 代码的 READM
我正在 Swift3 iOS 中开发视频应用程序。基本上我必须将视频 Assets 和音频与淡入淡出效果合并为一个并将其保存到 iPhone 画廊。为此,我使用以下方法: private func d
pipeline { agent any stages { stage('Build') { steps { e
我是一名优秀的程序员,十分优秀!