mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-12-25 23:07:18 +00:00
* SharePtr fix for gcc 7.2 * Fix for Poco issue #2285 * Add missing fail() to sqlite test * Fix for testIllegalFilePath * Update SQLiteTest.cpp * fixexes for Visual Studio and /W4 switch * Fixed warnings for Foundation module * Fixed warnings for JSON module * Fixed warnings for XML module * Fixed warnings for NET module * Fix unfixable warning in VarHolder.h * Fix Typo: * Fixes for Net * Fixes for Crypto * Fixes for NetSSL * Fixes for Zip * Fixes for PDF * Fixes for SQLite * Fixes for SQLite * Fixes for SQL * Fixes for MongoDB * Fixes for Redis * Fixes for CppParser * Fixes for CppUnit * Fixes for PageCompiler * Fixes for PostgreSQL * Fixes for MySQL * Fixes for SevenZip * Last Warnings * Fixes for ODBC * fix std::type_info include
179 lines
2.5 KiB
C++
179 lines
2.5 KiB
C++
//
|
|
// HTTPHeaderStream.cpp
|
|
//
|
|
// 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
|