00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #if !defined (octave_list_h)
00025 #define octave_list_h 1
00026
00027 #include <cstdlib>
00028
00029 #include <iosfwd>
00030 #include <string>
00031
00032 #include "mx-base.h"
00033 #include "str-vec.h"
00034
00035 #include "Cell.h"
00036 #include "error.h"
00037 #include "oct-alloc.h"
00038 #include "ov-base.h"
00039 #include "ov-typeinfo.h"
00040
00041 class tree_walker;
00042
00043
00044
00045 class
00046 octave_list : public octave_base_value
00047 {
00048 public:
00049
00050 octave_list (void)
00051 : octave_base_value () { }
00052
00053 octave_list (const octave_value_list& l)
00054 : octave_base_value (), data (l) { }
00055
00056 octave_list (const Cell& c);
00057
00058 octave_list (const octave_list& l)
00059 : octave_base_value (), data (l.data) { }
00060
00061 ~octave_list (void) { }
00062
00063 octave_base_value *clone (void) const { return new octave_list (*this); }
00064 octave_base_value *empty_clone (void) const { return new octave_list (); }
00065
00066 octave_value subsref (const std::string& type,
00067 const std::list<octave_value_list>& idx)
00068 {
00069 octave_value_list tmp = subsref (type, idx, 1);
00070 return tmp.length () > 0 ? tmp(0) : octave_value ();
00071 }
00072
00073 octave_value_list subsref (const std::string& type,
00074 const std::list<octave_value_list>& idx,
00075 int nargout);
00076
00077 octave_value do_index_op (const octave_value_list& idx,
00078 bool resize_ok = false);
00079
00080 octave_value subsasgn (const std::string& type,
00081 const std::list<octave_value_list>& idx,
00082 const octave_value& rhs);
00083
00084 void assign (const octave_value_list& idx, const octave_value& rhs);
00085
00086 dim_vector dims (void) const { return dim_vector (1, data.length ()); }
00087
00088 size_t byte_size (void) const;
00089
00090 bool is_defined (void) const { return true; }
00091
00092 bool is_list (void) const { return true; }
00093
00094 octave_value_list list_value (void) const;
00095
00096 void print (std::ostream& os, bool pr_as_read_syntax = false) const;
00097
00098 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const;
00099
00100 bool print_name_tag (std::ostream& os, const std::string& name) const;
00101
00102 bool save_ascii (std::ostream& os);
00103
00104 bool load_ascii (std::istream& is);
00105
00106 bool save_binary (std::ostream& os, bool& save_as_floats);
00107
00108 bool load_binary (std::istream& is, bool swap,
00109 oct_mach_info::float_format fmt);
00110
00111 #if defined (HAVE_HDF5)
00112 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats);
00113
00114 bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug);
00115 #endif
00116
00117 protected:
00118
00119
00120 Cell data;
00121
00122 private:
00123
00124 DECLARE_OCTAVE_ALLOCATOR
00125
00126 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA
00127 };
00128
00129 #endif
00130
00131
00132
00133
00134
00135