Mercurial > hg > octave-nkf
annotate src/ov-fcn.h @ 8870:eea0e1b45ec0
optimize string manipulation in lookfor
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 25 Feb 2009 10:21:33 +0100 |
parents | 70f5a0375afd |
children | eb63fbe60fab |
rev | line source |
---|---|
2974 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, |
4 2006, 2007 John W. Eaton | |
2974 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
2974 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
2974 | 21 |
22 */ | |
23 | |
24 #if !defined (octave_function_h) | |
25 #define octave_function_h 1 | |
26 | |
27 #include <string> | |
28 | |
3258 | 29 #include "oct-time.h" |
3325 | 30 #include "str-vec.h" |
3258 | 31 |
2974 | 32 #include "oct-alloc.h" |
4748 | 33 #include "oct-obj.h" |
2974 | 34 #include "ov-base.h" |
35 #include "ov-typeinfo.h" | |
7336 | 36 #include "symtab.h" |
2974 | 37 |
2976 | 38 class tree_walker; |
39 | |
2974 | 40 // Functions. |
41 | |
42 class | |
6109 | 43 OCTINTERP_API |
2974 | 44 octave_function : public octave_base_value |
45 { | |
46 public: | |
47 | |
8785
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
48 octave_function (void) |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
49 : relative (false), locked (false), private_function (false), |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
50 xdispatch_class (), my_name (), my_dir_name (), doc () { } |
2974 | 51 |
52 ~octave_function (void) { } | |
53 | |
5759 | 54 octave_base_value *clone (void) const; |
55 octave_base_value *empty_clone (void) const; | |
2974 | 56 |
57 bool is_defined (void) const { return true; } | |
58 | |
59 bool is_function (void) const { return true; } | |
60 | |
3544 | 61 virtual bool is_system_fcn_file (void) const { return false; } |
2974 | 62 |
3523 | 63 virtual std::string fcn_file_name (void) const { return std::string (); } |
2974 | 64 |
6323 | 65 virtual std::string parent_fcn_name (void) const { return std::string (); } |
66 | |
7968
0d607e8dbbfa
eliminate curr_parent_function; fix subfunction lookup
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
67 virtual symbol_table::scope_id parent_fcn_scope (void) const { return -1; } |
0d607e8dbbfa
eliminate curr_parent_function; fix subfunction lookup
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
68 |
3255 | 69 virtual void mark_fcn_file_up_to_date (const octave_time&) { } |
3166 | 70 |
7336 | 71 virtual symbol_table::scope_id scope (void) { return -1; } |
72 | |
3255 | 73 virtual octave_time time_parsed (void) const |
74 { return octave_time (static_cast<time_t> (0)); } | |
2974 | 75 |
3255 | 76 virtual octave_time time_checked (void) const |
77 { return octave_time (static_cast<time_t> (0)); } | |
3166 | 78 |
4343 | 79 virtual bool is_nested_function (void) const { return false; } |
80 | |
7336 | 81 virtual bool is_class_constructor (void) const { return false; } |
5744 | 82 |
7336 | 83 virtual bool is_class_method (void) const { return false; } |
84 | |
4748 | 85 virtual bool takes_varargs (void) const { return false; } |
86 | |
87 virtual bool takes_var_return (void) const { return false; } | |
88 | |
8785
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
89 void stash_dispatch_class (const std::string& nm) { xdispatch_class = nm; } |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
90 |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
91 std::string dispatch_class (void) const { return xdispatch_class; } |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
92 |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
93 void mark_as_private_function (const std::string& cname = std::string ()) |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
94 { |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
95 private_function = true; |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
96 xdispatch_class = cname; |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
97 } |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
98 |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
99 bool is_private_function (void) const { return private_function; } |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
100 |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
101 bool is_private_function_of_class (const std::string& nm) |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
102 { return private_function && xdispatch_class == nm; } |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
103 |
7336 | 104 std::string dir_name (void) const { return my_dir_name; } |
105 | |
106 void stash_dir_name (const std::string& dir) { my_dir_name = dir; } | |
107 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
108 void lock (void) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
109 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
110 this->lock_subfunctions (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
111 locked = true; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
112 } |
7336 | 113 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
114 void unlock (void) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
115 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
116 this->unlock_subfunctions (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
117 locked = false; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
118 } |
7336 | 119 |
7489
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7438
diff
changeset
|
120 bool islocked (void) const { return locked; } |
7336 | 121 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
122 virtual void lock_subfunctions (void) { } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
123 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
124 virtual void unlock_subfunctions (void) { } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
125 |
6323 | 126 void mark_relative (void) { relative = true; } |
127 | |
128 bool is_relative (void) const { return relative; } | |
129 | |
3523 | 130 std::string name (void) const { return my_name; } |
2974 | 131 |
5823 | 132 void document (const std::string& ds) { doc = ds; } |
133 | |
3523 | 134 std::string doc_string (void) const { return doc; } |
2974 | 135 |
3325 | 136 virtual void unload (void) { } |
137 | |
2976 | 138 virtual void accept (tree_walker&) { } |
139 | |
2974 | 140 protected: |
141 | |
5864 | 142 octave_function (const std::string& nm, |
143 const std::string& ds = std::string ()) | |
6323 | 144 : relative (false), my_name (nm), doc (ds) { } |
145 | |
146 // TRUE if this function was found from a relative path element. | |
147 bool relative; | |
2974 | 148 |
7336 | 149 // TRUE if this function is tagged so that it can't be cleared. |
150 bool locked; | |
151 | |
8785
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
152 // TRUE means this is a private function. |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
153 bool private_function; |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
154 |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
155 // If this object is a class method or constructor, or a private |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
156 // function inside a class directory, this is the name of the class |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
157 // to which the method belongs. |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
158 std::string xdispatch_class; |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
159 |
2974 | 160 // The name of this function. |
3523 | 161 std::string my_name; |
2974 | 162 |
7336 | 163 // The name of the directory in the path where we found this |
164 // function. May be relative. | |
165 std::string my_dir_name; | |
166 | |
2974 | 167 // The help text for this function. |
3523 | 168 std::string doc; |
2974 | 169 |
3325 | 170 private: |
171 | |
4645 | 172 // No copying! |
173 | |
174 octave_function (const octave_function& f); | |
175 | |
176 octave_function& operator = (const octave_function& f); | |
177 | |
3219 | 178 DECLARE_OCTAVE_ALLOCATOR |
2974 | 179 }; |
180 | |
181 #endif | |
182 | |
183 /* | |
6705 | 184 ;;; Local Variables: *** |
185 ;;; mode: C++ *** | |
186 ;;; End: *** | |
2974 | 187 */ |