Main Page
Namespaces
Classes
Files
File List
File Members
MWAWOLEParser.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
/*
35
* freely inspired from istorage :
36
* ------------------------------------------------------------
37
* Generic OLE Zones furnished with a copy of the file header
38
*
39
* Compound Storage (32 bit version)
40
* Storage implementation
41
*
42
* This file contains the compound file implementation
43
* of the storage interface.
44
*
45
* Copyright 1999 Francis Beaudet
46
* Copyright 1999 Sylvain St-Germain
47
* Copyright 1999 Thuy Nguyen
48
* Copyright 2005 Mike McCormack
49
*
50
* This library is free software; you can redistribute it and/or
51
* modify it under the terms of the GNU Lesser General Public
52
* License as published by the Free Software Foundation; either
53
* version 2.1 of the License, or (at your option) any later version.
54
*
55
* This library is distributed in the hope that it will be useful,
56
* but WITHOUT ANY WARRANTY; without even the implied warranty of
57
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
58
* Lesser General Public License for more details.
59
*
60
* ------------------------------------------------------------
61
*/
62
63
#ifndef MWAW_OLE_PARSER_H
64
#define MWAW_OLE_PARSER_H
65
66
#include <string>
67
#include <vector>
68
69
#include <librevenge-stream/librevenge-stream.h>
70
71
#include "
libmwaw_internal.hxx
"
72
#include "
MWAWInputStream.hxx
"
73
74
#include "
MWAWDebug.hxx
"
75
76
namespace
MWAWOLEParserInternal
77
{
78
class
CompObj;
79
}
80
84
class
MWAWOLEParser
85
{
86
public
:
89
explicit
MWAWOLEParser
(std::string mainName);
90
92
~MWAWOLEParser
();
93
96
bool
parse
(
MWAWInputStreamPtr
fileInput);
97
99
std::vector<std::string>
const
&
getNotParse
()
const
100
{
101
return
m_unknownOLEs
;
102
}
103
105
std::vector<int>
const
&
getObjectsId
()
const
106
{
107
return
m_objectsId
;
108
}
110
std::vector<MWAWPosition>
const
&
getObjectsPosition
()
const
111
{
112
return
m_objectsPosition
;
113
}
115
std::vector<librevenge::RVNGBinaryData>
const
&
getObjects
()
const
116
{
117
return
m_objects
;
118
}
120
std::vector<std::string>
const
&
getObjectsType
()
const
121
{
122
return
m_objectsType
;
123
}
124
126
bool
getObject
(
int
id
, librevenge::RVNGBinaryData &obj,
MWAWPosition
&pos, std::string &type)
const
;
127
131
void
setObject
(
int
id
, librevenge::RVNGBinaryData
const
&obj,
MWAWPosition
const
&pos,
132
std::string
const
&type);
133
134
protected
:
135
137
static
bool
readOle
(
MWAWInputStreamPtr
ip, std::string
const
&oleName,
138
libmwaw::DebugFile
&ascii);
140
static
bool
readMM
(
MWAWInputStreamPtr
input, std::string
const
&oleName,
141
libmwaw::DebugFile
&ascii);
143
static
bool
readObjInfo
(
MWAWInputStreamPtr
input, std::string
const
&oleName,
144
libmwaw::DebugFile
&ascii);
146
bool
readCompObj
(
MWAWInputStreamPtr
ip, std::string
const
&oleName,
147
libmwaw::DebugFile
&ascii);
148
150
static
bool
isOlePres
(
MWAWInputStreamPtr
ip, std::string
const
&oleName);
152
static
bool
readOlePres
(
MWAWInputStreamPtr
ip, librevenge::RVNGBinaryData &data,
MWAWPosition
&pos,
153
libmwaw::DebugFile
&ascii);
154
156
static
bool
isOle10Native
(
MWAWInputStreamPtr
ip, std::string
const
&oleName);
158
static
bool
readOle10Native
(
MWAWInputStreamPtr
ip, librevenge::RVNGBinaryData &data,
159
libmwaw::DebugFile
&ascii);
160
164
bool
readContents
(
MWAWInputStreamPtr
input, std::string
const
&oleName,
165
librevenge::RVNGBinaryData &pict,
MWAWPosition
&pos,
libmwaw::DebugFile
&ascii);
166
172
bool
readCONTENTS
(
MWAWInputStreamPtr
input, std::string
const
&oleName,
173
librevenge::RVNGBinaryData &pict,
MWAWPosition
&pos,
libmwaw::DebugFile
&ascii);
174
175
177
std::string
m_avoidOLE
;
179
std::vector<std::string>
m_unknownOLEs
;
180
182
std::vector<librevenge::RVNGBinaryData>
m_objects
;
184
std::vector<MWAWPosition>
m_objectsPosition
;
186
std::vector<int>
m_objectsId
;
188
std::vector<std::string>
m_objectsType
;
189
191
shared_ptr<MWAWOLEParserInternal::CompObj>
m_compObjIdName
;
192
193
};
194
195
#endif
196
// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
Generated on Tue Mar 1 2016 23:42:50 for libmwaw by
doxygen
1.8.4