SlideShare uma empresa Scribd logo
1 de 27
Baixar para ler offline
Refactoring to the
State Design Pattern
    Jim Roepcke <jr@uvic.ca>
       CSC 578D Fall 2009
Motivation

• Improve the design of the GameStats
  application
 • Make it easier to understand at a glance
 • Make it easier to make improvements
Backup              Backup
Replica             Replica


          Primary
          Replica

Backup              Backup
Replica             Replica
Primary-Backup
• Bonjour can guarantee no more than one
  Primary replica can publish its service
• Multiple Backup replicas communicate with
  the Primary to keep all replicas synchronized
• Writes are made to the Primary and
  propagated back to the Backup replicas
• If the Primary fails, a Backup can take over.
  The remaining backups sync to the new
  Primary
failed to
     initial                                                                        become
                                                                                    primary


     start                        primary failed to start


    trying to                                                                       trying to
    become                                                                         connect to
    primary                                                                         primary


                                                                                 backup did start
primary did start                                       backup failed to start


                                          failed to
    primary                              connect to                                  backup
                                          primary


      stop                                                                            stop



    stopping                                                                        stopping
                                            error
    primary                                                                          backup



                    primary did stop                        backup did stop



                                           stopped
Context                             State

Request()                        Handle()




    state->Handle()
                      ConcreteStateA        ConcreteStateB

                      Handle()              Handle()
State
      Context
                             TransitionTo(Context c, State s)
                             Enter(Context c)
SetState(State s)
                             Leave(Context c)
Foo()
Bar()
                             Foo(StateContext c)
Baz()
                             Bar(StateContext c)
....
                             Baz(StateContext c)
                             ...

  state->Foo()
                                          BaseState
                                                                          this->Leave(c)
                             TransitionTo(Context c, State s)             c->SetState(s)
                             Enter(Context c)                             s->Enter(c)
                             Leave(Context c)

                             Foo(StateContext c)
                             Bar(StateContext c)
                             Baz(StateContext c)
                             ...


                        ConcreteStateA                ConcreteStateB
                                                                                   TransitionTo
                    Enter(Context c)                Foo(StateContext c)
                                                                               (c, ConcreteStateA)
                    Baz(StateContext c)             Bar(StateContext c)
primary



  stop



stopping
                               error
primary



           primary did stop



                              stopped
Original Code
    - (void) stop
{
!   if (self.state == GSGameControllerStatePrimary) {
!   ! self.state = GSGameControllerStateStopping;
!   ! [self uninstallServerTargets];
!   ! [_server stop];
!   ! self.state = GSGameControllerStateStopped;
!   } else if (self.state == GSGameControllerStateBackup) {
!   ! self.state = GSGameControllerStateStopping;
!   ! [_memberManager stopMonitoring:_primaryService];
!   ! [_clientToPrimary stop];
!   ! self.state = GSGameControllerStateStopped;
!   } else if (self.state != GSGameControllerStateStopped) {
!   ! self.state = GSGameControllerStateError;
!   }
}
First Refactoring
    - (oneway void) stop
{
     self.state = GSGameControllerStateStopping;
}
The Devil   (is in the details)

     - (void) setState: (GSGameControllerState)newState
{
!   GSGameControllerState oldState = _state;
!   _state = newState;
!   if (       _state == GSGameControllerStateTryingToFindPrimary) {
!   !     // [self findPrimary];
!   !     self.state = GSGameControllerStateTryingToBecomePrimary; // TODO: remove the findprimary state
!   } else if (_state == GSGameControllerStateTryingToBecomePrimary) {
!   !     [self startPrimaryServer];
!   } else if (_state == GSGameControllerStateFailedToBecomePrimary) {
!   !     [self tearDownPrimary];
!   !     // FIXME: this could be an endless loop of failing to become primary, put in a limit or something
!   !     self.state = GSGameControllerStateTryingToBecomePrimary;
!   } else if (_state == GSGameControllerStateTryingToConnectToPrimary) {
!   !     [self connectToPrimary];
!   } else if (_state == GSGameControllerStateFailedToConnectToPrimary) {
!   !     [self tearDownBackup];
!   !     self.state = GSGameControllerStateTryingToBecomePrimary;
!   } else if (_state == GSGameControllerStatePrimary) {
!   !     [self installServerTargets];
!   !     [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerDidBecomePrimary:)];
!   } else if (_state == GSGameControllerStateBackup) {
!   !     [self tellPrimaryWhoIAm];
!   !     [self monitorPrimary];
!   !     [self synchronizeWithPrimaryFromVersion:_game.version];
!   !     [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerDidBecomeBackup:)];
!   } else if (_state == GSGameControllerStateStopping) {
!   !     if (oldState == GSGameControllerStatePrimary) {
!   !     !    self.state = GSGameControllerStateStoppingPrimary;
!   !     } else if (oldState == GSGameControllerStateBackup) {
!   !     !    self.state = GSGameControllerStateStoppingBackup;
The Devil   (is in the details)

        !   !    } else if (oldState != GSGameControllerStateError) {
!   !       !    self.state = GSGameControllerStateStopped;
!   !       }
!   }   else if (_state == GSGameControllerStateStoppingPrimary) {
!   !       [self stopServicingBackups];
!   !       [_server stop];
!   !       // TODO: actually monitor the stop instead of just setting state to GSGameControllerStateStopped
!   !       self.state = GSGameControllerStateStopped;
!   }   else if (_state == GSGameControllerStateStoppingBackup) {
!   !       [self stopMonitoringPrimary];
!   !       [_clientToPrimary stop];
!   !       // TODO: actually monitor the stop instead of just setting state to GSGameControllerStateStopped
!   !       self.state = GSGameControllerStateStopped;
!   }   else if (_state == GSGameControllerStateStopped) {
!   !       if (oldState == GSGameControllerStatePrimary) {
!   !       !    [self tearDownPrimary];
!   !       } else ! if (oldState == GSGameControllerStateStoppingPrimary) {
!   !       !    [self tearDownPrimary];
!   !       } else if (oldState == GSGameControllerStateBackup) {
!   !       !    [self tearDownBackup];
!   !       } else if (oldState == GSGameControllerStateStoppingBackup) {
!   !       !    [self tearDownBackup];
!   !       }
!   !       [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerDidStop:)];
!   }   else if (_state == GSGameControllerStateError) {
!   !       if (oldState == GSGameControllerStateTryingToFindPrimary) {
!   !       !    [self tearDownPrimary];
!   !       } else if (oldState == GSGameControllerStateTryingToBecomePrimary) {
!   !       !    [self tearDownPrimary];
!   !       !    [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerFailedToStart:)];
!   !       } else if (oldState == GSGameControllerStateTryingToConnectToPrimary) {
The Devil   (is in the details)

      !   !    !    [self tearDownBackup];
!   !     !    [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerFailedToStart:)];
!   !     } else if (oldState == GSGameControllerStatePrimary) {
!   !     !    [self tearDownPrimary];
!   !     !    // TODO: should this tellDelegate gameControllerDidStop: ?
!   !     } else if (oldState == GSGameControllerStateBackup) {
!   !     !    [self tearDownBackup];
!   !     !    // TODO: should this tellDelegate gameControllerDidStop: ?
!   !     } else if (oldState == GSGameControllerStateStopping) {
!   !     !    [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerFailedToStop:)];
!   !     !    // TODO: should this tellDelegate gameControllerDidStop: ?
!   !     } else if (oldState == GSGameControllerStateStoppingPrimary) {
!   !     !    [self tearDownPrimary];
!   !     !    // TODO: should this tellDelegate gameControllerDidStop: ?
!   !     } else if (oldState == GSGameControllerStateStoppingBackup) {
!   !     !    [self tearDownBackup];
!   !     !    // TODO: should this tellDelegate gameControllerDidStop: ?
!   !     }
!   !     /* else ??? */ [self tellDelegate:_delegate
performSelectorWithSelf:@selector(gameControllerErrorOccurred:)];
!   }
}
First Refactoring
           - (oneway void) stop
           {
                self.state = GSGameControllerStateStopping;
           }




- (void) setState: (GSGameControllerState)newState
{
! GSGameControllerState oldState = _state;
! _state = newState;
} else if (_state == GSGameControllerStateStopping) {
     if (oldState == GSGameControllerStatePrimary) {
         self.state = GSGameControllerStateStoppingPrimary;
     } else if (oldState == GSGameControllerStateBackup) {
         self.state = GSGameControllerStateStoppingBackup;
     } else if (oldState != GSGameControllerStateError) {
         self.state = GSGameControllerStateStopped;
     }
}
} else if (_state == GSGameControllerStateStoppingPrimary) {
    [self stopServicingBackups];
    [_server stop];
    self.state = GSGameControllerStateStopped;
}
} else if (_state == GSGameControllerStateStopped) {
    if (oldState == GSGameControllerStatePrimary) {
        [self tearDownPrimary];
    } else if (oldState == GSGameControllerStateStoppingPrimary) {
        [self tearDownPrimary];
    } else if (oldState == GSGameControllerStateBackup) {
        [self tearDownBackup];
    } else if (oldState == GSGameControllerStateStoppingBackup) {
        [self tearDownBackup];
    }
    [self tellDelegate:_delegate
        performSelectorWithSelf:
            @selector(gameControllerDidStop:)];
}
State Refactoring

    - (oneway void) stop
{
      [self.state stop: self];
}
Stopping a primary
@implementation GSGameControllerStatePrimary

- (void) enter: (GSGameController *)gc
{
! [gc installServerTargets];
}

- (void) error: (GSGameController *)gc
{
! [gc tearDownPrimary];
! [super error: gc];
}

- (void) incrementIntegerForKey: (id)aKey context: (GSGameController *)gc
{
! [gc primaryIncrementIntegerForKey: aKey];
}

- (void) stop: (GSGameController *)gc
{
! [self transition: gc to: [GSGameControllerStateStoppingPrimary state]];
}

@end
Only I know how
@implementation GSGameControllerStateStoppingPrimary

- (void) enter: (GSGameController *)gc
{
! [gc stopServicingBackups];
}

- (void) error: (GSGameController *)gc
{
! [gc tearDownPrimary];
! [super error: gc];
}

- (void) primaryDidStop: (GSGameController *)gc
{
! [gc tearDownPrimary];
! [self transition: gc to: [GSGameControllerStateStopped state]];
}

@end
Transition to stopped
@implementation GSGameControllerStateStoppingPrimary

- (void) enter: (GSGameController *)gc
{
! [gc stopServicingBackups];
}

- (void) error: (GSGameController *)gc
{
! [gc tearDownPrimary];
! [super error: gc];
}

- (void) primaryDidStop: (GSGameController *)gc
{
! [gc tearDownPrimary];
! [self transition: gc to: [GSGameControllerStateStopped state]];
}

@end
Done
@implementation GSGameControllerStateStopped

- (void) enter: (GSGameController *)gc
{
    [gc tellDelegate:gc.delegate
        performSelectorWithSelf:
            @selector(gameControllerDidStop:)];
}

@end
Same result on stop
} else if (_state == GSGameControllerStateStopped) {
    if (oldState == GSGameControllerStatePrimary) {
        [self tearDownPrimary];
    } else if (oldState == GSGameControllerStateStoppingPrimary) {
        [self tearDownPrimary];
    } else if (oldState == GSGameControllerStateBackup) {
        [self tearDownBackup];
    } else if (oldState == GSGameControllerStateStoppingBackup) {
        [self tearDownBackup];
    }
    [self tellDelegate:_delegate
        performSelectorWithSelf:
            @selector(gameControllerDidStop:)];
}
Result
• GSGameController only knows its own
  operations
 • Not states or transitions
 • Separation of concerns
• Each state is a black box
 • Doesn’t know details of other states
Motivation

• Improve the design of the GameStats
  application
 • Make it easier to understand at a glance
 • Make it easier to make improvements
Conclusion

The State Design Pattern
made complex code easier
to understand and modify
Questions?

The State Design Pattern
made complex code easier
to understand and modify

Mais conteúdo relacionado

Último

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Último (20)

[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 

Destaque

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Destaque (20)

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 

Refactoring to the State Design Pattern

  • 1. Refactoring to the State Design Pattern Jim Roepcke <jr@uvic.ca> CSC 578D Fall 2009
  • 2. Motivation • Improve the design of the GameStats application • Make it easier to understand at a glance • Make it easier to make improvements
  • 3. Backup Backup Replica Replica Primary Replica Backup Backup Replica Replica
  • 4. Primary-Backup • Bonjour can guarantee no more than one Primary replica can publish its service • Multiple Backup replicas communicate with the Primary to keep all replicas synchronized • Writes are made to the Primary and propagated back to the Backup replicas • If the Primary fails, a Backup can take over. The remaining backups sync to the new Primary
  • 5. failed to initial become primary start primary failed to start trying to trying to become connect to primary primary backup did start primary did start backup failed to start failed to primary connect to backup primary stop stop stopping stopping error primary backup primary did stop backup did stop stopped
  • 6. Context State Request() Handle() state->Handle() ConcreteStateA ConcreteStateB Handle() Handle()
  • 7. State Context TransitionTo(Context c, State s) Enter(Context c) SetState(State s) Leave(Context c) Foo() Bar() Foo(StateContext c) Baz() Bar(StateContext c) .... Baz(StateContext c) ... state->Foo() BaseState this->Leave(c) TransitionTo(Context c, State s) c->SetState(s) Enter(Context c) s->Enter(c) Leave(Context c) Foo(StateContext c) Bar(StateContext c) Baz(StateContext c) ... ConcreteStateA ConcreteStateB TransitionTo Enter(Context c) Foo(StateContext c) (c, ConcreteStateA) Baz(StateContext c) Bar(StateContext c)
  • 8. primary stop stopping error primary primary did stop stopped
  • 9. Original Code - (void) stop { ! if (self.state == GSGameControllerStatePrimary) { ! ! self.state = GSGameControllerStateStopping; ! ! [self uninstallServerTargets]; ! ! [_server stop]; ! ! self.state = GSGameControllerStateStopped; ! } else if (self.state == GSGameControllerStateBackup) { ! ! self.state = GSGameControllerStateStopping; ! ! [_memberManager stopMonitoring:_primaryService]; ! ! [_clientToPrimary stop]; ! ! self.state = GSGameControllerStateStopped; ! } else if (self.state != GSGameControllerStateStopped) { ! ! self.state = GSGameControllerStateError; ! } }
  • 10. First Refactoring - (oneway void) stop { self.state = GSGameControllerStateStopping; }
  • 11. The Devil (is in the details) - (void) setState: (GSGameControllerState)newState { ! GSGameControllerState oldState = _state; ! _state = newState; ! if ( _state == GSGameControllerStateTryingToFindPrimary) { ! ! // [self findPrimary]; ! ! self.state = GSGameControllerStateTryingToBecomePrimary; // TODO: remove the findprimary state ! } else if (_state == GSGameControllerStateTryingToBecomePrimary) { ! ! [self startPrimaryServer]; ! } else if (_state == GSGameControllerStateFailedToBecomePrimary) { ! ! [self tearDownPrimary]; ! ! // FIXME: this could be an endless loop of failing to become primary, put in a limit or something ! ! self.state = GSGameControllerStateTryingToBecomePrimary; ! } else if (_state == GSGameControllerStateTryingToConnectToPrimary) { ! ! [self connectToPrimary]; ! } else if (_state == GSGameControllerStateFailedToConnectToPrimary) { ! ! [self tearDownBackup]; ! ! self.state = GSGameControllerStateTryingToBecomePrimary; ! } else if (_state == GSGameControllerStatePrimary) { ! ! [self installServerTargets]; ! ! [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerDidBecomePrimary:)]; ! } else if (_state == GSGameControllerStateBackup) { ! ! [self tellPrimaryWhoIAm]; ! ! [self monitorPrimary]; ! ! [self synchronizeWithPrimaryFromVersion:_game.version]; ! ! [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerDidBecomeBackup:)]; ! } else if (_state == GSGameControllerStateStopping) { ! ! if (oldState == GSGameControllerStatePrimary) { ! ! ! self.state = GSGameControllerStateStoppingPrimary; ! ! } else if (oldState == GSGameControllerStateBackup) { ! ! ! self.state = GSGameControllerStateStoppingBackup;
  • 12. The Devil (is in the details) ! ! } else if (oldState != GSGameControllerStateError) { ! ! ! self.state = GSGameControllerStateStopped; ! ! } ! } else if (_state == GSGameControllerStateStoppingPrimary) { ! ! [self stopServicingBackups]; ! ! [_server stop]; ! ! // TODO: actually monitor the stop instead of just setting state to GSGameControllerStateStopped ! ! self.state = GSGameControllerStateStopped; ! } else if (_state == GSGameControllerStateStoppingBackup) { ! ! [self stopMonitoringPrimary]; ! ! [_clientToPrimary stop]; ! ! // TODO: actually monitor the stop instead of just setting state to GSGameControllerStateStopped ! ! self.state = GSGameControllerStateStopped; ! } else if (_state == GSGameControllerStateStopped) { ! ! if (oldState == GSGameControllerStatePrimary) { ! ! ! [self tearDownPrimary]; ! ! } else ! if (oldState == GSGameControllerStateStoppingPrimary) { ! ! ! [self tearDownPrimary]; ! ! } else if (oldState == GSGameControllerStateBackup) { ! ! ! [self tearDownBackup]; ! ! } else if (oldState == GSGameControllerStateStoppingBackup) { ! ! ! [self tearDownBackup]; ! ! } ! ! [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerDidStop:)]; ! } else if (_state == GSGameControllerStateError) { ! ! if (oldState == GSGameControllerStateTryingToFindPrimary) { ! ! ! [self tearDownPrimary]; ! ! } else if (oldState == GSGameControllerStateTryingToBecomePrimary) { ! ! ! [self tearDownPrimary]; ! ! ! [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerFailedToStart:)]; ! ! } else if (oldState == GSGameControllerStateTryingToConnectToPrimary) {
  • 13. The Devil (is in the details) ! ! ! [self tearDownBackup]; ! ! ! [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerFailedToStart:)]; ! ! } else if (oldState == GSGameControllerStatePrimary) { ! ! ! [self tearDownPrimary]; ! ! ! // TODO: should this tellDelegate gameControllerDidStop: ? ! ! } else if (oldState == GSGameControllerStateBackup) { ! ! ! [self tearDownBackup]; ! ! ! // TODO: should this tellDelegate gameControllerDidStop: ? ! ! } else if (oldState == GSGameControllerStateStopping) { ! ! ! [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerFailedToStop:)]; ! ! ! // TODO: should this tellDelegate gameControllerDidStop: ? ! ! } else if (oldState == GSGameControllerStateStoppingPrimary) { ! ! ! [self tearDownPrimary]; ! ! ! // TODO: should this tellDelegate gameControllerDidStop: ? ! ! } else if (oldState == GSGameControllerStateStoppingBackup) { ! ! ! [self tearDownBackup]; ! ! ! // TODO: should this tellDelegate gameControllerDidStop: ? ! ! } ! ! /* else ??? */ [self tellDelegate:_delegate performSelectorWithSelf:@selector(gameControllerErrorOccurred:)]; ! } }
  • 14. First Refactoring - (oneway void) stop { self.state = GSGameControllerStateStopping; } - (void) setState: (GSGameControllerState)newState { ! GSGameControllerState oldState = _state; ! _state = newState;
  • 15. } else if (_state == GSGameControllerStateStopping) { if (oldState == GSGameControllerStatePrimary) { self.state = GSGameControllerStateStoppingPrimary; } else if (oldState == GSGameControllerStateBackup) { self.state = GSGameControllerStateStoppingBackup; } else if (oldState != GSGameControllerStateError) { self.state = GSGameControllerStateStopped; } }
  • 16. } else if (_state == GSGameControllerStateStoppingPrimary) { [self stopServicingBackups]; [_server stop]; self.state = GSGameControllerStateStopped; }
  • 17. } else if (_state == GSGameControllerStateStopped) { if (oldState == GSGameControllerStatePrimary) { [self tearDownPrimary]; } else if (oldState == GSGameControllerStateStoppingPrimary) { [self tearDownPrimary]; } else if (oldState == GSGameControllerStateBackup) { [self tearDownBackup]; } else if (oldState == GSGameControllerStateStoppingBackup) { [self tearDownBackup]; } [self tellDelegate:_delegate performSelectorWithSelf: @selector(gameControllerDidStop:)]; }
  • 18. State Refactoring - (oneway void) stop { [self.state stop: self]; }
  • 19. Stopping a primary @implementation GSGameControllerStatePrimary - (void) enter: (GSGameController *)gc { ! [gc installServerTargets]; } - (void) error: (GSGameController *)gc { ! [gc tearDownPrimary]; ! [super error: gc]; } - (void) incrementIntegerForKey: (id)aKey context: (GSGameController *)gc { ! [gc primaryIncrementIntegerForKey: aKey]; } - (void) stop: (GSGameController *)gc { ! [self transition: gc to: [GSGameControllerStateStoppingPrimary state]]; } @end
  • 20. Only I know how @implementation GSGameControllerStateStoppingPrimary - (void) enter: (GSGameController *)gc { ! [gc stopServicingBackups]; } - (void) error: (GSGameController *)gc { ! [gc tearDownPrimary]; ! [super error: gc]; } - (void) primaryDidStop: (GSGameController *)gc { ! [gc tearDownPrimary]; ! [self transition: gc to: [GSGameControllerStateStopped state]]; } @end
  • 21. Transition to stopped @implementation GSGameControllerStateStoppingPrimary - (void) enter: (GSGameController *)gc { ! [gc stopServicingBackups]; } - (void) error: (GSGameController *)gc { ! [gc tearDownPrimary]; ! [super error: gc]; } - (void) primaryDidStop: (GSGameController *)gc { ! [gc tearDownPrimary]; ! [self transition: gc to: [GSGameControllerStateStopped state]]; } @end
  • 22. Done @implementation GSGameControllerStateStopped - (void) enter: (GSGameController *)gc { [gc tellDelegate:gc.delegate performSelectorWithSelf: @selector(gameControllerDidStop:)]; } @end
  • 23. Same result on stop } else if (_state == GSGameControllerStateStopped) { if (oldState == GSGameControllerStatePrimary) { [self tearDownPrimary]; } else if (oldState == GSGameControllerStateStoppingPrimary) { [self tearDownPrimary]; } else if (oldState == GSGameControllerStateBackup) { [self tearDownBackup]; } else if (oldState == GSGameControllerStateStoppingBackup) { [self tearDownBackup]; } [self tellDelegate:_delegate performSelectorWithSelf: @selector(gameControllerDidStop:)]; }
  • 24. Result • GSGameController only knows its own operations • Not states or transitions • Separation of concerns • Each state is a black box • Doesn’t know details of other states
  • 25. Motivation • Improve the design of the GameStats application • Make it easier to understand at a glance • Make it easier to make improvements
  • 26. Conclusion The State Design Pattern made complex code easier to understand and modify
  • 27. Questions? The State Design Pattern made complex code easier to understand and modify