2009-03-02 15:13:20 +01:00
|
|
|
// message_server.h
|
|
|
|
|
2009-10-27 20:58:27 +01:00
|
|
|
/* Copyright 2009 10gen Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2009-03-02 15:13:20 +01:00
|
|
|
/*
|
|
|
|
abstract database server
|
|
|
|
async io core, worker thread system
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2009-03-03 22:06:57 +01:00
|
|
|
#include "../stdafx.h"
|
2009-03-02 15:13:20 +01:00
|
|
|
|
|
|
|
namespace mongo {
|
|
|
|
|
2009-03-02 15:57:43 +01:00
|
|
|
class MessageHandler {
|
|
|
|
public:
|
|
|
|
virtual ~MessageHandler(){}
|
|
|
|
virtual void process( Message& m , AbstractMessagingPort* p ) = 0;
|
|
|
|
};
|
|
|
|
|
2009-03-02 15:13:20 +01:00
|
|
|
class MessageServer {
|
|
|
|
public:
|
2009-03-02 15:57:43 +01:00
|
|
|
MessageServer( int port , MessageHandler * handler ) : _port( port ) , _handler( handler ){}
|
2009-03-02 15:13:20 +01:00
|
|
|
virtual ~MessageServer(){}
|
|
|
|
|
|
|
|
virtual void run() = 0;
|
|
|
|
|
|
|
|
protected:
|
2009-03-02 15:57:43 +01:00
|
|
|
|
2009-03-02 15:13:20 +01:00
|
|
|
int _port;
|
2009-03-02 15:57:43 +01:00
|
|
|
MessageHandler* _handler;
|
2009-03-02 15:13:20 +01:00
|
|
|
};
|
|
|
|
|
2009-03-02 15:57:43 +01:00
|
|
|
MessageServer * createServer( int port , MessageHandler * handler );
|
2009-03-02 15:13:20 +01:00
|
|
|
}
|