Mercurial > hg > octave-nkf
view src/oct-map.h @ 4806:d3bd9c04147f
[project @ 2004-03-02 05:12:32 by jwe]
author | jwe |
---|---|
date | Tue, 02 Mar 2004 05:12:33 +0000 |
parents | 7dcb696159ac |
children | 6430596f2238 |
line wrap: on
line source
/* 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 (octave_oct_map_h) #define octave_oct_map_h 1 #if defined (__GNUG__) && defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION) #pragma interface #endif #include <map> #include "Cell.h" #include "oct-obj.h" class string_vector; class Octave_map { public: typedef std::map<std::string, Cell>::iterator iterator; typedef std::map<std::string, Cell>::const_iterator const_iterator; // Warning! You should always use at least two dimensions. Octave_map (const dim_vector& dv = dim_vector (0, 0)) : map (), dimensions (dv) { } Octave_map (const std::string& k, const octave_value& value) : map (), dimensions (1, 1) { map[k] = value; } Octave_map (const std::string& k, const Cell& vals) : map (), dimensions (vals.dims ()) { map[k] = vals; } Octave_map (const std::string& k, const octave_value_list& val_list) : map (), dimensions (1, val_list.length ()) { map[k] = val_list; } Octave_map (const Octave_map& m) : map (m.map), dimensions (m.dimensions) { } Octave_map& operator = (const Octave_map& m) { if (this != &m) { map = m.map; dimensions = m.dimensions; } return *this; } ~Octave_map (void) { } // This is the number of keys. int length (void) const { return map.size (); } int empty (void) const { return map.empty (); } void del (const std::string& k) { iterator p = map.find (k); if (p != map.end ()) map.erase (p); } iterator begin (void) { return iterator (map.begin ()); } const_iterator begin (void) const { return const_iterator (map.begin ()); } iterator end (void) { return iterator (map.end ()); } const_iterator end (void) const { return const_iterator (map.end ()); } std::string key (const_iterator p) const { return p->first; } Cell contents (const std::string& k) const; Cell contents (const_iterator p) const { return contents (key(p)); } const_iterator seek (const std::string& k) const { return map.find (k); } int contains (const std::string& k) const { return (seek (k) != map.end ()); } void clear (void) { map.clear (); } string_vector keys (void) const; int rows (void) const { return dimensions(0); } int columns (void) const { return dimensions(1); } dim_vector dims (void) const { return dimensions; } Octave_map reshape (const dim_vector& new_dims) const; int numel (void) const; int cat (const Octave_map& ra_arg, int dim, int iidx, int move); Octave_map& assign (const octave_value_list& idx, const Octave_map& rhs); Octave_map& assign (const octave_value_list& idx, const std::string& k, const Cell& rhs); Octave_map& assign (const std::string& k, const octave_value& rhs); Octave_map& assign (const std::string& k, const Cell& rhs); Octave_map index (const octave_value_list& idx); private: // The map of names to values. std::map<std::string, Cell> map; // The current size. mutable dim_vector dimensions; }; #endif /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */