WPSTextParser.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2/* libwps
3 * Version: MPL 2.0 / LGPLv2.1+
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * Major Contributor(s):
10 * Copyright (C) 2009, 2011 Alonso Laurent (alonso@loria.fr)
11 * Copyright (C) 2006, 2007 Andrew Ziem
12 * Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
13 * Copyright (C) 2004 Marc Maurer (uwog@uwog.net)
14 * Copyright (C) 2003-2005 William Lachance (william.lachance@sympatico.ca)
15 *
16 * For minor contributions see the git repository.
17 *
18 * Alternatively, the contents of this file may be used under the terms
19 * of the GNU Lesser General Public License Version 2.1 or later
20 * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
21 * applicable instead of those above.
22 *
23 * For further information visit http://libwps.sourceforge.net
24 */
25
26#ifndef WPS_TEXT_PARSER_H
27#define WPS_TEXT_PARSER_H
28
29#include <vector>
30
31#include "libwps_internal.h"
32
33#include "WPSDebug.h"
34#include "WPSEntry.h"
35
36class WPSParser;
37
40{
41public:
43 virtual ~WPSTextParser();
44
46 int version() const;
47
50 {
51 return m_input;
52 }
53
54protected:
57
59 std::multimap<std::string, WPSEntry> &getNameEntryMap();
60
62 std::multimap<std::string, WPSEntry> const &getNameEntryMap() const;
63
64protected:
66 struct DataFOD
67 {
75
79 , m_pos(-1)
80 , m_defPos(0)
81 , m_id(-1) {}
82
86 long m_pos;
90 int m_id;
91 };
92
95 std::vector<DataFOD> mergeSortedFODLists
96 (std::vector<DataFOD> const &lst1, std::vector<DataFOD> const &lst2) const;
97
103 typedef bool (WPSTextParser::* FDPParser)(long endPos,
104 int &id, std::string &mess);
105
108 bool readFDP(WPSEntry const &entry,
109 std::vector<DataFOD> &fods, FDPParser parser);
110
111protected:
114 {
115 return m_asciiFile;
116 }
117
118private:
120 WPSTextParser(WPSTextParser const &parser) = delete;
122 WPSTextParser &operator=(WPSTextParser const &parser) = delete;
123
124protected:
126 mutable int m_version;
134 std::vector<DataFOD> m_FODList;
137};
138
139
140#endif /* WPSTEXTPARSER_H */
141/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
basic class to store an entry in a file This contained :
Definition WPSEntry.h:39
Definition WPSParser.h:36
bool readFDP(WPSEntry const &entry, std::vector< DataFOD > &fods, FDPParser parser)
parses a FDPP or a FDPC entry (which contains a list of ATTR_TEXT/ATTR_PARAG with their definition ) ...
Definition WPSTextParser.cpp:71
std::vector< DataFOD > m_FODList
the list of a FOD
Definition WPSTextParser.h:134
WPSEntry m_textPositions
an entry which corresponds to the complete text zone
Definition WPSTextParser.h:132
bool(WPSTextParser::* FDPParser)(long endPos, int &id, std::string &mess)
callback when a new attribute is found in an FDPP/FDPC entry
Definition WPSTextParser.h:103
libwps::DebugFile & ascii()
a DebugFile used to write what we recognize when we parse the document
Definition WPSTextParser.h:113
std::multimap< std::string, WPSEntry > & getNameEntryMap()
returns the map type->entry
Definition WPSTextParser.cpp:58
std::vector< DataFOD > mergeSortedFODLists(std::vector< DataFOD > const &lst1, std::vector< DataFOD > const &lst2) const
function which takes two sorted list of attribute (by text position).
Definition WPSTextParser.cpp:253
RVNGInputStreamPtr m_input
the main input
Definition WPSTextParser.h:128
WPSTextParser(WPSParser &parser, RVNGInputStreamPtr &input)
constructor
Definition WPSTextParser.cpp:38
libwps::DebugFile & m_asciiFile
the ascii file
Definition WPSTextParser.h:136
virtual ~WPSTextParser()
virtual destructor
Definition WPSTextParser.cpp:48
RVNGInputStreamPtr & getInput()
returns the actual input
Definition WPSTextParser.h:49
int version() const
returns the file version
Definition WPSTextParser.cpp:51
int m_version
the file version
Definition WPSTextParser.h:126
WPSTextParser(WPSTextParser const &parser)=delete
private copy constructor: forbidden
WPSTextParser & operator=(WPSTextParser const &parser)=delete
private copy operator: forbidden
WPSParser & m_mainParser
pointer to the main zone parser;
Definition WPSTextParser.h:130
Definition WPSDebug.h:208
std::shared_ptr< librevenge::RVNGInputStream > RVNGInputStreamPtr
shared pointer to librevenge::RVNGInputStream
Definition libwps_internal.h:87
Type
different type which can be associated to a text position
Definition WPSTextParser.h:74
@ ATTR_PARAG
Definition WPSTextParser.h:74
@ ATTR_PLC
Definition WPSTextParser.h:74
@ ATTR_TEXT
Definition WPSTextParser.h:74
@ ATTR_UNKN
Definition WPSTextParser.h:74
DataFOD()
the constructor
Definition WPSTextParser.h:77
Type m_type
the type of the attribute
Definition WPSTextParser.h:84
int m_id
an identificator (which must be unique by category)
Definition WPSTextParser.h:90
long m_pos
the offset position of the text modified by this attribute
Definition WPSTextParser.h:86
long m_defPos
the offset position of the definition of the attribute in the file
Definition WPSTextParser.h:88

Generated on Sat Jul 19 2025 05:24:40 for libwps by doxygen 1.14.0