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
|
//////////////////////////////////////////////////////////////////////////////
// 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)
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// The following code implements the state-machine (this is the version
// discussed in the tutorial):
//
// --------------------------------
// | |
// | O Active |
// | | |<----
// | v | | EvReset
// | ---------------------------- | |
// | | | |-----
// | | Stopped | |
// | ---------------------------- |
// | | ^ |
// | | EvStartStop | EvStartStop |<-----O
// | v | |
// | ---------------------------- |
// | | | |
// | | Running | |
// | ---------------------------- |
// --------------------------------
#include <boost/statechart/event.hpp>
#include <boost/statechart/state_machine.hpp>
#include <boost/statechart/simple_state.hpp>
#include <boost/statechart/transition.hpp>
#include <boost/config.hpp>
#include <ctime>
#include <iostream>
#ifdef BOOST_NO_STDC_NAMESPACE
namespace std
{
using ::time;
using ::difftime;
using ::time_t;
}
#endif
#ifdef BOOST_INTEL
# pragma warning( disable: 304 ) // access control not specified
# pragma warning( disable: 444 ) // destructor for base is not virtual
# pragma warning( disable: 981 ) // operands are evaluated in unspecified order
#endif
namespace sc = boost::statechart;
//////////////////////////////////////////////////////////////////////////////
struct EvStartStop : sc::event< EvStartStop > {};
struct EvReset : sc::event< EvReset > {};
struct IElapsedTime
{
virtual double ElapsedTime() const = 0;
};
struct Active;
struct StopWatch : sc::state_machine< StopWatch, Active > {};
struct Stopped;
struct Active : sc::simple_state< Active, StopWatch, Stopped >
{
public:
typedef sc::transition< EvReset, Active > reactions;
Active() : elapsedTime_( 0.0 ) {}
double & ElapsedTime()
{
return elapsedTime_;
}
double ElapsedTime() const
{
return elapsedTime_;
}
private:
double elapsedTime_;
};
struct Running : IElapsedTime, sc::simple_state< Running, Active >
{
public:
typedef sc::transition< EvStartStop, Stopped > reactions;
Running() : startTime_( std::time( 0 ) ) {}
~Running()
{
context< Active >().ElapsedTime() = ElapsedTime();
}
virtual double ElapsedTime() const
{
return context< Active >().ElapsedTime() +
std::difftime( std::time( 0 ), startTime_ );
}
private:
std::time_t startTime_;
};
struct Stopped : IElapsedTime, sc::simple_state< Stopped, Active >
{
typedef sc::transition< EvStartStop, Running > reactions;
virtual double ElapsedTime() const
{
return context< Active >().ElapsedTime();
}
};
//////////////////////////////////////////////////////////////////////////////
char GetKey()
{
char key;
std::cin >> key;
return key;
}
//////////////////////////////////////////////////////////////////////////////
int main()
{
std::cout << "Boost.Statechart StopWatch example\n\n";
std::cout << "s<CR>: Starts/Stops stop watch\n";
std::cout << "r<CR>: Resets stop watch\n";
std::cout << "d<CR>: Displays the elapsed time in seconds\n";
std::cout << "e<CR>: Exits the program\n\n";
std::cout << "You may chain commands, e.g. rs<CR> resets and starts stop watch\n\n";
StopWatch stopWatch;
stopWatch.initiate();
char key = GetKey();
while ( key != 'e' )
{
switch( key )
{
case 'r':
{
stopWatch.process_event( EvReset() );
}
break;
case 's':
{
stopWatch.process_event( EvStartStop() );
}
break;
case 'd':
{
std::cout << "Elapsed time: " <<
stopWatch.state_cast< const IElapsedTime & >().ElapsedTime() << "\n";
}
break;
default:
{
std::cout << "Invalid key!\n";
}
break;
}
key = GetKey();
}
return 0;
}
|