| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- //
- // HTTPChunkedStream.cpp
- //
- // $Id: //poco/1.3/Net/src/HTTPChunkedStream.cpp#2 $
- //
- // Library: Net
- // Package: HTTP
- // Module: HTTPChunkedStream
- //
- // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
- // and Contributors.
- //
- // Permission is hereby granted, free of charge, to any person or organization
- // obtaining a copy of the software and accompanying documentation covered by
- // this license (the "Software") to use, reproduce, display, distribute,
- // execute, and transmit the Software, and to prepare derivative works of the
- // Software, and to permit third-parties to whom the Software is furnished to
- // do so, all subject to the following:
- //
- // The copyright notices in the Software and this entire statement, including
- // the above license grant, this restriction and the following disclaimer,
- // must be included in all copies of the Software, in whole or in part, and
- // all derivative works of the Software, unless such copies or derivative
- // works are solely in the form of machine-executable object code generated by
- // a source language processor.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
- // SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
- // FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
- // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- // DEALINGS IN THE SOFTWARE.
- //
- #include "Poco/Net/HTTPChunkedStream.h"
- #include "Poco/Net/HTTPSession.h"
- #include "Poco/NumberFormatter.h"
- #include "Poco/NumberParser.h"
- #include <ctype.h>
- using Poco::NumberFormatter;
- using Poco::NumberParser;
- namespace Poco {
- namespace Net {
- //
- // HTTPChunkedStreamBuf
- //
- HTTPChunkedStreamBuf::HTTPChunkedStreamBuf(HTTPSession& session, openmode mode):
- HTTPBasicStreamBuf(HTTPBufferAllocator::BUFFER_SIZE, mode),
- _session(session),
- _mode(mode),
- _chunk(0)
- {
- }
- HTTPChunkedStreamBuf::~HTTPChunkedStreamBuf()
- {
- }
- void HTTPChunkedStreamBuf::close()
- {
- if (_mode & std::ios::out)
- {
- sync();
- _session.write("0\r\n\r\n", 5);
- }
- }
- int HTTPChunkedStreamBuf::readFromDevice(char* buffer, std::streamsize length)
- {
- static const int eof = std::char_traits<char>::eof();
- if (_chunk == 0)
- {
- int ch = _session.get();
- while (isspace(ch)) ch = _session.get();
- std::string chunkLen;
- while (isxdigit(ch)) { chunkLen += (char) ch; ch = _session.get(); }
- while (ch != eof && ch != '\n') ch = _session.get();
- unsigned chunk;
- if (NumberParser::tryParseHex(chunkLen, chunk))
- _chunk = (std::streamsize) chunk;
- else
- return eof;
- }
- if (_chunk > 0)
- {
- if (length > _chunk) length = _chunk;
- int n = _session.read(buffer, length);
- if (n > 0) _chunk -= n;
- return n;
- }
- else return 0;
- }
- int HTTPChunkedStreamBuf::writeToDevice(const char* buffer, std::streamsize length)
- {
- std::string chunkSize(NumberFormatter::formatHex(length));
- chunkSize.append("\r\n");
- _session.write(chunkSize.data(), (std::streamsize) chunkSize.length());
- _session.write(buffer, length);
- _session.write("\r\n", 2);
- return length;
- }
- //
- // HTTPChunkedIOS
- //
- HTTPChunkedIOS::HTTPChunkedIOS(HTTPSession& session, HTTPChunkedStreamBuf::openmode mode):
- _buf(session, mode)
- {
- poco_ios_init(&_buf);
- }
- HTTPChunkedIOS::~HTTPChunkedIOS()
- {
- try
- {
- _buf.close();
- }
- catch (...)
- {
- }
- }
- HTTPChunkedStreamBuf* HTTPChunkedIOS::rdbuf()
- {
- return &_buf;
- }
- //
- // HTTPChunkedInputStream
- //
- Poco::MemoryPool HTTPChunkedInputStream::_pool(sizeof(HTTPChunkedInputStream));
- HTTPChunkedInputStream::HTTPChunkedInputStream(HTTPSession& session):
- HTTPChunkedIOS(session, std::ios::in),
- std::istream(&_buf)
- {
- }
- HTTPChunkedInputStream::~HTTPChunkedInputStream()
- {
- }
- void* HTTPChunkedInputStream::operator new(size_t size)
- {
- return _pool.get();
- }
- void HTTPChunkedInputStream::operator delete(void* ptr)
- {
- _pool.release(ptr);
- }
- //
- // HTTPChunkedOutputStream
- //
- Poco::MemoryPool HTTPChunkedOutputStream::_pool(sizeof(HTTPChunkedOutputStream));
- HTTPChunkedOutputStream::HTTPChunkedOutputStream(HTTPSession& session):
- HTTPChunkedIOS(session, std::ios::out),
- std::ostream(&_buf)
- {
- }
- HTTPChunkedOutputStream::~HTTPChunkedOutputStream()
- {
- }
- void* HTTPChunkedOutputStream::operator new(size_t size)
- {
- return _pool.get();
- }
- void HTTPChunkedOutputStream::operator delete(void* ptr)
- {
- _pool.release(ptr);
- }
- } } // namespace Poco::Net
|