soma-io  5.0.5
awriter.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 #ifndef SOMAIO_WRITER_AWRITER_H
35 #define SOMAIO_WRITER_AWRITER_H
36 //--- soma-io ----------------------------------------------------------------
38 //--- cartobase --------------------------------------------------------------
40 #ifndef CARTOBASE_OBJECT_SYNTAX_H
41  #include <cartobase/object/syntax.h>
42 #endif
44 //--- system -----------------------------------------------------------------
45 #include <fstream>
46 //----------------------------------------------------------------------------
47 
48 namespace soma
49 {
50 
51  //==========================================================================
52  // C L A S S D E C L A R A T I O N
53  //==========================================================================
54 
57  {
58 
59  public:
60 
61  //------------------------------------------------------------------------
63  //------------------------------------------------------------------------
65 
66  typedef void (*Helper)( const carto::GenericObject&, const std::string&,
67  std::ostream& );
68  typedef std::map<std::string, Helper> HelperSet;
69 
71 
72  //------------------------------------------------------------------------
74  //------------------------------------------------------------------------
76 
81  AttributedWriter( const std::string& filename,
82  const carto::SyntaxSet& rules,
83  const HelperSet& helpers = HelperSet() );
84 
88  AttributedWriter( const carto::SyntaxSet& rules,
89  const HelperSet& helpers = HelperSet() );
90 
92  virtual ~AttributedWriter();
93 
95 
96  //------------------------------------------------------------------------
98  //------------------------------------------------------------------------
100 
103  void open(const std::string& filename );
104 
106  void attach( std::ostream & s );
107 
109  void close();
110 
111  //------------------------------------------------------------------------
113  //------------------------------------------------------------------------
115 
117  virtual std::string name() const;
118 
120 
121  //------------------------------------------------------------------------
123  //------------------------------------------------------------------------
125 
128  bool operator!() const;
129 
132  bool is_open() const;
133 
135 
136  protected:
137 
138  //------------------------------------------------------------------------
140  //------------------------------------------------------------------------
142 
144  void writeAttributes( const carto::GenericObject& object );
145 
147  void writeAttributes( const carto::GenericObject& object,
148  const std::set<std::string>& attributes,
149  std::string::size_type size );
150 
151  // DO NOT USE! DEPRECIATED
152  void writeAttributes( const carto::GenericObject* object )
153  __attribute__((__deprecated__));
154 
155  // DO NOT USE! DEPRECIATED
156  void writeAttributes( const carto::GenericObject* object,
157  const std::set<std::string>& attributes,
158  std::string::size_type size )
159  __attribute__((__deprecated__));
160 
162 
163  //------------------------------------------------------------------------
165  //------------------------------------------------------------------------
167 
170 
172  std::ostream *_stream;
174 
176 
177  private:
178 
179  //------------------------------------------------------------------------
181  //------------------------------------------------------------------------
183 
185  void init();
186 
188 
189  //------------------------------------------------------------------------
191  //------------------------------------------------------------------------
193 
195  std::string _filename;
196 
198  HelperSet _helpers;
199 
201 
202  //------------------------------------------------------------------------
204  //------------------------------------------------------------------------
206 
209 
211  AttributedWriter& operator=( const AttributedWriter& );
212 
214  };
215 
216 }
217 
218 #endif
Definition: allocator.h:48
std::map< std::string, Syntax > SyntaxSet
#define CARTOBASE_API
To write an AttributedObject to a file.
Definition: awriter.h:56
std::map< std::string, Helper > HelperSet
Definition: awriter.h:68
#define __attribute__(a)
std::ostream * _stream
C++ stream to write into.
Definition: awriter.h:172
carto::SyntaxSet _rules
rules for every syntactic attribute
Definition: awriter.h:169