Mercurial > hg > octave-nkf
annotate src/ov-class.h @ 10313:f3b65e1ae355
untabify src header files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 11 Feb 2010 12:16:43 -0500 |
parents | cd96d29c5efa |
children | 4d1fc073fbb7 |
rev | line source |
---|---|
7338 | 1 /* |
2 | |
8920 | 3 Copyright (C) 2007, 2008, 2009 John W. Eaton |
7338 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7444 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
7338 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7444 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
7338 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_class_h) | |
24 #define octave_class_h 1 | |
25 | |
26 #include <cstdlib> | |
27 | |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
28 #include <iosfwd> |
7338 | 29 #include <string> |
30 | |
31 #include "mx-base.h" | |
32 #include "str-vec.h" | |
33 | |
34 #include "error.h" | |
35 #include "oct-alloc.h" | |
36 #include "oct-map.h" | |
37 #include "ov-base.h" | |
38 #include "ov-typeinfo.h" | |
39 | |
40 class octave_value_list; | |
41 | |
42 class tree_walker; | |
43 | |
44 // Data structures. | |
45 | |
46 class | |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
47 octave_class : public octave_base_value |
7338 | 48 { |
49 public: | |
50 | |
51 octave_class (void) | |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
52 : octave_base_value (), obsolete_copies (0) { } |
7338 | 53 |
54 octave_class (const Octave_map& m, const std::string& id) | |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
55 : octave_base_value (), map (m), c_name (id), obsolete_copies (0) { } |
7338 | 56 |
57 octave_class (const octave_class& s) | |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
58 : octave_base_value (s), map (s.map), c_name (s.c_name), |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
59 parent_list (s.parent_list), obsolete_copies (0) { } |
9010
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
60 |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
61 octave_class (const Octave_map& m, const std::string& id, |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
62 const octave_value_list& parents); |
7338 | 63 |
64 ~octave_class (void) { } | |
65 | |
66 octave_base_value *clone (void) const { return new octave_class (*this); } | |
8785
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
8212
diff
changeset
|
67 |
9522
e79470be3ecb
implement subsasgn this-arg optimization
Jaroslav Hajek <highegg@gmail.com>
parents:
9521
diff
changeset
|
68 octave_base_value *unique_clone (void); |
e79470be3ecb
implement subsasgn this-arg optimization
Jaroslav Hajek <highegg@gmail.com>
parents:
9521
diff
changeset
|
69 |
8785
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
8212
diff
changeset
|
70 octave_base_value *empty_clone (void) const |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
8212
diff
changeset
|
71 { |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
8212
diff
changeset
|
72 return new octave_class (Octave_map (map.keys ()), class_name ()); |
70f5a0375afd
oct-map.h: fix think-o in previous change
John W. Eaton <jwe@octave.org>
parents:
8212
diff
changeset
|
73 } |
7338 | 74 |
75 Cell dotref (const octave_value_list& idx); | |
76 | |
9329
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9240
diff
changeset
|
77 Matrix size (void); |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9240
diff
changeset
|
78 |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9240
diff
changeset
|
79 octave_idx_type numel (const octave_value_list&); |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9240
diff
changeset
|
80 |
7651
443a8f5a50fd
require both subsref variants to be defined in octave_value subclasses
John W. Eaton <jwe@octave.org>
parents:
7444
diff
changeset
|
81 octave_value subsref (const std::string& type, |
10313 | 82 const std::list<octave_value_list>& idx) |
7338 | 83 { |
7651
443a8f5a50fd
require both subsref variants to be defined in octave_value subclasses
John W. Eaton <jwe@octave.org>
parents:
7444
diff
changeset
|
84 octave_value_list tmp = subsref (type, idx, 1); |
443a8f5a50fd
require both subsref variants to be defined in octave_value subclasses
John W. Eaton <jwe@octave.org>
parents:
7444
diff
changeset
|
85 return tmp.length () > 0 ? tmp(0) : octave_value (); |
7338 | 86 } |
87 | |
88 octave_value_list subsref (const std::string& type, | |
10313 | 89 const std::list<octave_value_list>& idx, |
90 int nargout); | |
7338 | 91 |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
92 static octave_value numeric_conv (const Cell& val, |
10313 | 93 const std::string& type); |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
94 |
9147
5579998f8acf
Update to OOP facilities.
rtshort@bristlecone.phaselocked.com
parents:
9010
diff
changeset
|
95 void assign(const std::string& k, const octave_value& rhs) |
5579998f8acf
Update to OOP facilities.
rtshort@bristlecone.phaselocked.com
parents:
9010
diff
changeset
|
96 { map.assign (k, rhs); }; |
5579998f8acf
Update to OOP facilities.
rtshort@bristlecone.phaselocked.com
parents:
9010
diff
changeset
|
97 |
7338 | 98 octave_value subsasgn (const std::string& type, |
10313 | 99 const std::list<octave_value_list>& idx, |
100 const octave_value& rhs); | |
7338 | 101 |
8154
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
7651
diff
changeset
|
102 idx_vector index_vector (void) const; |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
7651
diff
changeset
|
103 |
7338 | 104 dim_vector dims (void) const { return map.dims (); } |
105 | |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
106 size_t byte_size (void) const; |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
107 |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
108 // This is the number of elements in each field. The total number |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
109 // of elements is numel () * nfields (). |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
110 octave_idx_type numel (void) const |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
111 { |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
112 dim_vector dv = dims (); |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
113 return dv.numel (); |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
114 } |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
115 |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
116 octave_idx_type nfields (void) const { return map.nfields (); } |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
117 |
9151 | 118 size_t nparents (void) const { return parent_list.size (); } |
119 | |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
120 octave_value reshape (const dim_vector& new_dims) const |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
121 { return map.reshape (new_dims); } |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
122 |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
123 octave_value resize (const dim_vector& dv, bool = false) const |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
124 { Octave_map tmap = map; tmap.resize (dv); return tmap; } |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
125 |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
126 bool is_defined (void) const { return true; } |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
127 |
7338 | 128 bool is_map (void) const { return false; } |
129 | |
130 bool is_object (void) const { return true; } | |
131 | |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
132 Octave_map map_value (void) const { return map; } |
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
133 |
7338 | 134 string_vector map_keys (void) const; |
135 | |
9151 | 136 std::list<std::string> parent_class_name_list (void) const |
137 { return parent_list; } | |
138 | |
9010
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
139 string_vector parent_class_names (void) const |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
140 { return string_vector (parent_list); } |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
141 |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
142 octave_base_value *find_parent_class (const std::string&); |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
143 |
9767
0df32e0b2074
fix base class field assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
9581
diff
changeset
|
144 octave_base_value *unique_parent_class (const std::string&); |
0df32e0b2074
fix base class field assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
9581
diff
changeset
|
145 |
7338 | 146 void print (std::ostream& os, bool pr_as_read_syntax = false) const; |
147 | |
148 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; | |
149 | |
150 bool print_name_tag (std::ostream& os, const std::string& name) const; | |
151 | |
152 void print_with_name (std::ostream& os, const std::string& name, | |
10313 | 153 bool print_padding = true); |
7338 | 154 |
9190 | 155 bool reconstruct_exemplar (void); |
156 | |
9240
f27a8c07f0b2
clear -classes and support.
Robert T. Short <octave@phaselockedsystems.com>
parents:
9190
diff
changeset
|
157 static void clear_exemplar_map (void); |
f27a8c07f0b2
clear -classes and support.
Robert T. Short <octave@phaselockedsystems.com>
parents:
9190
diff
changeset
|
158 |
9182
23af5910e5f5
make load work for derived classses
Robert T. Short <octave@phaselockedsystems.com>
parents:
9151
diff
changeset
|
159 bool reconstruct_parents (void); |
23af5910e5f5
make load work for derived classses
Robert T. Short <octave@phaselockedsystems.com>
parents:
9151
diff
changeset
|
160 |
8212
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8154
diff
changeset
|
161 bool save_ascii (std::ostream& os); |
7338 | 162 |
163 bool load_ascii (std::istream& is); | |
164 | |
165 bool save_binary (std::ostream& os, bool& save_as_floats); | |
166 | |
167 bool load_binary (std::istream& is, bool swap, | |
10313 | 168 oct_mach_info::float_format fmt); |
7338 | 169 |
170 #if defined (HAVE_HDF5) | |
171 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); | |
172 | |
9881
b3089dba88bf
Remove HDF5 cruft for older versions of HDF5
Kacper Kowalik
parents:
9767
diff
changeset
|
173 bool load_hdf5 (hid_t loc_id, const char *name); |
7338 | 174 #endif |
175 | |
176 mxArray *as_mxArray (void) const; | |
177 | |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
178 private: |
7338 | 179 |
9529
8e5009334661
partially revert e79470be3ecb
Jaroslav Hajek <highegg@gmail.com>
parents:
9522
diff
changeset
|
180 Octave_map map; |
7338 | 181 |
182 DECLARE_OCTAVE_ALLOCATOR | |
183 | |
184 public: | |
185 int type_id (void) const { return t_id; } | |
186 std::string type_name (void) const { return t_name; } | |
187 std::string class_name (void) const { return c_name; } | |
188 | |
189 static int static_type_id (void) { return t_id; } | |
190 static std::string static_type_name (void) { return t_name; } | |
191 static std::string static_class_name (void) { return "<unknown>"; } | |
192 static void register_type (void); | |
193 | |
194 private: | |
195 static int t_id; | |
196 | |
197 static const std::string t_name; | |
198 std::string c_name; | |
9010
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
199 std::list<std::string> parent_list; |
7338 | 200 |
9581
3d0d2bda3a0f
fix previous change, avoid duplicate loads of methods in descendant classes
Jaroslav Hajek <highegg@gmail.com>
parents:
9529
diff
changeset
|
201 bool in_class_method (void); |
9151 | 202 |
9522
e79470be3ecb
implement subsasgn this-arg optimization
Jaroslav Hajek <highegg@gmail.com>
parents:
9521
diff
changeset
|
203 int obsolete_copies; |
e79470be3ecb
implement subsasgn this-arg optimization
Jaroslav Hajek <highegg@gmail.com>
parents:
9521
diff
changeset
|
204 |
9151 | 205 public: |
206 // The list of field names and parent classes defines a class. We | |
207 // keep track of each class that has been created so that we know | |
208 class exemplar_info | |
209 { | |
210 public: | |
211 | |
212 exemplar_info (void) : field_names (), parent_class_names () { } | |
213 | |
214 exemplar_info (const octave_value& obj); | |
215 | |
216 exemplar_info (const exemplar_info& x) | |
217 : field_names (x.field_names), | |
10313 | 218 parent_class_names (x.parent_class_names) { } |
9151 | 219 |
220 exemplar_info& operator = (const exemplar_info& x) | |
221 { | |
222 if (&x != this) | |
10313 | 223 { |
224 field_names = x.field_names; | |
225 parent_class_names = x.parent_class_names; | |
226 } | |
9151 | 227 return *this; |
228 } | |
229 | |
230 octave_idx_type nfields (void) const { return field_names.length (); } | |
231 | |
232 size_t nparents (void) const { return parent_class_names.size (); } | |
233 | |
234 string_vector fields (void) const { return field_names; } | |
235 | |
236 std::list<std::string> parents (void) const { return parent_class_names; } | |
237 | |
238 bool compare (const octave_value& obj) const; | |
239 | |
240 private: | |
241 | |
242 string_vector field_names; | |
243 std::list<std::string> parent_class_names; | |
244 }; | |
245 | |
246 // A map from class names to lists of fields. | |
247 static std::map<std::string, exemplar_info> exemplar_map; | |
248 | |
249 typedef std::map<std::string, exemplar_info>::iterator exemplar_iterator; | |
250 typedef std::map<std::string, exemplar_info>::const_iterator exemplar_const_iterator; | |
7338 | 251 }; |
252 | |
253 #endif |