/usr/include/wv2/parser.h is in libwv2-dev 0.4.2.dfsg.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | /* This file is part of the wvWare 2 project
Copyright (C) 2001-2003 Werner Trobin <trobin@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef PARSER_H
#define PARSER_H
#include "sharedptr.h"
#include "global.h"
namespace wvWare
{
// This ensures that we return the correct FIB :)
// Note: The guy implementing Word95 support also has to return such
// a Word97 FIB (as for most of the other important structures)!
// We will create the conversion code with a script (at least those
// parts of it which are easy to map)
namespace Word97
{
struct FIB;
struct DOP;
struct SEP;
struct FFN;
struct STTBF;
}
class InlineReplacementHandler;
class SubDocumentHandler;
class TableHandler;
class PictureHandler;
class TextHandler;
class OLEStorage;
class OLEStreamReader;
class StyleSheet;
class AssociatedStrings;
class WV2_DLLEXPORT Parser : public Shared
{
public:
/**
* This enum is needed to keep track of the parsing state. We e.g. have to
* handle footnote references differently while parsing footnotes. It's a bit
* hacky, but needed.
*/
enum SubDocument { None, Main, Footnote, Header, Macro, Annotation, Endnote, TextBox, HeaderTextBox };
/**
* Construct a parser. The reason that we get the "open" storage
* and the document reader passed (ugly :}) is that "someone" has
* to determine the nFib to select the proper parser... oh well
* At least we take ownership ;)
*/
Parser( OLEStorage* storage, OLEStreamReader* wordDocument );
virtual ~Parser(); // Don't forget to close everything properly here
/**
* Is everything allright?
*/
bool isOk() const { return m_okay; }
/**
* Invokes the parsing process.
*/
virtual bool parse() = 0;
/**
* Get the FIB (read only!)
*/
virtual const Word97::FIB& fib() const = 0;
/**
* Get the DOP (read only!)
*/
virtual const Word97::DOP& dop() const = 0;
/**
* Get the font family name structure for a given ftc.
*/
virtual const Word97::FFN& font( S16 ftc ) const = 0;
/**
* Get the associated strings (author, title,...).
* Not cached, so don't use it like:
* parser->associatedStrings().author(); parser->associatedStrings().title()...
*/
virtual AssociatedStrings associatedStrings() = 0;
/**
* This stylesheet holds all the styles inside the Word file
*/
virtual const StyleSheet& styleSheet() const = 0;
/**
* The inline replacement handler is used to replace certain characters on the fly.
* We don't take ownership of the handler!
*/
void setInlineReplacementHandler( InlineReplacementHandler* handler );
/**
* The sub-document handler gets all callbacks related to the document structure.
* We don't take ownership of the handler!
*/
void setSubDocumentHandler( SubDocumentHandler* handler );
/**
* The table handler is used to tell the consumer about table structures.
* We don't take ownership of the handler!
*/
void setTableHandler( TableHandler* handler );
/**
* The picture handler passes the image/drawing data to the consumer.
* We don't take ownership of the handler!
*/
void setPictureHandler( PictureHandler* handler );
/**
* The text handler is the main worker among all handlers. It's used to forward
* the formatted text to the document, make sure that it's fast.
* We don't take ownership of the handler!
*/
void setTextHandler( TextHandler* handler );
// Do we need public access to parts of the OLEStorage interface?
// If we add public accessors we should make m_storage private.
protected:
InlineReplacementHandler* m_inlineHandler;
SubDocumentHandler* m_subDocumentHandler;
TableHandler* m_tableHandler;
PictureHandler* m_pictureHandler;
TextHandler* m_textHandler;
bool m_ourInlineHandler;
bool m_ourSubDocumentHandler;
bool m_ourTableHandler;
bool m_ourPictureHandler;
bool m_ourTextHandler;
OLEStorage* m_storage; // The storage representing the file
OLEStreamReader* m_wordDocument; // document stream ('WordDocument')
bool m_okay; // Still allright?
private:
Parser( const Parser& rhs );
Parser& operator=( const Parser& rhs );
template<typename Handler> void setHandler( Handler* newHandler, Handler** handler, bool& ourHandler )
{
if ( ourHandler ) {
ourHandler = false;
delete *handler;
}
*handler = newHandler;
}
};
} // namespace wvWare
#endif // PARSER_H
|