/* * 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() { HttpSimpleParser::separator = '/'; HttpSimpleParser::read_name = false; } // get_string_ can be null void Parse(const char * get_string_, GetTab & get_tab_) { get_string = get_string_; get_tab = &get_tab_; if( get_string && *get_string == separator ) { // skipping one '/' at the beginning ++get_string; } HttpSimpleParser::Parse(); } }; #endif