Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6221665
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T08:10:27+00:00 2026-05-24T08:10:27+00:00

I’m trying to learn boost::statechart. I want to make a little app which loads

  • 0

I’m trying to learn boost::statechart.

I want to make a little app which loads a file.

//  --------------------------------
// |                                |
// |           O     Project        |
// |           |                    |
// |           v                    |
// |  ----------------------------  |
// | |                            | |
// | |         Unloaded           | |
// |  ----------------------------  |
// |  |              ^              |
// |  | EvLoad       | EvUnload     |<-----O
// |  v              |              |
// |  ----------------------------  |
// | |                            | |
// | |         Loaded             | |
// |  ----------------------------  |
// |           |   ^                |
// |           |   | EvLoad         |
// |           -----                |
//  --------------------------------

But how do i transport arguments to the state, e.g. a filename?
If i store the filename inside EvLoad i can access it easily for the in state reaction

struct Loaded : sc::simple_state< Loaded, Project>
{
    typedef sc::custom_reaction< EvLoad > reactions;
    sc::result react( const EvLoad & e )
    {
        //load file e.path()
        ...
        return discard_event();
    }
}

But when I’m in the Unloaded state then I’m invoking the constructor of Loaded and i can’t pass arguments to it. The only workaround I came up with is reposting the event before doing the transition, but this looks a bit dirty to me.

struct Unloaded : sc::simple_state< Unloaded, Project >
{
    typedef sc::custom_reaction< EvLoad > reactions;
     sc::result react( const EvLoad & e )
     {
         post_event( e ); //workaround to pass the event to the loaded state
         return transit<Loaded>();
     }
};

Is there a better alternative?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T08:10:28+00:00Added an answer on May 24, 2026 at 8:10 am

    I found this link during a Google search after I’d typed out my suggestion below, which says that what you are already doing (posting an internal event or reposting the event with the data) is the way to do it. And that’s from the author of Boost statechart, so who’s to argue? 🙂

    My alternative suggestion would be that if any of your data exists at the "Project" level once loaded then the filename that is loaded would be part of the FSM state information, at the level of "Project" rather than the "Loaded" state.

    You could make the filename a parameter of the EvLoad event/constructor, performing a custom action on the transition and storing the filename that is loaded in the "Project" context. I think that is a better fit with the statechart concepts.

    So something like this (although I haven’t tested it), and obviously you’d clean it up to encapsulate the members better than this:

    struct EvLoad: sc::event<EvLoad>
    {
        std::string filename;
    
        EvLoad(const std::string& fn) : filename(fn) {}
    };
    
    struct EvUnload: sc::event<EvUnload>
    
    struct Project : sc::state_machine<Project, Unloaded>
    {
        std::string filename;
    
        void LoadFile(const EvLoad& e)
        {
            // Load file
            filename = e.filename;
        }
    
        void UnloadFile(const EvUnload& e)
        {
            filename.clear();
            // Unload file data
        }
    };
    
    struct Unloaded : sc::simple_state<Unloaded, Project>
    {
        typedef sc::transition<EvLoad, Loaded, Project, &Project::LoadFile> reactions; 
    };
    
    struct Loaded : sc::simple_state<Loaded, Project>
    {
        typdef mpl::list<
            sc::transition<EvLoad, Loaded, Project, &Project::LoadFile>,
            sc::transition<EvUnload, Unloaded>
        > reactions;
    };
    

    When you go to load a file drive the statemachine with a call such as project.process_event(EvLoad(filename));

    Alternatively you could just store the filename in the "Project" state and access it with context().filename from the Loaded state.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
I want use html5's new tag to play a wav file (currently only supported
i want to parse a xhtml file and display in UITableView. what is the
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
I used javascript for loading a picture on my website depending on which small
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.