Tagged Questions
A state machine is a model for designing systems which change based upon their current state and what input they receive.
24
votes
7answers
2k views
Simple state machine example in C#?
Update:
Again thanks for the examples, they have been very helpful and with the following I don't mean
to take anything away from them.
Aren't the currently given examples, as far as I understand ...
18
votes
19answers
2k views
uses for state machines
In what areas of programming would I use state machines ? Why ? How could I implement one ?
EDIT: please provide a practical example , if it's not too much to ask .
14
votes
1answer
1k views
Comparison between Stateless (on google code) and Windows Workflow
I'm starting to think that I should ditch Windows WF in favor of something simpler. I don't necessarily need to pause workflow execution for extended periods of time and restore them later. I would ...
11
votes
8answers
4k views
state machines tutorials
C99
I am just wondering if anyone know of some good tutorials on the Internet for developing state machines. Or ebooks?
I am starting working on state machines and just need something general to get ...
10
votes
5answers
821 views
java generics design problem (state machine)
i made a state machine and would like it to take advantage of generics in java. currently i dont see the way i can make this work and get pretty looking code. im sure this design problem has been ...
10
votes
4answers
2k views
implementing a state machine using the “yield” keyword
Is it feasible to use the yield keyword to implement a simple state machine as shown here. To me it looks like the C# compiler has done the hard work for you as it internally implements a state ...
9
votes
6answers
278 views
State machine transitions at specific times
Simplified example:
I have a to-do. It can be future, current, or late based on what time it is.
Time State
8:00 am Future
9:00 am Current
10:00 am Late
So, in this example, ...
9
votes
10answers
816 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:
...
8
votes
8answers
2k views
Non-deterministic finite state machines in software development?
Recently I've been thinking about finite state machines and how I would implement them in software (programming language doesn't matter).
My understanding is that deterministic state machines are in ...
7
votes
3answers
314 views
Windows Workflow usage in large web applications
Although, most of the examples I checked on the Internet use WF to deal with wizard-like steps or designing a workflow-based UI, and since Windows Workflow can deal with state machines, and if we say, ...
7
votes
4answers
647 views
Is there a difference between a “finite state machine” and a “state machine”?
I'm not sure I understand if there is a difference between a finite state machine and a state machine? Am I thinking about this too hard?
7
votes
3answers
861 views
QT : Using State Machine for UI interactions?
Greetings,
We are developing a scientific QT Application which detect the border of a cell.Please refer to following prototype snapshots.
http://i27.tinypic.com/25tub9v.png
...
7
votes
5answers
2k views
.NET Workflow Engine Suggestions
I came across stateless, a hierarchical state machine framework based on Simple State Machine for Boo, but configured using C# 3.0
It is easy to configure and use, I will probably use it soon.
But I ...
7
votes
7answers
2k views
Truth tables in code? How to structure state machine?
I have a (somewhat) large truth table / state machine that I need to implement in my code (embedded C). I anticipate the behavior specification of this state machine to change in the future, and so ...
6
votes
2answers
115 views
Is there any alternative to Apache Commons SCXML?
I'm looking for a good and universal state machine and so far I've found SCXML. It's really simple to use (I mean the configuration) but the source code is archaic - there is no type safety and all ...
6
votes
4answers
123 views
Should a State Machine need to expose its current state?
We use a State Machine 'framework' (based on the State Pattern) which doesn't expose its current state, which sometimes means I have to do things in a roundabout way.
When I questioned this design ...
6
votes
7answers
1k views
State machines in C
What is the best way to write a state machine in C?
I usually write a big switch-case statement in a for(;;), with callbacks to re-enter the state machine when an external operation is finished.
Do ...
6
votes
2answers
251 views
General proof of equivalence of two FSMs in finite time?
Does a general proof exist for the equivalence of two (deterministic) finite state machines that always takes finite time? That is, given two FSMs, can you prove that given the same inputs they will ...
5
votes
4answers
169 views
How can I avoid using the stack with continuation-passing style?
For my diploma thesis I chose to implement the task of the ICFP 2004 contest.
The task--as I translated it to myself--is to write a compiler which translates a high-level ant-language into a ...
5
votes
2answers
1k views
PHP state machine framework
I doubt that is there any state machine framework like https://github.com/pluginaweek/state_machine for PHP.
I've had to define many if-else logical clauses, and I would like something to help make ...
5
votes
4answers
1k views
Is there a Java equivalent to libevent?
I've written a high-throughput server that handles each request in its own thread. For requests coming in it is occasionally necessary to do RPCs to one or more back-ends. These back-end RPCs are ...
5
votes
4answers
633 views
Are Windows Workflow Foundation Statemachines suitable for high performance scenarios?
i´m currently dealing with a system where i have to track the state for several thousand objects in parallel that send possible state updates a few times every minute. In addition i have to perform ...
4
votes
1answer
290 views
Testing dynamic initial states with FactoryGirl and StateMachine
I'm having some problems testing StateMachines with Factory Girl. it looks like it's down to the way Factory Girl initializes the objects.
Am I missing something, or is this not as easy as it should ...
4
votes
1answer
242 views
Can LINQ expression classes implement the observer pattern instead of deferred execution?
We have issues within an application using a state machine. The application is implemented as a windows service and is iteration based (it "foreaches" itself through everything) and there are myriads ...
4
votes
2answers
440 views
Dynamic State Machine in Ruby? Do State Machines Have to be Classes?
Question is, are state machines always defined statically (on classes)? Or is there a way for me to have it so each instance of the class with has it's own set of states?
I'm checking out Stonepath ...
3
votes
2answers
87 views
How to detect deviations in a sequence from a pattern?
i want to detect the passages where a sequence of action deviates from a given pattern and can't figure out a clever solution to do this, although the problem sound really simple.
The objective of ...
3
votes
3answers
573 views
Finite State Machine Pattern - The One True Pattern?
Could all Code ever written be improved by applying the State Machine Pattern?
I was working on a project that was a mass of horrendous awful, buggy, broken spaghetti code.
I copied Martin Fowler's ...
3
votes
2answers
469 views
get list of state_machine states
We are using state_machine ( https://github.com/pluginaweek/state_machine ) in a project and would like to offer a form with a select that lets us choose a state. (this is for searching, not for ...
3
votes
1answer
508 views
Boost MSM only processing internal transitions
I'm using the new Boost 1.44.0 MSM library to produce a state machine. In this state machine there are two classes of events class1 and class2. class1 events can be processed by either states S1 or S2 ...
3
votes
2answers
476 views
Rails: How to test state_machine?
Please, help me. I'm confused. I know how to write state-driven behavior of model, but I don't know what should I write in specs...
My model.rb file look
class Ratification < ActiveRecord::Base
...
3
votes
7answers
1k views
Finite State Machine : Bad design?
Are Finite State Machines generally considered as bad design in OOP ?
I hear that a lot. And, after I had to work on a really old, undocumented piece of C++ making use of it, I tend to agree. It was ...
3
votes
11answers
1k views
Is there a programming language with built-in state machine construct?
I am just curious if there is a programming language which has state machines (similar to boost::statechart) as primary language construct.
Analogies - c# has delegates where java uses the observer ...
3
votes
6answers
963 views
state_machine only works for new records
I can't seem to get the state_machine gem (http://github.com/pluginaweek/state_machine/) to work on existing records (it works correctly on new records).
Here's my model:
class Comment < ...
3
votes
2answers
1k views
Any recommendation for rails workflow implementations?
Anybody have experience with Rails workflow plugins? Route/OpenWFEru.
I am looking for CMS type workflow with states like edit, submit, approve, rollback, based on roles. Is this plugin overkill? ...
2
votes
2answers
63 views
Open source tool to generate UML behavioral models from python code?
I want to generate UML behavioral models (state machines and/or sequence diagrams) from python code. Is there any open source tool that can do that?
2
votes
1answer
125 views
Modeling Identifying states & Modeling Validation in State Machine Diagram
I am wondering what might I consider as States when I am asked to model state of a Booking Process (eg. Booking a Movie Ticket Online).
I did something like
It looks abit bloated mainly because ...
2
votes
1answer
92 views
Storing workflows (state machines) in the DB. What's the best way?
I am using workflow gem (htts://rubygems.org/gems/workflow), inside a RoR model (User) to model a simple state machine (actually many workflow with the same root).
The state machine is hardcoded in ...
2
votes
3answers
203 views
State machine versus RTOS for microcontrollers
I stumbled across a free state machine tool. This appears to be for programming embedded systems graphically. By doing so, the author claims that the resulting code is more maintainable than if an ...
2
votes
3answers
153 views
C# Overriding the GetHashCode method
In this example, the poster has overridden the get hash code method. I understand that this has been done in order to provide a better hash value for the returned object, to reduce the number of ...
2
votes
2answers
110 views
Dynamic target in a state machine
In a state machine made with SCXML, is there any way to set a dynamic target value for a transition?
I mean, suppose I have an object called "obj" which has been set as the datamodel for a scxml. ...
2
votes
2answers
491 views
rails custom validation on action
I would like to know if there's a way to use rails validations on a custom action.
For example I would like do something like this:
validates_presence_of :description, :on => :publish, :message ...
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
675 views
Conditional validation with state_machine
I'm using state_machine to build a multi-step form, with fields for each step validated before transitioning to the next step.
This is my model:
class Foo < ActiveRecord::Base
state_machine ...
2
votes
2answers
207 views
State Machine Question
There is a State Machine with two Transitions in the same function.
static readonly object _object = new object();
lock (_object)
{
// I want Host received the event of SMTrans01 first .
...
2
votes
3answers
265 views
Which State Machine execution frameworks for C++ implement UML semantics?
I'm looking for a framework that provides execution of hierarchical state machines (HSMs).
These are the requirements for the framework:
Conforms to UML state machine semantics (as much as ...
2
votes
1answer
199 views
IVR-style dialog system / workflow / menu
I need to build a dialog system similar to IVR used in call centers. My system is not phone-based, but the dialog is similar. Something like
System: "Main menu: Enter [1] for menu1, [2] for menu2"
...
2
votes
1answer
390 views
WCF Callback Faulted - what happens to the session?
Just trying to get my head around what can happen when things go wrong with WCF. I have an implementation of my service contract declared with an InstanceContextMode of PerSession...
...
2
votes
3answers
1k views
Why is this an invalid Turing machine?
Whilst doing exam revision I am having trouble answering the following question from the book, "An Introduction to the Theory of Computation" by Sipser. Unfortunately there's no solution to this ...
2
votes
5answers
1k views
Are state machines created in Windows Workflow Foundation 3.5 compatible with version 4.0?
If I have a state machine created in version 3.5 will I be able to upgrade to .NET/Windows Workflow Foundation 4.0, or will I have to re-create the functionality? I heard / read that 4.0 does not ...
2
votes
3answers
742 views
What's the best way to implement a UI state machine?
In my program I have three distinct UI states (Normal, Success, and Error) and in each one the controls are visible/hidden, enabled/disabled, the colors change, labels say different things...etc. and ...