forked from root-project/root
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TXMLParser.h
78 lines (57 loc) · 2.67 KB
/
TXMLParser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// @(#)root/xmlparser:$Id$
// Author: Jose Lo 12/4/2005
/*************************************************************************
* Copyright (C) 1995-2005, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TXMLParser
#define ROOT_TXMLParser
#ifndef ROOT_TQObject
#include "TQObject.h"
#endif
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
struct _xmlParserCtxt;
class TXMLParser : public TObject, public TQObject {
private:
TXMLParser(const TXMLParser&); // Not implemented
TXMLParser& operator=(const TXMLParser&); // Not implemented
protected:
_xmlParserCtxt *fContext; ///< Parse the xml file
Bool_t fValidate; ///< To validate the parse context
Bool_t fReplaceEntities; ///< Replace entities
Bool_t fStopError; ///< Stop when parse error occurs
TString fValidateError; ///< Parse error
TString fValidateWarning; ///< Parse warning
Int_t fParseCode; ///< To keep track of the errorcodes
virtual void InitializeContext();
virtual void ReleaseUnderlying();
virtual void OnValidateError(const TString& message);
virtual void OnValidateWarning(const TString& message);
virtual void SetParseCode(Int_t code);
public:
TXMLParser();
virtual ~TXMLParser();
void SetValidate(Bool_t val = kTRUE);
Bool_t GetValidate() const { return fValidate; }
void SetReplaceEntities(Bool_t val = kTRUE);
Bool_t GetReplaceEntities() const { return fReplaceEntities; }
virtual Int_t ParseFile(const char *filename) = 0;
virtual Int_t ParseBuffer(const char *contents, Int_t len) = 0;
virtual void StopParser();
Int_t GetParseCode() const { return fParseCode; }
const char *GetParseCodeMessage(Int_t parseCode) const;
void SetStopOnError(Bool_t stop = kTRUE);
Bool_t GetStopOnError() const { return fStopError; }
const char *GetValidateError() const { return fValidateError; }
const char *GetValidateWarning() const { return fValidateWarning; }
ClassDef(TXMLParser,0); // XML SAX parser
};
#endif