StarObject.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  * class to parse/store an object corresponding to an OLE directory
36  *
37  */
38 #ifndef STAR_OBJECT
39 # define STAR_OBJECT
40 
41 #include <vector>
42 #include <stack>
44 
45 #include "STOFFDebug.hxx"
46 #include "STOFFOLEParser.hxx"
47 
48 #include "StarItemPool.hxx"
49 
50 namespace StarObjectInternal
51 {
52 struct State;
53 }
54 
56 class StarFormatManager;
57 class StarItemSet;
58 
65 {
66 public:
68  StarObject(char const *passwd, shared_ptr<STOFFOLEParser> oleParser, shared_ptr<STOFFOLEParser::OleDirectory> directory);
70  virtual ~StarObject();
71 
72  //
73  // basic
74  //
75 
77  bool parse();
81  char const *getPassword() const
82  {
83  return m_password;
84  }
86  shared_ptr<STOFFOLEParser::OleDirectory> getOLEDirectory()
87  {
88  return m_directory;
89  }
91  shared_ptr<StarAttributeManager> getAttributeManager();
93  shared_ptr<StarFormatManager> getFormatManager();
95  librevenge::RVNGPropertyList const &getMetaData() const
96  {
97  return m_metaData;
98  }
100  librevenge::RVNGString getUserNameMetaData(int i) const;
101  // the document pool
103  void cleanPools();
105  shared_ptr<StarItemPool> getNewItemPool(StarItemPool::Type type);
109  shared_ptr<StarItemPool> findItemPool(StarItemPool::Type type, bool isInside);
111  shared_ptr<StarItemPool> getCurrentPool(bool onlyInside=true);
112 
114  bool readPersistData(StarZone &zone, long endPos, bool inPersistElements=false);
116  bool readSfxStyleSheets(STOFFInputStreamPtr input, std::string const &name);
118  bool readItemSet(StarZone &zone, std::vector<STOFFVec2i> const &limits, long endPos,
119  StarItemSet &itemSet, StarItemPool *pool=0, bool isDirect=false);
120 protected:
122  bool readPersistElements(STOFFInputStreamPtr input, std::string const &name);
124  bool readSfxDocumentInformation(STOFFInputStreamPtr input, std::string const &name);
126  bool readSfxPreview(STOFFInputStreamPtr input, std::string const &name);
133 
134  //
135  // data
136  //
137 protected:
139  StarObject(StarObject const &orig, bool duplicateState);
141  char const *m_password;
143  shared_ptr<STOFFOLEParser> m_oleParser;
145  shared_ptr<STOFFOLEParser::OleDirectory> m_directory;
146 
148  shared_ptr<StarObjectInternal::State> m_state;
150  librevenge::RVNGPropertyList m_metaData;
151 
152 private:
153  StarObject(StarObject const &orig);
154  StarObject &operator=(StarObject const &orig);
155 };
156 
157 #endif
158 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
StarObject & operator=(StarObject const &orig)
virtual ~StarObject()
destructor
Definition: StarObject.cxx:94
bool readStarFrameworkConfigItem(STOFFEntry &entry, STOFFInputStreamPtr input, libstoff::DebugFile &ascii)
try to read an item in a "Star Framework Config File"
Definition: StarObject.cxx:882
shared_ptr< STOFFInputStream > STOFFInputStreamPtr
a smart pointer of STOFFInputStream
Definition: libstaroffice_internal.hxx:488
shared_ptr< StarItemPool > getNewItemPool(StarItemPool::Type type)
returns a new item pool for this document
Definition: StarObject.cxx:134
bool readSfxStyleSheets(STOFFInputStreamPtr input, std::string const &name)
try to read a spreadshet style zone: SfxStyleSheets
Definition: StarObject.cxx:756
bool readPersistElements(STOFFInputStreamPtr input, std::string const &name)
the "persist elements" small ole: the list of object
Definition: StarObject.cxx:280
void cleanPools()
clean each pool
Definition: StarObject.cxx:98
char const * getPassword() const
returns the document password (the password given by the user)
Definition: StarObject.hxx:81
the main class to read/.
Definition: StarAttribute.hxx:1073
Definition: STOFFDebug.hxx:198
Type
the known item pool
Definition: StarItemPool.hxx:75
STOFFDocument::Kind getDocumentKind() const
returns the document kind
Definition: StarObject.cxx:107
bool readSfxPreview(STOFFInputStreamPtr input, std::string const &name)
try to read the preview : "SfxPreview"
Definition: StarObject.cxx:918
shared_ptr< StarAttributeManager > getAttributeManager()
returns the attribute manager
Definition: StarObject.cxx:112
shared_ptr< STOFFOLEParser > m_oleParser
the ole parser
Definition: StarObject.hxx:143
shared_ptr< StarItemPool > getCurrentPool(bool onlyInside=true)
returns the current all/inside pool
Definition: StarObject.cxx:141
Internal: the structures of a StarObject.
Definition: StarObject.cxx:51
bool parse()
try to parse data
Definition: StarObject.cxx:162
shared_ptr< StarObjectInternal::State > m_state
the state
Definition: StarObject.hxx:148
bool readSfxWindows(STOFFInputStreamPtr input, libstoff::DebugFile &ascii)
try to read the windows information : "SfxWindows"
Definition: StarObject.cxx:942
shared_ptr< StarItemPool > findItemPool(StarItemPool::Type type, bool isInside)
check if a pool corresponding to a given type is opened if so returned it.
Definition: StarObject.cxx:151
bool readPersistData(StarZone &zone, long endPos, bool inPersistElements=false)
try to read persist data
Definition: StarObject.cxx:356
the main class to read/.
Definition: StarFormatManager.hxx:89
shared_ptr< StarFormatManager > getFormatManager()
returns the format manager
Definition: StarObject.cxx:117
bool readSfxDocumentInformation(STOFFInputStreamPtr input, std::string const &name)
try to read the document information : "SfxDocumentInformation"
Definition: StarObject.cxx:606
char const * m_password
the document password
Definition: StarObject.hxx:141
librevenge::RVNGPropertyList m_metaData
the meta data
Definition: StarObject.hxx:150
shared_ptr< STOFFOLEParser::OleDirectory > getOLEDirectory()
returns the object directory
Definition: StarObject.hxx:86
shared_ptr< STOFFOLEParser::OleDirectory > m_directory
the directory
Definition: StarObject.hxx:145
librevenge::RVNGString getUserNameMetaData(int i) const
returns the ith user meta data
Definition: StarObject.cxx:122
class to store a list of item
Definition: StarItem.hxx:79
Kind
an enum to define the kind of document
Definition: STOFFDocument.hxx:66
librevenge::RVNGPropertyList const & getMetaData() const
returns the meta data (filled by readSfxDocumentInformation)
Definition: StarObject.hxx:95
StarObject(char const *passwd, shared_ptr< STOFFOLEParser > oleParser, shared_ptr< STOFFOLEParser::OleDirectory > directory)
constructor
Definition: StarObject.cxx:81
the main class to read/.
Definition: StarItemPool.hxx:70
bool readStarFrameworkConfigFile(STOFFInputStreamPtr input, libstoff::DebugFile &ascii)
try to read the "Star Framework Config File"
Definition: StarObject.cxx:805
basic class to store an entry in a file This contained :
Definition: STOFFEntry.hxx:46
an object corresponding to an OLE directory
Definition: StarObject.hxx:64
a zone in a StarOffice file
Definition: StarZone.hxx:56
bool readItemSet(StarZone &zone, std::vector< STOFFVec2i > const &limits, long endPos, StarItemSet &itemSet, StarItemPool *pool=0, bool isDirect=false)
try to read a list of item
Definition: StarObject.cxx:222

Generated on Sat Jul 29 2017 14:32:44 for libstaroffice by doxygen 1.8.8