Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

77
votes
19answers
16k views

C state-machine design

I am crafting a small project in mixed C and C++. I am building one small-ish state-machine at the heart of one of my worker thread. I was wondering if you gurus on SO would share your state-machine ...
30
votes
3answers
3k views

Boost Statechart vs. Meta State Machine

Apparently boost contains two separate libraries for state machines: Statechart and Meta State Machine (MSM). The taglines give very similar descriptions: Boost.Statechart - Arbitrarily complex ...
24
votes
3answers
2k views

Algorithm for implementing C# yield statement

I'd love to figure it out myself but I was wondering roughly what's the algorithm for converting a function with yield statements into a state machine for an enumerator? For example how does C# turn ...
13
votes
4answers
1k views

What problems have you solved using a Workflow Engine?

I'd like to know about specific problems you - the SO reader - have solved using Workflow Engines and what libraries/frameworks you used if you didn't roll your own. I'd also like to know when a ...
10
votes
9answers
5k views

Python state-machine design

Related to this SO question (C state-machine design), could you SO folks share with me (and the community!) your Python state-machine design techniques? Update3: At the moment, I am going for an ...
10
votes
3answers
8k views

How to write state machines with c#?

I need to write state machines that run fast in c#. I like the Windows Workflow Foundation library, but it's too slow and over crowded with features (i.e. heavy). I need something faster, ideally with ...
9
votes
10answers
818 views

How would you code a washing machine?

Imagine I have a class that represents a simple washing machine. It can perform following operations in the following order: turn on -> wash -> centrifuge -> turn off. I see two basic alternatives: ...
9
votes
6answers
2k views

Finite State Machine and inter-FSM signaling

Recommendations for languages with native (so no FSM generation tools) support for state machine development and execution and passing of messages/signals. This is for telecoms, e.g implementation of ...
6
votes
3answers
453 views

Does Model-View-Controller Play Nicely with Artificial Intelligence and Behavior Trees?

I come from an MVC background (Flex and Rails) and love the ideas of code separation, reusability, encapsulation, etc. It makes it easy to build things quickly and reuse components in other projects. ...
6
votes
5answers
5k views

Java library to check whether a String contains a number *without* exceptions

I'm looking for a method that returns a boolean if the String it is passed is a valid number (e.g. "123.55e-9", "-333,556"). I don't want to just do: public boolean isANumber(String s) { try { ...
6
votes
3answers
3k views

State Machine Frameworks for .NET

We have a system at my work that is basically a message-driven state machine. It takes in a variety of types of messages, looks up some context/state based on the message, then decides what to do, ...
5
votes
5answers
387 views

Best way to implement a large state machine?

Basically I have a state machine that controls a game character's attacks, with timings based on the animation length. So for example: I start at the default state, and if the player hits an attack ...
5
votes
7answers
1k views

Designing a state machine in C++

I have a little problem that involves modeling a state machine. I have managed to do a little bit of knowledge engineering and 'reverse engineer' a set of primitive deterministic rules that determine ...
5
votes
4answers
2k views

How to get this Qt state machine to work?

I have two widgets that can be checked, and a numeric entry field that should contain a value greater than zero. Whenever both widgets have been checked, and the numeric entry field contains a value ...
5
votes
3answers
560 views

Best Practice for Transitioning From Nested State to Nested State (see diagram)

I am trying to wrap my mind around the best way to implement nested state transitions in a single threaded programming language (Actionscript). Say I have a structure like this behavior tree: Now ...
5
votes
7answers
2k views

Are there any programs to draw and test state machines, turing machines, etc?

When I go back to school after Thanksgiving, I'll be taking a course in CS Theory covering topics such as deterministic and nondeterministic finite state machines, turing machines, pushdown automata ...
4
votes
2answers
1k views

Finite State Machine compiler

What is the best Opensource FSM compiler which can generate c++ code ?
4
votes
5answers
468 views

How should an object using the state pattern be transitioned to the next state?

I have an Order class which goes through a series of defined states. To aid with this, I have implemented the State pattern such that the Order object has a CurrentState member which implements an ...
3
votes
3answers
60 views

What's a good tutorial on how to deal with different “states”?

Just a tutorial to cover the basics of state machines and design patterns.
3
votes
5answers
642 views

A Simple State Machine using a Static class in C# to notify other subscribers via Events

I've been trying to write a simple Static-class State Machine for my application to notify other controls and code when the system state changes. And I think I almost have it, but I'm running into a ...
3
votes
5answers
546 views

What's the best(when performance matters) way to implement a state machine in C#?

I came up with the following options: Using the goto statement: Start: goto Data Data: goto Finish Finish: ; using the switch statement: switch(m_state) { case State.Start: m_state ...
3
votes
3answers
451 views

Parsing wiki markup using a state machine

I would like to parse a simple grammar such as wiki markup using state machines. I have never written or played with one. I would like to lean how to implement a simple one. I am thinking of using ...
3
votes
1answer
2k views

Controlling Layout of Graphviz Graphs

I have a number of relatively simple (auto-generated) graphs in graphviz dot format. These show the path through a state machine, but dot has a slightly confusing habit of deciding that two nodes ...
3
votes
2answers
168 views

Synchronizing two state machines

Say, I am building a business process management application. It has the following entities: issues and tasks, related to each other as 1 issue to many tasks. Both, task and issue, have their own ...
3
votes
2answers
545 views

Data-driven state machine application

We are currently working on a "data-driven" state machine application. Right now, the state flows are all configured in the database, but none of the decision/business logic is configurable in the DB ...
3
votes
2answers
2k views

DFA -> regular expression

I've written a DFA on paper, and want to translate it into a set of regular expressions. Does anybody know a good tool to do this?
3
votes
3answers
1k views

Implementing event conditions in a C++ state machine

I'm using an hierarchical FSM for an embedded C++ application interface. I'd like to use small functions to determine whether certain inter-state events can be triggered, as well as use them to effect ...
2
votes
1answer
177 views

Rails - Single Table Inheritance problems. Any solutions / alternatives

For my project management application, I am currently using Single Table Inheritance so that: Lead < Requirement Project < Requirement By which I mean to say that Lead is a Requirement and ...
2
votes
1answer
204 views

State machine in Ruby using Fibers?

I'm trying to get a handle on the new Fiber class in Ruby 1.9 and I read that one of the more common applications for Fibers (and coroutines) is in state machines. Unfortunately my Fiber-fu isn't up ...
2
votes
2answers
292 views

books on state machine development

gcc 4.4.3 gcc c89 I have started to go into the world of state machines using c. I have to develop on for my job. I am just wondering if there are any good book in developing state machines ...
2
votes
2answers
815 views

Comparison of Boost StateCharts vs. Samek's “Quantum Statecharts”

I've had heavy exposure to Miro Samek's "Quantum Hierarchical State Machine," but I'd like to know how it compares to Boost StateCharts - as told by someone who has worked with both. Any takers?
2
votes
6answers
795 views

How to design a state machine in face of non-blocking I/O?

I'm using Qt framework which has by default non-blocking I/O to develop an application navigating through several web pages (online stores) and carrying out different actions on these pages. I'm ...
2
votes
2answers
194 views

is state machine suitable for handling state changes in sales-promotion system?

I'm developing sales promotion system and I just stepped on something that could be probably handled with state machine pattern, but I have no experiences with state machines yet. Maybe the state ...
1
vote
2answers
125 views

Threads or state machine to manage application state?

I have a web application that automatically configures a device. Communication is achieved in a request - response fashion using HTTP. I am currently using a thread to manage the configuration ...
1
vote
1answer
115 views

What gem you recommend for a State machine that works well with rails 3

Im using Rubystasm gem "rubyist-aasm", the thing is that it keeps showing me warning messages, and it is pretty annoying. DEPRECATION WARNING: Base.named_scope has been deprecated, please use ...
1
vote
1answer
102 views

Turing Machines and Machine Schemas

Arthur Dent, using space age technology not yet available on earth developed an algorithm which determines if a TM M1 halts or not when started on a blank tape. But then later, he discovered that the ...
1
vote
1answer
104 views

What are patterns/types of task queues? Can the multi-level task queue exist in form of a N-tree?

I still didn't discovered a widely accepted pattern for following situation: In the database, a three-level deep series of tasks exists. Main task: gather data for user X; report data; Sub-task: ...
1
vote
2answers
341 views

Passing variables to Rails StateMachine gem transitions

Is it possible to send variables in the the transition? i.e. @car.crash!(:crashed_by => current_user) I have callbacks in my model but I need to send them the user who instigated the transition ...
1
vote
2answers
273 views

Getting list of states/events from a model that AASM

I successfully integrated the most recent AASM gem into an application, using it for the creation of a wizard. In my case I have a model order class Order < ActiveRecord::Base belongs_to :user ...
1
vote
1answer
307 views

Drawing reflexive edges in State Machines

I have to draw a small finite state machine that has some reflexive transitions (meaning the start and the end state of the transition are equal. The problem is that rendering that in Graphviz has ...
1
vote
1answer
59 views

High-Level Pattern for Dynamic Status Progression?

Have you ever encountered a situaton like this, and if so, how did you solve it? We have a record which goes through multiple stages of progression, such as: submission -> preliminary evaluation ...
1
vote
2answers
679 views

Encapsulating a (pure Ruby) Ragel parser for infinite streams?

I want to parse a continuous stream of bytes (from a socket) with a state machine using Ragel However, all the Examples I have found are either parsing a complete file in one pass (like the Gherkin ...
1
vote
2answers
882 views

Rails error handling with AASM state machine

I'm using the rubyist-aasm state machine for handling the different states in my Event object (event initialized, event discussed, event published, etc.). I added guards to prevent state changes when ...
1
vote
2answers
403 views

Can a finite state machine transition to a previous state?

I know that a FSM can transition to the next state and even to the current state, i.e. a state that transitions to itself, but is it legal to have a state transition to a previous state (state C ...
1
vote
3answers
265 views

State machine for syntax coloring

I'm currently learning how lexers and parsers work, and i have following question about state machine. For example, i need to colorize text by following rule: For this rule simple state transition ...
1
vote
2answers
360 views

library for converting regular expressions to NFAs?

Is there a good library for converting Regular Expressions into NFAs? I see lots of academic papers on the subject, which are helpful, but not much in the way of working code. My question is due ...
1
vote
2answers
419 views

Cannot compile FSM sample code

There is a nice state machine tutorial called UML Tutorial: Finite State Machines by Robert C. Martin. But I can't compile the sample code it provides. I got *FsmTest.cpp(46) : error C2664: 'SetState' ...
1
vote
2answers
181 views

Is it possible to transition between states until multiple events happen in wf?

I am developing a State Machine Workflow using C# and WF in visual studio 2008. On one of my states I need to wait for multiple events to happen until the workflow can transition to the next state. ...
1
vote
1answer
1k views

Calling a method on state change with AASM

How do I go about calling a method on state change in AASM? I'd like to call update_foo when the state transitions to paid in the following model: class Foo < ActiveRecord::Base include AASM ...
0
votes
0answers
72 views

Two state machines in Single ruby class

Following are System Specifications := Language Ruby Framework Padrino ORM Mongoid Database MongoDB Now I have a Person model with two fields tat maintain states separately. class Person ...

1 2