Mercurial > hg > octave-nkf
annotate src/load-path.h @ 10313:f3b65e1ae355
untabify src header files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 11 Feb 2010 12:16:43 -0500 |
parents | cd96d29c5efa |
children | 97b4bd6f0925 |
rev | line source |
---|---|
5832 | 1 /* |
2 | |
8920 | 3 Copyright (C) 2006, 2007, 2008, 2009 John W. Eaton |
5832 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
5832 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
5832 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_load_path_h) | |
24 #define octave_load_path_h 1 | |
25 | |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
26 #include <iosfwd> |
5832 | 27 #include <list> |
28 #include <map> | |
29 #include <string> | |
30 | |
5835 | 31 #include "pathsearch.h" |
5832 | 32 #include "str-vec.h" |
33 | |
34 class | |
6241 | 35 OCTINTERP_API |
5832 | 36 load_path |
37 { | |
38 protected: | |
39 | |
9010
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
40 load_path (void) |
9581
3d0d2bda3a0f
fix previous change, avoid duplicate loads of methods in descendant classes
Jaroslav Hajek <highegg@gmail.com>
parents:
9458
diff
changeset
|
41 : dir_info_list (), fcn_map (), method_map () { } |
5832 | 42 |
43 public: | |
44 | |
7336 | 45 typedef void (*hook_fcn_ptr) (const std::string& dir); |
5832 | 46 |
47 ~load_path (void) { } | |
48 | |
6365 | 49 static void initialize (bool set_initial_path = false) |
5832 | 50 { |
51 if (instance_ok ()) | |
6365 | 52 instance->do_initialize (set_initial_path); |
5832 | 53 } |
54 | |
55 static void clear (void) | |
56 { | |
57 if (instance_ok ()) | |
58 instance->do_clear (); | |
59 } | |
60 | |
5867 | 61 static void set (const std::string& p, bool warn = false) |
5832 | 62 { |
63 if (instance_ok ()) | |
5867 | 64 instance->do_set (p, warn); |
5832 | 65 } |
66 | |
5867 | 67 static void append (const std::string& dir, bool warn = false) |
5832 | 68 { |
69 if (instance_ok ()) | |
5867 | 70 instance->do_append (dir, warn); |
5832 | 71 } |
72 | |
5867 | 73 static void prepend (const std::string& dir, bool warn = false) |
5832 | 74 { |
75 if (instance_ok ()) | |
5867 | 76 instance->do_prepend (dir, warn); |
5832 | 77 } |
78 | |
79 static bool remove (const std::string& dir) | |
80 { | |
81 return instance_ok () ? instance->do_remove (dir) : false; | |
82 } | |
83 | |
84 static void update (void) | |
85 { | |
86 if (instance_ok ()) | |
87 instance->do_update (); | |
88 } | |
89 | |
7336 | 90 static std::string find_method (const std::string& class_name, |
10313 | 91 const std::string& meth, |
92 std::string& dir_name) | |
7336 | 93 { |
94 return instance_ok () | |
95 ? instance->do_find_method (class_name, meth, dir_name) : std::string (); | |
96 } | |
97 | |
98 static std::string find_method (const std::string& class_name, | |
10313 | 99 const std::string& meth) |
7336 | 100 { |
101 std::string dir_name; | |
102 return find_method (class_name, meth, dir_name); | |
103 } | |
104 | |
105 static std::list<std::string> methods (const std::string& class_name) | |
106 { | |
107 return instance_ok () | |
108 ? instance->do_methods (class_name) : std::list<std::string> (); | |
109 } | |
110 | |
9458
0c7d84a65386
allow taking handles of methods with no base overload
Jaroslav Hajek <highegg@gmail.com>
parents:
9261
diff
changeset
|
111 static bool any_class_method (const std::string& meth) |
0c7d84a65386
allow taking handles of methods with no base overload
Jaroslav Hajek <highegg@gmail.com>
parents:
9261
diff
changeset
|
112 { |
0c7d84a65386
allow taking handles of methods with no base overload
Jaroslav Hajek <highegg@gmail.com>
parents:
9261
diff
changeset
|
113 return instance_ok () |
0c7d84a65386
allow taking handles of methods with no base overload
Jaroslav Hajek <highegg@gmail.com>
parents:
9261
diff
changeset
|
114 ? instance->do_any_class_method (meth) : false; |
0c7d84a65386
allow taking handles of methods with no base overload
Jaroslav Hajek <highegg@gmail.com>
parents:
9261
diff
changeset
|
115 } |
0c7d84a65386
allow taking handles of methods with no base overload
Jaroslav Hajek <highegg@gmail.com>
parents:
9261
diff
changeset
|
116 |
7336 | 117 static std::string find_fcn (const std::string& fcn, std::string& dir_name) |
118 { | |
119 return instance_ok () | |
120 ? instance->do_find_fcn (fcn, dir_name) : std::string (); | |
121 } | |
122 | |
5832 | 123 static std::string find_fcn (const std::string& fcn) |
124 { | |
7336 | 125 std::string dir_name; |
126 return find_fcn (fcn, dir_name); | |
127 } | |
128 | |
129 static std::string find_private_fcn (const std::string& dir, | |
10313 | 130 const std::string& fcn) |
7336 | 131 { |
5832 | 132 return instance_ok () |
7336 | 133 ? instance->do_find_private_fcn (dir, fcn) : std::string (); |
5832 | 134 } |
135 | |
136 static std::string find_fcn_file (const std::string& fcn) | |
137 { | |
7336 | 138 std::string dir_name; |
139 | |
5832 | 140 return instance_ok () ? |
7336 | 141 instance->do_find_fcn (fcn, dir_name, M_FILE) : std::string (); |
5832 | 142 } |
143 | |
144 static std::string find_oct_file (const std::string& fcn) | |
145 { | |
7336 | 146 std::string dir_name; |
147 | |
5832 | 148 return instance_ok () ? |
7336 | 149 instance->do_find_fcn (fcn, dir_name, OCT_FILE) : std::string (); |
5832 | 150 } |
151 | |
5864 | 152 static std::string find_mex_file (const std::string& fcn) |
153 { | |
7336 | 154 std::string dir_name; |
155 | |
5864 | 156 return instance_ok () ? |
7336 | 157 instance->do_find_fcn (fcn, dir_name, MEX_FILE) : std::string (); |
5864 | 158 } |
159 | |
5832 | 160 static std::string find_file (const std::string& file) |
161 { | |
162 return instance_ok () | |
163 ? instance->do_find_file (file) : std::string (); | |
164 } | |
165 | |
8041
a14bdf90be55
Add a search for Contents.m files to the help function
David Bateman <dbateman@free.fr>
parents:
8008
diff
changeset
|
166 static std::string find_dir (const std::string& dir) |
a14bdf90be55
Add a search for Contents.m files to the help function
David Bateman <dbateman@free.fr>
parents:
8008
diff
changeset
|
167 { |
a14bdf90be55
Add a search for Contents.m files to the help function
David Bateman <dbateman@free.fr>
parents:
8008
diff
changeset
|
168 return instance_ok () |
a14bdf90be55
Add a search for Contents.m files to the help function
David Bateman <dbateman@free.fr>
parents:
8008
diff
changeset
|
169 ? instance->do_find_dir (dir) : std::string (); |
a14bdf90be55
Add a search for Contents.m files to the help function
David Bateman <dbateman@free.fr>
parents:
8008
diff
changeset
|
170 } |
a14bdf90be55
Add a search for Contents.m files to the help function
David Bateman <dbateman@free.fr>
parents:
8008
diff
changeset
|
171 |
9806
8e345f2fe4d6
improved support for Contents.m files
John W. Eaton <jwe@octave.org>
parents:
9748
diff
changeset
|
172 static string_vector find_matching_dirs (const std::string& dir) |
8e345f2fe4d6
improved support for Contents.m files
John W. Eaton <jwe@octave.org>
parents:
9748
diff
changeset
|
173 { |
8e345f2fe4d6
improved support for Contents.m files
John W. Eaton <jwe@octave.org>
parents:
9748
diff
changeset
|
174 return instance_ok () |
8e345f2fe4d6
improved support for Contents.m files
John W. Eaton <jwe@octave.org>
parents:
9748
diff
changeset
|
175 ? instance->do_find_matching_dirs (dir) : string_vector (); |
8e345f2fe4d6
improved support for Contents.m files
John W. Eaton <jwe@octave.org>
parents:
9748
diff
changeset
|
176 } |
8e345f2fe4d6
improved support for Contents.m files
John W. Eaton <jwe@octave.org>
parents:
9748
diff
changeset
|
177 |
5832 | 178 static std::string find_first_of (const string_vector& files) |
179 { | |
180 return instance_ok () ? | |
181 instance->do_find_first_of (files) : std::string (); | |
182 } | |
183 | |
184 static string_vector find_all_first_of (const string_vector& files) | |
185 { | |
186 return instance_ok () ? | |
187 instance->do_find_all_first_of (files) : string_vector (); | |
188 } | |
189 | |
190 static string_vector dirs (void) | |
191 { | |
192 return instance_ok () ? instance->do_dirs () : string_vector (); | |
193 } | |
194 | |
195 static std::list<std::string> dir_list (void) | |
196 { | |
197 return instance_ok () | |
198 ? instance->do_dir_list () : std::list<std::string> (); | |
199 } | |
200 | |
9261
95445f9f5976
omit file extensions from __list_functions__ output
John W. Eaton <jwe@octave.org>
parents:
9010
diff
changeset
|
201 static string_vector files (const std::string& dir, bool omit_exts = false) |
5832 | 202 { |
9261
95445f9f5976
omit file extensions from __list_functions__ output
John W. Eaton <jwe@octave.org>
parents:
9010
diff
changeset
|
203 return instance_ok () |
95445f9f5976
omit file extensions from __list_functions__ output
John W. Eaton <jwe@octave.org>
parents:
9010
diff
changeset
|
204 ? instance->do_files (dir, omit_exts) : string_vector (); |
5832 | 205 } |
206 | |
207 static string_vector fcn_names (void) | |
208 { | |
209 return instance_ok () ? instance->do_fcn_names () : string_vector (); | |
210 } | |
211 | |
212 static std::string path (void) | |
213 { | |
214 return instance_ok () ? instance->do_path () : std::string (); | |
215 } | |
216 | |
217 static void display (std::ostream& os) | |
218 { | |
219 if (instance_ok ()) | |
220 instance->do_display (os); | |
221 } | |
222 | |
7336 | 223 static void set_add_hook (hook_fcn_ptr f) { add_hook = f; } |
5832 | 224 |
7336 | 225 static void set_remove_hook (hook_fcn_ptr f) { remove_hook = f; } |
5832 | 226 |
227 static void set_command_line_path (const std::string& p) | |
228 { | |
5835 | 229 if (command_line_path.empty ()) |
230 command_line_path = p; | |
231 else | |
8008
4d13a7a2f6ab
dir_path: use singleton class for static data members
John W. Eaton <jwe@octave.org>
parents:
7971
diff
changeset
|
232 command_line_path += dir_path::path_sep_str () + p; |
5832 | 233 } |
234 | |
8586
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8329
diff
changeset
|
235 static std::string get_command_line_path (void) |
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8329
diff
changeset
|
236 { |
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8329
diff
changeset
|
237 return instance_ok () ? instance->do_get_command_line_path () : std::string (); |
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8329
diff
changeset
|
238 } |
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8329
diff
changeset
|
239 |
6626 | 240 static std::string system_path (void) |
241 { | |
6630 | 242 return instance_ok () ? instance->do_system_path () : std::string (); |
6626 | 243 } |
244 | |
5832 | 245 private: |
246 | |
247 static const int M_FILE = 1; | |
248 static const int OCT_FILE = 2; | |
5864 | 249 static const int MEX_FILE = 4; |
5832 | 250 |
251 class dir_info | |
252 { | |
253 public: | |
254 | |
7336 | 255 // <FCN_NAME, TYPE> |
256 typedef std::map<std::string, int> fcn_file_map_type; | |
257 | |
258 typedef fcn_file_map_type::const_iterator const_fcn_file_map_iterator; | |
259 typedef fcn_file_map_type::iterator fcn_file_map_iterator; | |
260 | |
7971
dd5cc5016487
handle private functions in class directories
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
261 struct class_info |
dd5cc5016487
handle private functions in class directories
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
262 { |
dd5cc5016487
handle private functions in class directories
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
263 fcn_file_map_type method_file_map; |
dd5cc5016487
handle private functions in class directories
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
264 fcn_file_map_type private_file_map; |
dd5cc5016487
handle private functions in class directories
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
265 }; |
dd5cc5016487
handle private functions in class directories
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
266 |
dd5cc5016487
handle private functions in class directories
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
267 // <CLASS_NAME, CLASS_INFO> |
dd5cc5016487
handle private functions in class directories
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
268 typedef std::map<std::string, class_info> method_file_map_type; |
7336 | 269 |
270 typedef method_file_map_type::const_iterator const_method_file_map_iterator; | |
271 typedef method_file_map_type::iterator method_file_map_iterator; | |
272 | |
8329
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
273 // This default constructor is only provided so we can create a |
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
274 // std::map of dir_info objects. You should not use this |
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
275 // constructor for any other purpose. |
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
276 dir_info (void) { } |
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
277 |
5832 | 278 dir_info (const std::string& d) : dir_name (d) { initialize (); } |
279 | |
280 dir_info (const dir_info& di) | |
8329
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
281 : dir_name (di.dir_name), abs_dir_name (di.abs_dir_name), |
10313 | 282 is_relative (di.is_relative), |
283 dir_mtime (di.dir_mtime), | |
284 dir_time_last_checked (di.dir_time_last_checked), | |
285 all_files (di.all_files), fcn_files (di.fcn_files), | |
286 private_file_map (di.private_file_map), | |
287 method_file_map (di.method_file_map) { } | |
5832 | 288 |
289 ~dir_info (void) { } | |
290 | |
291 dir_info& operator = (const dir_info& di) | |
292 { | |
293 if (&di != this) | |
10313 | 294 { |
295 dir_name = di.dir_name; | |
296 abs_dir_name = di.abs_dir_name; | |
297 is_relative = di.is_relative; | |
298 dir_mtime = di.dir_mtime; | |
299 dir_time_last_checked = di.dir_time_last_checked; | |
300 all_files = di.all_files; | |
301 fcn_files = di.fcn_files; | |
302 private_file_map = di.private_file_map; | |
303 method_file_map = di.method_file_map; | |
304 } | |
5832 | 305 |
306 return *this; | |
307 } | |
308 | |
309 void update (void); | |
310 | |
311 std::string dir_name; | |
8329
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
312 std::string abs_dir_name; |
5832 | 313 bool is_relative; |
314 octave_time dir_mtime; | |
9748
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
9581
diff
changeset
|
315 octave_time dir_time_last_checked; |
5832 | 316 string_vector all_files; |
317 string_vector fcn_files; | |
7336 | 318 fcn_file_map_type private_file_map; |
319 method_file_map_type method_file_map; | |
5832 | 320 |
321 private: | |
322 | |
323 void initialize (void); | |
324 | |
7336 | 325 void get_file_list (const std::string& d); |
326 | |
327 void get_private_file_map (const std::string& d); | |
5832 | 328 |
7336 | 329 void get_method_file_map (const std::string& d, |
10313 | 330 const std::string& class_name); |
7336 | 331 |
332 friend fcn_file_map_type get_fcn_files (const std::string& d); | |
5832 | 333 }; |
334 | |
335 class file_info | |
336 { | |
337 public: | |
338 | |
339 file_info (const std::string& d, int t) : dir_name (d), types (t) { } | |
340 | |
341 file_info (const file_info& fi) | |
342 : dir_name (fi.dir_name), types (fi.types) { } | |
343 | |
344 ~file_info (void) { } | |
345 | |
346 file_info& operator = (const file_info& fi) | |
347 { | |
348 if (&fi != this) | |
10313 | 349 { |
350 dir_name = fi.dir_name; | |
351 types = fi.types; | |
352 } | |
5832 | 353 |
354 return *this; | |
355 } | |
356 | |
357 std::string dir_name; | |
358 int types; | |
359 }; | |
360 | |
361 // We maintain two ways of looking at the same information. | |
362 // | |
363 // First, a list of directories and the set of "public" files and | |
364 // private files (those found in the special "private" subdirectory) | |
365 // in each directory. | |
366 // | |
367 // Second, a map from file names (the union of all "public" files for all | |
7336 | 368 // directories, but without filename extensions) to a list of |
5832 | 369 // corresponding information (directory name and file types). This |
370 // way, we can quickly find shadowed file names and look up all | |
371 // overloaded functions (in the "@" directories used to implement | |
372 // classes). | |
373 | |
7336 | 374 typedef std::list<dir_info> dir_info_list_type; |
375 | |
376 typedef dir_info_list_type::const_iterator const_dir_info_list_iterator; | |
377 typedef dir_info_list_type::iterator dir_info_list_iterator; | |
378 | |
8329
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
379 typedef std::map<std::string, dir_info> abs_dir_cache_type; |
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
380 |
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
381 typedef abs_dir_cache_type::const_iterator const_abs_dir_cache_iterator; |
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
382 typedef abs_dir_cache_type::iterator abs_dir_cache_iterator; |
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
383 |
7336 | 384 typedef std::list<file_info> file_info_list_type; |
385 | |
386 typedef file_info_list_type::const_iterator const_file_info_list_iterator; | |
387 typedef file_info_list_type::iterator file_info_list_iterator; | |
388 | |
389 // <FCN_NAME, FILE_INFO_LIST> | |
390 typedef std::map<std::string, file_info_list_type> fcn_map_type; | |
391 | |
392 typedef fcn_map_type::const_iterator const_fcn_map_iterator; | |
393 typedef fcn_map_type::iterator fcn_map_iterator; | |
5832 | 394 |
7336 | 395 // <DIR_NAME, <FCN_NAME, TYPE>> |
396 typedef std::map<std::string, dir_info::fcn_file_map_type> private_fcn_map_type; | |
397 | |
398 typedef private_fcn_map_type::const_iterator const_private_fcn_map_iterator; | |
399 typedef private_fcn_map_type::iterator private_fcn_map_iterator; | |
400 | |
401 // <CLASS_NAME, <FCN_NAME, FILE_INFO_LIST>> | |
402 typedef std::map<std::string, fcn_map_type> method_map_type; | |
403 | |
404 typedef method_map_type::const_iterator const_method_map_iterator; | |
405 typedef method_map_type::iterator method_map_iterator; | |
9010
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
406 |
7336 | 407 mutable dir_info_list_type dir_info_list; |
408 | |
409 mutable fcn_map_type fcn_map; | |
410 | |
411 mutable private_fcn_map_type private_fcn_map; | |
412 | |
413 mutable method_map_type method_map; | |
5832 | 414 |
415 static load_path *instance; | |
416 | |
7336 | 417 static hook_fcn_ptr add_hook; |
5832 | 418 |
7336 | 419 static hook_fcn_ptr remove_hook; |
5832 | 420 |
421 static std::string command_line_path; | |
422 | |
6626 | 423 static std::string sys_path; |
424 | |
8329
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
425 static abs_dir_cache_type abs_dir_cache; |
c91b59532f32
load-path.cc (load_path::dir_info::update): smarter handling of relative names
John W. Eaton <jwe@octave.org>
parents:
8041
diff
changeset
|
426 |
5832 | 427 static bool instance_ok (void); |
428 | |
429 const_dir_info_list_iterator find_dir_info (const std::string& dir) const; | |
430 dir_info_list_iterator find_dir_info (const std::string& dir); | |
431 | |
432 bool contains (const std::string& dir) const; | |
433 | |
7336 | 434 void move_fcn_map (const std::string& dir, |
10313 | 435 const string_vector& fcn_files, bool at_end); |
7336 | 436 |
437 void move_method_map (const std::string& dir, bool at_end); | |
438 | |
5832 | 439 void move (std::list<dir_info>::iterator i, bool at_end); |
440 | |
6365 | 441 void do_initialize (bool set_initial_path); |
5832 | 442 |
443 void do_clear (void); | |
444 | |
5867 | 445 void do_set (const std::string& p, bool warn); |
446 | |
447 void do_append (const std::string& dir, bool warn); | |
5832 | 448 |
5867 | 449 void do_prepend (const std::string& dir, bool warn); |
5832 | 450 |
5867 | 451 void do_add (const std::string& dir, bool at_end, bool warn); |
5832 | 452 |
7336 | 453 void remove_fcn_map (const std::string& dir, const string_vector& fcn_files); |
454 | |
455 void remove_private_fcn_map (const std::string& dir); | |
456 | |
457 void remove_method_map (const std::string& dir); | |
458 | |
5832 | 459 bool do_remove (const std::string& dir); |
460 | |
461 void do_update (void) const; | |
462 | |
7336 | 463 static bool |
464 check_file_type (std::string& fname, int type, int possible_types, | |
10313 | 465 const std::string& fcn, const char *who); |
7336 | 466 |
5832 | 467 std::string do_find_fcn (const std::string& fcn, |
10313 | 468 std::string& dir_name, |
469 int type = M_FILE | OCT_FILE | MEX_FILE) const; | |
5832 | 470 |
7336 | 471 std::string do_find_private_fcn (const std::string& dir, |
10313 | 472 const std::string& fcn, |
473 int type = M_FILE | OCT_FILE | MEX_FILE) const; | |
7336 | 474 |
475 std::string do_find_method (const std::string& class_name, | |
10313 | 476 const std::string& meth, |
477 std::string& dir_name, | |
478 int type = M_FILE | OCT_FILE | MEX_FILE) const; | |
7336 | 479 |
480 std::list<std::string> do_methods (const std::string& class_name) const; | |
481 | |
9458
0c7d84a65386
allow taking handles of methods with no base overload
Jaroslav Hajek <highegg@gmail.com>
parents:
9261
diff
changeset
|
482 bool do_any_class_method (const std::string& meth) const; |
0c7d84a65386
allow taking handles of methods with no base overload
Jaroslav Hajek <highegg@gmail.com>
parents:
9261
diff
changeset
|
483 |
5832 | 484 std::string do_find_file (const std::string& file) const; |
485 | |
8041
a14bdf90be55
Add a search for Contents.m files to the help function
David Bateman <dbateman@free.fr>
parents:
8008
diff
changeset
|
486 std::string do_find_dir (const std::string& dir) const; |
a14bdf90be55
Add a search for Contents.m files to the help function
David Bateman <dbateman@free.fr>
parents:
8008
diff
changeset
|
487 |
9806
8e345f2fe4d6
improved support for Contents.m files
John W. Eaton <jwe@octave.org>
parents:
9748
diff
changeset
|
488 string_vector do_find_matching_dirs (const std::string& dir) const; |
8e345f2fe4d6
improved support for Contents.m files
John W. Eaton <jwe@octave.org>
parents:
9748
diff
changeset
|
489 |
5832 | 490 std::string do_find_first_of (const string_vector& files) const; |
491 | |
492 string_vector do_find_all_first_of (const string_vector& files) const; | |
493 | |
494 string_vector do_dirs (void) const; | |
495 | |
496 std::list<std::string> do_dir_list (void) const; | |
497 | |
9261
95445f9f5976
omit file extensions from __list_functions__ output
John W. Eaton <jwe@octave.org>
parents:
9010
diff
changeset
|
498 string_vector do_files (const std::string& dir, bool omit_exts) const; |
5832 | 499 |
500 string_vector do_fcn_names (void) const; | |
501 | |
502 std::string do_path (void) const; | |
503 | |
7336 | 504 friend void print_types (std::ostream& os, int types); |
505 | |
506 friend string_vector get_file_list (const dir_info::fcn_file_map_type& lst); | |
507 | |
508 friend void | |
509 print_fcn_list (std::ostream& os, const dir_info::fcn_file_map_type& lst); | |
510 | |
5832 | 511 void do_display (std::ostream& os) const; |
512 | |
6629 | 513 std::string do_system_path (void) const { return sys_path; } |
6626 | 514 |
8586
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8329
diff
changeset
|
515 std::string do_get_command_line_path (void) const { return command_line_path; } |
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8329
diff
changeset
|
516 |
5832 | 517 void add_to_fcn_map (const dir_info& di, bool at_end) const; |
7336 | 518 |
519 void add_to_private_fcn_map (const dir_info& di) const; | |
520 | |
521 void add_to_method_map (const dir_info& di, bool at_end) const; | |
522 | |
523 friend dir_info::fcn_file_map_type get_fcn_files (const std::string& d); | |
5832 | 524 }; |
525 | |
526 extern std::string | |
527 genpath (const std::string& dir, const string_vector& skip = "private"); | |
528 | |
529 extern void execute_pkg_add (const std::string& dir); | |
530 extern void execute_pkg_del (const std::string& dir); | |
531 | |
532 #endif |