-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataOutputStream.h
More file actions
82 lines (72 loc) · 2.73 KB
/
DataOutputStream.h
File metadata and controls
82 lines (72 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright (C) 2009,2010,2011,2012 GlavSoft LLC.
// All rights reserved.
//
//-------------------------------------------------------------------------
// This file is part of the TightVNC software. Please visit our Web site:
//
// http://www.tightvnc.com/
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//-------------------------------------------------------------------------
//
#ifndef _DATA_OUTPUT_STREAM_H_
#define _DATA_OUTPUT_STREAM_H_
#include "util/inttypes.h"
#include "OutputStream.h"
#include "IOException.h"
/**
* Data output stream (decorator pattern).
* Adds feature to write typezied data to output stream.
*/
class DataOutputStream : public OutputStream
{
public:
/**
* Creates new data output stream.
* @param outputStream real output stream.
*/
DataOutputStream(OutputStream *outputStream);
virtual ~DataOutputStream();
/**
* Inherited from superclass.
* @remark just delegates call to real output stream.
*/
virtual size_t write(const void *buffer, size_t len) throw(IOException);
/**
* Writes exacly specified count of bytes to stream.
* @param buffer source buffer.
* @param len count of bytes to write.
* @throws IOException on error.
* @fixme really it can throw any kind of exception (depends on implementation
* of output stream passed to costructor of DataOutputStream).
*/
void writeFully(const void *buffer, size_t len) throw(IOException);
void writeUInt8(UINT8 x) throw(IOException);
void writeUInt16(UINT16 x) throw(IOException);
void writeUInt32(UINT32 x) throw(IOException);
void writeUInt64(UINT64 x) throw(IOException);
void writeInt8(INT8 x) throw(IOException);
void writeInt16(INT16 x) throw(IOException);
void writeInt32(INT32 x) throw(IOException);
void writeInt64(INT64 x) throw(IOException);
void writeUTF8(const TCHAR *string) throw(IOException);
/**
* Flushes inner output stream.
*/
virtual void flush() throw(IOException);
protected:
OutputStream *m_outStream;
};
#endif