FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
poco/Net/src/HTTPHeaderStream.cpp at develop · cppfool/poco · GitHub
cppfool
/
poco
Public
forked from
pocoproject/poco
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
poco
/
Net
/
src
/
HTTPHeaderStream.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
180 lines (130 loc) · 2.59 KB
Breadcrumbs
poco
/
Net
/
src
/
HTTPHeaderStream.cpp
Copy path
File metadata and controls
180 lines (130 loc) · 2.59 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
//
//
HTTPHeaderStream.cpp
//
//
$Id: //poco/1.4/Net/src/HTTPHeaderStream.cpp#1 $
//
//
Library: Net
//
Package: HTTP
//
Module: HTTPHeaderStream
//
//
Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
//
and Contributors.
//
//
SPDX-License-Identifier: BSL-1.0
//
#
include
"
Poco/Net/HTTPHeaderStream.h
"
#
include
"
Poco/Net/HTTPSession.h
"
namespace
Poco
{
namespace
Net
{
//
//
HTTPHeaderStreamBuf
//
HTTPHeaderStreamBuf::HTTPHeaderStreamBuf
(HTTPSession& session, openmode mode):
HTTPBasicStreamBuf
(HTTPBufferAllocator::
BUFFER_SIZE
, mode),
_session
(session),
_end
(
false
)
{
}
HTTPHeaderStreamBuf::~HTTPHeaderStreamBuf
()
{
}
int
HTTPHeaderStreamBuf::readFromDevice
(
char
* buffer, std::streamsize length)
{
//
read line-by-line; an empty line denotes the end of the headers.
static
const
int
eof = std::char_traits<
char
>::
eof
();
if
(_end)
return
0
;
int
n =
0
;
int
ch = _session.
get
();
while
(ch != eof && ch !=
'
\n
'
&& n < length -
1
)
{
*buffer++ = (
char
) ch; ++n;
ch = _session.
get
();
}
if
(ch != eof)
{
*buffer++ = (
char
) ch; ++n;
if
(n ==
2
) _end =
true
;
}
return
n;
}
int
HTTPHeaderStreamBuf::writeToDevice
(
const
char
* buffer, std::streamsize length)
{
return
_session.
write
(buffer, length);
}
//
//
HTTPHeaderIOS
//
HTTPHeaderIOS::HTTPHeaderIOS
(HTTPSession& session, HTTPHeaderStreamBuf::openmode mode):
_buf
(session, mode)
{
poco_ios_init
(&_buf);
}
HTTPHeaderIOS::~HTTPHeaderIOS
()
{
try
{
_buf.
sync
();
}
catch
(...)
{
}
}
HTTPHeaderStreamBuf*
HTTPHeaderIOS::rdbuf
()
{
return
&_buf;
}
//
//
HTTPHeaderInputStream
//
Poco::MemoryPool
HTTPHeaderInputStream::_pool
(
sizeof
(HTTPHeaderInputStream));
HTTPHeaderInputStream::HTTPHeaderInputStream
(HTTPSession& session):
HTTPHeaderIOS
(session, std::ios::in),
std::istream
(&_buf)
{
}
HTTPHeaderInputStream::~HTTPHeaderInputStream
()
{
}
void
* HTTPHeaderInputStream::
operator
new
(std::
size_t
size)
{
return
_pool.
get
();
}
void
HTTPHeaderInputStream::
operator
delete
(
void
* ptr)
{
try
{
_pool.
release
(ptr);
}
catch
(...)
{
poco_unexpected
();
}
}
//
//
HTTPHeaderOutputStream
//
Poco::MemoryPool
HTTPHeaderOutputStream::_pool
(
sizeof
(HTTPHeaderOutputStream));
HTTPHeaderOutputStream::HTTPHeaderOutputStream
(HTTPSession& session):
HTTPHeaderIOS
(session, std::ios::out),
std::ostream
(&_buf)
{
}
HTTPHeaderOutputStream::~HTTPHeaderOutputStream
()
{
}
void
* HTTPHeaderOutputStream::
operator
new
(std::
size_t
size)
{
return
_pool.
get
();
}
void
HTTPHeaderOutputStream::
operator
delete
(
void
* ptr)
{
try
{
_pool.
release
(ptr);
}
catch
(...)
{
poco_unexpected
();
}
}
} }
//
namespace Poco::Net
Back
|
FazBrowse Home
|
New Git URL