net.sf.saxon.Query.quit()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(9.2k)|赞(0)|评价(0)|浏览(278)

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

Query.quit介绍

[英]Exit with a message
[中]带着信息离开

代码示例

代码示例来源:origin: org.opengis.cite.saxon/saxon9

  1. protected Source processSourceFile(String sourceFileName, boolean useURLs) throws TransformerException {
  2. Source sourceInput;
  3. if (useURLs || sourceFileName.startsWith("http:") || sourceFileName.startsWith("file:")) {
  4. sourceInput = config.getURIResolver().resolve(sourceFileName, null);
  5. if (sourceInput == null) {
  6. sourceInput = config.getSystemURIResolver().resolve(sourceFileName, null);
  7. }
  8. } else if (sourceFileName.equals("-")) {
  9. // take input from stdin
  10. sourceInput = new StreamSource(System.in);
  11. } else {
  12. File sourceFile = new File(sourceFileName);
  13. if (!sourceFile.exists()) {
  14. quit("Source file " + sourceFile + " does not exist", 2);
  15. }
  16. if (Configuration.getPlatform().isJava()) {
  17. InputSource eis = new InputSource(sourceFile.toURI().toString());
  18. sourceInput = new SAXSource(eis);
  19. } else {
  20. sourceInput = new StreamSource(sourceFile.toURI().toString());
  21. }
  22. }
  23. return sourceInput;
  24. }

代码示例来源:origin: net.sourceforge.saxon/saxon

  1. protected Source processSourceFile(String sourceFileName, boolean useURLs) throws TransformerException {
  2. Source sourceInput;
  3. if (useURLs || sourceFileName.startsWith("http:") || sourceFileName.startsWith("file:")) {
  4. sourceInput = config.getURIResolver().resolve(sourceFileName, null);
  5. if (sourceInput == null) {
  6. sourceInput = config.getSystemURIResolver().resolve(sourceFileName, null);
  7. }
  8. } else if (sourceFileName.equals("-")) {
  9. // take input from stdin
  10. sourceInput = new StreamSource(System.in);
  11. } else {
  12. File sourceFile = new File(sourceFileName);
  13. if (!sourceFile.exists()) {
  14. quit("Source file " + sourceFile + " does not exist", 2);
  15. }
  16. if (Configuration.getPlatform().isJava()) {
  17. InputSource eis = new InputSource(sourceFile.toURI().toString());
  18. sourceInput = new SAXSource(eis);
  19. } else {
  20. sourceInput = new StreamSource(sourceFile.toURI().toString());
  21. }
  22. }
  23. return sourceInput;
  24. }

代码示例来源:origin: net.sf.saxon/Saxon-HE

  1. protected Source processSourceFile(String sourceFileName, boolean useURLs) throws TransformerException {
  2. Source sourceInput;
  3. if (useURLs || CommandLineOptions.isImplicitURI(sourceFileName)) {
  4. sourceInput = config.getURIResolver().resolve(sourceFileName, null);
  5. if (sourceInput == null) {
  6. sourceInput = config.getSystemURIResolver().resolve(sourceFileName, null);
  7. }
  8. } else if (sourceFileName.equals("-")) {
  9. // take input from stdin
  10. sourceInput = new StreamSource(System.in);
  11. } else {
  12. File sourceFile = new File(sourceFileName);
  13. if (!sourceFile.exists()) {
  14. quit("Source file " + sourceFile + " does not exist", 2);
  15. }
  16. if (Version.platform.isJava()) {
  17. InputSource eis = new InputSource(sourceFile.toURI().toString());
  18. sourceInput = new SAXSource(eis);
  19. } else {
  20. sourceInput = new StreamSource(sourceFile.toURI().toString());
  21. }
  22. }
  23. return sourceInput;
  24. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon

  1. protected Source processSourceFile(String sourceFileName, boolean useURLs) throws TransformerException {
  2. Source sourceInput;
  3. if (useURLs || CommandLineOptions.isImplicitURI(sourceFileName)) {
  4. sourceInput = config.getURIResolver().resolve(sourceFileName, null);
  5. if (sourceInput == null) {
  6. sourceInput = config.getSystemURIResolver().resolve(sourceFileName, null);
  7. }
  8. } else if (sourceFileName.equals("-")) {
  9. // take input from stdin
  10. sourceInput = new StreamSource(System.in);
  11. } else {
  12. File sourceFile = new File(sourceFileName);
  13. if (!sourceFile.exists()) {
  14. quit("Source file " + sourceFile + " does not exist", 2);
  15. }
  16. if (Version.platform.isJava()) {
  17. InputSource eis = new InputSource(sourceFile.toURI().toString());
  18. sourceInput = new SAXSource(eis);
  19. } else {
  20. sourceInput = new StreamSource(sourceFile.toURI().toString());
  21. }
  22. }
  23. return sourceInput;
  24. }

代码示例来源:origin: org.opengis.cite.saxon/saxon9

  1. Source[] sources = resolver.resolve(null, null, locations);
  2. if (sources.length != 1 || !(sources[0] instanceof StreamSource)) {
  3. quit("Module URI Resolver must return a single StreamSource", 2);

代码示例来源:origin: net.sourceforge.saxon/saxon

  1. if (isStandardResolver) {
  2. quit("System problem: standard ModuleURIResolver returned null", 4);
  3. } else {
  4. resolver = staticEnv.getConfiguration().getStandardModuleURIResolver();
  5. quit("Module URI Resolver must return a single StreamSource", 2);

代码示例来源:origin: net.sourceforge.saxon/saxon

  1. quit("Static error(s) in query", 2);
  2. } else {
  3. if (line == -1) {
  4. File outputFile = new File(outputFileName);
  5. if (outputFile.isDirectory()) {
  6. quit("Output is a directory", 2);
  7. quit(err.getMessage(), 1);
  8. } catch (XPathException err) {
  9. quit("Query processing failed: " + err.getMessage(), 2);
  10. } catch (TransformerFactoryConfigurationError err) {
  11. err.printStackTrace();
  12. quit("Query processing failed", 2);
  13. } catch (SchemaException err) {
  14. quit("Schema processing failed: " + err.getMessage(), 2);
  15. } catch (Exception err2) {
  16. err2.printStackTrace();
  17. quit("Fatal error during query: " + err2.getClass().getName() + ": " +
  18. (err2.getMessage() == null ? " (no message)" : err2.getMessage()), 2);

代码示例来源:origin: net.sf.saxon/Saxon-HE

  1. if (isStandardResolver) {
  2. quit("System problem: standard ModuleURIResolver returned null", 4);
  3. } else {
  4. resolver = getConfiguration().getStandardModuleURIResolver();
  5. quit("Module URI Resolver must return a single StreamSource", 2);

代码示例来源:origin: org.opengis.cite.saxon/saxon9

  1. quit("Static error(s) in query", 2);
  2. } else {
  3. if (line == -1) {
  4. File outputFile = new File(outputFileName);
  5. if (outputFile.isDirectory()) {
  6. quit("Output is a directory", 2);
  7. quit(err.getMessage(), 1);
  8. } catch (XPathException err) {
  9. quit("Query processing failed: " + err.getMessage(), 2);
  10. } catch (TransformerFactoryConfigurationError err) {
  11. err.printStackTrace();
  12. quit("Query processing failed", 2);
  13. } catch (Exception err2) {
  14. err2.printStackTrace();
  15. quit("Fatal error during query: " + err2.getClass().getName() + ": " +
  16. (err2.getMessage() == null ? " (no message)" : err2.getMessage()), 2);

代码示例来源:origin: net.sourceforge.saxon/saxon

  1. quit(value + " is not a CollectionURIResolver", 2);
  2. quit("The -outval option requires a schema-aware processor", 2);
  3. } else if (option.equals("val")) {
  4. if (!schemaAware) {
  5. quit("The -val option requires a schema-aware processor", 2);
  6. } else if (value == null || "strict".equals(value)) {
  7. config.setSchemaValidationMode(Validation.STRICT);
  8. config.setSchemaValidationMode(Validation.LAX);
  9. } else {
  10. quit("The -vlax option requires a schema-aware processor", 2);
  11. config.setValidationWarnings(true);
  12. } else {
  13. quit("The -vw option requires a schema-aware processor", 2);

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon

  1. if (isStandardResolver) {
  2. quit("System problem: standard ModuleURIResolver returned null", 4);
  3. } else {
  4. resolver = getConfiguration().getStandardModuleURIResolver();
  5. quit("Module URI Resolver must return a single StreamSource", 2);

代码示例来源:origin: org.opengis.cite.saxon/saxon9

  1. quit(value + " is not a CollectionURIResolver", 2);
  2. quit("The -outval option requires a schema-aware processor", 2);
  3. } else if (option.equals("val")) {
  4. if (!schemaAware) {
  5. quit("The -val option requires a schema-aware processor", 2);
  6. } else if (value == null || "strict".equals(value)) {
  7. config.setSchemaValidationMode(Validation.STRICT);
  8. config.setSchemaValidationMode(Validation.LAX);
  9. } else {
  10. quit("The -vlax option requires a schema-aware processor", 2);
  11. config.setValidationWarnings(true);
  12. } else {
  13. quit("The -vw option requires a schema-aware processor", 2);

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon

  1. options.setActualOptions(args);
  2. } catch (XPathException err) {
  3. quit(err.getMessage(), 2);
  4. schemaAware = config.isLicensedFeature(Configuration.LicenseFeature.ENTERPRISE_XQUERY);
  5. } catch (XPathException e) {
  6. quit(e.getMessage(), 2);
  7. if (schemaAware && !config.isLicensedFeature(Configuration.LicenseFeature.ENTERPRISE_XQUERY)) {
  8. if ("EE".equals(config.getEditionCode())) {
  9. quit("Installed license does not allow schema-aware query", 2);
  10. } else {
  11. quit("Schema-aware query requires Saxon Enterprise Edition", 2);
  12. quit("Static error(s) in query", 2);
  13. } else {
  14. if (line == -1) {
  15. quit(e.getMessage(), 2);
  16. File outputFile = new File(outputFileName);
  17. if (outputFile.isDirectory()) {
  18. quit("Output is a directory", 2);
  19. options.setSerializationProperties(serializer);
  20. } catch (IllegalArgumentException e) {
  21. quit(e.getMessage(), 2);
  22. if (err.getCause() instanceof XPathException && ((XPathException) err.getCause()).hasBeenReported()) {

代码示例来源:origin: net.sf.saxon/Saxon-HE

  1. options.setActualOptions(args);
  2. } catch (XPathException err) {
  3. quit(err.getMessage(), 2);
  4. schemaAware = config.isLicensedFeature(Configuration.LicenseFeature.ENTERPRISE_XQUERY);
  5. } catch (XPathException e) {
  6. quit(e.getMessage(), 2);
  7. if (schemaAware && !config.isLicensedFeature(Configuration.LicenseFeature.ENTERPRISE_XQUERY)) {
  8. if ("EE".equals(config.getEditionCode())) {
  9. quit("Installed license does not allow schema-aware query", 2);
  10. } else {
  11. quit("Schema-aware query requires Saxon Enterprise Edition", 2);
  12. quit("Static error(s) in query", 2);
  13. } else {
  14. if (line == -1) {
  15. quit(e.getMessage(), 2);
  16. File outputFile = new File(outputFileName);
  17. if (outputFile.isDirectory()) {
  18. quit("Output is a directory", 2);
  19. options.setSerializationProperties(serializer);
  20. } catch (IllegalArgumentException e) {
  21. quit(e.getMessage(), 2);
  22. if (err.getCause() instanceof XPathException && ((XPathException) err.getCause()).hasBeenReported()) {

相关文章