Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
133 views

How to give objects to states in a boost::statechart?

I am in the situation where I need to modify a state machine that I did not write. This state machine is written using Boost Statechart. Unfortunately, I find this code impenetrable, and the guy who ...
2
votes
1answer
155 views

Why does my use of context<State>().method() violate statechart assertion?

I've developed some concept code for a project that I will be working on shortly. The project lends itself to a state machine design and I think boost::statechart will do a good job. I hit a ...
2
votes
1answer
753 views

The Boost Statechart Library - how to implement time-consuming transitions

In our project we have UI and logic (which may be represented as a state machine). Transitions between some steps in this step machine are long (IO-bound). We don't want to steal our UI thread for all ...
1
vote
1answer
80 views

Using Boost statechart, how can I transition to a state unconditionally?

I have a state A that I would like to transition to its next state B unconditionally, once the constructor of A has completed. Is this possible? I tried posting an event from the constructor, which ...
1
vote
1answer
64 views

How to get the current most derived state in a boost::statechart state_machine object?

I am using boost::state_chart library. For debug purposes, I would like to know at any given time the state of my state machine. How to get the current (most derived) state in the state_machine object ...
1
vote
0answers
86 views

reacting to all orthogonal states having finished in Boost.statechart

I'm working on a robot control program that is based on a state machine. While the program uses Qt State Machine Framework, I also attempted to implement it using Boost.statechart (BS) as a ...
1
vote
2answers
74 views

Recording state changes in boost::statechart

For Unit Testing, I'm trying to record all the state transactions after I kick off a state machine event. E.g., if I post_event A to the fifo_scheduler of an async_state_machine, the state machine ...
1
vote
1answer
293 views

Unit testing with boost::statechart

We are using the boost statechart library and have troubles writing unit tests for the code. In our normal execution the state machine starts in ClosedState: struct BoostStateMachine : ...
1
vote
1answer
131 views

Boost.Statechart - issue with documented method for choice points

As per the example in the documentation I made the following code that fails to compile because custom_reaction<> does not seem to match the concept expected as the third template parameter to ...
1
vote
2answers
639 views

Help for Boost.Statechart bug

Any ideas how to fix this? using 1.39_0 on ubuntu 8.10 w/g++ 4.3.2 In the following statechart, the phrase "BUGGY" is printed three times. One would expect the event would only trigger one "BUGGY". ...
0
votes
1answer
133 views

boost statechart pass arguments with transition

I'm trying to learn boost::statechart. I want to make a little app which loads a file. // -------------------------------- // | | // | O Project ...
0
votes
1answer
93 views

In Boost.Statechart, what's the difference between state and simple_state?

In implementing a state machine using Boost.Statechart, I came across a problem arising from attempting to access the outer context of a simple_state from its constructor. A comment in ...
0
votes
1answer
56 views

Ways to implement condition-based inner initial state selection in boost::statechart?

What are some possible ways in boost::statechart to implement the initial state selection described on Slide 25 of Comparison of Harel's Statecharts & UML Statecharts ? "On entering the ...
0
votes
0answers
145 views

Severlal instances of asynchronous state machine in boost statechart

Is there any way to create several instances of my state machines (asynchronous state machines)? The problem is if i have several instances only one of them receives events.
0
votes
1answer
126 views

boost asynchronous_state_machine

Is it possible to get ref to scheduler from processor_handle for asynchronous_state_machine? Code: struct A { A(sc::fifo_scheduler<>::processor_handle& h):player_ref(h){} ...