MWAWParser.hxx
Go to the documentation of this file.
1 /* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */
2 
3 /* libmwaw
4 * Version: MPL 2.0 / LGPLv2+
5 *
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 2.0 (the "License"); you may not use this file except in compliance with
8 * the License or as specified alternatively below. You may obtain a copy of
9 * the License at http://www.mozilla.org/MPL/
10 *
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
15 *
16 * Major Contributor(s):
17 * Copyright (C) 2002 William Lachance (wrlach@gmail.com)
18 * Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
19 * Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
20 * Copyright (C) 2006, 2007 Andrew Ziem
21 * Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
22 *
23 *
24 * All Rights Reserved.
25 *
26 * For minor contributions see the git repository.
27 *
28 * Alternatively, the contents of this file may be used under the terms of
29 * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
30 * in which case the provisions of the LGPLv2+ are applicable
31 * instead of those above.
32 */
33 
34 #ifndef MWAW_PARSER_H
35 #define MWAW_PARSER_H
36 
37 #include <ostream>
38 #include <string>
39 #include <vector>
40 
41 #include "MWAWDebug.hxx"
42 #include "MWAWInputStream.hxx"
43 
44 #include "MWAWEntry.hxx"
45 #include "MWAWHeader.hxx"
46 #include "MWAWPageSpan.hxx"
47 
48 class WPXDocumentInterface;
49 
51 typedef shared_ptr<MWAWContentListener> MWAWContentListenerPtr;
53 typedef shared_ptr<MWAWFontConverter> MWAWFontConverterPtr;
55 typedef shared_ptr<MWAWListManager> MWAWListManagerPtr;
57 typedef shared_ptr<MWAWRSRCParser> MWAWRSRCParserPtr;
58 
61 {
62 public:
63  // Constructor
67 
69  int m_version;
76 
83 
86 
87 private:
88  MWAWParserState(MWAWParserState const &orig);
90 };
91 
92 typedef shared_ptr<MWAWParserState> MWAWParserStatePtr;
93 
99 {
100 public:
102  virtual ~MWAWParser();
104  virtual void parse(WPXDocumentInterface *documentInterface) = 0;
106  virtual bool checkHeader(MWAWHeader *header, bool strict=false) = 0;
107 
109  int version() const {
110  return m_parserState->m_version;
111  }
113  void setVersion(int vers) {
114  m_parserState->m_version = vers;
115  }
116 
117 protected:
119  MWAWParser(MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header);
122 
125  return m_parserState;
126  }
129  return m_parserState->m_header;
130  }
133  return m_parserState->m_input;
134  }
137  return m_parserState->m_listener;
138  }
140  MWAWPageSpan const &getPageSpan() const {
141  return m_pageSpan;
142  }
145  return m_pageSpan;
146  }
148  double getFormLength() const {
149  return m_pageSpan.getFormLength();
150  }
152  double getFormWidth() const {
153  return m_pageSpan.getFormWidth();
154  }
156  double getPageLength() const {
157  return m_pageSpan.getPageLength();
158  }
160  double getPageWidth() const {
161  return m_pageSpan.getPageWidth();
162  }
165  return m_parserState->m_rsrcParser;
166  }
168  void setListener(MWAWContentListenerPtr &listener);
170  void resetListener();
173  return m_parserState->m_fontConverter;
174  }
176  void setFontConverter(MWAWFontConverterPtr fontConverter);
179  return m_parserState->m_asciiFile;
180  }
182  void setAsciiName(char const *name) {
183  m_asciiName = name;
184  }
186  std::string const &asciiName() const {
187  return m_asciiName;
188  }
189 
190 private:
192  MWAWParser(const MWAWParser &);
194  MWAWParser &operator=(const MWAWParser &);
195 
201  std::string m_asciiName;
202 };
203 
204 #endif /* MWAWPARSER_H */
205 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
a function used by MWAWDocument to store the version of document and the input
Definition: MWAWHeader.hxx:49
virtual void parse(WPXDocumentInterface *documentInterface)=0
virtual function used to parse the input
std::string const & asciiName() const
return the ascii file name
Definition: MWAWParser.hxx:186
shared_ptr< MWAWParserState > MWAWParserStatePtr
Definition: ACText.hxx:49
MWAWParserState & operator=(MWAWParserState const &orig)
shared_ptr< MWAWInputStream > MWAWInputStreamPtr
Definition: ACText.hxx:44
double getPageWidth() const
returns the page width (form width without margin )
Definition: MWAWParser.hxx:160
A class which defines the page properties.
Definition: MWAWPageSpan.hxx:100
MWAWParserState(MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header)
Definition: MWAWParser.cxx:40
MWAWHeader * m_header
the header
Definition: MWAWParser.hxx:73
MWAWContentListenerPtr & getListener()
returns the listener
Definition: MWAWParser.hxx:136
an interface used to insert comment in a binary file, written in ascii form (if debug_with_files is n...
Definition: MWAWDebug.hxx:67
void setVersion(int vers)
sets the works version
Definition: MWAWParser.hxx:113
MWAWRSRCParserPtr & getRSRCParser()
returns the rsrc parser
Definition: MWAWParser.hxx:164
MWAWPageSpan const & getPageSpan() const
returns the actual page dimension
Definition: MWAWParser.hxx:140
double getFormLength() const
returns the form length
Definition: MWAWParser.hxx:148
MWAWHeader * getHeader()
returns the header
Definition: MWAWParser.hxx:128
void resetListener()
resets the listener
Definition: MWAWParser.cxx:83
MWAWParserStatePtr m_parserState
the parser state
Definition: MWAWParser.hxx:197
void setListener(MWAWContentListenerPtr &listener)
sets the listener
Definition: MWAWParser.cxx:78
MWAWParser(MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header)
constructor (protected)
Definition: MWAWParser.cxx:68
MWAWParser & operator=(const MWAWParser &)
private operator=: forbidden
MWAWParser(MWAWParserStatePtr state)
constructor using a state
Definition: MWAWParser.hxx:121
~MWAWParserState()
destructor
Definition: MWAWParser.cxx:49
shared_ptr< MWAWContentListener > MWAWContentListenerPtr
Definition: MWAWContentListener.hxx:260
MWAWFontConverterPtr & getFontConverter()
returns the font converter
Definition: MWAWParser.hxx:172
double getPageLength() const
returns the page length (form width without margin )
Definition: MWAWPageSpan.hxx:145
void setAsciiName(char const *name)
Debugging: change the default ascii file.
Definition: MWAWParser.hxx:182
a class to define the parser state
Definition: MWAWParser.hxx:60
libmwaw::DebugFile m_asciiFile
the debug file
Definition: MWAWParser.hxx:85
int m_version
the actual version
Definition: MWAWParser.hxx:69
double getFormWidth() const
returns the page width
Definition: MWAWPageSpan.hxx:121
libmwaw::DebugFile & ascii()
a DebugFile used to write what we recognize when we parse the document
Definition: MWAWParser.hxx:178
MWAWParserStatePtr getParserState()
returns the parser state
Definition: MWAWParser.hxx:124
MWAWListManagerPtr m_listManager
the list manager
Definition: MWAWParser.hxx:80
int version() const
returns the works version
Definition: MWAWParser.hxx:109
a manager which manages the lists, keeps the different kind of lists, to assure the unicity of each l...
Definition: MWAWList.hxx:179
shared_ptr< MWAWFontConverter > MWAWFontConverterPtr
Definition: MSWStruct.hxx:52
double getPageLength() const
returns the page length (form length without margin )
Definition: MWAWParser.hxx:156
double getFormLength() const
returns the page length
Definition: MWAWPageSpan.hxx:117
a namespace used to convert Mac font characters in unicode
Definition: MWAWFontConverter.hxx:66
virtual ~MWAWParser()
virtual destructor
Definition: MWAWParser.cxx:74
MWAWPageSpan & getPageSpan()
returns the actual page dimension
Definition: MWAWParser.hxx:144
double getFormWidth() const
returns the form width
Definition: MWAWParser.hxx:152
std::string m_asciiName
the debug file name
Definition: MWAWParser.hxx:201
MWAWRSRCParserPtr m_rsrcParser
the resource parser
Definition: MWAWParser.hxx:75
void setFontConverter(MWAWFontConverterPtr fontConverter)
sets the font convertor
Definition: MWAWParser.cxx:89
double getPageWidth() const
returns the page width (form width without margin )
Definition: MWAWPageSpan.hxx:149
virtual class which defines the ancestor of all main zone parser
Definition: MWAWParser.hxx:98
MWAWPageSpan m_pageSpan
the actual document size
Definition: MWAWParser.hxx:199
MWAWFontConverterPtr m_fontConverter
the fonct converter
Definition: MWAWParser.hxx:78
shared_ptr< MWAWListManager > MWAWListManagerPtr
Definition: MWAWParser.hxx:54
MWAWInputStreamPtr m_input
the input
Definition: MWAWParser.hxx:71
Definition: MWAWContentListener.hxx:68
virtual bool checkHeader(MWAWHeader *header, bool strict=false)=0
virtual function used to check if the document header is correct (or not)
the main class to read a Mac resource fork
Definition: MWAWRSRCParser.hxx:52
MWAWContentListenerPtr m_listener
the listener
Definition: MWAWParser.hxx:82
MWAWInputStreamPtr & getInput()
returns the actual input
Definition: MWAWParser.hxx:132
shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
Definition: MWAWParser.hxx:56

Generated for libmwaw by doxygen 1.8.5