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
|
//////////////////////////////////////////////////////////////////////////////
// Copyright 2002-2006 Andreas Huber Doenni
// Distributed under the Boost Software License, Version 1.0. (See accompany-
// ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// This is a quick-and-dirty handcrafted state machine with two states and two
// transitions employing GOF-visitation (two virtual calls per event).
// It is used to make speed comparisons with Boost.Statechart machines.
//////////////////////////////////////////////////////////////////////////////
#include <boost/config.hpp>
#include <iostream>
#include <iomanip>
#include <ctime>
#ifdef BOOST_NO_STDC_NAMESPACE
namespace std
{
using ::clock_t;
using ::clock;
}
#endif
#ifdef BOOST_INTEL
# pragma warning( disable: 304 ) // access control not specified
#endif
//////////////////////////////////////////////////////////////////////////////
class EvFlipBit;
class state_base
{
public:
virtual ~state_base() {};
virtual const state_base & react( const EvFlipBit & toEvent ) const = 0;
protected:
state_base() {}
};
template< class Derived >
class state : public state_base
{
public:
static const Derived & instance()
{
return instance_;
}
private:
static const Derived instance_;
};
template< class Derived >
const Derived state< Derived >::instance_;
//////////////////////////////////////////////////////////////////////////////
class event_base
{
public:
virtual ~event_base() {}
protected:
event_base() {}
public:
virtual const state_base & send( const state_base & toState ) const = 0;
};
template< class Derived >
class event : public event_base
{
protected:
event() {}
private:
virtual const state_base & send( const state_base & toState ) const
{
return toState.react( *static_cast< const Derived * >( this ) );
}
};
//////////////////////////////////////////////////////////////////////////////
class EvFlipBit : public event< EvFlipBit > {};
const EvFlipBit flip;
class BitMachine
{
public:
//////////////////////////////////////////////////////////////////////////
BitMachine() : pCurrentState_( &Off::instance() ) {}
void process_event( const event_base & evt )
{
pCurrentState_ = &evt.send( *pCurrentState_ );
}
private:
//////////////////////////////////////////////////////////////////////////
struct On : state< On >
{
virtual const state_base & react( const EvFlipBit & ) const
{
return Off::instance();
}
};
struct Off : state< Off >
{
virtual const state_base & react( const EvFlipBit & ) const
{
return On::instance();
}
};
const state_base * pCurrentState_;
};
//////////////////////////////////////////////////////////////////////////////
char GetKey()
{
char key;
std::cin >> key;
return key;
}
//////////////////////////////////////////////////////////////////////////////
int main()
{
// common prime factors of 2^n-1 for n in [1,8]
const unsigned int noOfEvents = 3 * 3 * 5 * 7 * 17 * 31 * 127;
unsigned long eventsSentTotal = 0;
std::cout << "Boost.Statechart Handcrafted example\n";
std::cout << "Machine configuration: " << 2 <<
" states interconnected with " << 2 << " transitions.\n\n";
std::cout << "p<CR>: Performance test\n";
std::cout << "e<CR>: Exits the program\n\n";
std::cout <<
"You may chain commands, e.g. pe<CR> performs a test and then exits the program\n\n";
BitMachine bitMachine;
char key = GetKey();
while ( key != 'e' )
{
switch ( key )
{
case 'p':
{
std::cout << "\nSending " << noOfEvents <<
" events. Please wait...\n";
const unsigned long startEvents2 = eventsSentTotal;
const std::clock_t startTime2 = std::clock();
for ( unsigned int eventNo = 0; eventNo < noOfEvents; ++eventNo )
{
bitMachine.process_event( flip );
++eventsSentTotal;
}
const std::clock_t elapsedTime2 = std::clock() - startTime2;
const unsigned int eventsSent2 = eventsSentTotal - startEvents2;
std::cout << "Time to dispatch one event and\n" <<
"perform the resulting transition: ";
std::cout << elapsedTime2 * 1000.0 / eventsSent2 << " microseconds\n\n";
}
break;
default:
{
std::cout << "Invalid key!\n";
}
}
key = GetKey();
}
return 0;
}
|