Click here to Skip to main content
15,885,537 members
Articles / Web Development / HTML

Server Wizard

Rate me:
Please Sign up or sign in to vote.
4.83/5 (6 votes)
1 Feb 2013CPOL7 min read 31.1K   1.9K   33  
A Visual C++ Project Wizard for the fast creation of high performance TCP servers in C++
#include "stdafx.h"
#include "services.h"
#include "client.h"

[!output SERVICE_ECHO_CLASS]::[!output SERVICE_ECHO_CLASS]()
{
	//
}

[!output SERVICE_ECHO_CLASS]::~[!output SERVICE_ECHO_CLASS]()
{
	//
}

void [!output SERVICE_ECHO_CLASS]::handle( LogicalConnection* pClient, IncomingPacket* pRequest )
{
	[!output CLIENT_CLASS_NAME]* pCurClient = ([!output CLIENT_CLASS_NAME]*) (pClient);
	EchoRequest* pEchoRequest = reinterpret_cast<EchoRequest*> (pRequest);

	EchoResponse response;
	response.set_msg(pEchoRequest->msg());

	pCurClient->PushPacket(&response);
}

[!output SERVICE_REDIRECT_CLASS]::[!output SERVICE_REDIRECT_CLASS]()
{
	//
}

[!output SERVICE_REDIRECT_CLASS]::~[!output SERVICE_REDIRECT_CLASS]()
{
	//
}

void [!output SERVICE_REDIRECT_CLASS]::handle( LogicalConnection* pClient, IncomingPacket* pRequest )
{
	[!output CLIENT_CLASS_NAME]* pCurClient = ([!output CLIENT_CLASS_NAME]*) (pClient);
	RoutedMessageRequest* pMsgRequest = reinterpret_cast<RoutedMessageRequest*> (pRequest);

	[!output CLIENT_CLASS_NAME]* pRecipient = ([!output CLIENT_CLASS_NAME]*) FindClient(pMsgRequest->recipient().c_str());
	if (pRecipient)
	{
		RoutedMessageResponse response;
		response.set_sender(pCurClient->getKey());
		response.set_msg(pMsgRequest->msg());

		pRecipient->PushPacket(&response);
		ReturnClient(pRecipient);
	}
}

[!output SERVICE_BROADCAST_CLASS]::[!output SERVICE_BROADCAST_CLASS]()
{
	//
}

[!output SERVICE_BROADCAST_CLASS]::~[!output SERVICE_BROADCAST_CLASS]()
{
	//
}

void [!output SERVICE_BROADCAST_CLASS]::handle( LogicalConnection* pClient, IncomingPacket* pRequest )
{
	GroupMessageRequest* pMsgRequest = reinterpret_cast<GroupMessageRequest*> (pRequest);

	GroupMessageResponse* pGroupMsgResponse = new GroupMessageResponse();
	pGroupMsgResponse->set_sender(pClient->getKey());
	pGroupMsgResponse->set_msg(pMsgRequest->msg());

	BroadcastPacket(pGroupMsgResponse, "[!output QUEUE_NAME]");
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Tunisia Tunisia
Services:
http://www.pushframework.com/?page_id=890

Comments and Discussions