]> git.saurik.com Git - wxWidgets.git/blame - src/common/fs_zip.cpp
wxWinCE power build fixes.
[wxWidgets.git] / src / common / fs_zip.cpp
CommitLineData
5526e819
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: fs_zip.cpp
3// Purpose: ZIP file system
4// Author: Vaclav Slavik
5// Copyright: (c) 1999 Vaclav Slavik
de0702d0 6// CVS-ID: $Id$
65571936 7// Licence: wxWindows licence
5526e819
VS
8/////////////////////////////////////////////////////////////////////////////
9
3096bd2f 10#include "wx/wxprec.h"
5526e819 11
2b5f62a0 12#ifdef __BORLANDC__
5526e819
VS
13#pragma hdrstop
14#endif
15
9777274a 16#if wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_ZIPSTREAM && wxUSE_ZLIB
e3e717ec 17
5526e819 18#ifndef WXPRECOMP
04dbb646
VZ
19 #include "wx/intl.h"
20 #include "wx/log.h"
5526e819
VS
21#endif
22
23#include "wx/filesys.h"
00375592 24#include "wx/wfstream.h"
6001e347 25#include "wx/zipstrm.h"
5526e819
VS
26#include "wx/fs_zip.h"
27
aaa66113 28
08335000
MW
29//---------------------------------------------------------------------------
30// wxZipFSInputStream
31//---------------------------------------------------------------------------
32// Helper class for wxZipFSHandler
33
34class wxZipFSInputStream : public wxZipInputStream
35{
36 public:
37 wxZipFSInputStream(wxFSFile *file)
38 : wxZipInputStream(*file->GetStream())
39 {
40 m_file = file;
41#if 1 //WXWIN_COMPATIBILITY_2_6
42 m_allowSeeking = true;
43#endif
44 }
45
46 virtual ~wxZipFSInputStream() { delete m_file; }
47
48 private:
49 wxFSFile *m_file;
50};
51
ddaf5566 52//----------------------------------------------------------------------------
5526e819 53// wxZipFSHandler
ddaf5566 54//----------------------------------------------------------------------------
5526e819 55
aaa66113
VS
56wxZipFSHandler::wxZipFSHandler() : wxFileSystemHandler()
57{
58 m_Archive = NULL;
59 m_ZipFile = m_Pattern = m_BaseDir = wxEmptyString;
a62848fd 60 m_AllowDirs = m_AllowFiles = true;
de0702d0 61 m_DirsFound = NULL;
aaa66113
VS
62}
63
64
65
66wxZipFSHandler::~wxZipFSHandler()
67{
f60b1d82 68 Cleanup();
aaa66113
VS
69}
70
71
f60b1d82
VZ
72void wxZipFSHandler::Cleanup()
73{
74 wxDELETE(m_Archive);
75 wxDELETE(m_DirsFound);
76}
77
78
aaa66113 79
5526e819
VS
80bool wxZipFSHandler::CanOpen(const wxString& location)
81{
82 wxString p = GetProtocol(location);
08335000 83 return (p == wxT("zip"));
5526e819
VS
84}
85
86
ba75c6bb 87wxFSFile* wxZipFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& location)
5526e819
VS
88{
89 wxString right = GetRightLocation(location);
90 wxString left = GetLeftLocation(location);
08335000 91 wxZipInputStream *s;
5526e819 92
ddaf5566
VS
93 if (right.Contains(wxT("./")))
94 {
95 if (right.GetChar(0) != wxT('/')) right = wxT('/') + right;
96 wxFileName rightPart(right, wxPATH_UNIX);
97 rightPart.Normalize(wxPATH_NORM_DOTS, wxT("/"), wxPATH_UNIX);
98 right = rightPart.GetFullPath(wxPATH_UNIX);
99 }
a62848fd 100
505710ca
KB
101 if (right.GetChar(0) == wxT('/')) right = right.Mid(1);
102
ba75c6bb
MW
103 // a new wxFileSystem object is needed here to avoid infinite recursion
104 wxFSFile *leftFile = wxFileSystem().OpenFile(left);
08335000
MW
105 if (!leftFile)
106 return NULL;
2b5f62a0 107
08335000
MW
108 s = new wxZipFSInputStream(leftFile);
109 if (s && s->IsOk())
095472c0 110 {
08335000 111 bool found = false;
49178e65
WS
112 while (!found)
113 {
114 wxZipEntry *ent = s->GetNextEntry();
115 if (!ent)
116 break;
08335000
MW
117 if (ent->GetInternalName() == right)
118 found = true;
119 delete ent;
120 }
121 if (found)
f7b06c8c 122 {
08335000 123 return new wxFSFile(s,
58c837a4 124 left + wxT("#zip:") + right,
5526e819 125 GetMimeTypeFromExt(location),
e2b87f38
VZ
126 GetAnchor(location)
127#if wxUSE_DATETIME
f7b06c8c
VZ
128 , wxFileSystem::URLToFileName(left).
129 GetModificationTime()
e2b87f38
VZ
130#endif // wxUSE_DATETIME
131 );
f7b06c8c 132 }
5526e819 133 }
3ca6a5f0
BP
134
135 delete s;
136 return NULL;
5526e819
VS
137}
138
139
140
aaa66113
VS
141wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags)
142{
143 wxString right = GetRightLocation(spec);
144 wxString left = GetLeftLocation(spec);
505710ca 145
ba75c6bb 146 if (!right.empty() && right.Last() == wxT('/')) right.RemoveLast();
aaa66113 147
505710ca 148 if (m_Archive)
095472c0 149 {
08335000 150 delete m_Archive;
aaa66113
VS
151 m_Archive = NULL;
152 }
153
505710ca 154 switch (flags)
095472c0 155 {
505710ca 156 case wxFILE:
a62848fd 157 m_AllowDirs = false, m_AllowFiles = true; break;
505710ca 158 case wxDIR:
a62848fd 159 m_AllowDirs = true, m_AllowFiles = false; break;
505710ca 160 default:
a62848fd 161 m_AllowDirs = m_AllowFiles = true; break;
aaa66113
VS
162 }
163
164 m_ZipFile = left;
e06cac58 165
08335000
MW
166 wxFSFile *leftFile = wxFileSystem().OpenFile(left);
167 if (leftFile)
168 m_Archive = new wxZipFSInputStream(leftFile);
e06cac58 169
aaa66113
VS
170 m_Pattern = right.AfterLast(wxT('/'));
171 m_BaseDir = right.BeforeLast(wxT('/'));
ba75c6bb
MW
172 if (m_BaseDir.StartsWith(wxT("/")))
173 m_BaseDir = m_BaseDir.Mid(1);
aaa66113 174
505710ca 175 if (m_Archive)
095472c0 176 {
00375592 177 if (m_AllowDirs)
de0702d0 178 {
00375592 179 delete m_DirsFound;
62d9eab6 180 m_DirsFound = new wxZipFilenameHashMap();
ba75c6bb
MW
181 if (right.empty()) // allow "/" to match the archive root
182 return spec;
de0702d0 183 }
00375592 184 return DoFind();
aaa66113 185 }
095472c0 186 return wxEmptyString;
aaa66113
VS
187}
188
189
190
191wxString wxZipFSHandler::FindNext()
5526e819 192{
aaa66113
VS
193 if (!m_Archive) return wxEmptyString;
194 return DoFind();
5526e819
VS
195}
196
aaa66113
VS
197
198
199wxString wxZipFSHandler::DoFind()
200{
de0702d0 201 wxString namestr, dir, filename;
aaa66113 202 wxString match = wxEmptyString;
aaa66113
VS
203
204 while (match == wxEmptyString)
205 {
00375592
VZ
206 wxZipEntry *entry = m_Archive->GetNextEntry();
207 if (!entry)
208 {
08335000 209 delete m_Archive;
00375592
VZ
210 m_Archive = NULL;
211 break;
212 }
213 namestr = entry->GetName(wxPATH_UNIX);
214 delete entry;
aaa66113 215
de0702d0 216 if (m_AllowDirs)
095472c0 217 {
505710ca 218 dir = namestr.BeforeLast(wxT('/'));
489f6cf7 219 while (!dir.empty())
de0702d0 220 {
62d9eab6 221 if( m_DirsFound->find(dir) == m_DirsFound->end() )
de0702d0 222 {
62d9eab6 223 (*m_DirsFound)[dir] = 1;
de0702d0
VS
224 filename = dir.AfterLast(wxT('/'));
225 dir = dir.BeforeLast(wxT('/'));
489f6cf7 226 if (!filename.empty() && m_BaseDir == dir &&
a62848fd 227 wxMatchWild(m_Pattern, filename, false))
de0702d0
VS
228 match = m_ZipFile + wxT("#zip:") + dir + wxT("/") + filename;
229 }
505710ca 230 else
de0702d0
VS
231 break; // already tranversed
232 }
aaa66113 233 }
de0702d0
VS
234
235 filename = namestr.AfterLast(wxT('/'));
236 dir = namestr.BeforeLast(wxT('/'));
489f6cf7 237 if (m_AllowFiles && !filename.empty() && m_BaseDir == dir &&
a62848fd 238 wxMatchWild(m_Pattern, filename, false))
de0702d0 239 match = m_ZipFile + wxT("#zip:") + namestr;
aaa66113 240 }
505710ca 241
aaa66113
VS
242 return match;
243}
244
245
246
505710ca 247#endif
24528b0c 248 //wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_ZIPSTREAM