HttpParser.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef FIX_HTTPPARSER_H
00023 #define FIX_HTTPPARSER_H
00024
00025 #ifdef _MSC_VER
00026 #pragma warning( disable : 4503 4355 4786 4290 )
00027 #endif
00028
00029 #include "Exceptions.h"
00030 #include <iostream>
00031 #include <string>
00032
00033 namespace FIX
00034 {
00036 class HttpParser
00037 {
00038 public:
00039 HttpParser()
00040 : m_bufferSize( 0 ) {}
00041 ~HttpParser() {}
00042
00043 bool readHttpMessage( std::string& str )
00044 throw ( MessageParseError );
00045
00046 void addToStream( const char* str, size_t len )
00047 { m_buffer.append( str, len ); }
00048 void addToStream( const std::string& str )
00049 { m_buffer.append( str ); }
00050
00051 private:
00052 std::string m_buffer;
00053 int m_bufferSize;
00054 };
00055 }
00056 #endif //FIX_HTTPPARSER_H