File: dirreader.h

package info (click to toggle)
nsis 2.37-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 8,860 kB
  • ctags: 8,113
  • sloc: cpp: 32,080; ansic: 29,202; python: 1,118; xml: 451; pascal: 113; makefile: 80
file content (56 lines) | stat: -rwxr-xr-x 1,270 bytes parent folder | download
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();