//# BlockIO.h: Functions to perform IO for the Block class //# Copyright (C) 1993,1994,1995,1999,2000,2001 //# 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$ #ifndef CASA_BLOCKIO_H #define CASA_BLOCKIO_H #include //# Forward declarations. #include namespace casacore { //# NAMESPACE CASACORE - BEGIN template class Block; class AipsIO; // IO functions for Block // // // // // // These functions allow the user to write either an entire or a // partial Block out to an ostream or to // AipsIO. These functions provide simple storage and // display capabilities for Block. // // // // Global Block IO functions // // // //# It appears that (at least for the SUN compiler) the 3rd argument //# cannot be an uInt (otherwise the compiler says no match when //# called as e.g. putBlock(ios,blk,10);). //# //# Note that as of 29-Dec-2008 the size of Block is a size_t, so nr should //# also be a size_t. However, because AipsIO cannot handle sizes larger than //# an uInt, it makes no sense to make that change. // // These functions allow the user to read and write Blocks // from the AipsIO stream. // // putBlock writes the Block to the stream. If // a number, nr, of elements is specified, only the first // nr elements will be written out to AipsI0. // // getBlock reads a Block in from an // AipsIO stream. // // template void putBlock (AipsIO&, const Block&, Int nr); template void putBlock (AipsIO& ios, const Block& blk) { putBlock (ios, blk, (Int)(blk.nelements())); } template void getBlock (AipsIO&, Block&); // // These functions allow the user to write Blocks out to // a standard ostream. The user can either write the entire // Block out to the stream, or if a number of elements, // nr, is specified, only the first nr elements // of the Block will be written out. // // template void showBlock (std::ostream&, const Block&, Int nr); template void showBlock (std::ostream& ios, const Block& blk) { showBlock (ios, blk, (Int)(blk.nelements())); } // // These are the standard shift operators for writing an entire // Block out to a stream. Shift operators are provided // to write the block out to either AipsIO or // ostream. A shift operator is also provided for // reading a Block in from AipsIO. // STL containers like vector and list are written in the same way as // a Block, so they can be written one way and read back the other. // // // template AipsIO& operator<< (AipsIO& ios, const Block& blk) { putBlock (ios, blk, (Int)(blk.nelements())); return ios; } template AipsIO& operator>> (AipsIO& ios, Block& blk) { getBlock (ios, blk); return ios; } template std::ostream& operator<< (std::ostream& ios, const Block& blk) { showBlock (ios, blk, (Int)(blk.nelements())); return ios; } // // //# Implement the specialization for the void* data type. //# This will not do anything at all. //# This specialization is needed for StColMirAIO.cc. inline void putBlock (AipsIO&, const Block&, Int) {} inline void getBlock (AipsIO&, Block&) {} inline void showBlock (AipsIO&, const Block&, Int) {} } //# NAMESPACE CASACORE - END #ifndef CASACORE_NO_AUTO_TEMPLATES #include #endif //# CASACORE_NO_AUTO_TEMPLATES #endif