123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /*
- Copyright (C) 2001-2006, William Joseph.
- All Rights Reserved.
- This file is part of GtkRadiant.
- GtkRadiant is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- GtkRadiant is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with GtkRadiant; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
- #include "archive.h"
- #include "idatastream.h"
- #include "iarchive.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <vector>
- #include "stream/filestream.h"
- #include "stream/textfilestream.h"
- #include "string/string.h"
- #include "os/path.h"
- #include "os/file.h"
- #include "os/dir.h"
- #include "archivelib.h"
- #include "fs_path.h"
- #include "vfspk3.h"
- class DirectoryArchive : public Archive
- {
- CopiedString m_root;
- public:
- DirectoryArchive(const char* root) : m_root(root)
- {
- }
- void release()
- {
- delete this;
- }
- virtual ArchiveFile* openFile(const char* name)
- {
- UnixPath path(m_root.c_str());
- path.push_filename(name);
- DirectoryArchiveFile* file = new DirectoryArchiveFile(name, path.c_str());
- if(!file->failed())
- {
- return file;
- }
- file->release();
- return 0;
- }
- virtual ArchiveTextFile* openTextFile(const char* name)
- {
- UnixPath path(m_root.c_str());
- path.push_filename(name);
- DirectoryArchiveTextFile* file = new DirectoryArchiveTextFile(name, path.c_str());
- if(!file->failed())
- {
- return file;
- }
- file->release();
- return 0;
- }
- virtual bool containsFile(const char* name)
- {
- UnixPath path(m_root.c_str());
- path.push_filename(name);
- return file_readable(path.c_str());
- }
- virtual void forEachFile(VisitorFunc visitor, const char* root)
- {
- std::vector<Directory*> dirs;
- UnixPath path(m_root.c_str());
- path.push(root);
- dirs.push_back(directory_open(path.c_str()));
- while(!dirs.empty() && directory_good(dirs.back()))
- {
- const char* name = directory_read_and_increment(dirs.back());
- if(name == 0)
- {
- directory_close(dirs.back());
- dirs.pop_back();
- path.pop();
- }
- else if(!string_equal(name, ".") && !string_equal(name, ".."))
- {
- path.push_filename(name);
- bool is_directory = file_is_directory(path.c_str());
- if(!is_directory)
- visitor.file(path_make_relative(path.c_str(), m_root.c_str()));
- path.pop();
- if(is_directory)
- {
- path.push(name);
- if(!visitor.directory(path_make_relative(path.c_str(), m_root.c_str()), dirs.size()))
- dirs.push_back(directory_open(path.c_str()));
- else
- path.pop();
- }
- }
- }
- }
- };
- Archive* OpenArchive(const char* name)
- {
- return new DirectoryArchive(name);
- }
- #if 0
- class TestArchive
- {
- class TestVisitor : public Archive::IVisitor
- {
- public:
- virtual void visit(const char* name)
- {
- int bleh = 0;
- }
- };
- public:
- void test1()
- {
- Archive* archive = OpenArchive("d:/quake/id1/");
- ArchiveFile* file = archive->openFile("quake101.wad");
- if(file != 0)
- {
- char buffer[1024];
- file->getInputStream().read(buffer, 1024);
- file->release();
- }
- TestVisitor visitor;
- archive->forEachFile(Archive::VisitorFunc(&visitor, Archive::eFilesAndDirectories, 0), "");
- archive->release();
- }
- void test2()
- {
- Archive* archive = OpenArchive("d:/gtkradiant_root/baseq3/");
- TestVisitor visitor;
- archive->forEachFile(Archive::VisitorFunc(&visitor, Archive::eFilesAndDirectories, 2), "");
- archive->forEachFile(Archive::VisitorFunc(&visitor, Archive::eFiles, 1), "textures");
- archive->forEachFile(Archive::VisitorFunc(&visitor, Archive::eDirectories, 1), "textures");
- archive->forEachFile(Archive::VisitorFunc(&visitor, Archive::eFilesAndDirectories, 1), "textures");
- archive->release();
- }
- TestArchive()
- {
- test1();
- test2();
- }
- };
- TestArchive g_test;
- #endif
|