aimsdata  4.7.0
Neuroimaging data handling
listItemW.h
Go to the documentation of this file.
1 /* This software and supporting documentation are distributed by
2  * Institut Federatif de Recherche 49
3  * CEA/NeuroSpin, Batiment 145,
4  * 91191 Gif-sur-Yvette cedex
5  * France
6  *
7  * This software is governed by the CeCILL-B license under
8  * French law and abiding by the rules of distribution of free software.
9  * You can use, modify and/or redistribute the software under the
10  * terms of the CeCILL-B license as circulated by CEA, CNRS
11  * and INRIA at the following URL "http://www.cecill.info".
12  *
13  * As a counterpart to the access to the source code and rights to copy,
14  * modify and redistribute granted by the license, users are provided only
15  * with a limited warranty and the software's author, the holder of the
16  * economic rights, and the successive licensors have only limited
17  * liability.
18  *
19  * In this respect, the user's attention is drawn to the risks associated
20  * with loading, using, modifying and/or developing or reproducing the
21  * software by the user in light of its specific status of free software,
22  * that may mean that it is complicated to manipulate, and that also
23  * therefore means that it is reserved for developers and experienced
24  * professionals having in-depth computer knowledge. Users are therefore
25  * encouraged to load and test the software's suitability as regards their
26  * requirements in conditions enabling the security of their systems and/or
27  * data to be ensured and, more generally, to use and operate it in the
28  * same conditions as regards security.
29  *
30  * The fact that you are presently reading this means that you have had
31  * knowledge of the CeCILL-B license and that you accept its terms.
32  */
33 
34 /*
35  * List item writer class
36  */
37 #ifndef AIMS_IO_LISTITEMW_H
38 #define AIMS_IO_LISTITEMW_H
39 
40 #include <aims/io/defaultItemW.h>
41 #include <list>
42 
43 namespace aims
44 {
45 
46 #ifndef DOXYGEN_HIDE_INTERNAL_CLASSES
47 
48  template<typename T>
49  class DefaultItemWriter<std::list<T> > : public ItemWriter<std::list<T> >
50  {
51  public:
52  DefaultItemWriter() : ItemWriter<std::list<T> >() { }
53  virtual ~DefaultItemWriter() { }
54 
55  virtual void write( std::ostream & is, const std::list<T> & item ) const;
56  virtual void write( std::ostream & is, const std::list<T> * pitem,
57  size_t n ) const;
58  virtual ItemWriter<std::list<T> >*
59  writer( const std::string & openmode = "binar",
60  bool bswap = false ) const;
61  };
62 
63 
64  template<typename T>
65  class DefaultAsciiItemWriter<std::list<T> >
66  : public DefaultItemWriter<std::list<T> >
67  {
68  public:
71 
72  virtual void write( std::ostream & is, const std::list<T> & item ) const;
73  };
74 
75 
76  template<typename T>
77  class DefaultBSwapItemWriter<std::list<T> >
78  : public DefaultItemWriter<std::list<T> >
79  {
80  public:
83 
84  virtual void write( std::ostream & is, const std::list<T> & item ) const;
85  };
86 
87 
88  template<typename T> inline
90  DefaultItemWriter<std::list<T> >::writer( const std::string & openmode,
91  bool bswap ) const
92  {
93  if ( openmode == "ascii" )
95  if ( bswap )
97  return new DefaultItemWriter<std::list<T> >;
98  }
99 
100 
101  template<typename T> inline
102  void DefaultItemWriter<std::list<T> >::write( std::ostream & is,
103  const std::list<T> * pitem,
104  size_t n ) const
105  {
106  const std::list<T> *ptr = pitem;
107  for( size_t i=0; i<n; ++i )
108  write( is, *ptr++ );
109  }
110 
111 
112  template<typename T> inline void
114  const std::list<T> & item ) const
115  {
116  typename std::list<T>::const_iterator it, et = item.end();
119  iw1.write( os, (uint32_t)item.size() );
120  for ( it=item.begin(); it!=et; ++it )
121  iw.write( os, *it );
122  }
123 
124 
125  template<typename T> inline void
127  ( std::ostream & os, const std::list<T> & item ) const
128  {
129  typename std::list<T>::const_iterator it, et = item.end();
132  os << '(';
133  iw1.write( os, (uint32_t)item.size() );
134  for ( it=item.begin(); it!=et; ++it )
135  {
136  os << ',';
137  iw.write( os, *it );
138  }
139  os << ')';
140  }
141 
142 
143  template<typename T> inline void
145  ( std::ostream & os, const std::list<T> & item ) const
146  {
147  typename std::list<T>::const_iterator it, et = item.end();
150  iw1.write( os, (uint32_t)item.size() );
151  for ( it=item.begin(); it!=et; ++it )
152  iw.write( os, *it );
153  }
154 
155 #endif // DOXYGEN_HIDE_INTERNAL_CLASSES
156 
157 } // namespace aims
158 
159 
160 #endif
Default low-levels writers.
Definition: defaultItemW.h:58
virtual ItemWriter< T > * writer(const std::string &openmode="binar", bool bswap=false) const
Definition: defaultItemW.h:139
virtual void write(std::ostream &os, const T &item) const
Definition: defaultItemW.h:159
STL namespace.
The class for EcatSino data write operation.
Definition: border.h:42
Low-level "small item" writer, used by higher-level file readers.
Definition: itemW.h:50
virtual void write(std::ostream &os, const T &item) const
Definition: defaultItemW.h:91
virtual void write(std::ostream &os, const T &item) const
Definition: defaultItemW.h:64