Created
January 23, 2015 12:52
-
-
Save alexprivalov/774b16f2d9c55d8472db to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream.h> | |
class MisDepartment | |
{ | |
public: | |
void submitNetworkRequest() | |
{ | |
_state = 0; | |
} | |
bool checkOnStatus() | |
{ | |
_state++; | |
if (_state == Complete) | |
return 1; | |
return 0; | |
} | |
private: | |
enum States | |
{ | |
Received, DenyAllKnowledge, ReferClientToFacilities, | |
FacilitiesHasNotSentPaperwork, ElectricianIsNotDone, | |
ElectricianDidItWrong, DispatchTechnician, SignedOff, DoesNotWork, | |
FixElectriciansWiring, Complete | |
}; | |
int _state; | |
}; | |
class ElectricianUnion | |
{ | |
public: | |
void submitNetworkRequest() | |
{ | |
_state = 0; | |
} | |
bool checkOnStatus() | |
{ | |
_state++; | |
if (_state == Complete) | |
return 1; | |
return 0; | |
} | |
private: | |
enum States | |
{ | |
Received, RejectTheForm, SizeTheJob, SmokeAndJokeBreak, | |
WaitForAuthorization, DoTheWrongJob, BlameTheEngineer, WaitToPunchOut, | |
DoHalfAJob, ComplainToEngineer, GetClarification, CompleteTheJob, | |
TurnInThePaperwork, Complete | |
}; | |
int _state; | |
}; | |
class FacilitiesDepartment | |
{ | |
public: | |
void submitNetworkRequest() | |
{ | |
_state = 0; | |
} | |
bool checkOnStatus() | |
{ | |
_state++; | |
if (_state == Complete) | |
return 1; | |
return 0; | |
} | |
private: | |
enum States | |
{ | |
Received, AssignToEngineer, EngineerResearches, RequestIsNotPossible, | |
EngineerLeavesCompany, AssignToNewEngineer, NewEngineerResearches, | |
ReassignEngineer, EngineerReturns, EngineerResearchesAgain, | |
EngineerFillsOutPaperWork, Complete | |
}; | |
int _state; | |
}; | |
class FacilitiesFacade | |
{ | |
public: | |
FacilitiesFacade() | |
{ | |
_count = 0; | |
} | |
void submitNetworkRequest() | |
{ | |
_state = 0; | |
} | |
bool checkOnStatus() | |
{ | |
_count++; | |
/* Job request has just been received */ | |
if (_state == Received) | |
{ | |
_state++; | |
/* Forward the job request to the engineer */ | |
_engineer.submitNetworkRequest(); | |
cout << "submitted to Facilities - " << _count << | |
" phone calls so far" << endl; | |
} | |
else if (_state == SubmitToEngineer) | |
{ | |
/* If engineer is complete, forward to electrician */ | |
if (_engineer.checkOnStatus()) | |
{ | |
_state++; | |
_electrician.submitNetworkRequest(); | |
cout << "submitted to Electrician - " << _count << | |
" phone calls so far" << endl; | |
} | |
} | |
else if (_state == SubmitToElectrician) | |
{ | |
/* If electrician is complete, forward to technician */ | |
if (_electrician.checkOnStatus()) | |
{ | |
_state++; | |
_technician.submitNetworkRequest(); | |
cout << "submitted to MIS - " << _count << | |
" phone calls so far" << endl; | |
} | |
} | |
else if (_state == SubmitToTechnician) | |
{ | |
/* If technician is complete, job is done */ | |
if (_technician.checkOnStatus()) | |
return 1; | |
} | |
/* The job is not entirely complete */ | |
return 0; | |
} | |
int getNumberOfCalls() | |
{ | |
return _count; | |
} | |
private: | |
enum States | |
{ | |
Received, SubmitToEngineer, SubmitToElectrician, SubmitToTechnician | |
}; | |
int _state; | |
int _count; | |
FacilitiesDepartment _engineer; | |
ElectricianUnion _electrician; | |
MisDepartment _technician; | |
}; | |
int main() | |
{ | |
FacilitiesFacade facilities; | |
facilities.submitNetworkRequest(); | |
/* Keep checking until job is complete */ | |
while (!facilities.checkOnStatus()) | |
; | |
cout << "job completed after only " << facilities.getNumberOfCalls() << | |
" phone calls" << endl; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment