summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/performance
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-11-05 07:48:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-11-05 07:48:28 +0200
commit8965bbe98b08b47370ea8ecca830707745ae383b (patch)
tree4af8762062ff4badd9c68954e819487825c4c6f8 /examples/cxx/tree/performance
parent9878dfe26a08ea5638c562c22c9becd11d462015 (diff)
Handle loadGrammar failures
Diffstat (limited to 'examples/cxx/tree/performance')
-rw-r--r--examples/cxx/tree/performance/parsing.cxx21
1 files changed, 19 insertions, 2 deletions
diff --git a/examples/cxx/tree/performance/parsing.cxx b/examples/cxx/tree/performance/parsing.cxx
index 3997ea6..b7413a7 100644
--- a/examples/cxx/tree/performance/parsing.cxx
+++ b/examples/cxx/tree/performance/parsing.cxx
@@ -99,7 +99,17 @@ parsing (const char* file, unsigned long iter, bool validate)
// If we are validating, pre-load and cache the schema.
//
- parser->loadGrammar ("test.xsd", Grammar::SchemaGrammarType, true);
+ if (!parser->loadGrammar ("test.xsd", Grammar::SchemaGrammarType, true))
+ {
+ // In Xerces-C++ grammar loading failure results in just a warning.
+ // Make it a fatal error.
+ //
+ eh.handle ("test.xsd", 0, 0,
+ xsd::cxx::tree::error_handler<char>::severity::fatal,
+ "unable to load schema");
+ }
+
+ eh.throw_if_failed<xml_schema::parsing> ();
conf->setParameter (XMLUni::fgXercesUseCachedGrammarInParse, true);
}
else
@@ -132,7 +142,14 @@ parsing (const char* file, unsigned long iter, bool validate)
parser->setFeature (XMLUni::fgXercesSchema, true);
parser->setFeature (XMLUni::fgXercesSchemaFullChecking, false);
- parser->loadGrammar ("test.xsd", Grammar::SchemaGrammarType, true);
+ if (!parser->loadGrammar ("test.xsd", Grammar::SchemaGrammarType, true))
+ {
+ eh.handle ("test.xsd", 0, 0,
+ xsd::cxx::tree::error_handler<char>::severity::fatal,
+ "unable to load schema");
+ }
+
+ eh.throw_if_failed<xml_schema::parsing> ();
parser->setFeature (XMLUni::fgXercesUseCachedGrammarInParse, true);
}
else