/* Copyright (C) 1996, 1997 John W. Eaton This file is part of Octave. Octave is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. Octave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Octave; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #if defined (__GNUG__) #pragma implementation #endif #ifdef HAVE_CONFIG_H #include #endif #include "ov-typeinfo.h" #include "defun.h" #include "error.h" #include "oct-obj.h" const int octave_value_typeinfo::init_tab_sz (16); octave_value_typeinfo * octave_value_typeinfo::instance (0); #include #include #include template class Array; template class Array2; template class Array; template class Array2; template class Array; template class Array2; template class Array3; template class Array; template class Array2; template class Array3; template class Array; template class Array2; bool octave_value_typeinfo::instance_ok (void) { bool retval = true; if (! instance) instance = new octave_value_typeinfo (); if (! instance) { ::error ("unable to create value type info object!"); retval = false; } return retval; } int octave_value_typeinfo::register_type (const string& name) { return (instance_ok ()) ? instance->do_register_type (name) : -1; } bool octave_value_typeinfo::register_unary_op (octave_value::unary_op op, int t, unary_op_fcn f) { return (instance_ok ()) ? instance->do_register_unary_op (op, t, f) : false; } bool octave_value_typeinfo::register_non_const_unary_op (octave_value::unary_op op, int t, non_const_unary_op_fcn f) { return (instance_ok ()) ? instance->do_register_non_const_unary_op (op, t, f) : false; } bool octave_value_typeinfo::register_binary_op (octave_value::binary_op op, int t1, int t2, binary_op_fcn f) { return (instance_ok ()) ? instance->do_register_binary_op (op, t1, t2, f) : false; } bool octave_value_typeinfo::register_assign_op (octave_value::assign_op op, int t_lhs, int t_rhs, assign_op_fcn f) { return (instance_ok ()) ? instance->do_register_assign_op (op, t_lhs, t_rhs, f) : -1; } bool octave_value_typeinfo::register_assignany_op (octave_value::assign_op op, int t_lhs, assign_op_fcn f) { return (instance_ok ()) ? instance->do_register_assignany_op (op, t_lhs, f) : -1; } bool octave_value_typeinfo::register_pref_assign_conv (int t_lhs, int t_rhs, int t_result) { return (instance_ok ()) ? instance->do_register_pref_assign_conv (t_lhs, t_rhs, t_result) : false; } bool octave_value_typeinfo::register_widening_op (int t, int t_result, type_conv_fcn f) { return (instance_ok ()) ? instance->do_register_widening_op (t, t_result, f) : false; } int octave_value_typeinfo::do_register_type (const string& name) { int i = 0; for (i = 0; i < num_types; i++) if (name == types (i)) return i; int len = types.length (); if (i == len) { len *= 2; types.resize (len, string ()); unary_ops.resize (static_cast (octave_value::num_unary_ops), len, static_cast (0)); non_const_unary_ops.resize (static_cast (octave_value::num_unary_ops), len, static_cast (0)); binary_ops.resize (static_cast (octave_value::num_binary_ops), len, len, static_cast (0)); assign_ops.resize (static_cast (octave_value::num_assign_ops), len, len, static_cast (0)); assignany_ops.resize (static_cast (octave_value::num_assign_ops), len, static_cast (0)); pref_assign_conv.resize (len, len, -1); widening_ops.resize (len, len, static_cast (0)); } types (i) = name; num_types++; return i; } bool octave_value_typeinfo::do_register_unary_op (octave_value::unary_op op, int t, unary_op_fcn f) { unary_ops.checkelem (static_cast (op), t) = f; return false; } bool octave_value_typeinfo::do_register_non_const_unary_op (octave_value::unary_op op, int t, non_const_unary_op_fcn f) { non_const_unary_ops.checkelem (static_cast (op), t) = f; return false; } bool octave_value_typeinfo::do_register_binary_op (octave_value::binary_op op, int t1, int t2, binary_op_fcn f) { binary_ops.checkelem (static_cast (op), t1, t2) = f; return false; } bool octave_value_typeinfo::do_register_assign_op (octave_value::assign_op op, int t_lhs, int t_rhs, assign_op_fcn f) { assign_ops.checkelem (static_cast (op), t_lhs, t_rhs) = f; return false; } bool octave_value_typeinfo::do_register_assignany_op (octave_value::assign_op op, int t_lhs, assign_op_fcn f) { assignany_ops.checkelem (static_cast (op), t_lhs) = f; return false; } bool octave_value_typeinfo::do_register_pref_assign_conv (int t_lhs, int t_rhs, int t_result) { pref_assign_conv.checkelem (t_lhs, t_rhs) = t_result; return false; } bool octave_value_typeinfo::do_register_widening_op (int t, int t_result, type_conv_fcn f) { widening_ops.checkelem (t, t_result) = f; return false; } #include unary_op_fcn octave_value_typeinfo::do_lookup_unary_op (octave_value::unary_op op, int t) { return unary_ops.checkelem (static_cast (op), t); } non_const_unary_op_fcn octave_value_typeinfo::do_lookup_non_const_unary_op (octave_value::unary_op op, int t) { return non_const_unary_ops.checkelem (static_cast (op), t); } binary_op_fcn octave_value_typeinfo::do_lookup_binary_op (octave_value::binary_op op, int t1, int t2) { return binary_ops.checkelem (static_cast (op), t1, t2); } assign_op_fcn octave_value_typeinfo::do_lookup_assign_op (octave_value::assign_op op, int t_lhs, int t_rhs) { return assign_ops.checkelem (static_cast (op), t_lhs, t_rhs); } assign_op_fcn octave_value_typeinfo::do_lookup_assignany_op (octave_value::assign_op op, int t_lhs) { return assignany_ops.checkelem (static_cast (op), t_lhs); } int octave_value_typeinfo::do_lookup_pref_assign_conv (int t_lhs, int t_rhs) { return pref_assign_conv.checkelem (t_lhs, t_rhs); } type_conv_fcn octave_value_typeinfo::do_lookup_widening_op (int t, int t_result) { return widening_ops.checkelem (t, t_result); } string_vector octave_value_typeinfo::do_installed_type_names (void) { string_vector retval (num_types); for (int i = 0;i < num_types; i++) retval (i) = types (i); return retval; } DEFUN (typeinfo, args, , "usage: typeinfo (expr)\n\ \n\ Return the type of the expression EXPR, as a string. If EXPR is\n\ omitted, return an array of strings containing all the currently\n\ installed data types.") { octave_value retval; int nargin = args.length (); if (nargin == 0) retval = octave_value_typeinfo::installed_type_names (); else if (nargin == 1) retval = args(0).type_name (); else print_usage ("typeinfo"); return retval; } /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */