NSIS/Source/dirreader.h
kichik 0aed504f4a happy new year!
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5917 212acab6-be3b-0410-9dea-997c60f758d6
2009-02-01 14:44:30 +00:00

56 lines
1.2 KiB
C++

/*
* dirreader.h
*
* This file is a part of NSIS.
*
* Copyright (C) 1999-2009 Nullsoft and Contributors
*
* 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.
*/
#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();