2376
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
2376
|
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 |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
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 |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
20 |
|
21 */ |
|
22 |
|
23 #if !defined (octave_char_matrix_h) |
|
24 #define octave_char_matrix_h 1 |
|
25 |
|
26 #if defined (__GNUG__) |
|
27 #pragma interface |
|
28 #endif |
|
29 |
|
30 #include <cstdlib> |
|
31 |
|
32 #include <string> |
|
33 |
|
34 class ostream; |
|
35 |
|
36 #include "mx-base.h" |
2477
|
37 #include "oct-alloc.h" |
2376
|
38 #include "str-vec.h" |
|
39 |
|
40 #include "error.h" |
|
41 #include "ov-base.h" |
|
42 #include "ov-typeinfo.h" |
|
43 |
|
44 class Octave_map; |
|
45 class octave_value_list; |
|
46 |
|
47 class tree_walker; |
|
48 |
2477
|
49 // Character matrix values. |
2376
|
50 |
|
51 class |
|
52 octave_char_matrix : public octave_base_value |
|
53 { |
|
54 public: |
|
55 |
|
56 octave_char_matrix (void) |
|
57 : octave_base_value () { } |
|
58 |
|
59 octave_char_matrix (const charMatrix& chm, bool = false) |
|
60 : octave_base_value (), matrix (chm) { } |
|
61 |
|
62 octave_char_matrix (const char *s) |
|
63 : octave_base_value (), matrix (s) { } |
|
64 |
|
65 octave_char_matrix (const string& s) |
|
66 : octave_base_value (), matrix (s) { } |
|
67 |
|
68 octave_char_matrix (const string_vector& s) |
|
69 : octave_base_value (), matrix (s) { } |
|
70 |
|
71 octave_char_matrix (const octave_char_matrix& chm) |
|
72 : octave_base_value (), matrix (chm.matrix) { } |
|
73 |
|
74 ~octave_char_matrix (void) { } |
|
75 |
|
76 octave_value *clone (void) { return new octave_char_matrix (*this); } |
|
77 |
2477
|
78 void *operator new (size_t size) |
|
79 { return allocator.alloc (size); } |
|
80 |
|
81 void operator delete (void *p, size_t size) |
|
82 { allocator.free (p, size); } |
2376
|
83 |
|
84 int rows (void) const { return matrix.rows (); } |
|
85 int columns (void) const { return matrix.columns (); } |
|
86 |
2974
|
87 bool is_constant (void) const { return true; } |
|
88 |
2376
|
89 bool is_defined (void) const { return true; } |
|
90 |
|
91 bool is_char_matrix (void) const { return true; } |
|
92 |
|
93 // XXX FIXME XXX |
2431
|
94 octave_value all (void) const { return 0.0; } |
|
95 octave_value any (void) const { return 0.0; } |
2376
|
96 |
|
97 bool is_real_type (void) const { return true; } |
|
98 |
|
99 bool is_matrix_type (void) const { return true; } |
|
100 |
|
101 bool is_numeric_type (void) const { return true; } |
|
102 |
|
103 bool valid_as_scalar_index (void) const; |
|
104 bool valid_as_zero_index (void) const; |
|
105 |
|
106 bool is_true (void) const; |
|
107 |
|
108 double double_value (bool = false) const; |
|
109 |
2916
|
110 double scalar_value (bool = false) const { return double_value (); } |
|
111 |
2376
|
112 Matrix matrix_value (bool = false) const { return matrix; } |
|
113 |
|
114 Complex complex_value (bool = false) const; |
|
115 |
|
116 ComplexMatrix complex_matrix_value (bool = false) const { return matrix; } |
|
117 |
|
118 charMatrix char_matrix_value (bool = false) const { return matrix; } |
|
119 |
2449
|
120 octave_value convert_to_str (void) const |
|
121 { return octave_value (matrix); } |
|
122 |
2555
|
123 octave_value transpose (void) const |
|
124 { return octave_value (matrix.transpose ()); } |
|
125 |
|
126 octave_value hermitian (void) const |
|
127 { return octave_value (matrix.transpose ()); } |
|
128 |
2901
|
129 void print (ostream& os, bool pr_as_read_syntax = false) const; |
|
130 |
|
131 void print_raw (ostream& os, bool pr_as_read_syntax = false) const; |
|
132 |
|
133 bool print_name_tag (ostream& os, const string& name) const; |
2376
|
134 |
|
135 int type_id (void) const { return t_id; } |
|
136 |
|
137 string type_name (void) const { return t_name; } |
|
138 |
|
139 static int static_type_id (void) { return t_id; } |
|
140 |
|
141 static void register_type (void) |
|
142 { t_id = octave_value_typeinfo::register_type (t_name); } |
|
143 |
|
144 protected: |
|
145 |
|
146 charMatrix matrix; |
|
147 |
2477
|
148 static octave_allocator allocator; |
|
149 |
|
150 // Type id of character matrix objects, set by register_type(). |
2376
|
151 static int t_id; |
|
152 |
2477
|
153 // Type name of character matrix objects, defined in ov-ch-mat.cc. |
2376
|
154 static const string t_name; |
|
155 }; |
|
156 |
|
157 #endif |
|
158 |
|
159 /* |
|
160 ;;; Local Variables: *** |
|
161 ;;; mode: C++ *** |
|
162 ;;; End: *** |
|
163 */ |