]>
git.saurik.com Git - wxWidgets.git/blob - src/common/fs_zip.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: ZIP file system
4 // Author: Vaclav Slavik
5 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "fs_zip.h"
16 #include "wx/wxprec.h"
22 #if wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_ZIPSTREAM
30 #include "wx/filesys.h"
31 #include "wx/zipstrm.h"
32 #include "wx/fs_zip.h"
34 /* Not the right solution (paths in makefiles) but... */
36 #include "../common/unzip.h"
42 //--------------------------------------------------------------------------------
44 //--------------------------------------------------------------------------------
48 wxZipFSHandler::wxZipFSHandler() : wxFileSystemHandler()
51 m_ZipFile
= m_Pattern
= m_BaseDir
= wxEmptyString
;
52 m_AllowDirs
= m_AllowFiles
= TRUE
;
58 wxZipFSHandler::~wxZipFSHandler()
61 unzClose((unzFile
)m_Archive
);
68 bool wxZipFSHandler::CanOpen(const wxString
& location
)
70 wxString p
= GetProtocol(location
);
71 return (p
== wxT("zip")) &&
72 (GetProtocol(GetLeftLocation(location
)) == wxT("file"));
78 wxFSFile
* wxZipFSHandler::OpenFile(wxFileSystem
& WXUNUSED(fs
), const wxString
& location
)
80 wxString right
= GetRightLocation(location
);
81 wxString left
= GetLeftLocation(location
);
84 if (GetProtocol(left
) != wxT("file"))
86 wxLogError(_("ZIP handler currently supports only local files!"));
90 s
= new wxZipInputStream(left
, right
);
91 if (s
&& (s
->LastError() == wxStream_NOERROR
))
93 return new wxFSFile(s
,
94 left
+ wxT("#zip:") + right
,
95 GetMimeTypeFromExt(location
),
97 wxDateTime(wxFileModificationTime(left
)));
106 wxString
wxZipFSHandler::FindFirst(const wxString
& spec
, int flags
)
108 wxString right
= GetRightLocation(spec
);
109 wxString left
= GetLeftLocation(spec
);
111 if (right
.Last() == wxT('/')) right
.RemoveLast();
115 unzClose((unzFile
)m_Archive
);
119 if (GetProtocol(left
) != wxT("file"))
121 wxLogError(_("ZIP handler currently supports only local files!"));
122 return wxEmptyString
;
128 m_AllowDirs
= FALSE
, m_AllowFiles
= TRUE
; break;
130 m_AllowDirs
= TRUE
, m_AllowFiles
= FALSE
; break;
132 m_AllowDirs
= m_AllowFiles
= TRUE
; break;
136 m_Archive
= (void*) unzOpen(m_ZipFile
.mb_str());
137 m_Pattern
= right
.AfterLast(wxT('/'));
138 m_BaseDir
= right
.BeforeLast(wxT('/'));
142 if (unzGoToFirstFile((unzFile
)m_Archive
) != UNZ_OK
)
144 unzClose((unzFile
)m_Archive
);
152 m_DirsFound
= new wxHashTableLong();
157 return wxEmptyString
;
162 wxString
wxZipFSHandler::FindNext()
164 if (!m_Archive
) return wxEmptyString
;
170 wxString
wxZipFSHandler::DoFind()
172 static char namebuf
[1024]; // char, not wxChar!
174 wxString namestr
, dir
, filename
;
175 wxString match
= wxEmptyString
;
177 while (match
== wxEmptyString
)
179 unzGetCurrentFileInfo((unzFile
)m_Archive
, NULL
, namebuf
, 1024, NULL
, 0, NULL
, 0);
180 for (c
= namebuf
; *c
; c
++) if (*c
== wxT('\\')) *c
= wxT('/');
185 dir
= namestr
.BeforeLast(wxT('/'));
186 while (!dir
.IsEmpty())
189 for (size_t i
= 0; i
< dir
.Length(); i
++) key
+= (wxUChar
)dir
[i
];
190 if (m_DirsFound
->Get(key
) == wxNOT_FOUND
)
192 m_DirsFound
->Put(key
, 1);
193 filename
= dir
.AfterLast(wxT('/'));
194 dir
= dir
.BeforeLast(wxT('/'));
195 if (!filename
.IsEmpty() && m_BaseDir
== dir
&&
196 wxMatchWild(m_Pattern
, filename
, FALSE
))
197 match
= m_ZipFile
+ wxT("#zip:") + dir
+ wxT("/") + filename
;
200 break; // already tranversed
204 filename
= namestr
.AfterLast(wxT('/'));
205 dir
= namestr
.BeforeLast(wxT('/'));
206 if (m_AllowFiles
&& !filename
.IsEmpty() && m_BaseDir
== dir
&&
207 wxMatchWild(m_Pattern
, filename
, FALSE
))
208 match
= m_ZipFile
+ wxT("#zip:") + namestr
;
210 if (unzGoToNextFile((unzFile
)m_Archive
) != UNZ_OK
)
212 unzClose((unzFile
)m_Archive
);
224 //wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_ZIPSTREAM