nidas v1.2.3
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
34
35#include <string>
36
37namespace nidas { namespace core {
38
43class XMLFdFormatTarget : public xercesc::XMLFormatTarget {
44public:
45
51 XMLFdFormatTarget(const std::string& n, int f);
52
57
58 void flush();
59
64 void writeChars(const XMLByte*const toWrite,
65 const XMLSize_t count,
66 xercesc::XMLFormatter *const );
67
68private:
69 void insureCapacity(unsigned int count);
70
71 std::string name;
72 int fd;
73 XMLByte* fDataBuf;
74 unsigned int fIndex;
75 unsigned int fCapacity;
77
82
87};
88
89}} // namespace nidas namespace core
90
91#endif
92
Extension of xercesc::XMLFormatTarget support writing XML to an open device (socket for example).
Definition XMLFdFormatTarget.h:43
unsigned int fCapacity
Definition XMLFdFormatTarget.h:75
XMLFdFormatTarget(const std::string &n, int f)
Constructor.
Definition XMLFdFormatTarget.cc:41
XMLByte * fDataBuf
Definition XMLFdFormatTarget.h:73
void flush()
Definition XMLFdFormatTarget.cc:55
void writeChars(const XMLByte *const toWrite, const XMLSize_t count, xercesc::XMLFormatter *const)
Implemention of virtual write method of xercesc::XMLFormatTarget.
Definition XMLFdFormatTarget.cc:74
std::string name
Definition XMLFdFormatTarget.h:71
unsigned int fIndex
Definition XMLFdFormatTarget.h:74
int fd
Definition XMLFdFormatTarget.h:72
~XMLFdFormatTarget()
Destructor.
Definition XMLFdFormatTarget.cc:49
XMLFdFormatTarget & operator=(const XMLFdFormatTarget &)
No assignment.
XMLFdFormatTarget(const XMLFdFormatTarget &)
No copy.
bool _isSocket
Definition XMLFdFormatTarget.h:76
void insureCapacity(unsigned int count)
Definition XMLFdFormatTarget.cc:85
Root namespace for the NCAR In-Situ Data Acquisition Software.
Definition A2DConverter.h:31