xref: /aoo41x/main/shell/inc/internal/basereader.hxx (revision ed2f6d3b)
1*ed2f6d3bSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*ed2f6d3bSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*ed2f6d3bSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*ed2f6d3bSAndrew Rist  * distributed with this work for additional information
6*ed2f6d3bSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*ed2f6d3bSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*ed2f6d3bSAndrew Rist  * "License"); you may not use this file except in compliance
9*ed2f6d3bSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*ed2f6d3bSAndrew Rist  *
11*ed2f6d3bSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*ed2f6d3bSAndrew Rist  *
13*ed2f6d3bSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*ed2f6d3bSAndrew Rist  * software distributed under the License is distributed on an
15*ed2f6d3bSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*ed2f6d3bSAndrew Rist  * KIND, either express or implied.  See the License for the
17*ed2f6d3bSAndrew Rist  * specific language governing permissions and limitations
18*ed2f6d3bSAndrew Rist  * under the License.
19*ed2f6d3bSAndrew Rist  *
20*ed2f6d3bSAndrew Rist  *************************************************************/
21*ed2f6d3bSAndrew Rist 
22*ed2f6d3bSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef BASEREADER_HXX_INCLUDED
25cdf0e10cSrcweir #define BASEREADER_HXX_INCLUDED
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include "internal/global.hxx"
28cdf0e10cSrcweir #include "internal/types.hxx"
29cdf0e10cSrcweir #include "internal/config.hxx"
30cdf0e10cSrcweir #include "internal/utilities.hxx"
31cdf0e10cSrcweir #include "internal/i_xml_parser_event_handler.hxx"
32cdf0e10cSrcweir 
33cdf0e10cSrcweir #ifndef XML_PARSER_HXX_INCLUDED
34cdf0e10cSrcweir #include "internal/xml_parser.hxx"
35cdf0e10cSrcweir #endif
36cdf0e10cSrcweir #include "internal/zipfile.hxx"
37cdf0e10cSrcweir 
38cdf0e10cSrcweir class CBaseReader : public i_xml_parser_event_handler
39cdf0e10cSrcweir {
40cdf0e10cSrcweir public:
41cdf0e10cSrcweir 	virtual ~CBaseReader();
42cdf0e10cSrcweir 
43cdf0e10cSrcweir protected: // protected because its only an implementation relevant class
44cdf0e10cSrcweir 	CBaseReader( const std::string& DocumentName );
45cdf0e10cSrcweir 
46cdf0e10cSrcweir 	CBaseReader( void* stream, zlib_filefunc_def* fa );
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 	virtual void start_document();
49cdf0e10cSrcweir 
50cdf0e10cSrcweir 	virtual void end_document();
51cdf0e10cSrcweir 
52cdf0e10cSrcweir 	virtual void start_element(
53cdf0e10cSrcweir 		const std::wstring& raw_name,
54cdf0e10cSrcweir 		const std::wstring& local_name,
55cdf0e10cSrcweir 		const XmlTagAttributes_t& attributes) = 0;
56cdf0e10cSrcweir 
57cdf0e10cSrcweir 	virtual void end_element(
58cdf0e10cSrcweir 		const std::wstring& raw_name, const std::wstring& local_name) = 0;
59cdf0e10cSrcweir 
60cdf0e10cSrcweir 	virtual void characters(const std::wstring& character) = 0;
61cdf0e10cSrcweir 
ignore_whitespace(const std::wstring &)62cdf0e10cSrcweir 	virtual void ignore_whitespace(const std::wstring& /*whitespaces*/){};
63cdf0e10cSrcweir 
processing_instruction(const std::wstring &,const std::wstring &)64cdf0e10cSrcweir 	virtual void processing_instruction(
65cdf0e10cSrcweir 		const std::wstring& /*target*/, const std::wstring& /*data*/){};
66cdf0e10cSrcweir 
comment(const std::wstring &)67cdf0e10cSrcweir 	virtual void comment(const std::wstring& /*comment*/){};
68cdf0e10cSrcweir 
69cdf0e10cSrcweir 	void Initialize( const std::string& /*ContentName*/);
70cdf0e10cSrcweir 
71cdf0e10cSrcweir private:
72cdf0e10cSrcweir 	ZipFile        m_ZipFile;
73cdf0e10cSrcweir 	ZipFile::ZipContentBuffer_t m_ZipContent;
74cdf0e10cSrcweir };
75cdf0e10cSrcweir 
76cdf0e10cSrcweir #endif
77