ssl-server-fancy.cpp
来自「ace开发环境 用来开发网络程序 其运用了设计模式、多平台、C++等多种知识」· C++ 代码 · 共 611 行 · 第 1/2 页
CPP
611 行
// $Id: SSL-server-fancy.cpp 78962 2007-07-20 03:27:14Z sowayaa $// This example tests the features of the <ACE_SSL_SOCK_Acceptor>,// <ACE_SSL_SOCK_Stream>, and <ACE_Svc_Handler> classes. If the platform// supports threads it uses a thread-per-connection concurrency model.// Otherwise, it uses a single-threaded iterative server model.#include "ace/Svc_Handler.h"#include "ace/Singleton.h"#include "ace/Profile_Timer.h"#include "ace/Get_Opt.h"#include "ace/OS_NS_sys_select.h"#include "ace/SSL/SSL_SOCK_Acceptor.h"#include "SSL-server-fancy.h"ACE_RCSID (SSL_SAP, SSL_server_fancy, "$Id: SSL-server-fancy.cpp 78962 2007-07-20 03:27:14Z sowayaa $")// Forward declaration.class Handler;class Handler_Factory{ // = TITLE // Creates the oneway or twoway handlers.public: Handler_Factory (void); // Constructor. ~Handler_Factory (void); // Destructor. int handle_events (void); // Run the main event loop.private: int init_acceptors (void); // Initialize the acceptors. int create_handler (ACE_SSL_SOCK_Acceptor &acceptor, Handler *(*handler_factory) (ACE_SSL_SOCK_Stream *), const char *handler_type); // Factory that creates the right kind of <Handler>. // = Factory functions. static Handler *make_twoway_handler (ACE_SSL_SOCK_Stream *); // Create a twoway handler. static Handler *make_oneway_handler (ACE_SSL_SOCK_Stream *); // Create a oneway handler. ACE_SSL_SOCK_Acceptor twoway_acceptor_; // Twoway acceptor factory. ACE_SSL_SOCK_Acceptor oneway_acceptor_; // Oneway acceptor factory.};class Handler : public ACE_Svc_Handler<ACE_SSL_SOCK_STREAM, ACE_NULL_SYNCH>{ // = TITLE // Base class for the oneway and twoway handlers. friend class Handler_Factory; // The factory has special permission. (to access svc ()).public: //FUZZ: disable check_for_lack_ACE_OS virtual int open (void * = 0); // Generic initialization method. virtual int close (u_long); // Close down and delete this. //FUZZ: enable check_for_lack_ACE_OSprotected: Handler (ACE_SSL_SOCK_Stream *ssl_stream); // Constructor. int parse_header_and_allocate_buffer (char *&buf, ACE_INT32 *len); // Implement the generic code that's called from any of the subclass // <run> methods to get the header and the buffer to read the data. // This method factors out common code. virtual int run (void) = 0; // Hook method called by the <svc> template method to do the actual // protocol. Must be overridden by the subclass. virtual int svc (void); // Template method entry point into the handler task. virtual void print_results (void); // Print the results. size_t total_bytes_; // Total number of bytes received. size_t message_count_; // Number of messages received. ACE_Profile_Timer timer_; // Keeps track of how much time we're using. ACE_SSL_SOCK_Stream *ssl_stream_; //keep state information for a ssl_stream.};class Twoway_Handler : public Handler{ // = TITLE // Performs the twoway protocol.public: Twoway_Handler (ACE_SSL_SOCK_Stream *ssl_stream); // Constructor.private: virtual int run (void); // Template Method hook called by <svc>.};class Oneway_Handler : public Handler{ // = TITLEpublic: Oneway_Handler (ACE_SSL_SOCK_Stream *ssl_stream); // Constructor.private: virtual int run (void); // Template Method hook called by <svc>. virtual void print_results (void); // Print the results.};u_shortOptions::port (void) const{ return this->port_;}intOptions::verbose (void) const{ return this->verbose_;}intOptions::reply_message_len (void) const{ return this->reply_message_len_;}Options::~Options (void){}Options::Options (void) : verbose_ (0), port_ (ACE_DEFAULT_SERVER_PORT), reply_message_len_ (24) // Default to the approximate size of an // GIOP reply message.{}intOptions::parse_args (int argc, ACE_TCHAR *argv[]){ //FUZZ: disable check_for_lack_ACE_OS ACE_Get_Opt getopt (argc, argv, ACE_TEXT ("p:r:v"), 1); for (int c; (c = getopt ()) != -1; ) //FUZZ: enable check_for_lack_ACE_OS switch (c) { case 'p': this->port_ = ACE_OS::atoi (getopt.opt_arg ()); break; case 'r': this->reply_message_len_ = ACE_OS::atoi (getopt.opt_arg ()); break; case 'v': this->verbose_ = 1; break; default: ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("(%P|%t) usage: %n [-p <port>] [-v]")), -1); } return 0;}// Options Singleton.typedef ACE_Singleton<Options, ACE_SYNCH_RECURSIVE_MUTEX> OPTIONS;Handler::Handler (ACE_SSL_SOCK_Stream *ssl_stream) : total_bytes_ (0), message_count_ (0), ssl_stream_ (ssl_stream){}intHandler::open (void *){ ACE_INET_Addr cli_addr; // Make sure we're not in non-blocking mode. if (this->ssl_stream_-> disable (ACE_NONBLOCK) == -1) ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("disable")), 0); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%P|%t) client %C connected from %d \n"), cli_addr.get_host_name (), cli_addr.get_port_number ())); return 0;}intHandler::close (u_long){ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%P|%t) closing down %@\n"), this)); delete this->ssl_stream_; delete this; return 0;}intHandler::svc (void){ // Timer logic. this->timer_.start (); // Invoke the hook method to run the specific test. int result = this->run (); this->timer_.stop (); this->print_results (); return result;}intHandler::parse_header_and_allocate_buffer (char *&request, ACE_INT32 *len){ ssize_t result = this->ssl_stream_ -> recv_n ((void *) len, sizeof (ACE_INT32)); if (result == 0) { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%P|%t) connected closed\n"))); return -1; } else if (result == -1 || result != sizeof (ACE_INT32)) ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("(%P|%t) %p\n"), ACE_TEXT ("recv_n failed")), -1); else { *len = ntohl (*len); ACE_NEW_RETURN (request, char[*len], -1); } return 0;}voidHandler::print_results (void){}Twoway_Handler::Twoway_Handler (ACE_SSL_SOCK_Stream* ssl_stream) : Handler (ssl_stream){}// Function entry point into the twoway server task.intTwoway_Handler::run (void){ // Read data from client (terminate on error).
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?