gpt4 book ai didi

org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException类的使用及代码示例

转载 作者:知者 更新时间:2024-03-17 12:41:31 27 4
gpt4 key购买 nike

本文整理了Java中org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException类的一些代码示例,展示了YangSyntaxErrorException类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YangSyntaxErrorException类的具体详情如下:
包路径:org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException
类名称:YangSyntaxErrorException

YangSyntaxErrorException介绍

暂无

代码示例

代码示例来源: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: opendaylight/yangtools

public @NonNull String getFormattedMessage() {
  final StringBuilder sb = new StringBuilder(getMessage());
  if (source != null) {
    sb.append(" in source ");
    sb.append(source);
  }
  if (line != 0) {
    sb.append(" on line ");
    sb.append(line);
    if (charPositionInLine != 0) {
      sb.append(" character ");
      sb.append(charPositionInLine);
    }
  }
  return sb.toString();
}

代码示例来源: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: opendaylight/yangtools

@Override
  public String toString() {
    return this.getClass().getName() + ": " + getFormattedMessage();
  }
}

代码示例来源: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);
    }
  }
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com