Location:
GMXMLParser.h
Link against: xmlparser.lib
class CMDXMLParser : public CActive;
Creates a DOM structure from a given XML file.
The parsing operation is asynchronous and is initiated by a call to ParseFile()
. On completion, the created DOM document can be retrieved through DetachXMLDoc()
.
Note the following ownership rules for the DOM document:
1. calling DetachXMLDoc()
transfers ownership of the document to the client
2. if the parser is asked to parse a new file while it still owns an existing DOM document, it will delete the old document.
CBase
- Base class for all classes to be instantiated on the heap
CActive
- The core class of the active object abstraction
CMDXMLParser
- Creates a DOM structure from a given XML file
Defined in CMDXMLParser
:
CreateDocumentL()
, DetachXMLDoc()
, DoCancel()
, EAscii
, EUnicode
, Error()
, ErrorSeverity()
, HandleTextL()
, NewL()
, NewL()
, NewLC()
, NewLC()
, ParseFile()
, ParseFile()
, ParseSource()
, ParseStartTagL()
, RunError()
, RunL()
, SetEntityConverter()
, SetSourceCharacterWidth()
, SetStoreInvalid()
, TMDXMLParserInputCharWidth
, ~CMDXMLParser()
Inherited from CActive
:
Cancel()
,
Deque()
,
EPriorityHigh
,
EPriorityIdle
,
EPriorityLow
,
EPriorityStandard
,
EPriorityUserInput
,
Extension_()
,
IsActive()
,
IsAdded()
,
Priority()
,
SetActive()
,
SetPriority()
,
TPriority
,
iStatus
Inherited from CBase
:
Delete()
,
operator new()
static IMPORT_C CMDXMLParser *NewL(MMDXMLParserObserver *aParserObserver);
Allocates and constructs a new XML parser, specifying a DTD.
|
|
|
static IMPORT_C CMDXMLParser *NewL(MMDXMLParserObserver *aParserObserver, MXMLDtd *aDtdRepresentation);
Allocates and constructs a new XML parser, specifying a DTD.
|
|
|
static IMPORT_C CMDXMLParser *NewLC(MMDXMLParserObserver *aParserObserver);
Allocates and constructs a new XML parser, leaving the object on the cleanup stack.
|
|
|
static IMPORT_C CMDXMLParser *NewLC(MMDXMLParserObserver *aParserObserver, MXMLDtd *aDtdRepresentation);
Allocates and constructs a new XML parser, leaving the object on the cleanup stack.
|
|
|
IMPORT_C TInt Error() const;
Gets the last error found by the parser.
|
IMPORT_C TXMLErrorCodeSeverity ErrorSeverity() const;
Get the severity of the most severe error found.
|
IMPORT_C CMDXMLDocument *DetachXMLDoc();
Gets the created DOM.
This should be called after the conclusion of the parser process.
Note that the function sets the internal variable pointing to the document to NULL, so this function can only be called once per file parse. The caller takes ownership of the document, and must delete it when its use is complete.
|
IMPORT_C TInt ParseFile(RFs aRFs, const TDesC &aFileToParse);
Parses a specified XML file into a DOM object tree.
|
|
IMPORT_C TInt ParseFile(RFile &aFileHandleToParse);
Parses a specified XML file into a DOM object tree.
Parses a specified XML file into a DOM object tree using an open file handle. The parser takes ownership of the open file handle and will close handle when completed.
|
|
IMPORT_C void ParseSource(MMDXMLParserDataProvider *aSource);
Parses a specified XML Data Source into a DOM object tree.
|
IMPORT_C void SetSourceCharacterWidth(TMDXMLParserInputCharWidth aWidth);
Sets the input stream character width.
|
IMPORT_C void SetEntityConverter(CMDXMLEntityConverter *aEntityConverter);
Sets the entity converter to be used for parsing. and take ownership of the passed entity converter
|
IMPORT_C void SetStoreInvalid(TBool aStoreInvalid);
Controls whether invalid elements and attributes are added to the DOM.
|
private: virtual IMPORT_C void DoCancel();
Implements cancellation of an outstanding request.
This function is called as part of the active object's Cancel()
.
It must call the appropriate cancel function offered by the active object's asynchronous service provider. The asynchronous service provider's cancel is expected to act immediately.
DoCancel()
must not wait for event completion; this is handled by Cancel()
.
private: virtual void RunL();
Handles an active object's request completion event.
A derived class must provide an implementation to handle the completed request. If appropriate, it may issue another request.
The function is called by the active scheduler when a request completion event occurs, i.e. after the active scheduler's WaitForAnyRequest() function completes.
Before calling this active object's RunL()
function, the active scheduler has:
1. decided that this is the highest priority active object with a completed request
2. marked this active object's request as complete (i.e. the request is no longer outstanding)
RunL()
runs under a trap harness in the active scheduler. If it leaves, then the active scheduler calls RunError()
to handle the leave.
Note that once the active scheduler's Start() function has been called, all user code is run under one of the program's active
object's RunL()
or RunError()
functions.