//# STLIO.h: text output IO for any STL-like container //# Copyright (C) 2011 //# Associated Universities, Inc. Washington DC, USA. //# //# This library is free software; you can redistribute it and/or modify it //# under the terms of the GNU Library General Public License as published by //# the Free Software Foundation; either version 2 of the License, or (at your //# option) any later version. //# //# This library 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 Library General Public //# License for more details. //# //# You should have received a copy of the GNU Library General Public License //# along with this library; if not, write to the Free Software Foundation, //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. //# //# Correspondence concerning AIPS++ should be addressed as follows: //# Internet email: aips2-request@nrao.edu. //# Postal address: AIPS++ Project Office //# National Radio Astronomy Observatory //# 520 Edgemont Road //# Charlottesville, VA 22903-2475 USA //# //# $Id: STLIO.h 21331 2013-03-26 15:08:06Z gervandiepen $ #ifndef CASA_STLIO_H #define CASA_STLIO_H //# Includes #include #include #include #include #include #include #include namespace casacore { //# NAMESPACE CASACORE - BEGIN //# Forward Declarations class AipsIO; template inline ostream& operator<< (ostream& os, const std::pair& p); template inline ostream& operator<<(ostream& os, const std::vector& v); template inline ostream& operator<<(ostream& os, const std::set& v); template inline ostream& operator<<(ostream& os, const std::list& v); template inline ostream& operator<<(ostream& os, const std::map& m); // // Input/output operators for STL-like containers. // // // // // //
  • STL container concept // // // The function showContainer makes it possible to show // any STL-like container (having forward iterators) on an ostream. // This include casacore classes like Array, IPosition, and Block, but // also STL classes like vector. The separator, prefix, and postfix // can be defined at will (they default to , [ ]). // // The function showDataIter is similar to // showContainer, but uses iterators directly. // // // // IPosition shape (3,10,10,3); // showContainer (cout, shape); // // // // Effortless input/output is clearly a big win. // // // // Write out an ascii representation of any container using the // given begin and end iterator. // An arbitrary separator, prefix, and postfix can be given. // E.g. for separator ', ' the output looks like [1, 2, 3]. template void showDataIter (ostream&, ITER begin, const ITER& end, const char* separator=",", const char* prefix="[", const char* postfix="]"); // Write out an ascii representation of any container having a // forward iterator. // Note that a multi-dimensional Array object is linearized. // An arbitrary separator, prefix, and postfix can be given. // E.g. for separator ', ' the output looks like [1, 2, 3]. template void showContainer (ostream& os, const CONTAINER& c, const char* separator=",", const char* prefix="[", const char* postfix="]") { showDataIter (os, c.begin(), c.end(), separator, prefix, postfix); } // Write a std::pair. template inline ostream& operator<< (ostream& os, const std::pair& p) { os << '<' << p.first << ',' << p.second << '>'; return os; } // Write the contents of a vector enclosed in square brackets, using a comma // as separator. template inline ostream& operator<<(ostream& os, const std::vector& v) { showContainer (os, v, ",", "[", "]"); return os; } // Write the contents of a set enclosed in square brackets, using a comma // as separator. template inline ostream& operator<<(ostream& os, const std::set& v) { showContainer (os, v, ",", "[", "]"); return os; } // Write the contents of a list enclosed in square brackets, using a comma // as separator. template inline ostream& operator<<(ostream& os, const std::list& v) { showContainer (os, v, ",", "[", "]"); return os; } // Print the contents of a map enclosed in braces, using a comma // as separator. template inline ostream& operator<<(ostream& os, const std::map& m) { showContainer (os, m, ", ", "{", "}"); return os; } // Print the contents of a container on LogIO. // template inline LogIO& operator<<(LogIO &os, const std::vector &a) { os.output() << a; return os; } template inline LogIO& operator<<(LogIO &os, const std::set &a) { os.output() << a; return os; } template inline LogIO& operator<<(LogIO &os, const std::list &a) { os.output() << a; return os; } template inline LogIO& operator<<(LogIO& os, const std::map& a) { os.output() << a; return os; } // // Read or write the contents of an STL vector from/to AipsIO. // The container is written in the same way as Block, // thus can be read back that way and vice-versa. // template AipsIO& operator>> (AipsIO& ios, std::vector&); template AipsIO& operator<< (AipsIO& ios, const std::vector&); // // Read and write the contents of a map object from/to AipsIO. // It is done in the same way as the old SimpleOrderedMap class, so // persistent SimpleOrderedMap objects in CTDS can be read as std::map // and vice-versa. template AipsIO& operator>> (AipsIO& ios, std::map&); template AipsIO& operator<< (AipsIO& ios, const std::map&); // } //# NAMESPACE CASACORE - END #ifndef CASACORE_NO_AUTO_TEMPLATES #include #endif //# CASACORE_NO_AUTO_TEMPLATES #endif