nidas  v1.2-1520
XMLFdFormatTarget.h
Go to the documentation of this file.
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 4; tab-width: 4; -*-
2 // vim: set shiftwidth=4 softtabstop=4 expandtab:
3 /*
4  ********************************************************************
5  ** NIDAS: NCAR In-situ Data Acquistion Software
6  **
7  ** 2005, Copyright University Corporation for Atmospheric Research
8  **
9  ** This program is free software; you can redistribute it and/or modify
10  ** it under the terms of the GNU General Public License as published by
11  ** the Free Software Foundation; either version 2 of the License, or
12  ** (at your option) any later version.
13  **
14  ** This program is distributed in the hope that it will be useful,
15  ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16  ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  ** GNU General Public License for more details.
18  **
19  ** The LICENSE.txt file accompanying this software contains
20  ** a copy of the GNU General Public License. If it is not found,
21  ** write to the Free Software Foundation, Inc.,
22  ** 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  **
24  ********************************************************************
25 */
26 
27 #ifndef NIDAS_CORE_XMLFDFORMATTARGET_H
28 #define NIDAS_CORE_XMLFDFORMATTARGET_H
29 
30 #include <xercesc/framework/XMLFormatter.hpp>
31 #include <xercesc/util/XercesDefs.hpp>
32 
33 #include <nidas/util/IOException.h>
34 
35 #include <string>
36 
37 namespace nidas { namespace core {
38 
43 class XMLFdFormatTarget : public xercesc::XMLFormatTarget {
44 public:
45 
51  XMLFdFormatTarget(const std::string& n, int f);
52 
57 
58  void flush() throw(nidas::util::IOException);
59 
64  void writeChars(const XMLByte*const toWrite,
65 #if XERCES_VERSION_MAJOR < 3
66  const unsigned int count,
67 #else
68  const XMLSize_t count,
69 #endif
70  xercesc::XMLFormatter *const ) throw(nidas::util::IOException);
71 
72 private:
73  void insureCapacity(unsigned int count) throw(nidas::util::IOException);
74 
75  std::string name;
76  int fd;
77  XMLByte* fDataBuf;
78  unsigned int fIndex;
79  unsigned int fCapacity;
80  bool _isSocket;
81 
86 
91 };
92 
93 }} // namespace nidas namespace core
94 
95 #endif
96 
XMLFdFormatTarget(const std::string &n, int f)
Constructor.
Definition: XMLFdFormatTarget.cc:41
void insureCapacity(unsigned int count)
Definition: XMLFdFormatTarget.cc:90
bool _isSocket
Definition: XMLFdFormatTarget.h:80
XMLByte * fDataBuf
Definition: XMLFdFormatTarget.h:77
unsigned int fIndex
Definition: XMLFdFormatTarget.h:78
std::string name
Definition: XMLFdFormatTarget.h:75
Extension of xercesc::XMLFormatTarget support writing XML to an open device (socket for example)...
Definition: XMLFdFormatTarget.h:43
~XMLFdFormatTarget()
Destructor.
Definition: XMLFdFormatTarget.cc:49
unsigned int fCapacity
Definition: XMLFdFormatTarget.h:79
void flush()
Definition: XMLFdFormatTarget.cc:55
void writeChars(const XMLByte *const toWrite, const unsigned int count, xercesc::XMLFormatter *const )
Implemention of virtual write method of xercesc::XMLFormatTarget.
Definition: XMLFdFormatTarget.cc:74
XMLFdFormatTarget & operator=(const XMLFdFormatTarget &)
No assignment.
Definition: IOException.h:37
int fd
Definition: XMLFdFormatTarget.h:76