Mercurial > hg > octave-nkf
annotate src/symtab.h @ 7779:791231dac333
Add regexp matching to Fwho and Fclear
author | David Bateman <dbateman@free.fr> |
---|---|
date | Sun, 18 May 2008 22:14:45 +0200 |
parents | 71f068b22fcc |
children | 8447a5024650 |
rev | line source |
---|---|
8 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2002, 2003, |
7346 | 4 2004, 2005, 2006, 2007, 2008 John W. Eaton |
7336 | 5 |
8 | 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. | |
8 | 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/>. | |
8 | 21 |
22 */ | |
23 | |
383 | 24 #if !defined (octave_symtab_h) |
25 #define octave_symtab_h 1 | |
8 | 26 |
7336 | 27 #include <deque> |
28 #include <list> | |
29 #include <map> | |
30 #include <set> | |
31 #include <string> | |
2953 | 32 |
7336 | 33 #include "glob-match.h" |
7779
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
34 #include "regex-match.h" |
2846 | 35 |
7336 | 36 class tree_argument_list; |
3013 | 37 |
7336 | 38 #include "oct-obj.h" |
39 #include "ov.h" | |
1412 | 40 |
8 | 41 class |
6109 | 42 OCTINTERP_API |
8 | 43 symbol_table |
44 { | |
45 public: | |
46 | |
7336 | 47 typedef int scope_id; |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
48 typedef size_t context_id; |
7336 | 49 |
50 class | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
51 scope_id_cache |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
52 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
53 protected: |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
54 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
55 typedef std::set<scope_id>::iterator set_iterator; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
56 typedef std::set<scope_id>::const_iterator set_const_iterator; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
57 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
58 // We start with 2 because we allocate 0 for the global symbols |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
59 // and 1 for the top-level workspace. |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
60 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
61 scope_id_cache (void) : next_available (2), in_use (), free_list () { } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
62 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
63 public: |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
64 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
65 ~scope_id_cache (void) { } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
66 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
67 static scope_id alloc (void) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
68 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
69 return instance_ok () ? instance->do_alloc () : -1; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
70 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
71 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
72 static void free (scope_id scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
73 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
74 if (instance_ok ()) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
75 return instance->do_free (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
76 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
77 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
78 static std::list<scope_id> scopes (void) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
79 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
80 return instance_ok () ? instance->do_scopes () : std::list<scope_id> (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
81 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
82 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
83 static bool instance_ok (void) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
84 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
85 bool retval = true; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
86 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
87 if (! instance) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
88 instance = new scope_id_cache (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
89 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
90 if (! instance) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
91 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
92 ::error ("unable to create scope_id_cache object!"); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
93 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
94 retval = false; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
95 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
96 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
97 return retval; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
98 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
99 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
100 private: |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
101 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
102 static scope_id_cache *instance; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
103 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
104 // The next available scope not in the free list. |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
105 scope_id next_available; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
106 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
107 // The set of scope IDs that are currently allocated. |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
108 std::set<scope_id> in_use; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
109 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
110 // The set of scope IDs that are currently available. |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
111 std::set<scope_id> free_list; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
112 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
113 scope_id do_alloc (void) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
114 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
115 scope_id retval; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
116 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
117 set_iterator p = free_list.begin (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
118 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
119 if (p != free_list.end ()) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
120 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
121 retval = *p; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
122 free_list.erase (p); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
123 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
124 else |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
125 retval = next_available++; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
126 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
127 in_use.insert (retval); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
128 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
129 return retval; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
130 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
131 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
132 void do_free (scope_id scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
133 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
134 set_iterator p = in_use.find (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
135 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
136 if (p != in_use.end ()) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
137 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
138 in_use.erase (p); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
139 free_list.insert (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
140 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
141 else |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
142 error ("free_scope: scope %d not found!", scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
143 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
144 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
145 std::list<scope_id> do_scopes (void) const |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
146 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
147 std::list<scope_id> retval; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
148 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
149 for (set_const_iterator p = in_use.begin (); p != in_use.end (); p++) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
150 retval.push_back (*p); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
151 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
152 retval.sort (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
153 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
154 return retval; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
155 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
156 }; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
157 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
158 class |
7336 | 159 symbol_record |
160 { | |
161 public: | |
162 | |
163 // generic variable | |
164 static const unsigned int local = 1; | |
165 | |
166 // varargin, argn, .nargin., .nargout. | |
167 // (FIXME -- is this really used now?) | |
168 static const unsigned int automatic = 2; | |
169 | |
170 // formal parameter | |
171 static const unsigned int formal = 4; | |
172 | |
173 // not listed or cleared (.nargin., .nargout.) | |
174 static const unsigned int hidden = 8; | |
175 | |
176 // inherited from parent scope; not cleared at function exit | |
177 static const unsigned int inherited = 16; | |
178 | |
179 // global (redirects to global scope) | |
180 static const unsigned int global = 32; | |
181 | |
182 // not cleared at function exit | |
183 static const unsigned int persistent = 64; | |
184 | |
185 private: | |
186 | |
187 class | |
188 symbol_record_rep | |
4009 | 189 { |
7336 | 190 public: |
191 | |
192 symbol_record_rep (const std::string& nm, const octave_value& v, | |
193 unsigned int sc) | |
194 : name (nm), value_stack (), storage_class (sc), count (1) | |
195 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
196 value_stack.push_back (v); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
197 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
198 |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
199 octave_value& varref (context_id context) |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
200 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
201 if (is_global ()) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
202 return symbol_table::global_varref (name); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
203 else if (is_persistent ()) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
204 return symbol_table::persistent_varref (name); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
205 else |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
206 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
207 context_id n = value_stack.size (); |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
208 while (n++ <= context) |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
209 value_stack.push_back (octave_value ()); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
210 |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
211 return value_stack[context]; |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
212 } |
7336 | 213 } |
214 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
215 octave_value varval (context_id context) const |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
216 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
217 if (is_global ()) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
218 return symbol_table::global_varval (name); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
219 else if (is_persistent ()) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
220 return symbol_table::persistent_varval (name); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
221 else |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
222 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
223 if (context < value_stack.size ()) |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
224 return value_stack[context]; |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
225 else |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
226 return octave_value (); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
227 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
228 } |
7336 | 229 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
230 void push_context (void) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
231 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
232 if (! (is_persistent () || is_global ())) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
233 value_stack.push_back (octave_value ()); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
234 } |
7336 | 235 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
236 // If pop_context returns 0, we are out of values and this element |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
237 // of the symbol table should be deleted. This can happen for |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
238 // functions like |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
239 // |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
240 // function foo (n) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
241 // if (n > 0) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
242 // foo (n-1); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
243 // else |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
244 // eval ("x = 1"); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
245 // endif |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
246 // endfunction |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
247 // |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
248 // Here, X should only exist in the final stack frame. |
7336 | 249 |
7374 | 250 size_t pop_context (void) |
251 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
252 size_t retval = 1; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
253 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
254 if (! (is_persistent () || is_global ())) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
255 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
256 value_stack.pop_back (); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
257 retval = value_stack.size (); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
258 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
259 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
260 return retval; |
7374 | 261 } |
7336 | 262 |
263 void clear (void) | |
264 { | |
265 if (! (is_hidden () || is_inherited ())) | |
266 { | |
267 if (is_global ()) | |
268 unmark_global (); | |
269 | |
270 if (is_persistent ()) | |
271 { | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
272 symbol_table::persistent_varref (name) |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
273 = varval (xcurrent_context); |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
274 |
7336 | 275 unmark_persistent (); |
276 } | |
277 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
278 varref (xcurrent_context) = octave_value (); |
7336 | 279 } |
280 } | |
281 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
282 bool is_defined (context_id context) const |
7336 | 283 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
284 return varval (context).is_defined (); |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
285 } |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
286 |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
287 bool is_variable (context_id context) const |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
288 { |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
289 return (storage_class != local || is_defined (context)); |
7336 | 290 } |
291 | |
292 bool is_local (void) const { return storage_class & local; } | |
293 bool is_automatic (void) const { return storage_class & automatic; } | |
294 bool is_formal (void) const { return storage_class & formal; } | |
295 bool is_hidden (void) const { return storage_class & hidden; } | |
296 bool is_inherited (void) const { return storage_class & inherited; } | |
297 bool is_global (void) const { return storage_class & global; } | |
298 bool is_persistent (void) const { return storage_class & persistent; } | |
299 | |
300 void mark_local (void) { storage_class |= local; } | |
301 void mark_automatic (void) { storage_class |= automatic; } | |
302 void mark_formal (void) { storage_class |= formal; } | |
303 void mark_hidden (void) { storage_class |= hidden; } | |
304 void mark_inherited (void) { storage_class |= inherited; } | |
305 void mark_global (void) | |
306 { | |
307 if (is_persistent ()) | |
308 error ("can't make persistent variable %s global", name.c_str ()); | |
309 else | |
310 storage_class |= global; | |
311 } | |
312 void mark_persistent (void) | |
313 { | |
314 if (is_global ()) | |
315 error ("can't make global variable %s persistent", name.c_str ()); | |
316 else | |
317 storage_class |= persistent; | |
318 } | |
319 | |
320 void unmark_local (void) { storage_class &= ~local; } | |
321 void unmark_automatic (void) { storage_class &= ~automatic; } | |
322 void unmark_formal (void) { storage_class &= ~formal; } | |
323 void unmark_hidden (void) { storage_class &= ~hidden; } | |
324 void unmark_inherited (void) { storage_class &= ~inherited; } | |
325 void unmark_global (void) { storage_class &= ~global; } | |
326 void unmark_persistent (void) { storage_class &= ~persistent; } | |
327 | |
328 void init_persistent (void) | |
329 { | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
330 if (! is_defined (xcurrent_context)) |
7336 | 331 { |
332 mark_persistent (); | |
333 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
334 varref (xcurrent_context) = symbol_table::persistent_varval (name); |
7336 | 335 } |
336 // FIXME -- this causes trouble with recursive calls. | |
337 // else | |
338 // error ("unable to declare existing variable persistent"); | |
339 } | |
340 | |
341 void erase_persistent (void) | |
342 { | |
343 unmark_persistent (); | |
344 symbol_table::erase_persistent (name); | |
345 } | |
346 | |
347 symbol_record_rep *dup (void) | |
348 { | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
349 return new symbol_record_rep (name, varval (xcurrent_context), |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
350 storage_class); |
7336 | 351 } |
352 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
353 void dump (std::ostream& os, const std::string& prefix) const; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
354 |
7336 | 355 std::string name; |
356 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
357 std::deque<octave_value> value_stack; |
7336 | 358 |
359 unsigned int storage_class; | |
360 | |
361 size_t count; | |
362 | |
363 private: | |
364 | |
365 // No copying! | |
366 | |
367 symbol_record_rep (const symbol_record_rep& ov); | |
368 | |
369 symbol_record_rep& operator = (const symbol_record_rep&); | |
370 }; | |
371 | |
372 public: | |
373 | |
374 symbol_record (const std::string& nm = std::string (), | |
375 const octave_value& v = octave_value (), | |
376 unsigned int sc = local) | |
377 : rep (new symbol_record_rep (nm, v, sc)) { } | |
378 | |
379 symbol_record (const symbol_record& sr) | |
380 : rep (sr.rep) | |
381 { | |
382 rep->count++; | |
383 } | |
384 | |
385 symbol_record& operator = (const symbol_record& sr) | |
386 { | |
387 if (this != &sr) | |
388 { | |
389 rep = sr.rep; | |
390 rep->count++; | |
391 } | |
392 | |
393 return *this; | |
394 } | |
395 | |
396 ~symbol_record (void) | |
397 { | |
398 if (--rep->count == 0) | |
399 delete rep; | |
400 } | |
401 | |
402 symbol_record dup (void) const { return symbol_record (rep->dup ()); } | |
403 | |
404 std::string name (void) const { return rep->name; } | |
405 | |
406 octave_value | |
407 find (tree_argument_list *args, const string_vector& arg_names, | |
408 octave_value_list& evaluated_args, bool& args_evaluated) const; | |
409 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
410 octave_value& varref (context_id context = xcurrent_context) |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
411 { |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
412 return rep->varref (context); |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
413 } |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
414 |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
415 octave_value varval (context_id context = xcurrent_context) const |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
416 { |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
417 return rep->varval (context); |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
418 } |
7336 | 419 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
420 void push_context (void) { rep->push_context (); } |
7336 | 421 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
422 size_t pop_context (void) { return rep->pop_context (); } |
7336 | 423 |
424 void clear (void) { rep->clear (); } | |
425 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
426 bool is_defined (context_id context = xcurrent_context) const |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
427 { |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
428 return rep->is_defined (context); |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
429 } |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
430 |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
431 bool is_variable (context_id context = xcurrent_context) const |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
432 { |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
433 return rep->is_variable (context); |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
434 } |
7336 | 435 |
436 bool is_local (void) const { return rep->is_local (); } | |
437 bool is_automatic (void) const { return rep->is_automatic (); } | |
438 bool is_formal (void) const { return rep->is_formal (); } | |
439 bool is_global (void) const { return rep->is_global (); } | |
440 bool is_hidden (void) const { return rep->is_hidden (); } | |
441 bool is_inherited (void) const { return rep->is_inherited (); } | |
442 bool is_persistent (void) const { return rep->is_persistent (); } | |
443 | |
444 void mark_local (void) { rep->mark_local (); } | |
445 void mark_automatic (void) { rep->mark_automatic (); } | |
446 void mark_formal (void) { rep->mark_formal (); } | |
447 void mark_hidden (void) { rep->mark_hidden (); } | |
448 void mark_inherited (void) { rep->mark_inherited (); } | |
449 void mark_global (void) { rep->mark_global (); } | |
450 void mark_persistent (void) { rep->mark_persistent (); } | |
451 | |
452 void unmark_local (void) { rep->unmark_local (); } | |
453 void unmark_automatic (void) { rep->unmark_automatic (); } | |
454 void unmark_formal (void) { rep->unmark_formal (); } | |
455 void unmark_hidden (void) { rep->unmark_hidden (); } | |
456 void unmark_inherited (void) { rep->unmark_inherited (); } | |
457 void unmark_global (void) { rep->unmark_global (); } | |
458 void unmark_persistent (void) { rep->unmark_persistent (); } | |
459 | |
460 void init_persistent (void) { rep->init_persistent (); } | |
461 | |
462 void erase_persistent (void) { rep->erase_persistent (); } | |
463 | |
464 unsigned int xstorage_class (void) const { return rep->storage_class; } | |
465 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
466 void |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
467 dump (std::ostream& os, const std::string& prefix = std::string ()) const |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
468 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
469 rep->dump (os, prefix); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
470 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
471 |
7336 | 472 private: |
473 | |
474 symbol_record_rep *rep; | |
475 | |
476 symbol_record (symbol_record_rep *new_rep) : rep (new_rep) { } | |
477 }; | |
478 | |
479 class | |
480 fcn_info | |
481 { | |
482 public: | |
483 | |
484 typedef std::map<std::string, std::string> dispatch_map_type; | |
485 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
486 typedef std::map<scope_id, octave_value>::const_iterator scope_val_const_iterator; |
7336 | 487 typedef std::map<scope_id, octave_value>::iterator scope_val_iterator; |
4238 | 488 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
489 typedef std::map<std::string, octave_value>::const_iterator str_val_const_iterator; |
7336 | 490 typedef std::map<std::string, octave_value>::iterator str_val_iterator; |
491 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
492 typedef dispatch_map_type::const_iterator dispatch_map_const_iterator; |
7336 | 493 typedef dispatch_map_type::iterator dispatch_map_iterator; |
494 | |
495 private: | |
496 | |
497 class | |
498 fcn_info_rep | |
499 { | |
500 public: | |
501 | |
502 fcn_info_rep (const std::string& nm) | |
503 : name (nm), subfunctions (), private_functions (), | |
504 class_constructors (), class_methods (), cmdline_function (), | |
505 autoload_function (), function_on_path (), built_in_function (), | |
506 count (1) { } | |
507 | |
508 octave_value load_private_function (const std::string& dir_name); | |
509 | |
510 octave_value load_class_constructor (void); | |
511 | |
512 octave_value load_class_method (const std::string& dispatch_type); | |
513 | |
514 octave_value | |
515 find (tree_argument_list *args, const string_vector& arg_names, | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
516 octave_value_list& evaluated_args, bool& args_evaluated); |
7336 | 517 |
518 octave_value find_method (const std::string& dispatch_type); | |
519 | |
520 octave_value find_autoload (void); | |
521 | |
522 octave_value find_user_function (void); | |
523 | |
524 bool is_user_function_defined (void) const | |
525 { | |
526 return function_on_path.is_defined (); | |
527 } | |
528 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
529 octave_value find_function (void) |
7336 | 530 { |
531 octave_value_list args; | |
532 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
533 return find_function (args); |
7336 | 534 } |
535 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
536 octave_value find_function (const octave_value_list& args) |
7336 | 537 { |
538 string_vector arg_names; | |
539 octave_value_list evaluated_args = args; | |
7753
e76a4a6e3c47
initialize args_evaluated; delete useless statement
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
540 bool args_evaluated = false; |
7336 | 541 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
542 return find (0, arg_names, evaluated_args, args_evaluated); |
7336 | 543 } |
544 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
545 void lock_subfunction (scope_id scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
546 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
547 scope_val_iterator p = subfunctions.find (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
548 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
549 if (p != subfunctions.end ()) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
550 p->second.lock (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
551 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
552 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
553 void unlock_subfunction (scope_id scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
554 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
555 scope_val_iterator p = subfunctions.find (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
556 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
557 if (p != subfunctions.end ()) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
558 p->second.unlock (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
559 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
560 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
561 std::pair<std::string, octave_value> |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
562 subfunction_defined_in_scope (scope_id scope) const |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
563 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
564 scope_val_const_iterator p = subfunctions.find (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
565 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
566 return p == subfunctions.end () |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
567 ? std::pair<std::string, octave_value> () |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
568 : std::pair<std::string, octave_value> (name, p->second); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
569 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
570 |
7336 | 571 void install_cmdline_function (const octave_value& f) |
572 { | |
573 cmdline_function = f; | |
574 } | |
575 | |
576 void install_subfunction (const octave_value& f, scope_id scope) | |
577 { | |
578 subfunctions[scope] = f; | |
579 } | |
580 | |
581 void install_user_function (const octave_value& f) | |
582 { | |
583 function_on_path = f; | |
584 } | |
585 | |
586 void install_built_in_function (const octave_value& f) | |
587 { | |
588 built_in_function = f; | |
589 } | |
590 | |
7489
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
591 template <class T> |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
592 void |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
593 clear_unlocked (std::map<T, octave_value>& map) |
7336 | 594 { |
7489
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
595 typename std::map<T, octave_value>::iterator p = map.begin (); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
596 |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
597 while (p != map.end ()) |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
598 { |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
599 if (p->second.islocked ()) |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
600 p++; |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
601 else |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
602 map.erase (p++); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
603 } |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
604 } |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
605 |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
606 void clear_cmdline_function (void) |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
607 { |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
608 if (! cmdline_function.islocked ()) |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
609 cmdline_function = octave_value (); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
610 } |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
611 |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
612 void clear_autoload_function (void) |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
613 { |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
614 if (! autoload_function.islocked ()) |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
615 autoload_function = octave_value (); |
7336 | 616 } |
617 | |
618 // FIXME -- should this also clear the cmdline and other "user | |
619 // defined" functions? | |
620 void clear_user_function (void) | |
621 { | |
7489
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
622 if (! function_on_path.islocked ()) |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
623 function_on_path = octave_value (); |
7336 | 624 } |
625 | |
626 void clear_mex_function (void) | |
627 { | |
628 if (function_on_path.is_mex_function ()) | |
7489
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
629 clear_user_function (); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
630 } |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
631 |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
632 void clear (void) |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
633 { |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
634 clear_unlocked (subfunctions); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
635 clear_unlocked (private_functions); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
636 clear_unlocked (class_constructors); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
637 clear_unlocked (class_methods); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
638 clear_cmdline_function (); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
639 clear_autoload_function (); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7374
diff
changeset
|
640 clear_user_function (); |
7336 | 641 } |
642 | |
643 void add_dispatch (const std::string& type, const std::string& fname) | |
644 { | |
645 dispatch_map[type] = fname; | |
646 } | |
647 | |
648 void clear_dispatch (const std::string& type) | |
649 { | |
650 dispatch_map_iterator p = dispatch_map.find (type); | |
651 | |
652 if (p != dispatch_map.end ()) | |
653 dispatch_map.erase (p); | |
654 } | |
655 | |
656 void print_dispatch (std::ostream& os) const; | |
657 | |
658 std::string help_for_dispatch (void) const; | |
659 | |
660 dispatch_map_type get_dispatch (void) const { return dispatch_map; } | |
661 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
662 void dump (std::ostream& os, const std::string& prefix) const; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
663 |
7336 | 664 std::string name; |
665 | |
666 // Scope id to function object. | |
667 std::map<scope_id, octave_value> subfunctions; | |
668 | |
669 // Directory name to function object. | |
670 std::map<std::string, octave_value> private_functions; | |
671 | |
672 // Class name to function object. | |
673 std::map<std::string, octave_value> class_constructors; | |
674 | |
675 // Dispatch type to function object. | |
676 std::map<std::string, octave_value> class_methods; | |
677 | |
678 // Legacy dispatch map (dispatch type name to function name). | |
679 dispatch_map_type dispatch_map; | |
680 | |
681 octave_value cmdline_function; | |
682 | |
683 octave_value autoload_function; | |
684 | |
685 octave_value function_on_path; | |
686 | |
687 octave_value built_in_function; | |
688 | |
689 size_t count; | |
690 | |
691 private: | |
692 | |
693 // No copying! | |
694 | |
695 fcn_info_rep (const fcn_info_rep&); | |
696 | |
697 fcn_info_rep& operator = (const fcn_info_rep&); | |
698 }; | |
699 | |
700 public: | |
701 | |
702 fcn_info (const std::string& nm = std::string ()) | |
703 : rep (new fcn_info_rep (nm)) { } | |
704 | |
705 fcn_info (const fcn_info& ov) : rep (ov.rep) | |
706 { | |
707 rep->count++; | |
708 } | |
709 | |
710 fcn_info& operator = (const fcn_info& ov) | |
711 { | |
712 if (this != &ov) | |
4238 | 713 { |
7336 | 714 rep = ov.rep; |
715 rep->count++; | |
4238 | 716 } |
7336 | 717 |
718 return *this; | |
719 } | |
720 | |
721 ~fcn_info (void) | |
722 { | |
723 if (--rep->count == 0) | |
724 delete rep; | |
725 } | |
726 | |
727 octave_value | |
728 find (tree_argument_list *args, const string_vector& arg_names, | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
729 octave_value_list& evaluated_args, bool& args_evaluated); |
7336 | 730 |
731 octave_value find_method (const std::string& dispatch_type) const | |
732 { | |
733 return rep->find_method (dispatch_type); | |
734 } | |
735 | |
736 octave_value find_built_in_function (void) const | |
737 { | |
738 return rep->built_in_function; | |
739 } | |
740 | |
741 octave_value find_autoload (void) | |
742 { | |
743 return rep->find_autoload (); | |
744 } | |
745 | |
746 octave_value find_user_function (void) | |
747 { | |
748 return rep->find_user_function (); | |
749 } | |
750 | |
751 bool is_user_function_defined (void) const | |
752 { | |
753 return rep->is_user_function_defined (); | |
754 } | |
755 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
756 octave_value find_function (void) |
7336 | 757 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
758 return rep->find_function (); |
7336 | 759 } |
760 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
761 octave_value find_function (const octave_value_list& args) |
7336 | 762 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
763 return rep->find_function (args); |
7336 | 764 } |
765 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
766 void lock_subfunction (scope_id scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
767 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
768 rep->lock_subfunction (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
769 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
770 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
771 void unlock_subfunction (scope_id scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
772 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
773 rep->unlock_subfunction (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
774 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
775 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
776 std::pair<std::string, octave_value> |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
777 subfunction_defined_in_scope (scope_id scope = xcurrent_scope) const |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
778 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
779 return rep->subfunction_defined_in_scope (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
780 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
781 |
7336 | 782 void install_cmdline_function (const octave_value& f) |
783 { | |
784 rep->install_cmdline_function (f); | |
785 } | |
786 | |
787 void install_subfunction (const octave_value& f, scope_id scope) | |
788 { | |
789 rep->install_subfunction (f, scope); | |
790 } | |
791 | |
792 void install_user_function (const octave_value& f) | |
793 { | |
794 rep->install_user_function (f); | |
795 } | |
796 | |
797 void install_built_in_function (const octave_value& f) | |
798 { | |
799 rep->install_built_in_function (f); | |
800 } | |
801 | |
802 void clear (void) { rep->clear (); } | |
803 | |
804 void clear_user_function (void) { rep->clear_user_function (); } | |
805 | |
806 void clear_mex_function (void) { rep->clear_mex_function (); } | |
807 | |
808 void add_dispatch (const std::string& type, const std::string& fname) | |
809 { | |
810 rep->add_dispatch (type, fname); | |
811 } | |
812 | |
813 void clear_dispatch (const std::string& type) | |
814 { | |
815 rep->clear_dispatch (type); | |
816 } | |
817 | |
818 void print_dispatch (std::ostream& os) const | |
819 { | |
820 rep->print_dispatch (os); | |
821 } | |
822 | |
823 std::string help_for_dispatch (void) const { return rep->help_for_dispatch (); } | |
824 | |
825 dispatch_map_type get_dispatch (void) const | |
826 { | |
827 return rep->get_dispatch (); | |
4009 | 828 } |
3011 | 829 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
830 void |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
831 dump (std::ostream& os, const std::string& prefix = std::string ()) const |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
832 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
833 rep->dump (os, prefix); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
834 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
835 |
7336 | 836 private: |
837 | |
838 fcn_info_rep *rep; | |
839 }; | |
840 | |
841 static scope_id global_scope (void) { return xglobal_scope; } | |
842 static scope_id top_scope (void) { return xtop_scope; } | |
843 | |
844 static scope_id current_scope (void) { return xcurrent_scope; } | |
845 static scope_id current_caller_scope (void) { return xcurrent_caller_scope; } | |
846 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
847 static context_id current_context (void) { return xcurrent_context; } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
848 |
7336 | 849 // We use parent_scope to handle parsing subfunctions. |
850 static scope_id parent_scope (void) { return xparent_scope; } | |
851 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
852 static scope_id alloc_scope (void) { return scope_id_cache::alloc (); } |
7336 | 853 |
854 static void set_scope (scope_id scope) | |
855 { | |
856 if (scope == xglobal_scope) | |
857 error ("can't set scope to global"); | |
858 else if (scope != xcurrent_scope) | |
859 { | |
860 all_instances_iterator p = all_instances.find (scope); | |
861 | |
862 if (p == all_instances.end ()) | |
863 { | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
864 symbol_table *inst = new symbol_table (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
865 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
866 if (inst) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
867 all_instances[scope] = instance = inst; |
7336 | 868 } |
869 else | |
870 instance = p->second; | |
871 | |
872 xcurrent_scope = scope; | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
873 xcurrent_context = instance->xcurrent_context_this_table; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
874 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
875 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
876 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
877 static void set_scope_and_context (scope_id scope, context_id context) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
878 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
879 if (scope == xglobal_scope) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
880 error ("can't set scope to global"); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
881 else |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
882 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
883 if (scope != xcurrent_scope) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
884 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
885 all_instances_iterator p = all_instances.find (scope); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
886 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
887 if (p == all_instances.end ()) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
888 error ("scope not found!"); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
889 else |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
890 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
891 instance = p->second; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
892 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
893 xcurrent_scope = scope; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
894 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
895 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
896 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
897 if (! error_state) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
898 xcurrent_context = context; |
7336 | 899 } |
900 } | |
901 | |
902 static void push_scope (scope_id scope) | |
903 { | |
904 if (scope_stack.empty ()) | |
905 scope_stack.push_front (xtop_scope); | |
906 | |
907 xcurrent_caller_scope = xcurrent_scope; | |
908 | |
909 set_scope (scope); | |
910 | |
911 scope_stack.push_front (scope); | |
912 } | |
913 | |
914 static void pop_scope (void) | |
915 { | |
916 scope_stack.pop_front (); | |
8 | 917 |
7336 | 918 set_scope (scope_stack[0]); |
919 | |
7346 | 920 xcurrent_caller_scope = scope_stack.size () > 1 ? scope_stack[1] : -1; |
7336 | 921 } |
922 | |
923 static void pop_scope (void *) { pop_scope (); } | |
924 | |
925 static void reset_scope (void) | |
926 { | |
927 scope_stack.clear (); | |
928 | |
929 scope_stack.push_front (xtop_scope); | |
572 | 930 |
7336 | 931 set_scope (xtop_scope); |
932 | |
933 xcurrent_caller_scope = -1; | |
934 } | |
935 | |
936 static void set_parent_scope (scope_id scope) | |
937 { | |
938 xparent_scope = scope; | |
939 } | |
940 | |
941 static void reset_parent_scope (void) | |
942 { | |
943 set_parent_scope (-1); | |
944 } | |
4009 | 945 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
946 static void erase_scope (scope_id scope) |
7336 | 947 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
948 assert (scope != xglobal_scope); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
949 |
7336 | 950 all_instances_iterator p = all_instances.find (scope); |
951 | |
952 if (p != all_instances.end ()) | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
953 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
954 delete p->second; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
955 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
956 all_instances.erase (p); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
957 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
958 free_scope (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
959 } |
7336 | 960 } |
961 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
962 static scope_id dup_scope (scope_id scope) |
7336 | 963 { |
964 scope_id retval = -1; | |
965 | |
966 symbol_table *inst = get_instance (scope); | |
967 | |
968 if (inst) | |
969 { | |
970 scope_id new_scope = alloc_scope (); | |
971 | |
972 symbol_table *new_symbol_table = new symbol_table (); | |
973 | |
974 if (new_symbol_table) | |
975 { | |
976 all_instances[new_scope] = new_symbol_table; | |
977 | |
978 inst->do_dup_scope (*new_symbol_table); | |
979 | |
980 retval = new_scope; | |
981 } | |
982 } | |
983 | |
984 return retval; | |
985 } | |
986 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
987 static std::list<scope_id> scopes (void) |
7336 | 988 { |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
989 return scope_id_cache::scopes (); |
7336 | 990 } |
991 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
992 static symbol_record |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
993 find_symbol (const std::string& name, scope_id scope = xcurrent_scope) |
7336 | 994 { |
995 symbol_table *inst = get_instance (scope); | |
996 | |
997 return inst ? inst->do_find_symbol (name) : symbol_record (); | |
998 } | |
4009 | 999 |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1000 static void |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1001 inherit (scope_id scope, scope_id donor_scope, context_id donor_context) |
7336 | 1002 { |
1003 symbol_table *inst = get_instance (scope); | |
1004 | |
1005 if (inst) | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1006 inst->do_inherit (donor_scope, donor_context); |
7336 | 1007 } |
1008 | |
1009 static bool at_top_level (void) { return xcurrent_scope == xtop_scope; } | |
1010 | |
1011 // Find a value corresponding to the given name in the table. | |
1012 static octave_value | |
1013 find (const std::string& name, tree_argument_list *args, | |
1014 const string_vector& arg_names, | |
1015 octave_value_list& evaluated_args, bool& args_evaluated, | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1016 bool skip_variables = false); |
7336 | 1017 |
1018 // Insert a new name in the table. | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1019 static symbol_record& insert (const std::string& name) |
7336 | 1020 { |
1021 static symbol_record foobar; | |
1022 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1023 symbol_table *inst = get_instance (xcurrent_scope); |
4009 | 1024 |
7336 | 1025 return inst ? inst->do_insert (name) : foobar; |
1026 } | |
1027 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1028 static octave_value& varref (const std::string& name, |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1029 scope_id scope = xcurrent_scope, |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1030 context_id context = xcurrent_context) |
7336 | 1031 { |
1032 static octave_value foobar; | |
1033 | |
1034 symbol_table *inst = get_instance (scope); | |
1035 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1036 return inst ? inst->do_varref (name, context) : foobar; |
7336 | 1037 } |
1038 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1039 static octave_value varval (const std::string& name, |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1040 scope_id scope = xcurrent_scope, |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1041 context_id context = xcurrent_context) |
7336 | 1042 { |
1043 symbol_table *inst = get_instance (scope); | |
1044 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1045 return inst ? inst->do_varval (name, context) : octave_value (); |
7336 | 1046 } |
1047 | |
1048 static octave_value& | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1049 global_varref (const std::string& name) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1050 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1051 global_table_iterator p = global_table.find (name); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1052 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1053 return (p == global_table.end ()) ? global_table[name] : p->second; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1054 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1055 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1056 static octave_value |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1057 global_varval (const std::string& name) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1058 { |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1059 global_table_const_iterator p = global_table.find (name); |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1060 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1061 return (p != global_table.end ()) ? p->second : octave_value (); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1062 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1063 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1064 static octave_value& persistent_varref (const std::string& name) |
7336 | 1065 { |
1066 static octave_value foobar; | |
1067 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1068 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1069 |
1070 return inst ? inst->do_persistent_varref (name) : foobar; | |
1071 } | |
1072 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1073 static octave_value persistent_varval (const std::string& name) |
7336 | 1074 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1075 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1076 |
1077 return inst ? inst->do_persistent_varval (name) : octave_value (); | |
1078 } | |
1079 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1080 static void erase_persistent (const std::string& name) |
7336 | 1081 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1082 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1083 |
1084 if (inst) | |
1085 inst->do_erase_persistent (name); | |
1086 } | |
8 | 1087 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1088 static bool is_variable (const std::string& name) |
7336 | 1089 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1090 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1091 |
1092 return inst ? inst->do_is_variable (name) : false; | |
1093 } | |
1094 | |
1095 static bool | |
1096 is_built_in_function_name (const std::string& name) | |
1097 { | |
1098 octave_value val = find_built_in_function (name); | |
1099 | |
1100 return val.is_defined (); | |
1101 } | |
1102 | |
1103 static octave_value | |
1104 find_method (const std::string& name, const std::string& dispatch_type) | |
1105 { | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1106 fcn_table_const_iterator p = fcn_table.find (name); |
8 | 1107 |
7336 | 1108 if (p != fcn_table.end ()) |
1109 return p->second.find_method (dispatch_type); | |
1110 else | |
1111 { | |
1112 fcn_info finfo (name); | |
1113 | |
1114 octave_value fcn = finfo.find_method (dispatch_type); | |
1115 | |
1116 if (fcn.is_defined ()) | |
1117 fcn_table[name] = finfo; | |
1118 | |
1119 return fcn; | |
1120 } | |
1121 } | |
1122 | |
1123 static octave_value | |
1124 find_built_in_function (const std::string& name) | |
1125 { | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1126 fcn_table_const_iterator p = fcn_table.find (name); |
7336 | 1127 |
1128 return (p != fcn_table.end ()) | |
1129 ? p->second.find_built_in_function () : octave_value (); | |
1130 } | |
1131 | |
1132 static octave_value | |
1133 find_autoload (const std::string& name) | |
1134 { | |
1135 fcn_table_iterator p = fcn_table.find (name); | |
4913 | 1136 |
7336 | 1137 return (p != fcn_table.end ()) |
1138 ? p->second.find_autoload () : octave_value (); | |
1139 } | |
1140 | |
1141 static octave_value | |
1142 find_function (const std::string& name, tree_argument_list *args, | |
1143 const string_vector& arg_names, | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1144 octave_value_list& evaluated_args, bool& args_evaluated); |
7336 | 1145 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1146 static octave_value find_user_function (const std::string& name) |
7336 | 1147 { |
1148 fcn_table_iterator p = fcn_table.find (name); | |
1149 | |
1150 return (p != fcn_table.end ()) | |
1151 ? p->second.find_user_function () : octave_value (); | |
1152 } | |
1153 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1154 static octave_value find_function (const std::string& name) |
7336 | 1155 { |
1156 octave_value_list evaluated_args; | |
1157 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1158 return find_function (name, evaluated_args); |
7336 | 1159 } |
1160 | |
1161 static octave_value | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1162 find_function (const std::string& name, const octave_value_list& args) |
7336 | 1163 { |
1164 string_vector arg_names; | |
1165 octave_value_list evaluated_args = args; | |
1166 bool args_evaluated = ! args.empty (); | |
1167 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1168 return find_function (name, 0, arg_names, evaluated_args, args_evaluated); |
7336 | 1169 } |
1170 | |
1171 static void install_cmdline_function (const std::string& name, | |
1172 const octave_value& fcn) | |
1173 { | |
1174 fcn_table_iterator p = fcn_table.find (name); | |
1175 | |
1176 if (p != fcn_table.end ()) | |
1177 { | |
1178 fcn_info& finfo = p->second; | |
3013 | 1179 |
7336 | 1180 finfo.install_cmdline_function (fcn); |
1181 } | |
1182 else | |
1183 { | |
1184 fcn_info finfo (name); | |
195 | 1185 |
7336 | 1186 finfo.install_cmdline_function (fcn); |
1187 | |
1188 fcn_table[name] = finfo; | |
1189 } | |
1190 } | |
1191 | |
1192 static void install_subfunction (const std::string& name, | |
1193 const octave_value& fcn, | |
1194 scope_id scope = xparent_scope) | |
1195 { | |
1196 fcn_table_iterator p = fcn_table.find (name); | |
1197 | |
1198 if (p != fcn_table.end ()) | |
1199 { | |
1200 fcn_info& finfo = p->second; | |
1201 | |
1202 finfo.install_subfunction (fcn, scope); | |
1203 } | |
1204 else | |
1205 { | |
1206 fcn_info finfo (name); | |
1207 | |
1208 finfo.install_subfunction (fcn, scope); | |
1209 | |
1210 fcn_table[name] = finfo; | |
1211 } | |
1212 } | |
1213 | |
1214 static void install_user_function (const std::string& name, | |
1215 const octave_value& fcn) | |
1216 { | |
1217 fcn_table_iterator p = fcn_table.find (name); | |
1218 | |
1219 if (p != fcn_table.end ()) | |
1220 { | |
1221 fcn_info& finfo = p->second; | |
1222 | |
1223 finfo.install_user_function (fcn); | |
1224 } | |
1225 else | |
1226 { | |
1227 fcn_info finfo (name); | |
1228 | |
1229 finfo.install_user_function (fcn); | |
1230 | |
1231 fcn_table[name] = finfo; | |
1232 } | |
1233 } | |
605 | 1234 |
7336 | 1235 static void install_built_in_function (const std::string& name, |
1236 const octave_value& fcn) | |
1237 { | |
1238 fcn_table_iterator p = fcn_table.find (name); | |
1239 | |
1240 if (p != fcn_table.end ()) | |
1241 { | |
1242 fcn_info& finfo = p->second; | |
1243 | |
1244 finfo.install_built_in_function (fcn); | |
1245 } | |
1246 else | |
1247 { | |
1248 fcn_info finfo (name); | |
1249 | |
1250 finfo.install_built_in_function (fcn); | |
1251 | |
1252 fcn_table[name] = finfo; | |
1253 } | |
1254 } | |
1255 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1256 static void clear (const std::string& name) |
7336 | 1257 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1258 clear_variable (name); |
7336 | 1259 } |
1260 | |
1261 static void clear_all (void) | |
1262 { | |
1263 clear_variables (); | |
1264 | |
1265 clear_functions (); | |
1266 } | |
1267 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1268 static void clear_variables (void) |
7336 | 1269 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1270 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1271 |
1272 if (inst) | |
1273 inst->do_clear_variables (); | |
1274 } | |
1275 | |
1276 // For unwind_protect. | |
1277 static void clear_variables (void *) { clear_variables (); } | |
1278 | |
1279 static void clear_functions (void) | |
1280 { | |
1281 for (fcn_table_iterator p = fcn_table.begin (); p != fcn_table.end (); p++) | |
1282 p->second.clear (); | |
1283 } | |
1284 | |
1285 static void clear_function (const std::string& name) | |
1286 { | |
1287 clear_user_function (name); | |
1288 } | |
1289 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1290 static void clear_global (const std::string& name) |
7336 | 1291 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1292 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1293 |
1294 if (inst) | |
1295 inst->do_clear_global (name); | |
1296 } | |
1297 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1298 static void clear_variable (const std::string& name) |
7336 | 1299 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1300 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1301 |
1302 if (inst) | |
1303 inst->do_clear_variable (name); | |
1304 } | |
1305 | |
1306 static void clear_symbol (const std::string& name) | |
1307 { | |
1308 // FIXME -- are we supposed to do both here? | |
1309 | |
1310 clear_variable (name); | |
1311 clear_function (name); | |
1312 } | |
1313 | |
1314 static void clear_function_pattern (const std::string& pat) | |
1315 { | |
1316 glob_match pattern (pat); | |
1317 | |
1318 for (fcn_table_iterator p = fcn_table.begin (); p != fcn_table.end (); p++) | |
1319 { | |
1320 if (pattern.match (p->first)) | |
1321 p->second.clear_user_function (); | |
1322 } | |
1323 } | |
1324 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1325 static void clear_global_pattern (const std::string& pat) |
7336 | 1326 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1327 symbol_table *inst = get_instance (xcurrent_scope); |
4009 | 1328 |
7336 | 1329 if (inst) |
1330 inst->do_clear_global_pattern (pat); | |
1331 } | |
1332 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1333 static void clear_variable_pattern (const std::string& pat) |
7336 | 1334 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1335 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1336 |
1337 if (inst) | |
1338 inst->do_clear_variable_pattern (pat); | |
1339 } | |
1340 | |
7779
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1341 static void clear_variable_regexp (const std::string& pat) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1342 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1343 symbol_table *inst = get_instance (xcurrent_scope); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1344 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1345 if (inst) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1346 inst->do_clear_variable_regexp (pat); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1347 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1348 |
7336 | 1349 static void clear_symbol_pattern (const std::string& pat) |
1350 { | |
1351 // FIXME -- are we supposed to do both here? | |
1352 | |
1353 clear_variable_pattern (pat); | |
1354 clear_function_pattern (pat); | |
1355 } | |
1356 | |
1357 static void clear_user_function (const std::string& name) | |
1358 { | |
1359 fcn_table_iterator p = fcn_table.find (name); | |
1360 | |
1361 if (p != fcn_table.end ()) | |
1362 { | |
1363 fcn_info& finfo = p->second; | |
1364 | |
1365 finfo.clear_user_function (); | |
1366 } | |
1367 // FIXME -- is this necessary, or even useful? | |
1368 // else | |
1369 // error ("clear: no such function `%s'", name.c_str ()); | |
1370 } | |
1371 | |
1372 static void clear_mex_functions (void) | |
1373 { | |
1374 for (fcn_table_iterator p = fcn_table.begin (); p != fcn_table.end (); p++) | |
1375 { | |
1376 fcn_info& finfo = p->second; | |
1377 | |
1378 finfo.clear_mex_function (); | |
1379 } | |
1380 } | |
1381 | |
1382 static void alias_built_in_function (const std::string& alias, | |
1383 const std::string& name) | |
1384 { | |
1385 octave_value fcn = find_built_in_function (name); | |
1386 | |
1387 if (fcn.is_defined ()) | |
1388 { | |
1389 fcn_info finfo (alias); | |
1390 | |
1391 finfo.install_built_in_function (fcn); | |
1392 | |
1393 fcn_table[alias] = finfo; | |
1394 } | |
1395 else | |
1396 panic ("alias: `%s' is undefined", name.c_str ()); | |
1397 } | |
1398 | |
1399 static void add_dispatch (const std::string& name, const std::string& type, | |
1400 const std::string& fname) | |
1401 { | |
1402 fcn_table_iterator p = fcn_table.find (name); | |
1403 | |
1404 if (p != fcn_table.end ()) | |
1405 { | |
1406 fcn_info& finfo = p->second; | |
1407 | |
1408 finfo.add_dispatch (type, fname); | |
1409 } | |
1410 else | |
1411 { | |
1412 fcn_info finfo (name); | |
1413 | |
1414 finfo.add_dispatch (type, fname); | |
1415 | |
1416 fcn_table[name] = finfo; | |
1417 } | |
1418 } | |
1419 | |
1420 static void clear_dispatch (const std::string& name, const std::string& type) | |
1421 { | |
1422 fcn_table_iterator p = fcn_table.find (name); | |
1423 | |
1424 if (p != fcn_table.end ()) | |
1425 { | |
1426 fcn_info& finfo = p->second; | |
1427 | |
1428 finfo.clear_dispatch (type); | |
1429 } | |
1430 } | |
1431 | |
1432 static void print_dispatch (std::ostream& os, const std::string& name) | |
1433 { | |
1434 fcn_table_iterator p = fcn_table.find (name); | |
4009 | 1435 |
7336 | 1436 if (p != fcn_table.end ()) |
1437 { | |
1438 fcn_info& finfo = p->second; | |
1439 | |
1440 finfo.print_dispatch (os); | |
1441 } | |
1442 } | |
1443 | |
1444 static fcn_info::dispatch_map_type get_dispatch (const std::string& name) | |
1445 { | |
1446 fcn_info::dispatch_map_type retval; | |
1447 | |
1448 fcn_table_iterator p = fcn_table.find (name); | |
1449 | |
1450 if (p != fcn_table.end ()) | |
1451 { | |
1452 fcn_info& finfo = p->second; | |
1453 | |
1454 retval = finfo.get_dispatch (); | |
1455 } | |
1456 | |
1457 return retval; | |
1458 } | |
1459 | |
1460 static std::string help_for_dispatch (const std::string& name) | |
1461 { | |
1462 std::string retval; | |
1463 | |
1464 fcn_table_iterator p = fcn_table.find (name); | |
1465 | |
1466 if (p != fcn_table.end ()) | |
1467 { | |
1468 fcn_info& finfo = p->second; | |
1469 | |
1470 retval = finfo.help_for_dispatch (); | |
1471 } | |
1472 | |
1473 return retval; | |
1474 } | |
1475 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1476 static void push_context (void) |
7336 | 1477 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1478 if (xcurrent_scope == xglobal_scope || xcurrent_scope == xtop_scope) |
7336 | 1479 error ("invalid call to xymtab::push_context"); |
1480 else | |
1481 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1482 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1483 |
1484 if (inst) | |
1485 inst->do_push_context (); | |
1486 } | |
1487 } | |
1488 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1489 static void pop_context (void) |
7336 | 1490 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1491 if (xcurrent_scope == xglobal_scope || xcurrent_scope == xtop_scope) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1492 error ("invalid call to xymtab::pop_context"); |
7336 | 1493 else |
1494 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1495 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1496 |
1497 if (inst) | |
1498 inst->do_pop_context (); | |
1499 } | |
1500 } | |
1501 | |
1502 // For unwind_protect. | |
1503 static void pop_context (void *) { pop_context (); } | |
1504 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1505 static void mark_hidden (const std::string& name) |
7336 | 1506 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1507 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1508 |
1509 if (inst) | |
1510 inst->do_mark_hidden (name); | |
1511 } | |
1512 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1513 static void mark_global (const std::string& name) |
7336 | 1514 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1515 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1516 |
1517 if (inst) | |
1518 inst->do_mark_global (name); | |
1519 } | |
1520 | |
1521 static std::list<symbol_record> | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1522 all_variables (scope_id scope = xcurrent_scope, |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1523 context_id context = xcurrent_context, |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1524 bool defined_only = true) |
7336 | 1525 { |
1526 symbol_table *inst = get_instance (scope); | |
1527 | |
1528 return inst | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1529 ? inst->do_all_variables (context, defined_only) : std::list<symbol_record> (); |
7336 | 1530 } |
3011 | 1531 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1532 static std::list<symbol_record> glob (const std::string& pattern) |
7336 | 1533 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1534 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1535 |
1536 return inst ? inst->do_glob (pattern) : std::list<symbol_record> (); | |
1537 } | |
1538 | |
7779
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1539 static std::list<symbol_record> regexp (const std::string& pattern) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1540 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1541 symbol_table *inst = get_instance (xcurrent_scope); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1542 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1543 return inst ? inst->do_regexp (pattern) : std::list<symbol_record> (); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1544 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1545 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1546 static std::list<symbol_record> glob_variables (const std::string& pattern) |
7336 | 1547 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1548 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1549 |
1550 return inst ? inst->do_glob (pattern, true) : std::list<symbol_record> (); | |
1551 } | |
1552 | |
7779
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1553 static std::list<symbol_record> regexp_variables (const std::string& pattern) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1554 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1555 symbol_table *inst = get_instance (xcurrent_scope); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1556 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1557 return inst ? inst->do_regexp (pattern, true) : std::list<symbol_record> (); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1558 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1559 |
7336 | 1560 static std::list<symbol_record> |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1561 glob_global_variables (const std::string& pattern) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1562 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1563 std::list<symbol_record> retval; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1564 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1565 glob_match pat (pattern); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1566 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1567 for (global_table_const_iterator p = global_table.begin (); |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1568 p != global_table.end (); p++) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1569 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1570 // We generate a list of symbol_record objects so that |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1571 // the results from glob_variables and glob_global_variables |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1572 // may be handled the same way. |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1573 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1574 if (pat.match (p->first)) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1575 retval.push_back (symbol_record (p->first, p->second, |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1576 symbol_record::global)); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1577 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1578 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1579 return retval; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1580 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1581 |
7779
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1582 static std::list<symbol_record> |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1583 regexp_global_variables (const std::string& pattern) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1584 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1585 std::list<symbol_record> retval; |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1586 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1587 regex_match pat (pattern); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1588 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1589 for (global_table_const_iterator p = global_table.begin (); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1590 p != global_table.end (); p++) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1591 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1592 // We generate a list of symbol_record objects so that |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1593 // the results from regexp_variables and regexp_global_variables |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1594 // may be handled the same way. |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1595 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1596 if (pat.match (p->first)) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1597 retval.push_back (symbol_record (p->first, p->second, |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1598 symbol_record::global)); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1599 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1600 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1601 return retval; |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1602 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1603 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1604 static std::list<symbol_record> glob_variables (const string_vector& patterns) |
7336 | 1605 { |
1606 std::list<symbol_record> retval; | |
1607 | |
1608 size_t len = patterns.length (); | |
8 | 1609 |
7336 | 1610 for (size_t i = 0; i < len; i++) |
1611 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1612 std::list<symbol_record> tmp = glob_variables (patterns[i]); |
7336 | 1613 |
1614 retval.insert (retval.begin (), tmp.begin (), tmp.end ()); | |
1615 } | |
1616 | |
1617 return retval; | |
1618 } | |
1619 | |
7779
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1620 static std::list<symbol_record> regexp_variables |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1621 (const string_vector& patterns) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1622 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1623 std::list<symbol_record> retval; |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1624 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1625 size_t len = patterns.length (); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1626 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1627 for (size_t i = 0; i < len; i++) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1628 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1629 std::list<symbol_record> tmp = regexp_variables (patterns[i]); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1630 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1631 retval.insert (retval.begin (), tmp.begin (), tmp.end ()); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1632 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1633 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1634 return retval; |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1635 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
1636 |
7336 | 1637 static std::list<std::string> user_function_names (void) |
1638 { | |
1639 std::list<std::string> retval; | |
1640 | |
1641 for (fcn_table_iterator p = fcn_table.begin (); | |
1642 p != fcn_table.end (); p++) | |
1643 { | |
1644 if (p->second.is_user_function_defined ()) | |
1645 retval.push_back (p->first); | |
1646 } | |
1647 | |
1648 if (! retval.empty ()) | |
1649 retval.sort (); | |
1650 | |
1651 return retval; | |
1652 } | |
3011 | 1653 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1654 static std::list<std::string> global_variable_names (void) |
7336 | 1655 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1656 std::list<std::string> retval; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1657 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1658 for (global_table_const_iterator p = global_table.begin (); |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1659 p != global_table.end (); p++) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1660 retval.push_back (p->first); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1661 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1662 retval.sort (); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1663 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1664 return retval; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1665 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1666 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1667 static std::list<std::string> top_level_variable_names (void) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1668 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1669 symbol_table *inst = get_instance (xtop_scope); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1670 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1671 return inst ? inst->do_variable_names () : std::list<std::string> (); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1672 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1673 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1674 static std::list<std::string> variable_names (void) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1675 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1676 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1677 |
1678 return inst ? inst->do_variable_names () : std::list<std::string> (); | |
1679 } | |
1680 | |
1681 static std::list<std::string> built_in_function_names (void) | |
1682 { | |
1683 std::list<std::string> retval; | |
1684 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1685 for (fcn_table_const_iterator p = fcn_table.begin (); |
7336 | 1686 p != fcn_table.end (); p++) |
1687 { | |
1688 octave_value fcn = p->second.find_built_in_function (); | |
1689 | |
1690 if (fcn.is_defined ()) | |
1691 retval.push_back (p->first); | |
1692 } | |
1693 | |
1694 if (! retval.empty ()) | |
1695 retval.sort (); | |
220 | 1696 |
7336 | 1697 return retval; |
1698 } | |
1699 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1700 static bool is_local_variable (const std::string& name) |
7336 | 1701 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1702 if (xcurrent_scope == xglobal_scope) |
7336 | 1703 return false; |
1704 else | |
1705 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1706 symbol_table *inst = get_instance (xcurrent_scope); |
5861 | 1707 |
7336 | 1708 return inst ? inst->do_is_local_variable (name) : false; |
1709 } | |
1710 } | |
5861 | 1711 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1712 static bool is_global (const std::string& name) |
7336 | 1713 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1714 if (xcurrent_scope == xglobal_scope) |
7336 | 1715 return true; |
1716 else | |
1717 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1718 symbol_table *inst = get_instance (xcurrent_scope); |
7336 | 1719 |
1720 return inst ? inst->do_is_global (name) : false; | |
1721 } | |
1722 } | |
3011 | 1723 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1724 static void dump (std::ostream& os, scope_id scope = xcurrent_scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1725 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1726 static void dump_global (std::ostream& os); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1727 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1728 static void dump_functions (std::ostream& os); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1729 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1730 static void cache_name (scope_id scope, const std::string& name) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1731 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1732 symbol_table *inst = get_instance (scope, false); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1733 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1734 if (inst) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1735 inst->do_cache_name (name); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1736 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1737 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1738 static void lock_subfunctions (scope_id scope = xcurrent_scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1739 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1740 for (fcn_table_iterator p = fcn_table.begin (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1741 p != fcn_table.end (); p++) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1742 p->second.lock_subfunction (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1743 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1744 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1745 static void unlock_subfunctions (scope_id scope = xcurrent_scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1746 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1747 for (fcn_table_iterator p = fcn_table.begin (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1748 p != fcn_table.end (); p++) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1749 p->second.unlock_subfunction (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1750 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1751 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1752 static void free_scope (scope_id scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1753 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1754 if (scope == xglobal_scope || scope == xtop_scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1755 error ("can't free global or top-level scopes!"); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1756 else |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1757 symbol_table::scope_id_cache::free (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1758 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1759 |
8 | 1760 private: |
1761 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1762 typedef std::map<std::string, symbol_record>::const_iterator table_const_iterator; |
7336 | 1763 typedef std::map<std::string, symbol_record>::iterator table_iterator; |
1764 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1765 typedef std::map<std::string, octave_value>::const_iterator global_table_const_iterator; |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1766 typedef std::map<std::string, octave_value>::iterator global_table_iterator; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1767 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1768 typedef std::map<std::string, octave_value>::const_iterator persistent_table_const_iterator; |
7336 | 1769 typedef std::map<std::string, octave_value>::iterator persistent_table_iterator; |
1770 | |
1771 typedef std::map<scope_id, symbol_table*>::const_iterator all_instances_const_iterator; | |
1772 typedef std::map<scope_id, symbol_table*>::iterator all_instances_iterator; | |
1773 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1774 typedef std::map<std::string, fcn_info>::const_iterator fcn_table_const_iterator; |
7336 | 1775 typedef std::map<std::string, fcn_info>::iterator fcn_table_iterator; |
1776 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1777 // Name for this table (usually the file name of the function |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1778 // corresponding to the scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1779 std::string table_name; |
7336 | 1780 |
1781 // Map from symbol names to symbol info. | |
1782 std::map<std::string, symbol_record> table; | |
1783 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1784 // Map from names of global variables to values. |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1785 static std::map<std::string, octave_value> global_table; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1786 |
7336 | 1787 // Map from names of persistent variables to values. |
1788 std::map<std::string, octave_value> persistent_table; | |
1789 | |
1790 // Pointer to symbol table for current scope (variables only). | |
1791 static symbol_table *instance; | |
3011 | 1792 |
7336 | 1793 // Map from scope id to symbol table instances. |
1794 static std::map<scope_id, symbol_table*> all_instances; | |
1795 | |
1796 // Map from function names to function info (subfunctions, private | |
1797 // functions, class constructors, class methods, etc.) | |
1798 static std::map<std::string, fcn_info> fcn_table; | |
1799 | |
1800 static const scope_id xglobal_scope; | |
1801 static const scope_id xtop_scope; | |
1802 | |
1803 static scope_id xcurrent_scope; | |
1804 static scope_id xcurrent_caller_scope; | |
1805 | |
1806 // We use parent_scope to handle parsing subfunctions. | |
1807 static scope_id xparent_scope; | |
1808 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1809 // Used to handle recursive calls. |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1810 context_id xcurrent_context_this_table; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1811 static context_id xcurrent_context; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1812 |
7336 | 1813 static std::deque<scope_id> scope_stack; |
1814 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1815 symbol_table (void) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1816 : table_name (), table (), xcurrent_context_this_table () { } |
7336 | 1817 |
1818 ~symbol_table (void) { } | |
3011 | 1819 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1820 static symbol_table *get_instance (scope_id scope, bool create = true) |
7336 | 1821 { |
1822 symbol_table *retval = 0; | |
1823 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1824 bool ok = true; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1825 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1826 if (scope != xglobal_scope) |
7336 | 1827 { |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1828 if (scope == xcurrent_scope) |
7336 | 1829 { |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1830 if (! instance && create) |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1831 { |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1832 symbol_table *inst = new symbol_table (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1833 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1834 if (inst) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1835 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1836 all_instances[scope] = instance = inst; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1837 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1838 if (scope == xtop_scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1839 instance->do_cache_name ("top-level"); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1840 } |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1841 } |
7336 | 1842 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1843 if (! instance) |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1844 ok = false; |
7336 | 1845 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1846 retval = instance; |
7336 | 1847 } |
1848 else | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1849 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1850 all_instances_iterator p = all_instances.find (scope); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1851 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1852 if (p == all_instances.end ()) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1853 { |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1854 if (create) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1855 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1856 retval = new symbol_table (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1857 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1858 if (retval) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1859 all_instances[scope] = retval; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1860 else |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1861 ok = false; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1862 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1863 else |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1864 ok = false; |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1865 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1866 else |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1867 retval = p->second; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1868 } |
7336 | 1869 } |
1870 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1871 if (! ok) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1872 error ("unable to %s symbol_table object for scope %d!", |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1873 create ? "create" : "find", scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1874 |
7336 | 1875 return retval; |
1876 } | |
1877 | |
1878 void insert_symbol_record (const symbol_record& sr) | |
1879 { | |
1880 table[sr.name ()] = sr; | |
1881 } | |
4238 | 1882 |
4913 | 1883 void |
7336 | 1884 do_dup_scope (symbol_table& new_symbol_table) const |
1885 { | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1886 for (table_const_iterator p = table.begin (); p != table.end (); p++) |
7336 | 1887 new_symbol_table.insert_symbol_record (p->second.dup ()); |
1888 } | |
1889 | |
1890 symbol_record do_find_symbol (const std::string& name) | |
1891 { | |
1892 table_iterator p = table.find (name); | |
1893 | |
1894 if (p == table.end ()) | |
1895 return do_insert (name); | |
1896 else | |
1897 return p->second; | |
1898 } | |
1899 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1900 void do_inherit (scope_id donor_scope, context_id donor_context) |
7336 | 1901 { |
1902 for (table_iterator p = table.begin (); p != table.end (); p++) | |
1903 { | |
1904 symbol_record& sr = p->second; | |
1905 | |
1906 std::string nm = sr.name (); | |
1907 | |
1908 if (! (sr.is_automatic () || sr.is_formal () || nm == "__retval__")) | |
1909 { | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1910 octave_value val |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1911 = symbol_table::varval (nm, donor_scope, donor_context); |
7336 | 1912 |
1913 if (val.is_defined ()) | |
1914 { | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1915 // Currently, inherit is always called when creating a |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1916 // new table, so it only makes sense to copy values into |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1917 // the base context (== 0), but maybe the context |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1918 // should be passed in as a parameter instead? |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1919 |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1920 sr.varref (0) = val; |
7336 | 1921 |
1922 sr.mark_inherited (); | |
1923 } | |
1924 } | |
1925 } | |
1926 } | |
1927 | |
1928 octave_value | |
1929 do_find (const std::string& name, tree_argument_list *args, | |
1930 const string_vector& arg_names, | |
1931 octave_value_list& evaluated_args, bool& args_evaluated, | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
1932 bool skip_variables); |
7336 | 1933 |
1934 symbol_record& do_insert (const std::string& name) | |
1935 { | |
1936 table_iterator p = table.find (name); | |
1937 | |
1938 return p == table.end () | |
1939 ? (table[name] = symbol_record (name)) : p->second; | |
1940 } | |
1941 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1942 octave_value& do_varref (const std::string& name, context_id context) |
7336 | 1943 { |
1944 table_iterator p = table.find (name); | |
1945 | |
1946 if (p == table.end ()) | |
1947 { | |
1948 symbol_record& sr = do_insert (name); | |
1949 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1950 return sr.varref (context); |
7336 | 1951 } |
1952 else | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1953 return p->second.varref (context); |
7336 | 1954 } |
4913 | 1955 |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1956 octave_value do_varval (const std::string& name, context_id context) const |
7336 | 1957 { |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1958 table_const_iterator p = table.find (name); |
7336 | 1959 |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
1960 return (p != table.end ()) ? p->second.varval (context) : octave_value (); |
7336 | 1961 } |
1962 | |
1963 octave_value& do_persistent_varref (const std::string& name) | |
1964 { | |
1965 persistent_table_iterator p = persistent_table.find (name); | |
1966 | |
1967 return (p == persistent_table.end ()) | |
1968 ? persistent_table[name] : p->second; | |
1969 } | |
1970 | |
1971 octave_value do_persistent_varval (const std::string& name) | |
1972 { | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1973 persistent_table_const_iterator p = persistent_table.find (name); |
7336 | 1974 |
1975 return (p != persistent_table.end ()) ? p->second : octave_value (); | |
1976 } | |
1977 | |
1978 void do_erase_persistent (const std::string& name) | |
1979 { | |
1980 persistent_table_iterator p = persistent_table.find (name); | |
1981 | |
1982 if (p != persistent_table.end ()) | |
1983 persistent_table.erase (p); | |
1984 } | |
1985 | |
1986 bool do_is_variable (const std::string& name) const | |
1987 { | |
1988 bool retval = false; | |
1989 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
1990 table_const_iterator p = table.find (name); |
7336 | 1991 |
1992 if (p != table.end ()) | |
1993 { | |
1994 const symbol_record& sr = p->second; | |
1995 | |
1996 retval = sr.is_variable (); | |
1997 } | |
1998 | |
1999 return retval; | |
2000 } | |
2001 | |
2002 void do_push_context (void) | |
2003 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2004 xcurrent_context = ++xcurrent_context_this_table; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2005 |
7336 | 2006 for (table_iterator p = table.begin (); p != table.end (); p++) |
2007 p->second.push_context (); | |
2008 } | |
2009 | |
2010 void do_pop_context (void) | |
2011 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2012 xcurrent_context = --xcurrent_context_this_table; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2013 |
7374 | 2014 for (table_iterator p = table.begin (); p != table.end (); ) |
2015 { | |
2016 if (p->second.pop_context () == 0) | |
2017 table.erase (p++); | |
2018 else | |
2019 p++; | |
2020 } | |
7336 | 2021 } |
2022 | |
2023 void do_clear_variables (void) | |
2024 { | |
2025 for (table_iterator p = table.begin (); p != table.end (); p++) | |
2026 p->second.clear (); | |
2027 } | |
2028 | |
2029 void do_clear_global (const std::string& name) | |
2030 { | |
2031 table_iterator p = table.find (name); | |
4913 | 2032 |
7336 | 2033 if (p != table.end ()) |
2034 { | |
2035 symbol_record& sr = p->second; | |
2036 | |
2037 if (sr.is_global ()) | |
2038 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2039 global_table_iterator q = global_table.find (name); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2040 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2041 if (q != global_table.end ()) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2042 global_table.erase (q); |
7336 | 2043 |
2044 sr.unmark_global (); | |
2045 } | |
2046 } | |
2047 } | |
2048 | |
2049 void do_clear_variable (const std::string& name) | |
2050 { | |
2051 table_iterator p = table.find (name); | |
2052 | |
2053 if (p != table.end ()) | |
2054 p->second.clear (); | |
2055 } | |
2056 | |
2057 void do_clear_global_pattern (const std::string& pat) | |
2058 { | |
2059 glob_match pattern (pat); | |
2060 | |
2061 for (table_iterator p = table.begin (); p != table.end (); p++) | |
2062 { | |
2063 symbol_record& sr = p->second; | |
8 | 2064 |
7336 | 2065 if (sr.is_global ()) |
2066 { | |
2067 if (pattern.match (sr.name ())) | |
2068 { | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2069 global_table_iterator q = global_table.find (sr.name ()); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2070 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2071 if (q != global_table.end ()) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7489
diff
changeset
|
2072 global_table.erase (q); |
7336 | 2073 |
2074 sr.unmark_global (); | |
2075 } | |
2076 } | |
2077 } | |
2078 } | |
2079 | |
2080 void do_clear_variable_pattern (const std::string& pat) | |
2081 { | |
2082 glob_match pattern (pat); | |
2083 | |
2084 for (table_iterator p = table.begin (); p != table.end (); p++) | |
2085 { | |
2086 symbol_record& sr = p->second; | |
2087 | |
2088 if (sr.is_defined () || sr.is_global ()) | |
2089 { | |
2090 if (pattern.match (sr.name ())) | |
2091 sr.clear (); | |
2092 } | |
2093 } | |
2094 } | |
2095 | |
7779
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2096 void do_clear_variable_regexp (const std::string& pat) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2097 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2098 regex_match pattern (pat); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2099 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2100 for (table_iterator p = table.begin (); p != table.end (); p++) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2101 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2102 symbol_record& sr = p->second; |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2103 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2104 if (sr.is_defined () || sr.is_global ()) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2105 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2106 if (pattern.match (sr.name ())) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2107 sr.clear (); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2108 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2109 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2110 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2111 |
7336 | 2112 void do_mark_hidden (const std::string& name) |
2113 { | |
2114 table_iterator p = table.find (name); | |
2115 | |
2116 if (p != table.end ()) | |
2117 p->second.mark_hidden (); | |
2118 } | |
2119 | |
2120 void do_mark_global (const std::string& name) | |
2121 { | |
2122 table_iterator p = table.find (name); | |
8 | 2123 |
7336 | 2124 if (p != table.end ()) |
2125 p->second.mark_global (); | |
2126 } | |
2127 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
2128 std::list<symbol_record> |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
2129 do_all_variables (context_id context, bool defined_only) const |
7336 | 2130 { |
2131 std::list<symbol_record> retval; | |
2132 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2133 for (table_const_iterator p = table.begin (); p != table.end (); p++) |
7336 | 2134 { |
2135 const symbol_record& sr = p->second; | |
2136 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7761
diff
changeset
|
2137 if (defined_only && ! sr.is_defined (context)) |
7336 | 2138 continue; |
2139 | |
2140 retval.push_back (sr); | |
2141 } | |
2142 | |
2143 return retval; | |
2144 } | |
2145 | |
2146 std::list<symbol_record> do_glob (const std::string& pattern, | |
2147 bool vars_only = false) const | |
2148 { | |
2149 std::list<symbol_record> retval; | |
2150 | |
2151 glob_match pat (pattern); | |
2152 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2153 for (table_const_iterator p = table.begin (); p != table.end (); p++) |
7336 | 2154 { |
2155 if (pat.match (p->first)) | |
2156 { | |
2157 const symbol_record& sr = p->second; | |
1962 | 2158 |
7336 | 2159 if (vars_only && ! sr.is_variable ()) |
2160 continue; | |
2161 | |
2162 retval.push_back (sr); | |
2163 } | |
2164 } | |
2165 | |
2166 return retval; | |
2167 } | |
2168 | |
7779
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2169 std::list<symbol_record> do_regexp (const std::string& pattern, |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2170 bool vars_only = false) const |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2171 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2172 std::list<symbol_record> retval; |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2173 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2174 regex_match pat (pattern); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2175 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2176 for (table_const_iterator p = table.begin (); p != table.end (); p++) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2177 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2178 if (pat.match (p->first)) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2179 { |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2180 const symbol_record& sr = p->second; |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2181 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2182 if (vars_only && ! sr.is_variable ()) |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2183 continue; |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2184 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2185 retval.push_back (sr); |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2186 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2187 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2188 |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2189 return retval; |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2190 } |
791231dac333
Add regexp matching to Fwho and Fclear
David Bateman <dbateman@free.fr>
parents:
7767
diff
changeset
|
2191 |
7336 | 2192 std::list<std::string> do_variable_names (void) |
2193 { | |
2194 std::list<std::string> retval; | |
2195 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2196 for (table_const_iterator p = table.begin (); p != table.end (); p++) |
7336 | 2197 retval.push_back (p->first); |
2198 | |
2199 retval.sort (); | |
2200 | |
2201 return retval; | |
2202 } | |
2203 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2204 static std::map<std::string, octave_value> |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2205 subfunctions_defined_in_scope (scope_id scope = xcurrent_scope) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2206 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2207 std::map<std::string, octave_value> retval; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2208 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2209 for (fcn_table_const_iterator p = fcn_table.begin (); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2210 p != fcn_table.end (); p++) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2211 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2212 std::pair<std::string, octave_value> tmp |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2213 = p->second.subfunction_defined_in_scope (scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2214 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2215 std::string nm = tmp.first; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2216 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2217 if (! nm.empty ()) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2218 retval[nm] = tmp.second; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2219 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2220 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2221 return retval; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2222 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2223 |
7336 | 2224 bool do_is_local_variable (const std::string& name) const |
2225 { | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2226 table_const_iterator p = table.find (name); |
7336 | 2227 |
2228 return (p != table.end () | |
2229 && ! p->second.is_global () | |
2230 && p->second.is_defined ()); | |
2231 } | |
2232 | |
2233 bool do_is_global (const std::string& name) const | |
2234 { | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2235 table_const_iterator p = table.find (name); |
7336 | 2236 |
2237 return p != table.end () && p->second.is_global (); | |
2238 } | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2239 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2240 void do_dump (std::ostream& os); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2241 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7753
diff
changeset
|
2242 void do_cache_name (const std::string& name) { table_name = name; } |
3011 | 2243 }; |
2790 | 2244 |
7336 | 2245 extern bool out_of_date_check (octave_value& function); |
4913 | 2246 |
8 | 2247 #endif |
2248 | |
2249 /* | |
2250 ;;; Local Variables: *** | |
2251 ;;; mode: C++ *** | |
2252 ;;; End: *** | |
2253 */ |