MWAWRSRCParser.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_RSRC_PARSER_H
35 #define MWAW_RSRC_PARSER_H
36 
37 #include <map>
38 #include <string>
39 #include <vector>
40 
41 #include "libmwaw_internal.hxx"
42 #include "MWAWDebug.hxx"
43 
44 class WPXBinaryData;
45 
46 class MWAWEntry;
48 typedef shared_ptr<MWAWInputStream> MWAWInputStreamPtr;
49 
53 {
54 public:
55  struct Version;
56 
61 
63  bool parse();
64 
67  return m_input;
68  }
69 
71  MWAWEntry getEntry(std::string type, int id) const;
72 
74  std::multimap<std::string, MWAWEntry> &getEntriesMap() {
75  if (!m_parsed)
76  parse();
77  return m_entryMap;
78  }
80  std::multimap<std::string, MWAWEntry> const &getEntriesMap() const {
81  if (!m_parsed)
82  const_cast<MWAWRSRCParser *>(this)->parse();
83  return m_entryMap;
84  }
85 
87  bool parseSTR(MWAWEntry const &entry, std::string &str);
88 
90  bool parseSTRList(MWAWEntry const &entry, std::vector<std::string> &list);
91 
93  bool parsePICT(MWAWEntry const &entry, WPXBinaryData &pict);
94 
96  bool parseClut(MWAWEntry const &entry, std::vector<MWAWColor> &list);
97 
99  bool parseVers(MWAWEntry const &entry, Version &vers);
100 
102  void setAsciiName(char const *name) {
103  m_asciiName = name;
104  }
106  std::string const &asciiName() const {
107  return m_asciiName;
108  }
111  return m_asciiFile;
112  }
113 protected:
115  bool parseMap(MWAWEntry const &entry, long dataBegin);
116 
120  std::multimap<std::string, MWAWEntry> m_entryMap;
122  bool m_parsed;
126  std::string m_asciiName;
127 private:
128  MWAWRSRCParser(MWAWRSRCParser const &orig);
130 
131 public:
133  struct Version {
135  m_string(""), m_versionString(""), m_extra("") {
136  }
138  friend std::ostream &operator<< (std::ostream &o, Version const &vers);
146  std::string m_string;
148  std::string m_versionString;
150  std::string m_extra;
151  };
152 
153 };
154 
155 typedef shared_ptr<MWAWRSRCParser> MWAWRSRCParserPtr;
156 
157 #endif
158 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
~MWAWRSRCParser()
the destructor
Definition: MWAWRSRCParser.cxx:45
bool m_parsed
an internal flag used to know if the parsing was done
Definition: MWAWRSRCParser.hxx:122
MWAWInputStreamPtr m_input
the input stream
Definition: MWAWRSRCParser.hxx:118
shared_ptr< MWAWInputStream > MWAWInputStreamPtr
Definition: ACText.hxx:44
int m_majorVersion
the major number
Definition: MWAWRSRCParser.hxx:140
std::multimap< std::string, MWAWEntry > & getEntriesMap()
returns the entry map (this map is filled by parse)
Definition: MWAWRSRCParser.hxx:74
std::string m_string
the major string
Definition: MWAWRSRCParser.hxx:146
an interface used to insert comment in a binary file, written in ascii form (if debug_with_files is n...
Definition: MWAWDebug.hxx:67
MWAWRSRCParser(MWAWInputStreamPtr input)
the constructor
Definition: MWAWRSRCParser.cxx:41
int m_minorVersion
the minor number
Definition: MWAWRSRCParser.hxx:142
MWAWEntry getEntry(std::string type, int id) const
returns a entry corresponding to a type and an id (if possible)
Definition: MWAWRSRCParser.cxx:73
void setAsciiName(char const *name)
Debugging: change the default ascii file.
Definition: MWAWRSRCParser.hxx:102
libmwaw::DebugFile m_asciiFile
the debug file
Definition: MWAWRSRCParser.hxx:124
std::string m_extra
extra data
Definition: MWAWRSRCParser.hxx:150
a public structure used to return the version
Definition: MWAWRSRCParser.hxx:133
friend std::ostream & operator<<(std::ostream &o, Version const &vers)
operator&lt;&lt;
Definition: MWAWRSRCParser.cxx:441
std::multimap< std::string, MWAWEntry > const & getEntriesMap() const
returns the entry map (this map is filled by parse)
Definition: MWAWRSRCParser.hxx:80
Internal class used to read the file stream Internal class used to read the file stream, this class adds some usefull functions to the basic WPXInputStream:
Definition: MWAWInputStream.hxx:59
bool parseVers(MWAWEntry const &entry, Version &vers)
try to parse a version entry
Definition: MWAWRSRCParser.cxx:457
std::string m_versionString
the version string
Definition: MWAWRSRCParser.hxx:148
bool parseSTRList(MWAWEntry const &entry, std::vector< std::string > &list)
try to parse a STR# entry
Definition: MWAWRSRCParser.cxx:326
bool parseClut(MWAWEntry const &entry, std::vector< MWAWColor > &list)
try to color map (clut entry)
Definition: MWAWRSRCParser.cxx:379
std::string m_asciiName
the debug file name
Definition: MWAWRSRCParser.hxx:126
int m_countryCode
the country code
Definition: MWAWRSRCParser.hxx:144
Version()
Definition: MWAWRSRCParser.hxx:134
std::string const & asciiName() const
return the ascii file name
Definition: MWAWRSRCParser.hxx:106
std::multimap< std::string, MWAWEntry > m_entryMap
the list of entries, name-&gt;entry
Definition: MWAWRSRCParser.hxx:120
libmwaw::DebugFile & ascii()
a DebugFile used to write what we recognize when we parse the document
Definition: MWAWRSRCParser.hxx:110
bool parse()
try to parse the document
Definition: MWAWRSRCParser.cxx:89
bool parsePICT(MWAWEntry const &entry, WPXBinaryData &pict)
try to parse a PICT entry
Definition: MWAWRSRCParser.cxx:499
MWAWInputStreamPtr getInput()
return the rsrc input
Definition: MWAWRSRCParser.hxx:66
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:46
the main class to read a Mac resource fork
Definition: MWAWRSRCParser.hxx:52
bool parseMap(MWAWEntry const &entry, long dataBegin)
try to parse the map
Definition: MWAWRSRCParser.cxx:171
MWAWRSRCParser & operator=(MWAWRSRCParser const &orig)
bool parseSTR(MWAWEntry const &entry, std::string &str)
try to parse a STR entry
Definition: MWAWRSRCParser.cxx:292
shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
Definition: MWAWParser.hxx:56

Generated for libmwaw by doxygen 1.8.5