Mercurial > hg > octave-nkf
view src/oct-map.h @ 4634:79fe96966ca0
[project @ 2003-11-19 21:22:39 by jwe]
author | jwe |
---|---|
date | Wed, 19 Nov 2003 21:23:19 +0000 |
parents | 7b957b442818 |
children | f6d6335c08f6 |
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; Octave_map (void) : map (), dimensions (0, 0) { } 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 (); } Cell& operator [] (const std::string& k) { return map[k]; } Cell operator [] (const std::string& k) const; 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_iterator p) { return operator [] (key(p)); } Cell contents (const_iterator p) const { return operator [] (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; 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 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: *** */