1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/*
* dirreader.h
*
* This file is a part of NSIS.
*
* Copyright (C) 1999-2008 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();
|