summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Demux/demux_test_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Demux/demux_test_client.h')
-rw-r--r--TAO/performance-tests/Demux/demux_test_client.h126
1 files changed, 0 insertions, 126 deletions
diff --git a/TAO/performance-tests/Demux/demux_test_client.h b/TAO/performance-tests/Demux/demux_test_client.h
deleted file mode 100644
index f4e2aafe496..00000000000
--- a/TAO/performance-tests/Demux/demux_test_client.h
+++ /dev/null
@@ -1,126 +0,0 @@
-#ifndef TAO_DEMUX_TEST_CLIENT_H
-#define TAO_DEMUX_TEST_CLIENT_H
-
-// $Id$
-// ============================================================================
-//
-// = LIBRARY
-// TAO/performance-tests/Demux
-//
-// = FILENAME
-// demux_test_client.h
-//
-// Definition of the client-side demux_test class
-//
-// = AUTHOR
-//
-// Aniruddha Gokhale
-//
-// ============================================================================
-
-
-#include "demux_testC.h"
-#include "demux_test_macros.h"
-#include <math.h>
-
-class Demux_Test_Client
-{
-public:
-
- // Request invocation strategies
- enum INVOKE_STRATEGY
- {
- LINEAR,
- RANDOM,
- BEST,
- WORST
- };
-
- typedef void (*OP_PTR) (Demux_Test_ptr, CORBA::Environment &);
-
- struct Operation_DB_Entry
- {
- OP_PTR op_;
- };
-
- Demux_Test_Client (void);
- // CTOR
-
- ~Demux_Test_Client (void);
- // DTOR
-
- int init (int argc, char *argv [], CORBA::Environment &env
- = CORBA::Environment::default_environment ());
- // initialize the client test bed
-
- int run (CORBA::Environment &env
- = CORBA::Environment::default_environment ());
- // run the tests
-
-private:
-
- int parse_args (void);
- // parse command line arguments
-
- int init_operation_db (void);
- // initialize the operation database
-
- int run_linear_test (CORBA::Environment &env
- = CORBA::Environment::default_environment ());
- // run linear strategy
-
- int run_random_test (CORBA::Environment &env
- = CORBA::Environment::default_environment ());
- // run random strategy
-
- int run_best_test (CORBA::Environment &env
- = CORBA::Environment::default_environment ());
- // run best strategy (w.r.t to linear)
-
- int run_worst_test (CORBA::Environment &env
- = CORBA::Environment::default_environment ());
- // run worst strategy (w.r.t to linear)
-
- int print_results (void);
- // print results
-
- int argc_;
- // number of command line arguments
-
- char **argv_;
- // the actual command line arguments
-
- CORBA::ORB_var orb_;
- // The underlying ORB
-
- INVOKE_STRATEGY is_;
- // invocation strategy (default linear)
-
- CORBA::ULong num_POAs_;
- // number of POAs
-
- CORBA::ULong num_objs_;
- // number of objects
-
- CORBA::ULong num_ops_;
- // number of operations
-
- Demux_Test_var demux_test_[TAO_DEMUX_TEST_MAX_POAS][TAO_DEMUX_TEST_MAX_OBJS];
- // object references to the Demux_Test objects
-
- CORBA::ULong loop_count_;
- // number of times to invoke the request
-
- FILE *ior_fp_;
- // IOR database
-
- FILE *result_fp_;
- // temporary results file
-
- Operation_DB_Entry op_db_[TAO_DEMUX_TEST_MAX_OPS];
- // database of operations
-
-};
-
-
-#endif /* TAO_DEMUX_TEST_CLIENT_H */