/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2008-2010, Tomasz Sowa * All rights reserved. * */ #ifndef headerfilecmslucoregetparser #define headerfilecmslucoregetparser #include "httpsimpleparser.h" #include "requesttypes.h" class GetParser : public HttpSimpleParser { const char * get_string; GetTab & get_tab; protected: virtual int GetChar() { if( !get_string || *get_string == 0 ) return -1; return (int)(unsigned char)*(get_string++); } virtual void Parameter(std::string &, std::string & value) { get_tab.push_back(value); log << log2 << "Get, value: \"" << value << "\"" << logend; } public: GetParser(const char * get_string_, GetTab & get_tab_) : get_string(get_string_), get_tab(get_tab_) { HttpSimpleParser::separator = '/'; HttpSimpleParser::read_name = false; if( get_string && *get_string == separator ) // one '/' at the beginning ++get_string; } }; #endif