7338
|
1 /* |
|
2 |
|
3 Copyright (C) 2007 John W. Eaton |
|
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 |
|
28 #include <iostream> |
|
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 |
|
47 octave_class : public octave_base_value |
|
48 { |
|
49 public: |
|
50 |
|
51 octave_class (void) |
|
52 : octave_base_value () { } |
|
53 |
|
54 octave_class (const Octave_map& m, const std::string& id) |
|
55 : octave_base_value (), map (m), c_name (id) { } |
|
56 |
|
57 octave_class (const octave_class& s) |
|
58 : octave_base_value (s), map (s.map), c_name (s.c_name) { } |
|
59 |
|
60 ~octave_class (void) { } |
|
61 |
|
62 octave_base_value *clone (void) const { return new octave_class (*this); } |
|
63 octave_base_value *empty_clone (void) const { return new octave_class (); } |
|
64 |
|
65 Cell dotref (const octave_value_list& idx); |
|
66 |
|
67 octave_value subsref (const std::string&, |
|
68 const std::list<octave_value_list>&) |
|
69 { |
|
70 panic_impossible (); |
|
71 return octave_value_list (); |
|
72 } |
|
73 |
|
74 octave_value_list subsref (const std::string& type, |
|
75 const std::list<octave_value_list>& idx, |
|
76 int nargout); |
|
77 |
|
78 static octave_value numeric_conv (const Cell& val, |
|
79 const std::string& type); |
|
80 |
|
81 octave_value subsasgn (const std::string& type, |
|
82 const std::list<octave_value_list>& idx, |
|
83 const octave_value& rhs); |
|
84 |
|
85 dim_vector dims (void) const { return map.dims (); } |
|
86 |
|
87 size_t byte_size (void) const; |
|
88 |
|
89 // This is the number of elements in each field. The total number |
|
90 // of elements is numel () * nfields (). |
|
91 octave_idx_type numel (void) const |
|
92 { |
|
93 dim_vector dv = dims (); |
|
94 return dv.numel (); |
|
95 } |
|
96 |
|
97 octave_idx_type nfields (void) const { return map.nfields (); } |
|
98 |
|
99 octave_value reshape (const dim_vector& new_dims) const |
|
100 { return map.reshape (new_dims); } |
|
101 |
|
102 octave_value resize (const dim_vector& dv, bool = false) const |
|
103 { Octave_map tmap = map; tmap.resize (dv); return tmap; } |
|
104 |
|
105 bool is_defined (void) const { return true; } |
|
106 |
|
107 bool is_map (void) const { return false; } |
|
108 |
|
109 bool is_object (void) const { return true; } |
|
110 |
|
111 Octave_map map_value (void) const; |
|
112 |
|
113 string_vector map_keys (void) const; |
|
114 |
|
115 void print (std::ostream& os, bool pr_as_read_syntax = false) const; |
|
116 |
|
117 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; |
|
118 |
|
119 bool print_name_tag (std::ostream& os, const std::string& name) const; |
|
120 |
|
121 void print_with_name (std::ostream& os, const std::string& name, |
|
122 bool print_padding = true) const; |
|
123 |
|
124 bool save_ascii (std::ostream& os, bool& infnan_warned); |
|
125 |
|
126 bool load_ascii (std::istream& is); |
|
127 |
|
128 bool save_binary (std::ostream& os, bool& save_as_floats); |
|
129 |
|
130 bool load_binary (std::istream& is, bool swap, |
|
131 oct_mach_info::float_format fmt); |
|
132 |
|
133 #if defined (HAVE_HDF5) |
|
134 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); |
|
135 |
|
136 bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug); |
|
137 #endif |
|
138 |
|
139 mxArray *as_mxArray (void) const; |
|
140 |
|
141 private: |
|
142 |
|
143 Octave_map map; |
|
144 |
|
145 DECLARE_OCTAVE_ALLOCATOR |
|
146 |
|
147 public: |
|
148 int type_id (void) const { return t_id; } |
|
149 std::string type_name (void) const { return t_name; } |
|
150 std::string class_name (void) const { return c_name; } |
|
151 |
|
152 static int static_type_id (void) { return t_id; } |
|
153 static std::string static_type_name (void) { return t_name; } |
|
154 static std::string static_class_name (void) { return "<unknown>"; } |
|
155 static void register_type (void); |
|
156 |
|
157 private: |
|
158 static int t_id; |
|
159 |
|
160 static const std::string t_name; |
|
161 std::string c_name; |
|
162 |
|
163 bool in_class_method (void) const; |
|
164 }; |
|
165 |
|
166 #endif |
|
167 |
|
168 /* |
|
169 ;;; Local Variables: *** |
|
170 ;;; mode: C++ *** |
|
171 ;;; End: *** |
|
172 */ |