#include "base.h"

#ifndef __HTTPD_H__
#define __HTTPD_H__

#include <string>
#include <sstream>

class HTTPRequest : public classbase
{
 protected:

	std::string type;
	std::string document;
	std::string ipaddr;
	std::stringstream* headers;

 public:

	void* sock;

	HTTPRequest(const std::string &request_type, const std::string &uri, std::stringstream* hdr, void* opaque, const std::string &ip)
		: type(request_type), document(uri), ipaddr(ip), headers(hdr), sock(opaque)
	{
	}

	std::stringstream* GetHeaders()
	{
		return headers;
	}

	std::string& GetType()
	{
		return type;
	}

	std::string& GetURI()
	{
		return document;
	}

	std::string& GetIP()
	{
		return ipaddr;
	}
};

class HTTPDocument : public classbase
{
 protected:
	std::stringstream* document;
	int responsecode;
	std::string extraheaders;

 public:

	void* sock;

	HTTPDocument(void* opaque, std::stringstream* doc, int response, const std::string &extra) : document(doc), responsecode(response), extraheaders(extra), sock(opaque)
	{
	}

	std::stringstream* GetDocument()
	{
		return this->document;
	}

	unsigned long GetDocumentSize()
	{
		return this->document->str().length();
	}

	int GetResponseCode()
	{
		return this->responsecode;
	}

	std::string& GetExtraHeaders()
	{
		return this->extraheaders;
	}
};

#endif

//httpr(request_type,uri,headers,this,this->GetIP());