📄 low_priority_setup.h
字号:
/**
* @file Low_Priority_Setup.h
*
* Low_Priority_Setup.h,v 1.3 2002/03/13 19:58:38 coryan Exp
*
* @author Carlos O'Ryan <coryan@uci.edu>
*/
#ifndef TAO_PERF_RTEC_LOW_PRIORITY_SETUP_H
#define TAO_PERF_RTEC_LOW_PRIORITY_SETUP_H
#include "Auto_Disconnect.h"
#include "Send_Task.h"
#include "Send_Task_Stopper.h"
#include "ace/Auto_Ptr.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class RT_Class;
class ACE_Basic_Stats;
/**
* @class Low_Priority_Setup
*
* @brief Simplify the initialization of performance tests clients
*
*/
template<class Client_Type>
class Low_Priority_Setup
{
public:
/// Constructor
Low_Priority_Setup (int consumer_count,
int iterations,
int use_different_types,
CORBA::Long experiment_id,
CORBA::Long base_event_type,
int workload,
ACE_UINT32 gsf,
int nthreads,
int thread_priority,
int thread_sched_class,
int per_thread_period,
PortableServer::POA_ptr supplier_poa,
PortableServer::POA_ptr consumer_poa,
RtecEventChannelAdmin::EventChannel_ptr ec,
ACE_Barrier *barrier
ACE_ENV_ARG_DECL);
/// Stop all running threads
void stop_all_threads (void);
/// Collect the stats from all the clients
void collect_basic_stats (ACE_Basic_Stats &stats);
typedef ACE_Auto_Basic_Array_Ptr<Client_Type> Client_Array;
typedef Auto_Disconnect<Client_Type> Client_Auto_Disconnect;
typedef ACE_Auto_Basic_Array_Ptr<Client_Auto_Disconnect> Client_Auto_Disconnect_Array;
typedef ACE_Auto_Basic_Array_Ptr<Send_Task> Send_Task_Array;
typedef auto_ptr<Send_Task_Stopper> Auto_Send_Task_Stopper;
typedef ACE_Auto_Basic_Array_Ptr<Auto_Send_Task_Stopper> Send_Task_Stopper_Array;
private:
int consumer_count_;
Client_Array clients_;
Client_Auto_Disconnect_Array disconnect_;
int nthreads_;
Send_Task_Array tasks_;
Send_Task_Stopper_Array stoppers_;
ACE_Thread_Manager thr_mgr_;
};
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "Low_Priority_Setup.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
#endif /* TAO_PERF_RTEC_LOW_PRIORITY_SETUP_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -