Remove member filter argument from PathScanner methods and use normal filter for...
[ardour.git] / libs / pbd / pbd / pathscanner.h
1 /*
2     Copyright (C) 2000-2007 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __libmisc_pathscanner_h__
21 #define __libmisc_pathscanner_h__
22
23 #include <vector>
24 #include <string>
25 #ifdef COMPILER_MSVC
26 #include <ardourext/misc.h>
27 #else
28 #include <regex.h>
29 #endif
30
31 #include "pbd/libpbd_visibility.h"
32
33 class LIBPBD_API PathScanner
34
35 {
36   public:
37         std::vector<std::string> operator() (const std::string &dirpath,
38                                              bool (*filter)(const std::string &, void *arg),
39                                              void *arg,
40                                              bool match_fullpath = true,
41                                              bool return_fullpath = true,
42                                              long limit = -1,
43                                              bool recurse = false) {
44                 return run_scan (dirpath,
45                                  filter, 
46                                  arg,
47                                  match_fullpath,
48                                  return_fullpath, 
49                                  limit, recurse);
50         }
51
52         std::vector<std::string> operator() (const std::string &dirpath,
53                                              const std::string &regexp,
54                                              bool match_fullpath = true,
55                                              bool return_fullpath = true,
56                                              long limit = -1,
57                                              bool recurse = false);
58         
59         std::string find_first (const std::string &dirpath,
60                                 const std::string &regexp,
61                                 bool match_fullpath = true,
62                                 bool return_fullpath = true);
63         
64         std::string find_first (const std::string &dirpath,
65                                 bool (*filter)(const std::string &, void *),
66                                 void *arg,
67                                 bool match_fullpath = true,
68                                 bool return_fullpath = true);
69         
70   private:
71
72         std::vector<std::string> run_scan (const std::string &dirpath,
73                                            bool (*filter)(const std::string &, void *),
74                                            void *arg,
75                                            bool match_fullpath,
76                                            bool return_fullpath,
77                                            long limit,
78                                            bool recurse = false);
79
80         void run_scan_internal (std::vector<std::string>&,
81                                 const std::string &dirpath,
82                                 bool (*filter)(const std::string &, void *),
83                                 void *arg,
84                                 bool match_fullpath,
85                                 bool return_fullpath,
86                                 long limit,
87                                 bool recurse = false);
88 };
89
90 #endif // __libmisc_pathscanner_h__