Mercurial > hg > octave-lyh
annotate libinterp/interp-core/ls-utils.cc @ 16416:169f71c9d9c8
use octave_link instead of hook functions in input.cc
* octave-main-thread.cc pre_input_event_hook_fcn,
post_input_event_hook_fcn, enter_debugger_event_hook_fcn,
exit_debugger_event_hook_fcn): Delete.
(octave_main_thread::run): Don't install input and debugging hooks.
* input.cc (pre_input_event_hook_functions,
post_input_event_hook_functions, enter_debugger_event_hook_functions,
exit_debugger_event_hook_functions): Delete.
(octave_base_reader::octave_gets, get_debug_input): Use octave_link
instead of calling hook functions.
(exit_debugger_cleanup): Delete.
(Fadd_pre_input_event_hook, Fremove_pre_input_event_hook,
Fadd_post_input_event_hook, Fremove_post_input_event_hook,
Fadd_enter_debugger_event_hook, Fremove_enter_debugger_event_hook,
Fadd_exit_debugger_event_hook, Fremove_exit_debugger_event_hook):
Delete.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 03 Apr 2013 18:30:23 -0400 |
parents | 2fc554ffbc28 |
children |
rev | line source |
---|---|
4634 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 2003-2012 John W. Eaton |
4634 | 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 | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
4634 | 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 | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
4634 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include "data-conv.h" | |
28 | |
29 #include "ls-utils.h" | |
30 | |
31 // MAX_VAL and MIN_VAL are assumed to have integral values even though | |
32 // they are stored in doubles. | |
33 | |
34 save_type | |
4661 | 35 get_save_type (double /* max_val */, double /* min_val */) |
4634 | 36 { |
37 save_type st = LS_DOUBLE; | |
38 | |
39 // Matlab doesn't seem to load the UINT32 type correctly, so let's | |
40 // avoid it (and the other unsigned types, even though they may not | |
41 // have the same problem. And apparently, there are problems with | |
42 // other smaller types as well. If we avoid them all, then maybe we | |
43 // will avoid problems. Unfortunately, we won't be able to save | |
44 // space... | |
45 | |
46 // if (max_val < 256 && min_val > -1) | |
47 // st = LS_U_CHAR; | |
48 // else if (max_val < 65536 && min_val > -1) | |
49 // st = LS_U_SHORT; | |
50 // else if (max_val < 4294967295UL && min_val > -1) | |
51 // st = LS_U_INT; | |
52 // else if (max_val < 128 && min_val >= -128) | |
53 // st = LS_CHAR; | |
54 // else if (max_val < 32768 && min_val >= -32768) | |
55 // st = LS_SHORT; | |
56 // else if (max_val <= 2147483647L && min_val >= -2147483647L) | |
57 // st = LS_INT; | |
58 | |
59 return st; | |
60 } | |
11468
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
61 |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
62 save_type |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
63 get_save_type (float /* max_val */, float /* min_val */) |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
64 { |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
65 save_type st = LS_FLOAT; |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
66 |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
67 // Matlab doesn't seem to load the UINT32 type correctly, so let's |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
68 // avoid it (and the other unsigned types, even though they may not |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
69 // have the same problem. And apparently, there are problems with |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
70 // other smaller types as well. If we avoid them all, then maybe we |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
71 // will avoid problems. Unfortunately, we won't be able to save |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
72 // space... |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
73 |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
74 // if (max_val < 256 && min_val > -1) |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
75 // st = LS_U_CHAR; |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
76 // else if (max_val < 65536 && min_val > -1) |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
77 // st = LS_U_SHORT; |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
78 // else if (max_val < 4294967295UL && min_val > -1) |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
79 // st = LS_U_INT; |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
80 // else if (max_val < 128 && min_val >= -128) |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
81 // st = LS_CHAR; |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
82 // else if (max_val < 32768 && min_val >= -32768) |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
83 // st = LS_SHORT; |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
84 // else if (max_val <= 2147483647L && min_val >= -2147483647L) |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
85 // st = LS_INT; |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
86 |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
87 return st; |
e1edf0ba3bcb
Yet another single precision matlab file fix
David Bateman <dbateman@free.fr>
parents:
10160
diff
changeset
|
88 } |