1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
// $Id: Baseline_Test.cpp 91670 2010-09-08 18:02:26Z johnnyw $
#define ACE_BUILD_SVC_DLL
#include "Baseline_Test.h"
# if defined (ACE_HAS_THREADS)
#include "ace/OS_NS_unistd.h"
#include "ace/Service_Repository.h"
#include "ace/Get_Opt.h"
#include "ace/Thread_Manager.h"
#if !defined (__ACE_INLINE__)
#include "Baseline_Test.inl"
#endif /* __ACE_INLINE__ */
Baseline_Test_Options baseline_options;
// Static Baseline Options holds the test configuration information
// and the test statistics.
Baseline_Test_Base::Baseline_Test_Base (void)
: Benchmark_Base (Benchmark_Base::BASELINE),
yield_method_ (Baseline_Test_Options::USE_SLEEP_ZERO),
iteration_ (DEFAULT_ITERATIONS),
what_(TEST_LOCK)
{
}
int
Baseline_Test_Base::init (int argc, ACE_TCHAR *argv[])
{
return this->parse_args (argc, argv);
}
int
Baseline_Test_Base::parse_args (int argc, ACE_TCHAR *argv[])
{
ACE_Get_Opt get_opt (argc, argv, ACE_TEXT("i:ylrw"), 0);
int c;
while ((c = get_opt ()) != -1)
switch (c)
{
case 'i': // Total iterations
{
int tmp = ACE_OS::atoi (get_opt.opt_arg ());
if (tmp <= 0)
ACE_ERROR_RETURN ((LM_ERROR,
"%d is not a valid value for iteration\n",
tmp), -1);
else
this->iteration_ = static_cast<size_t> (tmp);
}
break;
case 'y': // Use thr_yield.
this->yield_method_ = Baseline_Test_Options::USE_THR_YIELD;
break;
case 'l':
this->what_ = TEST_LOCK;
break;
case 'r':
this->what_ = TEST_READLOCK;
break;
case 'w':
this->what_ = TEST_WRITELOCK;
break;
default:
ACE_ERROR ((LM_ERROR, "Invalid argument %c used\n", c));
break;
}
return 0;
}
void
Baseline_Test_Base::yield (void)
{
if (this->yield_method_ == Baseline_Test_Options::USE_SLEEP_ZERO)
ACE_OS::sleep (0);
else
ACE_OS::thr_yield ();
}
Baseline_Test_Options::Baseline_Test_Options (void)
: test_try_lock_ (0),
verbose_ (0),
current_yield_method_ (0),
current_iteration_ (0),
total_iteration_ (DEFAULT_ITERATIONS)
{
}
int
Baseline_Test_Options::parse_args (int argc, ACE_TCHAR *argv[])
{
//FUZZ: disable check_for_lack_ACE_OS
ACE_Get_Opt getopt (argc, argv, ACE_TEXT("tv"), 0);
int c;
while ((c = getopt ()) != -1)
//FUZZ: enable check_for_lack_ACE_OS
switch (c)
{
case 't':
this->test_try_lock_ = 1;
break;
case 'v':
this->verbose_ = 1;
break;
default:
ACE_ERROR ((LM_ERROR, "Invalid arguemnt %c used.\n", c));
break;
}
return 0;
}
int
Baseline_Test_Options::reset_params (size_t iteration,
int yield)
{
this->current_iteration_ = 0;
this->timer.reset ();
this->current_yield_method_ = yield;
this->total_iteration_ = iteration;
return 0;
}
void
Baseline_Test_Options::print_result (void)
{
ACE_Time_Value tv;
ACE_hrtime_t nsec;
this->timer.elapsed_time_incr (tv);
this->timer.elapsed_time_incr (nsec);
ACE_DEBUG ((LM_DEBUG,
"Total Time: %d sec %d usec for a "
"total of %d iterations\n"
"Average time: %d nanoseconds.\n",
tv.sec (), tv.usec (),
this->current_iteration_,
(int) (nsec / this->current_iteration_)));
}
Baseline_Test::Baseline_Test (void)
: current_test_ (0),
get_lock_ (2),
let_go_lock_ (2)
{
}
// Initialize and run the benchmarks tests.
int
Baseline_Test::init (int argc, ACE_TCHAR **argv)
{
return baseline_options.parse_args (argc, argv);
}
int
Baseline_Test::pre_run_test (Benchmark_Base *bb)
{
this->current_test_ = (Baseline_Test_Base *) bb;
baseline_options.reset_params (this->current_test_->iteration (),
this->current_test_->yield_method ());
if (baseline_options.test_try_lock ())
{
ACE_Thread_Manager::instance ()->spawn
(ACE_THR_FUNC (Baseline_Test::hold_lock),
(void *) this);
this->get_lock_.wait ();
// Wait until the lock is held by the spawning thread.
}
return 0;
}
int
Baseline_Test::run_test (void)
{
if (baseline_options.test_try_lock ())
return this->current_test_->test_try_lock ();
else
return this->current_test_->test_acquire_release ();
}
int
Baseline_Test::post_run_test (void)
{
if (baseline_options.test_try_lock ())
{
// Release the lock we hold.
this->let_go_lock_.wait ();
ACE_Thread_Manager::instance ()->wait ();
}
baseline_options.print_result ();
return 0;
}
int
Baseline_Test::valid_test_object (Benchmark_Base *bb)
{
return (bb->benchmark_type () == Benchmark_Base::BASELINE);
}
void *
Baseline_Test::hold_lock (void *arg)
{
Baseline_Test *this_test = (Baseline_Test *) arg;
this_test->current_test_->acquire ();
this_test->get_lock_.wait ();
this_test->let_go_lock_.wait ();
return 0;
}
ACE_SVC_FACTORY_DEFINE (Baseline_Test)
#endif /* ACE_HAS_THREADS */
|