1
|
1 /* |
|
2 |
7017
|
3 Copyright (C) 1993, 1994, 1995, 1996, 1997, 2000, 2002, 2003, 2005, |
|
4 2006, 2007 John W. Eaton |
1
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
7016
|
10 Free Software Foundation; either version 3 of the License, or (at your |
|
11 option) any later version. |
1
|
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/>. |
1
|
21 |
|
22 */ |
|
23 |
240
|
24 #ifdef HAVE_CONFIG_H |
1192
|
25 #include <config.h> |
1
|
26 #endif |
|
27 |
5755
|
28 #include "defun.h" |
1352
|
29 #include "error.h" |
1
|
30 #include "gripes.h" |
4055
|
31 #include "oct-obj.h" |
5755
|
32 #include "utils.h" |
|
33 |
1
|
34 void |
2078
|
35 gripe_not_supported (const char *fcn) |
|
36 { |
|
37 error ("%s: not supported on this system", fcn); |
|
38 } |
|
39 |
|
40 void |
6890
|
41 gripe_not_implemented (const char *fcn) |
|
42 { |
|
43 error ("%s: not implemented", fcn); |
|
44 } |
|
45 |
|
46 void |
1
|
47 gripe_string_invalid (void) |
|
48 { |
3523
|
49 error ("std::string constant used in invalid context"); |
1
|
50 } |
|
51 |
|
52 void |
|
53 gripe_range_invalid (void) |
|
54 { |
|
55 error ("range constant used in invalid context"); |
|
56 } |
|
57 |
|
58 void |
|
59 gripe_nonconformant (void) |
|
60 { |
|
61 error ("nonconformant matrices"); |
|
62 } |
|
63 |
|
64 void |
5275
|
65 gripe_nonconformant (octave_idx_type r1, octave_idx_type c1, octave_idx_type r2, octave_idx_type c2) |
143
|
66 { |
|
67 error ("nonconformant matrices (op1 is %dx%d, op2 is %dx%d)", |
|
68 r1, c1, r2, c2); |
|
69 } |
|
70 |
|
71 void |
2799
|
72 gripe_empty_arg (const char *name, bool is_error) |
1
|
73 { |
|
74 if (is_error) |
|
75 error ("%s: empty matrix is invalid as an argument", name); |
|
76 else |
|
77 warning ("%s: argument is empty matrix", name); |
|
78 } |
|
79 |
|
80 void |
|
81 gripe_square_matrix_required (const char *name) |
|
82 { |
|
83 error ("%s: argument must be a square matrix", name); |
|
84 } |
|
85 |
|
86 void |
|
87 gripe_user_supplied_eval (const char *name) |
|
88 { |
|
89 error ("%s: evaluation of user-supplied function failed", name); |
|
90 } |
|
91 |
|
92 void |
|
93 gripe_user_returned_invalid (const char *name) |
|
94 { |
|
95 error ("%s: user-supplied function returned invalid value", name); |
|
96 } |
|
97 |
628
|
98 void |
3523
|
99 gripe_invalid_conversion (const std::string& from, const std::string& to) |
628
|
100 { |
2374
|
101 error ("invalid conversion from %s to %s", from.c_str (), to.c_str ()); |
628
|
102 } |
|
103 |
777
|
104 void |
1416
|
105 gripe_invalid_value_specified (const char *name) |
|
106 { |
|
107 warning ("invalid value specified for `%s'", name); |
|
108 } |
|
109 |
|
110 void |
777
|
111 gripe_2_or_3_dim_plot (void) |
|
112 { |
|
113 error ("plot: can only plot in 2 or 3 dimensions"); |
|
114 } |
|
115 |
|
116 void |
|
117 gripe_unrecognized_float_fmt (void) |
|
118 { |
|
119 error ("unrecognized floating point format requested"); |
|
120 } |
|
121 |
|
122 void |
|
123 gripe_unrecognized_data_fmt (const char *warn_for) |
|
124 { |
|
125 error ("%s: unrecognized data format requested", warn_for); |
|
126 } |
|
127 |
|
128 void |
|
129 gripe_data_conversion (const char *from, const char *to) |
|
130 { |
|
131 error ("unable to convert from %s to %s format", from, to); |
|
132 } |
|
133 |
|
134 void |
5602
|
135 gripe_wrong_type_arg (const char *name, const char *s, bool is_error) |
2668
|
136 { |
2799
|
137 if (is_error) |
5602
|
138 error ("%s: wrong type argument `%s'", name, s); |
2799
|
139 else |
5602
|
140 warning ("%s: wrong type argument `%s'", name, s); |
|
141 } |
|
142 |
|
143 void |
|
144 gripe_wrong_type_arg (const char *name, const std::string& s, bool is_error) |
|
145 { |
|
146 gripe_wrong_type_arg (name, s.c_str (), is_error); |
2668
|
147 } |
|
148 |
|
149 void |
2799
|
150 gripe_wrong_type_arg (const char *name, const octave_value& tc, |
|
151 bool is_error) |
777
|
152 { |
3523
|
153 std::string type = tc.type_name (); |
2799
|
154 |
5602
|
155 gripe_wrong_type_arg (name, type, is_error); |
777
|
156 } |
|
157 |
|
158 void |
2086
|
159 gripe_wrong_type_arg_for_unary_op (const octave_value& op) |
777
|
160 { |
3523
|
161 std::string type = op.type_name (); |
2374
|
162 error ("invalid operand `%s' for unary operator", type.c_str ()); |
777
|
163 } |
|
164 |
|
165 void |
2086
|
166 gripe_wrong_type_arg_for_binary_op (const octave_value& op) |
777
|
167 { |
3523
|
168 std::string type = op.type_name (); |
2374
|
169 error ("invalid operand `%s' for binary operator", type.c_str ()); |
|
170 } |
|
171 |
|
172 void |
5781
|
173 gripe_implicit_conversion (const char *id, const char *from, const char *to) |
2374
|
174 { |
5781
|
175 warning_with_id (id, "implicit conversion from %s to %s", from, to); |
2374
|
176 } |
|
177 |
|
178 void |
5781
|
179 gripe_implicit_conversion (const std::string& id, |
|
180 const std::string& from, const std::string& to) |
4452
|
181 { |
5781
|
182 warning_with_id (id.c_str (), |
|
183 "implicit conversion from %s to %s", |
|
184 from.c_str (), to.c_str ()); |
4452
|
185 } |
|
186 |
|
187 void |
2374
|
188 gripe_divide_by_zero (void) |
|
189 { |
5781
|
190 warning_with_id ("Octave:divide-by-zero", "division by zero"); |
5755
|
191 } |
|
192 |
5943
|
193 extern void |
|
194 gripe_logical_conversion (void) |
|
195 { |
|
196 warning_with_id ("Octave:logical-conversion", |
|
197 "value not equal to 1 or 0 converted to logical 1"); |
|
198 } |
|
199 |
1
|
200 /* |
|
201 ;;; Local Variables: *** |
|
202 ;;; mode: C++ *** |
|
203 ;;; End: *** |
|
204 */ |