]> git.saurik.com Git - wxWidgets.git/blame - include/wx/archive.h
use wxUSE_DATEPICKCTRL
[wxWidgets.git] / include / wx / archive.h
CommitLineData
00375592
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: archive.h
3// Purpose: Streams for archive formats
4// Author: Mike Wetherell
5// RCS-ID: $Id$
6// Copyright: (c) 2004 Mike Wetherell
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_ARCHIVE_H__
11#define _WX_ARCHIVE_H__
12
13#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14#pragma interface "archive.h"
15#endif
16
17#include "wx/defs.h"
18
19#if wxUSE_ZLIB && wxUSE_STREAMS && wxUSE_ZIPSTREAM
20
21#include "wx/stream.h"
22#include "wx/filename.h"
23
24
25/////////////////////////////////////////////////////////////////////////////
26// wxArchiveNotifier
27
28class WXDLLIMPEXP_BASE wxArchiveNotifier
29{
30public:
31 virtual ~wxArchiveNotifier() { }
32
33 virtual void OnEntryUpdated(class wxArchiveEntry& entry) = 0;
34};
35
36
37/////////////////////////////////////////////////////////////////////////////
38// wxArchiveEntry
39//
40// Holds an entry's meta data, such as filename and timestamp.
41
42class WXDLLIMPEXP_BASE wxArchiveEntry : public wxObject
43{
44public:
45 virtual ~wxArchiveEntry() { }
46
47 virtual wxDateTime GetDateTime() const = 0;
48 virtual wxFileOffset GetSize() const = 0;
49 virtual wxFileOffset GetOffset() const = 0;
50 virtual bool IsDir() const = 0;
51 virtual bool IsReadOnly() const = 0;
52 virtual wxString GetInternalName() const = 0;
53 virtual wxPathFormat GetInternalFormat() const = 0;
54 virtual wxString GetName(wxPathFormat format = wxPATH_NATIVE) const = 0;
55
56 virtual void SetDateTime(const wxDateTime& dt) = 0;
57 virtual void SetSize(wxFileOffset size) = 0;
58 virtual void SetIsDir(bool isDir = true) = 0;
59 virtual void SetIsReadOnly(bool isReadOnly = true) = 0;
60 virtual void SetName(const wxString& name,
61 wxPathFormat format = wxPATH_NATIVE) = 0;
62
63 wxArchiveEntry *Clone() const { return DoClone(); }
64
65 void SetNotifier(wxArchiveNotifier& notifier);
66 virtual void UnsetNotifier() { m_notifier = NULL; }
67
68protected:
69 wxArchiveEntry() : m_notifier(NULL) { }
f44eaed6 70 wxArchiveEntry(const wxArchiveEntry& e) : wxObject(e), m_notifier(NULL) { }
00375592
VZ
71
72 virtual void SetOffset(wxFileOffset offset) = 0;
73 virtual wxArchiveEntry* DoClone() const = 0;
74
75 wxArchiveNotifier *GetNotifier() const { return m_notifier; }
76 wxArchiveEntry& operator=(const wxArchiveEntry& entry);
77
78private:
79 wxArchiveNotifier *m_notifier;
80
81 DECLARE_ABSTRACT_CLASS(wxArchiveEntry)
82};
83
84
85/////////////////////////////////////////////////////////////////////////////
86// wxArchiveInputStream
87//
88// GetNextEntry() returns an wxArchiveEntry object containing the meta-data
89// for the next entry in the archive (and gives away ownership). Reading from
90// the wxArchiveInputStream then returns the entry's data. Eof() becomes true
91// after an attempt has been made to read past the end of the entry's data.
92//
93// When there are no more entries, GetNextEntry() returns NULL and sets Eof().
94
95class WXDLLIMPEXP_BASE wxArchiveInputStream : public wxFilterInputStream
96{
97public:
98 typedef wxArchiveEntry entry_type;
99
100 virtual ~wxArchiveInputStream() { }
101
102 virtual bool OpenEntry(wxArchiveEntry& entry) = 0;
103 virtual bool CloseEntry() = 0;
104
105 wxArchiveEntry *GetNextEntry() { return DoGetNextEntry(); }
106
107 virtual char Peek() { return wxInputStream::Peek(); }
108
109protected:
110 wxArchiveInputStream(wxInputStream& stream, wxMBConv& conv);
111
112 virtual wxArchiveEntry *DoGetNextEntry() = 0;
113
114 wxMBConv& GetConv() const { return m_conv; }
115
116private:
117 wxMBConv& m_conv;
118};
119
120
121/////////////////////////////////////////////////////////////////////////////
122// wxArchiveOutputStream
123//
124// PutNextEntry is used to create a new entry in the output archive, then
125// the entry's data is written to the wxArchiveOutputStream.
126//
127// Only one entry can be open for output at a time; another call to
128// PutNextEntry closes the current entry and begins the next.
129//
130// The overload 'bool PutNextEntry(wxArchiveEntry *entry)' takes ownership
131// of the entry object.
132
133class WXDLLIMPEXP_BASE wxArchiveOutputStream : public wxFilterOutputStream
134{
135public:
136 virtual ~wxArchiveOutputStream() { }
137
138 virtual bool PutNextEntry(wxArchiveEntry *entry) = 0;
139
140 virtual bool PutNextEntry(const wxString& name,
141 const wxDateTime& dt = wxDateTime::Now(),
142 wxFileOffset size = wxInvalidOffset) = 0;
143
144 virtual bool PutNextDirEntry(const wxString& name,
145 const wxDateTime& dt = wxDateTime::Now()) = 0;
146
147 virtual bool CopyEntry(wxArchiveEntry *entry,
148 wxArchiveInputStream& stream) = 0;
149
150 virtual bool CopyArchiveMetaData(wxArchiveInputStream& stream) = 0;
151
152 virtual bool CloseEntry() = 0;
00375592
VZ
153
154protected:
155 wxArchiveOutputStream(wxOutputStream& stream, wxMBConv& conv);
156
157 wxMBConv& GetConv() const { return m_conv; }
158
159private:
160 wxMBConv& m_conv;
161};
162
163
164/////////////////////////////////////////////////////////////////////////////
165// wxArchiveClassFactory
166//
167// A wxArchiveClassFactory instance for a particular archive type allows
168// the creation of the other classes that may be needed.
169
170class WXDLLIMPEXP_BASE wxArchiveClassFactory : public wxObject
171{
172public:
173 virtual ~wxArchiveClassFactory() { }
174
175 wxArchiveEntry *NewEntry() const
176 { return DoNewEntry(); }
177 wxArchiveInputStream *NewStream(wxInputStream& stream) const
178 { return DoNewStream(stream); }
179 wxArchiveOutputStream *NewStream(wxOutputStream& stream) const
180 { return DoNewStream(stream); }
181
182 virtual wxString GetInternalName(
183 const wxString& name,
184 wxPathFormat format = wxPATH_NATIVE) const = 0;
185
186 void SetConv(wxMBConv& conv) { m_pConv = &conv; }
187 wxMBConv& GetConv() const { return *m_pConv; }
188
189protected:
190 virtual wxArchiveEntry *DoNewEntry() const = 0;
191 virtual wxArchiveInputStream *DoNewStream(wxInputStream& stream) const = 0;
192 virtual wxArchiveOutputStream *DoNewStream(wxOutputStream& stream) const = 0;
193
194 wxArchiveClassFactory() : m_pConv(&wxConvLocal) { }
195 wxArchiveClassFactory& operator=(const wxArchiveClassFactory& WXUNUSED(f))
196 { return *this; }
197
198private:
199 wxMBConv *m_pConv;
200
201 DECLARE_ABSTRACT_CLASS(wxArchiveClassFactory)
202};
203
204
205/////////////////////////////////////////////////////////////////////////////
206// wxArchiveIterator
207//
208// An input iterator that can be used to transfer an archive's catalog to
209// a container.
210
211#if wxUSE_STL || defined WX_TEST_ARCHIVE_ITERATOR
212#include <iterator>
213#include <utility>
214
f44eaed6
RN
215template <class X, class Y> inline
216void _wxSetArchiveIteratorValue(
00375592
VZ
217 X& val, Y entry, void *WXUNUSED(d))
218{
219 val = X(entry);
220}
f44eaed6
RN
221template <class X, class Y, class Z> inline
222void _wxSetArchiveIteratorValue(
00375592
VZ
223 std::pair<X, Y>& val, Z entry, Z WXUNUSED(d))
224{
225 val = std::make_pair(X(entry->GetInternalName()), Y(entry));
226}
227
228#if defined _MSC_VER && _MSC_VER < 1300
229template <class Arc, class T = Arc::entry_type*>
230#else
231template <class Arc, class T = typename Arc::entry_type*>
232#endif
f44eaed6 233class wxArchiveIterator
00375592
VZ
234{
235public:
236 typedef std::input_iterator_tag iterator_category;
237 typedef T value_type;
238 typedef ptrdiff_t difference_type;
239 typedef T* pointer;
240 typedef T& reference;
241
242 wxArchiveIterator() : m_rep(NULL) { }
243
244 wxArchiveIterator(Arc& arc) {
245 typename Arc::entry_type* entry = arc.GetNextEntry();
246 m_rep = entry ? new Rep(arc, entry) : NULL;
247 }
248
249 wxArchiveIterator(const wxArchiveIterator& it) : m_rep(it.m_rep) {
250 if (m_rep)
251 m_rep->AddRef();
252 }
253
254 ~wxArchiveIterator() {
255 if (m_rep)
256 m_rep->UnRef();
257 }
258
259 const T& operator *() const {
260 return m_rep->GetValue();
261 }
262
263 const T* operator ->() const {
264 return &**this;
265 }
266
267 wxArchiveIterator& operator =(const wxArchiveIterator& it) {
268 if (it.m_rep)
269 it.m_rep.AddRef();
270 if (m_rep)
271 m_rep.UnRef();
272 m_rep = it.m_rep;
273 return *this;
274 }
275
276 wxArchiveIterator& operator ++() {
277 m_rep = m_rep->Next();
278 return *this;
279 }
280
281 wxArchiveIterator operator ++(int) {
282 wxArchiveIterator it(*this);
283 ++(*this);
284 return it;
285 }
286
f44eaed6
RN
287 bool operator ==(const wxArchiveIterator& j) const {
288 return m_rep == j.m_rep;
00375592
VZ
289 }
290
f44eaed6 291 bool operator !=(const wxArchiveIterator& j) const {
95662a83 292 return !(*this == j);
00375592
VZ
293 }
294
295private:
296 class Rep {
297 Arc& m_arc;
298 typename Arc::entry_type* m_entry;
299 T m_value;
300 int m_ref;
301
302 public:
303 Rep(Arc& arc, typename Arc::entry_type* entry)
304 : m_arc(arc), m_entry(entry), m_value(), m_ref(1) { }
305 ~Rep()
306 { delete m_entry; }
307
308 void AddRef() {
309 m_ref++;
310 }
311
312 void UnRef() {
313 if (--m_ref == 0)
314 delete this;
315 }
316
317 Rep *Next() {
318 typename Arc::entry_type* entry = m_arc.GetNextEntry();
319 if (!entry) {
320 UnRef();
321 return NULL;
322 }
323 if (m_ref > 1) {
324 m_ref--;
325 return new Rep(m_arc, entry);
326 }
327 delete m_entry;
328 m_entry = entry;
329 m_value = T();
330 return this;
331 }
332
333 const T& GetValue() {
334 if (m_entry) {
335 _wxSetArchiveIteratorValue(m_value, m_entry, m_entry);
336 m_entry = NULL;
337 }
338 return m_value;
339 }
340 } *m_rep;
341};
342
343typedef wxArchiveIterator<wxArchiveInputStream> wxArchiveIter;
344typedef wxArchiveIterator<wxArchiveInputStream,
345 std::pair<wxString, wxArchiveEntry*> > wxArchivePairIter;
346
347#endif // wxUSE_STL || defined WX_TEST_ARCHIVE_ITERATOR
348
349#endif // wxUSE_STREAMS
350
351#endif // _WX_ARCHIVE_H__