SDCParser.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 /* libstaroffice
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 /*
35  * Parser to convert sdc StarOffice document
36  *
37  */
38 #ifndef SDC_PARSER
39 # define SDC_PARSER
40 
41 #include <vector>
42 
43 #include "STOFFDebug.hxx"
44 #include "STOFFEntry.hxx"
45 #include "STOFFInputStream.hxx"
46 
47 #include "STOFFParser.hxx"
48 
49 namespace SDCParserInternal
50 {
51 struct State;
52 }
53 
55 class StarObject;
56 class StarZone;
57 class STOFFOLEParser;
58 class StarFormatManager;
64 class SDCParser final : public STOFFSpreadsheetParser
65 {
66 public:
68  SDCParser(STOFFInputStreamPtr &input, STOFFHeader *header);
70  ~SDCParser() final;
72  void setDocumentPassword(char const *passwd)
73  {
74  m_password=passwd;
75  }
77  bool checkHeader(STOFFHeader *header, bool strict=false) override;
78 
79  // the main parse function
80  void parse(librevenge::RVNGSpreadsheetInterface *documentInterface) override;
81 
82 protected:
84  void createDocument(librevenge::RVNGSpreadsheetInterface *documentInterface);
85 
87  bool createZones();
88 
90  bool sendSpreadsheet();
91 
92  //
93  // low level
94  //
95 
96  //
97  // data
98  //
99 
101  char const *m_password;
103  std::shared_ptr<STOFFOLEParser> m_oleParser;
105  std::shared_ptr<SDCParserInternal::State> m_state;
106 private:
107  SDCParser(SDCParser const &orig) = delete;
108  SDCParser &operator=(SDCParser const &orig) = delete;
109 };
110 #endif
111 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
StarFileManager.hxx
SDCParser::~SDCParser
~SDCParser() final
destructor
Definition: SDCParser.cxx:82
STOFFHeader::reset
void reset(int vers, Kind kind=STOFFDocument::STOFF_K_TEXT)
resets the data
Definition: STOFFHeader.hxx:77
STOFFParser::setSpreadsheetListener
void setSpreadsheetListener(STOFFSpreadsheetListenerPtr &listener)
sets the spreadsheet listener
Definition: STOFFParser.cxx:89
SDCParserInternal
Internal: the structures of a SDCParser.
Definition: SDCParser.cxx:52
StarAttributeManager
the main class to read/.
Definition: StarAttribute.hxx:1080
STOFFEntry.hxx
STOFFSpreadsheetParser
virtual class which defines the ancestor of all spreadsheet zone parser
Definition: STOFFParser.hxx:226
STOFF_DEBUG_MSG
#define STOFF_DEBUG_MSG(M)
Definition: libstaroffice_internal.hxx:129
StarObjectSpreadsheet
the main class to read a StarOffice sdc file
Definition: StarObjectSpreadsheet.hxx:63
SDCParser.hxx
SDCParser::createDocument
void createDocument(librevenge::RVNGSpreadsheetInterface *documentInterface)
creates the listener which will be associated to the document
Definition: SDCParser.cxx:140
STOFFPageSpan
A class which defines the page properties.
Definition: STOFFPageSpan.hxx:75
SDCParserInternal::State::m_actPage
int m_actPage
the actual page
Definition: SDCParser.cxx:65
STOFFSpreadsheetListenerPtr
std::shared_ptr< STOFFSpreadsheetListener > STOFFSpreadsheetListenerPtr
a smart pointer of STOFFSpreadsheetListener
Definition: libstaroffice_internal.hxx:493
STOFFHeader::setEncrypted
void setEncrypted(bool encrypted)
set the encryption mode
Definition: STOFFHeader.hxx:110
STOFFParser.hxx
STOFFOLEParser.hxx
libstoff::DebugFile::reset
static void reset()
Definition: STOFFDebug.hxx:228
SDCParser::checkHeader
bool checkHeader(STOFFHeader *header, bool strict=false) override
checks if the document header is correct (or not)
Definition: SDCParser.cxx:183
SDCParserInternal::State::m_numPages
int m_numPages
the number of page of the final document
Definition: SDCParser.cxx:65
SDCParser
the main class to read a StarOffice sdc file
Definition: SDCParser.hxx:64
SDCParser::createZones
bool createZones()
parses the different OLE, ...
Definition: SDCParser.cxx:116
SDCParser::m_state
std::shared_ptr< SDCParserInternal::State > m_state
the state
Definition: SDCParser.hxx:105
STOFFInputStreamPtr
std::shared_ptr< STOFFInputStream > STOFFInputStreamPtr
a smart pointer of STOFFInputStream
Definition: libstaroffice_internal.hxx:485
StarZone
a zone in a StarOffice file
Definition: StarZone.hxx:56
StarObject
an object corresponding to an OLE directory
Definition: StarObject.hxx:64
STOFFSpreadsheetListener
This class contents the main functions needed to create a spreadsheet processing Document.
Definition: STOFFSpreadsheetListener.hxx:64
STOFFPageSpan::m_pageSpan
int m_pageSpan
the number of page
Definition: STOFFPageSpan.hxx:104
StarObjectSpreadsheet.hxx
STOFFParser::ascii
libstoff::DebugFile & ascii()
a DebugFile used to write what we recognize when we parse the document
Definition: STOFFParser.hxx:143
STOFFParser::resetSpreadsheetListener
void resetSpreadsheetListener()
resets the spreadsheet listener
Definition: STOFFParser.cxx:94
SDCParser::m_password
const char * m_password
the password
Definition: SDCParser.hxx:101
libstoff::ParseException
Definition: libstaroffice_internal.hxx:143
STOFFHeader
a function used by STOFFDocument to store the version of document
Definition: STOFFHeader.hxx:56
SDCParserInternal::State
Internal: the state of a SDCParser.
Definition: SDCParser.cxx:56
SDCParser::setDocumentPassword
void setDocumentPassword(char const *passwd)
set the document password
Definition: SDCParser.hxx:72
SDCParserInternal::State::State
State()
constructor
Definition: SDCParser.cxx:58
STOFFOLEParser
a class used to parse some basic oles Tries to read the different ole parts and stores their contents...
Definition: STOFFOLEParser.hxx:86
StarFileManager::checkUnparsed
static void checkUnparsed(STOFFInputStreamPtr input, std::shared_ptr< STOFFOLEParser > oleParser, char const *password)
low level
Definition: StarFileManager.cxx:435
STOFFParser::getParserState
STOFFParserStatePtr getParserState()
returns the parser state
Definition: STOFFParser.hxx:103
STOFFDebug.hxx
STOFFParser::getPageSpan
const STOFFPageSpan & getPageSpan() const
returns the actual page dimension
Definition: STOFFParser.hxx:118
StarObject::getDocumentKind
STOFFDocument::Kind getDocumentKind() const
returns the document kind
Definition: StarObject.cxx:115
SDCParser::SDCParser
SDCParser(STOFFInputStreamPtr &input, STOFFHeader *header)
constructor
Definition: SDCParser.cxx:74
StarZone.hxx
SDCParser::m_oleParser
std::shared_ptr< STOFFOLEParser > m_oleParser
the ole parser
Definition: SDCParser.hxx:103
STOFFParser::getInput
STOFFInputStreamPtr & getInput()
returns the actual input
Definition: STOFFParser.hxx:113
SDCParser::sendSpreadsheet
bool sendSpreadsheet()
try to send the spreadsheet
Definition: SDCParser.cxx:158
SDCParser::operator=
SDCParser & operator=(SDCParser const &orig)=delete
StarFormatManager
the main class to read/.
Definition: StarFormatManager.hxx:90
STOFFParser::getSpreadsheetListener
STOFFSpreadsheetListenerPtr & getSpreadsheetListener()
returns the spreadsheet listener
Definition: STOFFParser.hxx:133
SDCParser::parse
void parse(librevenge::RVNGSpreadsheetInterface *documentInterface) override
virtual function used to parse the input
Definition: SDCParser.cxx:89
STOFFInputStream.hxx
STOFFSpreadsheetListener.hxx
SDCParserInternal::State::m_mainSpreadsheet
std::shared_ptr< StarObjectSpreadsheet > m_mainSpreadsheet
Definition: SDCParser.cxx:66
STOFFDocument::STOFF_K_SPREADSHEET
spreadsheet: .sdc
Definition: STOFFDocument.hxx:74

Generated on Mon Jan 20 2020 23:02:16 for libstaroffice by doxygen 1.8.16