本文整理了Java中org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException.<init>()
方法的一些代码示例,展示了YangSyntaxErrorException.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YangSyntaxErrorException.<init>()
方法的具体详情如下:
包路径:org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException
类名称:YangSyntaxErrorException
方法名:<init>
暂无
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
@Override
@SuppressWarnings("checkstyle:parameterName")
public void syntaxError(final Recognizer<?, ?> recognizer, final Object offendingSymbol, final int line,
final int charPositionInLine, final String msg, final RecognitionException e) {
LOG.debug("Syntax error in {} at {}:{}: {}", source, line, charPositionInLine, msg, e);
exceptions.add(new YangSyntaxErrorException(source, line, charPositionInLine, msg, e));
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
public void validate() throws YangSyntaxErrorException {
if (exceptions.isEmpty()) {
return;
}
// Single exception: just throw it
if (exceptions.size() == 1) {
throw exceptions.get(0);
}
final StringBuilder sb = new StringBuilder();
boolean first = true;
for (YangSyntaxErrorException e : exceptions) {
if (first) {
first = false;
} else {
sb.append('\n');
}
sb.append(e.getFormattedMessage());
}
throw new YangSyntaxErrorException(source, 0, 0, sb.toString());
}
}
代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950
/**
* Extracts {@link YangModelDependencyInfo} from an abstract syntax tree of a YANG model.
*
* @param source Source identifier
* @param tree Abstract syntax tree
* @return {@link YangModelDependencyInfo}
* @throws YangSyntaxErrorException If the AST is not a valid YANG module/submodule
*/
static @NonNull YangModelDependencyInfo fromAST(final SourceIdentifier source, final ParserRuleContext tree)
throws YangSyntaxErrorException {
if (tree instanceof StatementContext) {
final StatementContext rootStatement = (StatementContext) tree;
return parseAST(rootStatement, source);
}
throw new YangSyntaxErrorException(source, 0, 0, "Unknown YANG text type");
}
代码示例来源: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);
}
}
}
内容来源于网络,如有侵权,请联系作者删除!