/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_xml_sax_XFastParser_idl__ #define __com_sun_star_xml_sax_XFastParser_idl__ #ifndef __com_sun_star_uno_XInterface_idl__ #include #endif #ifndef __com_sun_star_xml_sax_InputSource_idl__ #include #endif #ifndef __com_sun_star_xml_sax_SAXException_idl__ #include #endif #ifndef __com_sun_star_io_IOException_idl__ #include #endif #ifndef __com_sun_star_xml_sax_XFastDocumentHandler_idl__ #include #endif #ifndef __com_sun_star_xml_sax_XFastTokenHandler_idl__ #include #endif #ifndef __com_sun_star_xml_sax_XErrorHandler_idl__ #include #endif #ifndef __com_sun_star_xml_sax_XDTDHandler_idl__ #include #endif #ifndef __com_sun_star_xml_sax_XEntityResolver_idl__ #include #endif #ifndef __com_sun_star_lang_Locale_idl__ #include #endif #ifndef __com_sun_star_lang_IllegalArgumentException_idl__ #include #endif //============================================================================= module com { module sun { module star { module xml { module sax { //============================================================================= /** specifies a SAX parser that uses integer values for known xml names (elements, attributes and attribute values). The parser also handles namespaces and allows to have individual contexts for each xml element.

Before parsing is possible you have to set your XFastDocumentHandler using setFastDocumentHandler.

Parsing starts with calling parseStream. If the parser finds a valid xml file with the given InputSource, it calls XFastDocumentHandler::startDocument first.

This parser generates either 'fast' events that use integer token values for namespaces, elements and attributes or 'unknown' events for elements that are unknown.

A namespace is unknown if the namespace URL was not registered with registerNamespace.

An element is unknown if no XFastTokenHandler is set or if the XFastTokenHandler does not return a valid identifier for the elements local name. An element is also unknown if the elements local name is known but it uses a namespace that is unknown.

Setting a XFastTokenHandler with setTokenHandler is optional, but without a XFastTokenHandler you will only get unknown sax events. This can be usefull if you are only interested in the namespace handling and/or the context feature.

For each element the parser sends a create child element event to the elements parent context by calling XFastContextHandler::createFastChildContext for known elements or XFastContextHandler::createUnknownChildContext for unknown elements.
The parent context for the root element is the XFastDocumentHandler itself.

If the parent context returns an empty reference, no further events for the element and all of its childs are created.

If a valid context is returned this context gets a start event by a call to XFastContextHandler::startFastElement for known elements or XFastContextHandler::startUnknownElement for unknown elements.

After processing all its child elements the context gets an end event by a call to XFastContextHandler::endFastElement for known elements or XFastContextHandler::endUnknownElement for unknown elements.

It is valid to return one instance of XFastContextHandler more than once. It is even possible to only use the XFastDocumentHandler by always returning a reference to itself for each create child context event.

After the last element is processed the parser generates an end document event at the XFastDocumentHandler by calling XFastDocumentHandler::endDocument. @see http://wiki.services.openoffice.org/wiki/FastParser */ interface XFastParser: com::sun::star::uno::XInterface { //------------------------------------------------------------------------- /** parses an XML document from a stream.

Set the desired handlers before calling this method.

*/ void parseStream( [in] InputSource aInputSource ) raises( SAXException, com::sun::star::io::IOException ); //------------------------------------------------------------------------- /** Application must register a document event handler to get sax events for the parsed stream. */ void setFastDocumentHandler( [in] XFastDocumentHandler Handler ); //------------------------------------------------------------------------- /** must be registered to translate known xml names to integer tokens. */ void setTokenHandler( [in] XFastTokenHandler Handler ); //------------------------------------------------------------------------- /** registers a known namespace url with the given integer token.
@param NamespaceToken an integer token that must be greater than FastToken::NAMESPACE. */ void registerNamespace( [in] string NamespaceURL, [in] long NamespaceToken ) raises( com::sun::star::lang::IllegalArgumentException ); //------------------------------------------------------------------------- /** allows an application to register an error event handler.

Note that the error handler can throw an exception when an error or warning occurs. Note that an exception is thrown by the parser when an unrecoverable (fatal) error occurs.

*/ void setErrorHandler( [in] XErrorHandler Handler ); //------------------------------------------------------------------------- /** allows an application to register a DTD-Handler. */ void setEntityResolver( [in] XEntityResolver Resolver ); //------------------------------------------------------------------------- /** sets a locale specified for localization of warnings and error messages.

Set the language of the error messages. Useful when the parsing errors will be presented to the user.

*/ void setLocale( [in] com::sun::star::lang::Locale locale ); }; //============================================================================= }; }; }; }; }; #endif