]>
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 | |
6 | // Licence: wxWindows Licence | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation | |
12 | #endif | |
13 | ||
3096bd2f | 14 | #include "wx/wxprec.h" |
5526e819 VS |
15 | |
16 | #ifdef __BORDLANDC__ | |
17 | #pragma hdrstop | |
18 | #endif | |
19 | ||
24528b0c | 20 | #if wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_ZIPSTREAM |
e3e717ec | 21 | |
5526e819 | 22 | #ifndef WXPRECOMP |
3096bd2f | 23 | #include "wx/wx.h" |
5526e819 VS |
24 | #endif |
25 | ||
26 | #include "wx/filesys.h" | |
6001e347 | 27 | #include "wx/zipstrm.h" |
5526e819 VS |
28 | #include "wx/fs_zip.h" |
29 | ||
aaa66113 VS |
30 | /* Not the right solution (paths in makefiles) but... */ |
31 | #ifdef __BORLANDC__ | |
32 | #include "../common/unzip.h" | |
33 | #else | |
34 | #include "unzip.h" | |
35 | #endif | |
36 | ||
5526e819 VS |
37 | |
38 | //-------------------------------------------------------------------------------- | |
39 | // wxZipFSHandler | |
40 | //-------------------------------------------------------------------------------- | |
41 | ||
42 | ||
43 | ||
aaa66113 VS |
44 | wxZipFSHandler::wxZipFSHandler() : wxFileSystemHandler() |
45 | { | |
46 | m_Archive = NULL; | |
47 | m_ZipFile = m_Pattern = m_BaseDir = wxEmptyString; | |
48 | m_AllowDirs = m_AllowFiles = TRUE; | |
49 | } | |
50 | ||
51 | ||
52 | ||
53 | wxZipFSHandler::~wxZipFSHandler() | |
54 | { | |
55 | if (m_Archive) | |
56 | unzClose((unzFile)m_Archive); | |
57 | } | |
58 | ||
59 | ||
60 | ||
5526e819 VS |
61 | bool wxZipFSHandler::CanOpen(const wxString& location) |
62 | { | |
63 | wxString p = GetProtocol(location); | |
58c837a4 | 64 | return (p == wxT("zip") ); |
5526e819 VS |
65 | } |
66 | ||
67 | ||
68 | ||
69 | ||
70 | wxFSFile* wxZipFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& location) | |
71 | { | |
72 | wxString right = GetRightLocation(location); | |
73 | wxString left = GetLeftLocation(location); | |
74 | wxInputStream *s; | |
75 | ||
58c837a4 | 76 | if (GetProtocol(left) != wxT("file")) { |
5526e819 VS |
77 | return NULL; |
78 | } | |
79 | ||
80 | s = new wxZipInputStream(left, right); | |
81 | if (s && (s -> LastError() == wxStream_NOERROR)) { | |
82 | return new wxFSFile(s, | |
58c837a4 | 83 | left + wxT("#zip:") + right, |
5526e819 | 84 | GetMimeTypeFromExt(location), |
6ee654e6 VS |
85 | GetAnchor(location), |
86 | wxDateTime(wxFileModificationTime(left))); | |
5526e819 | 87 | } |
f6bcfd97 BP |
88 | else |
89 | { | |
90 | if (s) | |
91 | delete s; | |
92 | return NULL; | |
93 | } | |
5526e819 VS |
94 | } |
95 | ||
96 | ||
97 | ||
aaa66113 VS |
98 | wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags) |
99 | { | |
100 | wxString right = GetRightLocation(spec); | |
101 | wxString left = GetLeftLocation(spec); | |
102 | ||
103 | if (right.Last() == wxT('/')) right.RemoveLast(); | |
104 | ||
105 | if (m_Archive) { | |
106 | unzClose((unzFile)m_Archive); | |
107 | m_Archive = NULL; | |
108 | } | |
109 | ||
58c837a4 | 110 | if (GetProtocol(left) != wxT("file")) { |
aaa66113 VS |
111 | return wxEmptyString; |
112 | } | |
113 | ||
114 | switch (flags) { | |
115 | case wxFILE : m_AllowDirs = FALSE, m_AllowFiles = TRUE; break; | |
116 | case wxDIR : m_AllowDirs = TRUE, m_AllowFiles = FALSE; break; | |
117 | default : m_AllowDirs = m_AllowFiles = TRUE; break; | |
118 | } | |
119 | ||
120 | m_ZipFile = left; | |
f6bcfd97 | 121 | m_Archive = (void*) unzOpen(m_ZipFile.mb_str()); |
aaa66113 VS |
122 | m_Pattern = right.AfterLast(wxT('/')); |
123 | m_BaseDir = right.BeforeLast(wxT('/')); | |
124 | ||
125 | if (m_Archive) { | |
126 | if (unzGoToFirstFile((unzFile)m_Archive) != UNZ_OK) { | |
127 | unzClose((unzFile)m_Archive); | |
128 | m_Archive = NULL; | |
129 | } | |
130 | } | |
131 | return DoFind(); | |
132 | } | |
133 | ||
134 | ||
135 | ||
136 | wxString wxZipFSHandler::FindNext() | |
5526e819 | 137 | { |
aaa66113 VS |
138 | if (!m_Archive) return wxEmptyString; |
139 | return DoFind(); | |
5526e819 VS |
140 | } |
141 | ||
aaa66113 VS |
142 | |
143 | ||
144 | wxString wxZipFSHandler::DoFind() | |
145 | { | |
146 | static char namebuf[1024]; // char, not wxChar! | |
147 | char *c; | |
148 | wxString fn, dir, name; | |
149 | wxString match = wxEmptyString; | |
150 | bool wasdir; | |
151 | ||
152 | while (match == wxEmptyString) | |
153 | { | |
154 | unzGetCurrentFileInfo((unzFile)m_Archive, NULL, namebuf, 1024, NULL, 0, NULL, 0); | |
58c837a4 | 155 | for (c = namebuf; *c; c++) if (*c == wxT('\\')) *c = wxT('/'); |
aaa66113 VS |
156 | fn = namebuf; |
157 | if (fn.Last() == wxT('/')) { | |
158 | fn.RemoveLast(); | |
159 | wasdir = TRUE; | |
160 | } | |
161 | else wasdir = FALSE; | |
162 | ||
163 | name = fn.AfterLast(wxT('/')); | |
164 | dir = fn.BeforeLast(wxT('/')); | |
165 | ||
166 | if (dir == m_BaseDir) { | |
167 | if (m_AllowFiles && !wasdir && wxMatchWild(m_Pattern, name, FALSE)) | |
168 | match = m_ZipFile + wxT("#zip:") + fn; | |
169 | if (m_AllowDirs && wasdir && wxMatchWild(m_Pattern, name, FALSE)) | |
170 | match = m_ZipFile + wxT("#zip:") + fn; | |
171 | } | |
172 | ||
173 | if (unzGoToNextFile((unzFile)m_Archive) != UNZ_OK) { | |
174 | unzClose((unzFile)m_Archive); | |
175 | m_Archive = NULL; | |
176 | break; | |
177 | } | |
178 | } | |
179 | ||
180 | return match; | |
181 | } | |
182 | ||
183 | ||
184 | ||
24528b0c VS |
185 | #endif |
186 | //wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_ZIPSTREAM |