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
|
// $Id: synch_driver.cpp 91670 2010-09-08 18:02:26Z johnnyw $
// Driver program that measures the performance of synchronization
// mechanisms provided by ACE and the underlying OS.
#include "ace/Log_Msg.h"
#include "ace/Service_Config.h"
#include "ace/Service_Repository.h"
#include "Synch_Lib/Benchmark_Base.h"
#if defined (ACE_HAS_THREADS)
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
ACE_Service_Config::open (argc, argv);
ACE_Service_Repository_Iterator sri (*ACE_Service_Repository::instance ());
// Iteratively execute each service loaded in from the svc.conf
// file.
for (const ACE_Service_Type *sr;
sri.next (sr) != 0; )
{
// This would greatly benefit from RTTI typesafe downcasting...
const ACE_Service_Type_Impl *type = sr->type ();
const void *obj = type->object ();
ACE_Service_Object *so = (ACE_Service_Object *) obj;
Benchmark_Base *bb = (Benchmark_Base *) so;
if (bb->benchmark_type () == Benchmark_Base::METHOD)
{
Benchmark_Method_Base *bm = (Benchmark_Method_Base *) bb;
ACE_DEBUG ((LM_DEBUG, "\n\nExecuting %s\n", sr->name ()));
bm->exec (&sri);
}
else
sri.advance ();
}
return 0;
}
#else
int
ACE_TMAIN (int, ACE_TCHAR *[])
{
ACE_ERROR_RETURN ((LM_ERROR,
"This test requires the platform to have threads\n"), -1);
}
#endif /* ACE_HAS_THREADS */
|