local_server.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 122 行
H
122 行
// -*- c++ -*-
// local_server.h,v 1.6 2000/09/01 05:06:35 coryan Exp
// ============================================================================
//
// = LIBRARY
// TAO/tests/NestedUpCalls/MT_Client_Test
//
// = FILENAME
// local_server.h
//
// = DESCRIPTION
// This class implements a simple server for the
// Nested Upcalls - MT Client test
//
// = AUTHORS
// Michael Kircher
//
// ============================================================================
#ifndef MT_CLIENT_TEST_MT_SERVER_H
#define MT_CLIENT_TEST_MT_SERVER_H
#include "MT_Object_i.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/PortableServer/ORB_Manager.h"
#include "ace/Get_Opt.h"
#include "ace/Task.h"
#include "ace/Log_Msg.h"
class MT_Server
{
// = TITLE
// This is the server for the mt_object
//
// = DESCRIPTION
// See the README file for more information.
public:
MT_Server ();
// Default constructor
~MT_Server (void);
// Destructor
int init (int argc,
char **argv,
TAO_ORB_Manager* orb_manager_ptr);
// Initialize the MT_Server state - parsing arguments and ...
int run (void);
// Run the orb
int run_ORB_briefly (void);
// Just run it briefly
private:
int read_ior (char *filename);
// reading the IOR of mt object in
int parse_args (void);
// Parses the commandline arguments.
char *object_key_;
// Key of the object
FILE* ior_output_file_;
// File to output the IOR of the object A.
TAO_ORB_Manager* orb_manager_ptr_;
// The ORB manager
MT_Object_i mT_Object_i_;
// Implementation object
MT_Object_var mT_Object_var_;
// reference for the distant MT Object
int argc_;
// Number of commandline arguments.
char **argv_;
// commandline arguments.
unsigned int iterations_;
// number of times the server should call to the disted MT OBject
CORBA::String_var str_;
// IOR of our servant.
};
class MT_Server_Task : public ACE_Task<ACE_SYNCH>
{
// = TITLE
// Wrapper for the MT_Server to be an extra thread
//
// = DESCRIPTION
// No big purpose, just wrapping
public:
MT_Server_Task (ACE_Thread_Manager* thr_mgr_ptr,
int argc,
char **argv,
TAO_ORB_Manager* orb_manager_ptr);
virtual int svc (void);
private:
MT_Server mT_Server_;
int argc_;
char **argv_;
TAO_ORB_Manager* orb_manager_ptr_;
};
#endif /* MT_CLIENT_TEST_MT_SERVER_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?