⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 echomodule.cpp

📁 用c++编写http server的源码库,对socket等网络处理的代码可迅速转为己用.
💻 CPP
字号:
// -----------------------------------------------------------------// libpion: a C++ framework for building lightweight HTTP interfaces// -----------------------------------------------------------------// Copyright (C) 2007 Atomic Labs, Inc.  (http://www.atomiclabs.com)//// Distributed under the Boost Software License, Version 1.0.// See accompanying file COPYING or copy at http://www.boost.org/LICENSE_1_0.txt//#include "EchoModule.hpp"#include <libpion/HTTPResponse.hpp>#include <boost/bind.hpp>using namespace pion;/// used by handleRequest to write dictionary termsvoid writeDictionaryTerm(HTTPResponsePtr& response,						 const HTTPTypes::StringDictionary::value_type& val,						 const bool decode){	// text is copied into response text cache	response << val.first << HTTPTypes::HEADER_NAME_VALUE_DELIMINATOR	<< (decode ? HTTPTypes::url_decode(val.second) : val.second)	<< HTTPTypes::STRING_CRLF;}// EchoModule member functions/// handles requests for EchoModulebool EchoModule::handleRequest(HTTPRequestPtr& request, TCPConnectionPtr& tcp_conn){	// this modules uses static text to test the mixture of "copied" with	// "static" (no-copy) text	static const std::string REQUEST_ECHO_TEXT("[Request Echo]");	static const std::string REQUEST_HEADERS_TEXT("[Request Headers]");	static const std::string QUERY_PARAMS_TEXT("[Query Parameters]");	static const std::string COOKIE_PARAMS_TEXT("[Cookie Parameters]");	static const std::string POST_CONTENT_TEXT("[POST Content]");		// Set Content-type to "text/plain" (plain ascii text)	HTTPResponsePtr response(HTTPResponse::create());	response->setContentType(HTTPTypes::CONTENT_TYPE_TEXT);		// write request information	response->writeNoCopy(REQUEST_ECHO_TEXT);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	response		<< "Request method: "		<< request->getMethod()		<< HTTPTypes::STRING_CRLF		<< "Resource requested: "		<< request->getResource()		<< HTTPTypes::STRING_CRLF		<< "Query string: "		<< request->getQueryString()		<< HTTPTypes::STRING_CRLF		<< "HTTP version: "		<< request->getVersionMajor() << '.' << request->getVersionMinor()		<< HTTPTypes::STRING_CRLF		<< "Content length: "		<< request->getContentLength()		<< HTTPTypes::STRING_CRLF		<< HTTPTypes::STRING_CRLF;			 	// write request headers	response->writeNoCopy(REQUEST_HEADERS_TEXT);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	std::for_each(request->getHeaders().begin(), request->getHeaders().end(),				  boost::bind(&writeDictionaryTerm, response, _1, false));	response->writeNoCopy(HTTPTypes::STRING_CRLF);	// write query parameters	response->writeNoCopy(QUERY_PARAMS_TEXT);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	std::for_each(request->getQueryParams().begin(), request->getQueryParams().end(),				  boost::bind(&writeDictionaryTerm, response, _1, true));	response->writeNoCopy(HTTPTypes::STRING_CRLF);		// write cookie parameters	response->writeNoCopy(COOKIE_PARAMS_TEXT);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	std::for_each(request->getCookieParams().begin(), request->getCookieParams().end(),				  boost::bind(&writeDictionaryTerm, response, _1, false));	response->writeNoCopy(HTTPTypes::STRING_CRLF);		// write POST content	response->writeNoCopy(POST_CONTENT_TEXT);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	response->writeNoCopy(HTTPTypes::STRING_CRLF);	if (request->getContentLength() != 0) {		response->write(request->getPostContent(), request->getContentLength());		response->writeNoCopy(HTTPTypes::STRING_CRLF);		response->writeNoCopy(HTTPTypes::STRING_CRLF);	}		// send the response	response->send(tcp_conn);	return true;}/// creates new EchoModule objectsextern "C" EchoModule *pion_create_EchoModule(void){	return new EchoModule();}/// destroys EchoModule objectsextern "C" void pion_destroy_EchoModule(EchoModule *module_ptr){	delete module_ptr;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -