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
|
// --------------------------------------------------------------------------
//
// File
// Name: HTTPQueryDecoder.h
// Purpose: Utility class to decode HTTP query strings
// Created: 26/3/04
//
// --------------------------------------------------------------------------
#ifndef HTTPQUERYDECODER__H
#define HTTPQUERYDECODER__H
#include "HTTPRequest.h"
// --------------------------------------------------------------------------
//
// Class
// Name: HTTPQueryDecoder
// Purpose: Utility class to decode HTTP query strings
// Created: 26/3/04
//
// --------------------------------------------------------------------------
class HTTPQueryDecoder
{
public:
HTTPQueryDecoder(HTTPRequest::Query_t &rDecodeInto);
~HTTPQueryDecoder();
private:
// no copying
HTTPQueryDecoder(const HTTPQueryDecoder &);
HTTPQueryDecoder &operator=(const HTTPQueryDecoder &);
public:
void DecodeChunk(const char *pQueryString, int QueryStringSize);
void Finish();
private:
HTTPRequest::Query_t &mrDecodeInto;
std::string mCurrentKey;
std::string mCurrentValue;
bool mInKey;
char mEscaped[4];
int mEscapedState;
};
#endif // HTTPQUERYDECODER__H
|