2006-10-28 19:45:02 +00:00
|
|
|
/*
|
|
|
|
* dirreader.h
|
|
|
|
*
|
|
|
|
* This file is a part of NSIS.
|
|
|
|
*
|
2009-02-01 14:44:30 +00:00
|
|
|
* Copyright (C) 1999-2009 Nullsoft and Contributors
|
2006-10-28 19:45:02 +00:00
|
|
|
*
|
|
|
|
* Licensed under the zlib/libpng license (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
*
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty.
|
|
|
|
*/
|
|
|
|
|
2004-11-26 15:37:31 +00:00
|
|
|
#include "Platform.h"
|
|
|
|
#include <string>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
class dir_reader {
|
|
|
|
public:
|
|
|
|
|
|
|
|
typedef std::set<std::string>::const_iterator iterator;
|
|
|
|
|
|
|
|
dir_reader();
|
|
|
|
virtual ~dir_reader() {}
|
|
|
|
|
|
|
|
virtual void read(const std::string& dir) = 0;
|
|
|
|
|
|
|
|
virtual const std::set<std::string>& files();
|
|
|
|
virtual const std::set<std::string>& dirs();
|
|
|
|
|
|
|
|
virtual void exclude(const std::string& spec);
|
|
|
|
virtual void exclude(const std::set<std::string>& specs);
|
|
|
|
|
|
|
|
static bool matches(const std::string& name, const std::string& spec);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual void add_file(const std::string& file);
|
|
|
|
virtual void add_dir(const std::string& dir);
|
|
|
|
|
|
|
|
virtual bool is_excluded(const std::string& name) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
std::set<std::string> m_excluded;
|
|
|
|
std::set<std::string> m_wildcard_excluded;
|
|
|
|
|
|
|
|
std::set<std::string> m_files;
|
|
|
|
std::set<std::string> m_dirs;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
dir_reader* new_dir_reader();
|