jsocketinputstream.cpp
5.57 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/***************************************************************************
* Copyright (C) 2005 by Jeff Ferr *
* root@sat *
* *
* 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., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "Stdafx.h"
#include "jsocketinputstream.h"
#include "jsocketexception.h"
namespace jsocket {
SocketInputStream::SocketInputStream(Connection *conn_, bool *is_closed_, int64_t size_):
jio::InputStream()
{
jcommon::Object::SetClassName("jsocket::SocketInputStream");
_connection = conn_;
_fd = conn_->GetHandler();
_is_closed = is_closed_;
_stream = true;
_buffer_length = size_;
_current_index = 0LL;
_end_index = 0LL;
_receive_bytes = 0LL;
_blocked = true;
try {
_buffer = new char[(int)_buffer_length];
} catch (std::bad_alloc &) {
_buffer = NULL;
_buffer_length = 0LL;
_current_index = 0LL;
}
}
SocketInputStream::SocketInputStream(Connection *conn_, bool *is_closed_, struct sockaddr *address, int64_t size_):
jio::InputStream()
{
jcommon::Object::SetClassName("jsocket::SocketInputStream");
_connection = conn_;
_fd = conn_->GetHandler();
_is_closed = is_closed_;
_stream = false;
_buffer_length = size_;
_current_index = 0LL;
_end_index = 0LL;
_receive_bytes = 0LL;
_address = address;
_blocked = true;
try {
_buffer = new char[(int)_buffer_length];
} catch (std::bad_alloc &) {
_buffer = NULL;
_buffer_length = 0LL;
_current_index = 0LL;
}
}
SocketInputStream::~SocketInputStream()
{
if (_buffer != NULL) {
delete [] _buffer;
}
}
int64_t SocketInputStream::Read()
{
if ((*_is_closed) == true) {
throw SocketException("Connection closed exception");
}
int flags = 0,
d = (int)(_end_index - _current_index);
if (d == 0) {
int n,
length = sizeof(*_address);
if (_stream == true) {
n = ::recv(_fd, _buffer, (size_t)_buffer_length, flags);
} else {
#ifdef _WIN32
n = ::recvfrom(_fd, _buffer, (size_t)_buffer_length, flags, _address, (int *)&length);
#else
n = ::recvfrom(_fd, _buffer, (size_t)_buffer_length, flags, _address, (socklen_t *)&length);
#endif
}
#ifdef _WIN32
if (n == SOCKET_ERROR) {
#else
if (n <= 0) {
if (n == 0) {
Close();
}
#endif
return -1LL;
}
_current_index = 0;
_end_index = n;
_receive_bytes += n;
}
uint8_t c;
c = _buffer[_current_index];
if (++_current_index >= _end_index) {
_current_index = _end_index = 0;
}
return (int64_t)c;
}
int64_t SocketInputStream::Read(char *data_, int64_t data_length_)
{
if ((*_is_closed) == true) {
throw SocketException("Connection closed exception");
}
// retorna no maximo o tamanho do buffer em bytes
int flags = 0LL;
int d,
r;
d = (int)(_end_index - _current_index);
if (d == 0) {
int n,
length = sizeof(*_address);
if (_stream == true) {
n = ::recv(_fd, _buffer, (size_t)_buffer_length, flags);
} else {
#ifdef _WIN32
n = ::recvfrom(_fd, _buffer, (size_t)_buffer_length, flags, _address, (int *)&length);
#else
n = ::recvfrom(_fd, _buffer, (size_t)_buffer_length, flags, _address, (socklen_t *)&length);
#endif
}
#ifdef _WIN32
if (n == SOCKET_ERROR) {
#else
if (n <= 0) {
if (n == 0) {
Close();
}
#endif
return -1LL;
}
_current_index = 0;
_end_index = n;
_receive_bytes += n;
d = n;
}
if (data_length_ <= d) {
memcpy(data_, (_buffer + (size_t)_current_index), (size_t)data_length_);
_current_index += data_length_;
r = (int)data_length_;
} else {
memcpy(data_, (_buffer + (size_t)_current_index), d);
_current_index += d;
r = d;
}
if (_current_index >= _end_index) {
_current_index = _end_index = 0;
}
return (int64_t)r;
}
bool SocketInputStream::IsEmpty()
{
return (_current_index == _end_index);
}
int64_t SocketInputStream::Available()
{
return (int64_t)_current_index;
}
int64_t SocketInputStream::GetReadedBytes()
{
return (int64_t)_receive_bytes;
}
void SocketInputStream::Close()
{
_connection->Close();
}
void SocketInputStream::Reset()
{
_current_index = _end_index = 0;
}
int64_t SocketInputStream::GetSize()
{
return 0LL;
}
int64_t SocketInputStream::GetPosition()
{
return 0LL;
}
void SocketInputStream::Skip(int64_t skip)
{
// DO:: nothing
}
}