#include <xml/parser.h>
Link against: xmlframework.lib
class Xml::CParser : public CBase |
Public Member Functions | |
---|---|
virtual | ~CParser() |
IMPORT_C void | AddPreloadedDictionaryL(const TDesC8 &) |
IMPORT_C TInt | DisableFeature(TInt) |
IMPORT_C TInt | EnableFeature(TInt) |
IMPORT_C TBool | IsFeatureEnabled(TInt) |
IMPORT_C CParser * | NewL(const TDesC8 &, MContentHandler &) |
IMPORT_C CParser * | NewL(const CMatchData &, MContentHandler &) |
IMPORT_C CParser * | NewLC(const TDesC8 &, MContentHandler &) |
IMPORT_C CParser * | NewLC(const CMatchData &, MContentHandler &) |
IMPORT_C void | ParseBeginL() |
IMPORT_C void | ParseBeginL(const TDesC8 &) |
IMPORT_C void | ParseBeginL(const CMatchData &) |
IMPORT_C void | ParseEndL() |
IMPORT_C void | ParseL(const TDesC8 &) |
IMPORT_C void | SetProcessorChainL(const RContentProcessorUids &) |
IMPORT_C RStringDictionaryCollection & | StringDictionaryCollection() |
IMPORT_C RStringPool & | StringPool() |
If you need to parse xml this is the class you need to use.
Default plain-text XML parser plug-in supports following character set encodings:
ISO_8859_1 US_ASCII UTF_8 UTF_16 UTF_16BE UTF_16LE
IMPORT_C void | AddPreloadedDictionaryL | ( | const TDesC8 & | aPublicId | ) |
This method preloads a string dictionary prior to parsing.
Parameters | |
---|---|
aPublicId | the public identifier representing the document dtd. |
Leave Codes | |
---|---|
... | One of the system wide error codes or one of the Xml specific ones defined in |
This method tell whether a specific feature of the parser is enabled.
See also: TParserFeature
IMPORT_C CParser * | NewL | ( | const TDesC8 & | aParserMimeType, |
MContentHandler & | aCallback | |||
) | [static] |
This method creates a parser that is ready to parse documents of the specified mime type.
If there are multiple parser plugins in the system which can parse the mime type, the XML framework will choose a parser.
The criteria used to choose a parser, from many matching parsers, is as follows:
A Symbian-supplied parser (with variant field set to "Symbian") will be selected by default. If there are multiple Symbian-supplied parsers, the one with the lowest Uid will be selected. Otherwise, the non-Symbian parser with the lowest Uid will be selected.
See also: CParser::NewL(const CMatchData& aCriteria, MContentHandler& aCallback)
Parameters | |
---|---|
aParserMimeType | The mime type of the documents to parse (e.g. "txt/xml"). |
aCallback | The handler for parser generated events. |
Leave Codes | |
---|---|
KErrNoMemory | If there is not enough memory to create parser or one of system wide error codes. |
KErrXmlParserPluginNotFound | If Xml framework is unable to find a parser based on data provided in aParserMimeType. |
... | One of the system wide error codes or one of the Xml specific ones defined in |
IMPORT_C CParser * | NewL | ( | const CMatchData & | aCriteria, |
MContentHandler & | aCallback | |||
) | [static] |
This method creates the particular parser specified in CMatchData parameter.
The parser plugin resolution process is based on mime type and variant field. Both are provided in CMatchData parameter. Mime Type is a mandatory string for the resolution process and it is matched against the data field of plugin resource files. Variant string is optional. If it exists, it is matched against the first entry of the opaque data field of plugin resource files.
If the query is narrowed down to many parsers, the XML framework might either leave with an error (KErrXmlMoreThanOneParserMatched), or choose a parser. The behaviour is specified by LeaveOnMany flag. The default value of the flag is FALSE ('choose a parser' behaviour).
The criteria used to choose a parser, from many matching parsers, is as follows:
If the optional Variant field is specified, the XML framework will choose the parser with the lowest Uid from the list.
If the optional Variant field is not specified, a Symbian-supplied parser (with variant field set to "Symbian") will be selected by default. If there are multiple Symbian-supplied parsers, the one with the lowest Uid will be selected. Otherwise, the non-Symbian parser with the lowest Uid will be selected.
Case sensitivity of the string matching process is applied according to the relevant flag in CMatchData. The default value is TRUE (Case Sensitivity enabled).
Only ROM-based parsers are returned if the relevant flag is set in CMatchData. The default value is FALSE (all parsers are considered).
See also: CMatchData
Parameters | |
---|---|
aCriteria | The specific information about required parser (mime type, variant data). |
aCallback | The xml/wbxml event handler. |
Leave Codes | |
---|---|
KErrNoMemory | If there is not enough memory to create parser or one of system wide error codes. |
KErrXmlParserPluginNotFound | If Xml framework is unable to find a parser based on data provided in CMatchData. |
KErrXmlMoreThanOneParserMatched | If Xml framework narrowed down the query to many parsers and a user requested to leave in such case (LeaveOnMany flag set). |
... | One of the system wide error codes or one of the Xml specific ones defined in |
IMPORT_C CParser * | NewLC | ( | const TDesC8 & | aParserMimeType, |
MContentHandler & | aCallback | |||
) | [static] |
This method is similar to NewL, but leaves the created parser on the cleanup stack.
See also: CParser::NewL(const TDesC8& aParserMimeType, MContentHandler& aCallback) CParser::NewLC(const CMatchData& aCriteria, MContentHandler& aCallback)
Parameters | |
---|---|
aParserMimeType | The mime type of the documents to parse (e.g. "txt/xml"). |
aCallback | The handler for parser generated events. |
Leave Codes | |
---|---|
KErrNoMemory | If there is not enough memory to create parser or one of system wide error codes. |
KErrXmlParserPluginNotFound | If Xml framework is unable to find a parser based on data provided in aParserMimeType. |
... | One of the system wide error codes or one of the Xml specific ones defined in |
IMPORT_C CParser * | NewLC | ( | const CMatchData & | aCriteria, |
MContentHandler & | aCallback | |||
) | [static] |
This method creates the particular parser specified in CMatchData parameter. It performs the same way as NewL with the exception that it leaves the object on the cleanup stack.
See also: CParser::NewL(const CMatchData& aCriteria, MContentHandler& aCallback) CMatchData
Parameters | |
---|---|
aCriteria | The specific information about required parser (mime type, version, variant data). |
aCallback | The xml/wbxml event handler. |
Leave Codes | |
---|---|
KErrNoMemory | If there is not enough memory to create parser or one of system wide error codes. |
KErrXmlParserPluginNotFound | If Xml framework is unable to find a parser based on data provided in CMatchData. |
KErrXmlMoreThanOneParserMatched | If Xml framework narrowed down the query to many parsers and a user requested to leave in such case (LeaveOnMany flag set). |
... | One of the system wide error codes or one of the Xml specific ones defined in |
IMPORT_C void | ParseBeginL | ( | ) |
This method tells the parser that we're going to start parsing a document using the default mime type specified on construction.
The processor chain and features will be cleared if the parser currently set is not the default, all old features are removed as these generally have no meaning between parsers.
Leave Codes | |
---|---|
... | One of the system wide error codes or one of the Xml specific ones defined in |
IMPORT_C void | ParseBeginL | ( | const TDesC8 & | aDocumentMimeType | ) |
This method tells the parser that we're going to start parsing a document using the parser associated with this mime type.
Parameters | |
---|---|
aDocumentMimeType | the mime type of the document |
IMPORT_C void | ParseBeginL | ( | const CMatchData & | aCriteria | ) |
This method tells the parser that we're going to start parsing a document using the parser associated with given CMatchData criteria.
See also: CMatchData
Parameters | |
---|---|
aCriteria | The specific information about required parser (mime type, version, variant data). |
Leave Codes | |
---|---|
KErrNoMemory | If there is not enough memory to create parser. |
KErrArgument | If the data specified in CMatchData are not sufficient. |
KErrXmlParserPluginNotFound | If Xml framework is unable to find a parser based on data provided in CMatchData. |
KErrXmlMoreThanOneParserMatched | If Xml framework narrowed down the query to many parsers and a user requested to leave in such case (LeaveOnMany flag set). |
... | One of the system wide error codes or one of the Xml specific ones defined in |
IMPORT_C void | ParseEndL | ( | ) |
Leave Codes | |
---|---|
... | One of the system wide error codes or one of the Xml specific ones defined in |
IMPORT_C void | ParseL | ( | const TDesC8 & | aFragment | ) |
This method tells the parser to parse a fragment of a document. Could be the whole document. ParseEndL should be called once the whole document has been parsed.
The parser currently set will be used.
Parameters | |
---|---|
aFragment | the fragment to parse |
Leave Codes | |
---|---|
... | One of the system wide error codes or one of the Xml specific ones defined in |
IMPORT_C void | SetProcessorChainL | ( | const RContentProcessorUids & | aPlugins | ) |
This method changes the client and plugin chain.
Parameters | |
---|---|
aPlugins | a list of plugin implementation uids that make up the callback chain. |
Leave Codes | |
---|---|
... | One of the system wide error codes or one of the Xml specific ones defined in |
IMPORT_C RStringDictionaryCollection & | StringDictionaryCollection | ( | ) |
This method obtains a handle to the current StringDictionaryCollection.
IMPORT_C RStringPool & | StringPool | ( | ) |
This method obtains a handle to the current string pool.