]>
Commit | Line | Data |
---|---|---|
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 | ||
10 | ||
de0702d0 | 11 | |
14f355c2 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
c3f4609e | 13 | #pragma implementation "fs_zip.h" |
5526e819 VS |
14 | #endif |
15 | ||
3096bd2f | 16 | #include "wx/wxprec.h" |
5526e819 | 17 | |
2b5f62a0 | 18 | #ifdef __BORLANDC__ |
5526e819 VS |
19 | #pragma hdrstop |
20 | #endif | |
21 | ||
9777274a | 22 | #if wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_ZIPSTREAM && wxUSE_ZLIB |
e3e717ec | 23 | |
5526e819 | 24 | #ifndef WXPRECOMP |
04dbb646 VZ |
25 | #include "wx/intl.h" |
26 | #include "wx/log.h" | |
5526e819 VS |
27 | #endif |
28 | ||
29 | #include "wx/filesys.h" | |
00375592 | 30 | #include "wx/wfstream.h" |
6001e347 | 31 | #include "wx/zipstrm.h" |
5526e819 VS |
32 | #include "wx/fs_zip.h" |
33 | ||
aaa66113 | 34 | |
ddaf5566 | 35 | //---------------------------------------------------------------------------- |
5526e819 | 36 | // wxZipFSHandler |
ddaf5566 | 37 | //---------------------------------------------------------------------------- |
5526e819 VS |
38 | |
39 | ||
40 | ||
aaa66113 VS |
41 | wxZipFSHandler::wxZipFSHandler() : wxFileSystemHandler() |
42 | { | |
43 | m_Archive = NULL; | |
44 | m_ZipFile = m_Pattern = m_BaseDir = wxEmptyString; | |
a62848fd | 45 | m_AllowDirs = m_AllowFiles = true; |
de0702d0 | 46 | m_DirsFound = NULL; |
aaa66113 VS |
47 | } |
48 | ||
49 | ||
50 | ||
51 | wxZipFSHandler::~wxZipFSHandler() | |
52 | { | |
505710ca | 53 | if (m_Archive) |
00375592 | 54 | CloseArchive(m_Archive); |
de0702d0 VS |
55 | if (m_DirsFound) |
56 | delete m_DirsFound; | |
aaa66113 VS |
57 | } |
58 | ||
59 | ||
60 | ||
00375592 VZ |
61 | void wxZipFSHandler::CloseArchive(wxZipInputStream *archive) |
62 | { | |
63 | wxInputStream *stream = archive->GetFilterInputStream(); | |
64 | delete archive; | |
65 | delete stream; | |
66 | } | |
67 | ||
68 | ||
69 | ||
5526e819 VS |
70 | bool wxZipFSHandler::CanOpen(const wxString& location) |
71 | { | |
72 | wxString p = GetProtocol(location); | |
505710ca | 73 | return (p == wxT("zip")) && |
08b50c2c | 74 | (GetProtocol(GetLeftLocation(location)) == wxT("file")); |
5526e819 VS |
75 | } |
76 | ||
77 | ||
78 | ||
79 | ||
80 | wxFSFile* wxZipFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& location) | |
81 | { | |
82 | wxString right = GetRightLocation(location); | |
83 | wxString left = GetLeftLocation(location); | |
84 | wxInputStream *s; | |
85 | ||
505710ca | 86 | if (GetProtocol(left) != wxT("file")) |
095472c0 VS |
87 | { |
88 | wxLogError(_("ZIP handler currently supports only local files!")); | |
5526e819 VS |
89 | return NULL; |
90 | } | |
91 | ||
ddaf5566 VS |
92 | if (right.Contains(wxT("./"))) |
93 | { | |
94 | if (right.GetChar(0) != wxT('/')) right = wxT('/') + right; | |
95 | wxFileName rightPart(right, wxPATH_UNIX); | |
96 | rightPart.Normalize(wxPATH_NORM_DOTS, wxT("/"), wxPATH_UNIX); | |
97 | right = rightPart.GetFullPath(wxPATH_UNIX); | |
98 | } | |
a62848fd | 99 | |
505710ca KB |
100 | if (right.GetChar(0) == wxT('/')) right = right.Mid(1); |
101 | ||
9548c49a | 102 | wxFileName leftFilename = wxFileSystem::URLToFileName(left); |
2b5f62a0 | 103 | |
9548c49a | 104 | s = new wxZipInputStream(leftFilename.GetFullPath(), right); |
2b5f62a0 | 105 | if (s && s->IsOk() ) |
095472c0 | 106 | { |
5526e819 | 107 | return new wxFSFile(s, |
58c837a4 | 108 | left + wxT("#zip:") + right, |
5526e819 | 109 | GetMimeTypeFromExt(location), |
e2b87f38 VZ |
110 | GetAnchor(location) |
111 | #if wxUSE_DATETIME | |
112 | , wxDateTime(wxFileModificationTime(left)) | |
113 | #endif // wxUSE_DATETIME | |
114 | ); | |
5526e819 | 115 | } |
3ca6a5f0 BP |
116 | |
117 | delete s; | |
118 | return NULL; | |
5526e819 VS |
119 | } |
120 | ||
121 | ||
122 | ||
aaa66113 VS |
123 | wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags) |
124 | { | |
125 | wxString right = GetRightLocation(spec); | |
126 | wxString left = GetLeftLocation(spec); | |
505710ca | 127 | |
aaa66113 VS |
128 | if (right.Last() == wxT('/')) right.RemoveLast(); |
129 | ||
505710ca | 130 | if (m_Archive) |
095472c0 | 131 | { |
00375592 | 132 | CloseArchive(m_Archive); |
aaa66113 VS |
133 | m_Archive = NULL; |
134 | } | |
135 | ||
de0702d0 VS |
136 | if (GetProtocol(left) != wxT("file")) |
137 | { | |
138 | wxLogError(_("ZIP handler currently supports only local files!")); | |
aaa66113 | 139 | return wxEmptyString; |
de0702d0 | 140 | } |
aaa66113 | 141 | |
505710ca | 142 | switch (flags) |
095472c0 | 143 | { |
505710ca | 144 | case wxFILE: |
a62848fd | 145 | m_AllowDirs = false, m_AllowFiles = true; break; |
505710ca | 146 | case wxDIR: |
a62848fd | 147 | m_AllowDirs = true, m_AllowFiles = false; break; |
505710ca | 148 | default: |
a62848fd | 149 | m_AllowDirs = m_AllowFiles = true; break; |
aaa66113 VS |
150 | } |
151 | ||
152 | m_ZipFile = left; | |
9548c49a | 153 | wxString nativename = wxFileSystem::URLToFileName(m_ZipFile).GetFullPath(); |
00375592 | 154 | m_Archive = new wxZipInputStream(*new wxFFileInputStream(nativename)); |
aaa66113 VS |
155 | m_Pattern = right.AfterLast(wxT('/')); |
156 | m_BaseDir = right.BeforeLast(wxT('/')); | |
157 | ||
505710ca | 158 | if (m_Archive) |
095472c0 | 159 | { |
00375592 | 160 | if (m_AllowDirs) |
de0702d0 | 161 | { |
00375592 VZ |
162 | delete m_DirsFound; |
163 | m_DirsFound = new wxLongToLongHashMap(); | |
de0702d0 | 164 | } |
00375592 | 165 | return DoFind(); |
aaa66113 | 166 | } |
095472c0 | 167 | return wxEmptyString; |
aaa66113 VS |
168 | } |
169 | ||
170 | ||
171 | ||
172 | wxString wxZipFSHandler::FindNext() | |
5526e819 | 173 | { |
aaa66113 VS |
174 | if (!m_Archive) return wxEmptyString; |
175 | return DoFind(); | |
5526e819 VS |
176 | } |
177 | ||
aaa66113 VS |
178 | |
179 | ||
180 | wxString wxZipFSHandler::DoFind() | |
181 | { | |
de0702d0 | 182 | wxString namestr, dir, filename; |
aaa66113 | 183 | wxString match = wxEmptyString; |
aaa66113 VS |
184 | |
185 | while (match == wxEmptyString) | |
186 | { | |
00375592 VZ |
187 | wxZipEntry *entry = m_Archive->GetNextEntry(); |
188 | if (!entry) | |
189 | { | |
190 | CloseArchive(m_Archive); | |
191 | m_Archive = NULL; | |
192 | break; | |
193 | } | |
194 | namestr = entry->GetName(wxPATH_UNIX); | |
195 | delete entry; | |
aaa66113 | 196 | |
de0702d0 | 197 | if (m_AllowDirs) |
095472c0 | 198 | { |
505710ca | 199 | dir = namestr.BeforeLast(wxT('/')); |
de0702d0 VS |
200 | while (!dir.IsEmpty()) |
201 | { | |
202 | long key = 0; | |
203 | for (size_t i = 0; i < dir.Length(); i++) key += (wxUChar)dir[i]; | |
ba8c1601 MB |
204 | wxLongToLongHashMap::iterator it = m_DirsFound->find(key); |
205 | if (it == m_DirsFound->end()) | |
de0702d0 | 206 | { |
d8771ac7 | 207 | (*m_DirsFound)[key] = 1; |
de0702d0 VS |
208 | filename = dir.AfterLast(wxT('/')); |
209 | dir = dir.BeforeLast(wxT('/')); | |
210 | if (!filename.IsEmpty() && m_BaseDir == dir && | |
a62848fd | 211 | wxMatchWild(m_Pattern, filename, false)) |
de0702d0 VS |
212 | match = m_ZipFile + wxT("#zip:") + dir + wxT("/") + filename; |
213 | } | |
505710ca | 214 | else |
de0702d0 VS |
215 | break; // already tranversed |
216 | } | |
aaa66113 | 217 | } |
de0702d0 VS |
218 | |
219 | filename = namestr.AfterLast(wxT('/')); | |
220 | dir = namestr.BeforeLast(wxT('/')); | |
221 | if (m_AllowFiles && !filename.IsEmpty() && m_BaseDir == dir && | |
a62848fd | 222 | wxMatchWild(m_Pattern, filename, false)) |
de0702d0 | 223 | match = m_ZipFile + wxT("#zip:") + namestr; |
aaa66113 | 224 | } |
505710ca | 225 | |
aaa66113 VS |
226 | return match; |
227 | } | |
228 | ||
229 | ||
230 | ||
505710ca | 231 | #endif |
24528b0c | 232 | //wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_ZIPSTREAM |