Skip to content

codehackerr/poka-yoke

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Status

Build Status

Poka-yoke - Mistake Proof Your Code

Poka-yoke? is a Japanese concept that means "mistake-proofing". Idea is to prevent inadvertant errors by operators of machines and systems. Example: How a plug can fit only one way to a socket.

Applied to software, poka-yoke means designing mistake proofed client APIs.

To show you how this works, let's dive into a simple example: A perpetual light bulb. It's a bulb that never burns out; it just switches on and off as you control it. It might sound trivial, but sufficient to demonstrate the idea.

So, join me as we explore different ways to implement this, with and without the magic of mistake-proofing (Poka-yoke).

Client API without the Poka-Yoke Magic

class LightBulb {

    private static boolean OFF = false;
    private static boolean ON = !OFF;
    
    private boolean state = OFF;
    
    public void on() {
        change_state(this.state, ON);
    }
    
    public void off() {
        change_state(this.state, OFF);
    }

    void change_state(boolean current_state, boolean transition) throws InvalidTransition {
        if (current_state == OFF && transition == ON) {
            state = ON;
        } else if (current_state == OFF && transition == OFF) {
            throw new InvalidTransition(INVALID_TRANSITION_OFF_to_OFF);
        } else if (current_state == ON && transition == OFF) {
            state = OFF;
        } else if (current_state == ON && transition == ON) {
            throw new InvalidTransition(INVALID_TRANSITION_ON_to_ON);
        }
    }
}
/** Client Code */
LightBulb light = new LightBulb();
try { 
     light.on();
} catch (InvalidTransition e){
     //....
}

try { 
     light.off();
} catch (InvalidTransition e){
     //....
}

With this approach the client can call on or off on the LightBulb irrespective of it's current state. When the client requests an invalid transition, an exception is thrown. There are few problems with this approach.

  • With all the invalid state conditionals, the implementation is unnecessarily complicated
  • The client code is exposed to unnecessary details about the implementation, violating the law of least knowledge
  • The client code is more complicated with the unnecessary exception handling blocks

Applying the Poka-Yoke Magic (Mistake proofed Client API)

The fundamental idea in this design is clients can request only valid transitions, just like an electric plug that can only fit into a power socket one way

There are two ways we can implement this namely

  • interface segregation based on state
  • common interface

With interface segregation

These are the important aspects of this design.

  • Each state (this is an FSM) is modeled as an object, namely OffLight and OnLight
  • Interfaces are segregated by state, OffLight.on() and OnLight.off()
  • Neither OffLight or OnLight are directly instantiable
  • LightBulb.newLight() is the factory method that returns the initial state OffLight

See the source directory for a complete code.

OffLight offLight = LightBulb.newLight();
OnLight onLight = offLight.on();

// And a blinker pattern

LightBulb.newLight()
 .on()
 .off()
 .on()
 .off()
 

In the above design

  • clients can never make an invalid call (Poka-yoke)
  • client code is simple (No invalid scenario handling)
  • the transitions are very clear to the client

The above approach has one limitation. The state transition code needs to be static. ie; if you want to parameterize the number of blinks it's not possible in an elegant way. That is because transitions returns different interfaces on or off. This problem can be addressed with a common interface.

With common interface

If you have a dynamic use case,

  • the trick is to hide the Offlight and OnLight states inside an LightBulb interface.
  • and replace the on and off interface with toggle. Thus there is a common interface.
abstract class LightBulb {
    public abstract LightBulb toggle();

    public LightBulb newLight() {
        return new OffLight();
    }

    public boolean is_on() {
        return this instanceof OnLight;
    }

    public boolean is_off() {
        return this instanceof OffLight;
    }
    
    private static class OffLight extends LightBulb {
        public LightBulb toggle(){
            //.....
            return new OnLight();
        }
    }
    private static class OnLight extends LightBulb {
        public LightBulb toggle(){
            //.....
            return new OffLight();
        }
    }
}

With the above design

  • clients can never make an invalid call (Poka-yoke)
  • client code is simple (No invalid call handling)
  • both static and dynamic use cases are supported

Static Usecase

LightBulb.newLight()
.toggle()
.toggle()
.toggle()
 

Dynamic Usecase

LightBulb light = LightBulb.newLight();
for(int i = 0, reps = 10; i < reps; i++) {
    light = light.toggle();
}

Practice Usecases

Some other example use cases are. Give it a try. Think state transitions. Eg: It's invalid to run a query until you have an open database connection.

  • Sockets
  • Files
  • Database connections and queries
  • Workflows

Discovering Mistake-Proof Software Design

  • Data hiding and encapsulation. Start with everything hidden and expose only what is really required.
  • Law of least knowledge. The clients need to know the minimal what they need to get the job done. Interface seggregation principle of SOLID is a way to achieve this.
  • Prevent invalid transitions (That's what we have demonstrated primarily here). Model State Machines as Sate Machines, don't design them as a generic object that can be mutated by the clients in unintended ways.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages