Commit d268ba81 authored by Ioannis Papagiannopoulos's avatar Ioannis Papagiannopoulos Committed by Georgios Dagkakis

sortOperators, assignOperators, findStationForOperators corrections

parent 2310b90d
...@@ -120,6 +120,8 @@ class Router(ObjectInterruption): ...@@ -120,6 +120,8 @@ class Router(ObjectInterruption):
self.printTrace('','there are NO more events for now') self.printTrace('','there are NO more events for now')
break break
self.printTrace('','=-'*15) self.printTrace('','=-'*15)
# entry actions
self.entry()
# run the routine that allocates operators to machines # run the routine that allocates operators to machines
self.allocateOperators() self.allocateOperators()
# assign operators to stations # assign operators to stations
...@@ -130,6 +132,7 @@ class Router(ObjectInterruption): ...@@ -130,6 +132,7 @@ class Router(ObjectInterruption):
self.signalOperatedStations() self.signalOperatedStations()
self.printTrace('', 'router exiting') self.printTrace('', 'router exiting')
self.printTrace('','=-'*20) self.printTrace('','=-'*20)
# exit actions
self.exit() self.exit()
def allocateOperators(self): def allocateOperators(self):
...@@ -137,16 +140,16 @@ class Router(ObjectInterruption): ...@@ -137,16 +140,16 @@ class Router(ObjectInterruption):
self.findPending() self.findPending()
# find the operators that can start working now # find the operators that can start working now
self.findCandidateOperators() self.findCandidateOperators()
# # sort the operators according to their idle time # sort the operators according to their idle time
# self.sortOperators() self.sortOperators()
# # find working stations for the candidate operators # find working stations for the candidate operators
# self.findStationsForOperators() self.findStationsForOperators()
# find the operators candidateEntities # # find the operators candidateEntities
self.sortCandidateEntities() # self.sortCandidateEntities()
# find the entity that will occupy the resource, and the station that will receive it (if any available) # # find the entity that will occupy the resource, and the station that will receive it (if any available)
# entities that are already in stations have already a receiver # # entities that are already in stations have already a receiver
self.findCandidateReceivers() # self.findCandidateReceivers()
#=========================================================================== #===========================================================================
# unassigns exits of queues that are not to be signalled # unassigns exits of queues that are not to be signalled
...@@ -170,6 +173,8 @@ class Router(ObjectInterruption): ...@@ -170,6 +173,8 @@ class Router(ObjectInterruption):
def assignOperators(self): def assignOperators(self):
# for all the operators that are requested # for all the operators that are requested
for operator in self.candidateOperators: for operator in self.candidateOperators:
if operator.candidateStation:
# check if the candidateOperators are available, if the are requested and reside in the pendingObjects list # check if the candidateOperators are available, if the are requested and reside in the pendingObjects list
if operator.checkIfResourceIsAvailable(): if operator.checkIfResourceIsAvailable():
# assign an operator to the priorityObject # assign an operator to the priorityObject
...@@ -189,6 +194,11 @@ class Router(ObjectInterruption): ...@@ -189,6 +194,11 @@ class Router(ObjectInterruption):
self.toBeSignalled.append(operator.candidateStation) self.toBeSignalled.append(operator.candidateStation)
self.printTrace('objects to be signaled:'+' '*11, [str(object.id) for object in self.toBeSignalled]) self.printTrace('objects to be signaled:'+' '*11, [str(object.id) for object in self.toBeSignalled])
def entry(self):
from Globals import G
for operator in G.OperatorsList:
operator.candidateEntity=None
# ======================================================================= # =======================================================================
# return control to the Machine.run # return control to the Machine.run
# ======================================================================= # =======================================================================
...@@ -199,7 +209,7 @@ class Router(ObjectInterruption): ...@@ -199,7 +209,7 @@ class Router(ObjectInterruption):
operator.candidateEntities=[] operator.candidateEntities=[]
operator.candidateStations=[] operator.candidateStations=[]
operator.candidateStation=None operator.candidateStation=None
operator.candidateEntity=None # operator.candidateEntity=None
for entity in G.pendingEntities: for entity in G.pendingEntities:
entity.proceed=False entity.proceed=False
entity.candidateReceivers=[] entity.candidateReceivers=[]
...@@ -271,7 +281,6 @@ class Router(ObjectInterruption): ...@@ -271,7 +281,6 @@ class Router(ObjectInterruption):
break break
# figure out which queues are holding critical pending entities # figure out which queues are holding critical pending entities
self.findCriticalQueues() self.findCriticalQueues()
self.printTrace('pendingMachines'+'-'*19+'>', [str(object.id) for object in self.pendingMachines]) self.printTrace('pendingMachines'+'-'*19+'>', [str(object.id) for object in self.pendingMachines])
self.printTrace('pendingQueues'+'-'*21+'>', [str(object.id) for object in self.pendingQueues]) self.printTrace('pendingQueues'+'-'*21+'>', [str(object.id) for object in self.pendingQueues])
self.printTrace('found pending entities'+'-'*12+'>', [str(entity.id) for entity in self.pending if not entity.type=='Part']) self.printTrace('found pending entities'+'-'*12+'>', [str(entity.id) for entity in self.pending if not entity.type=='Part'])
...@@ -285,29 +294,6 @@ class Router(ObjectInterruption): ...@@ -285,29 +294,6 @@ class Router(ObjectInterruption):
if entity in self.pending and entity.isCritical: if entity in self.pending and entity.isCritical:
self.criticalQueues.append(queue) self.criticalQueues.append(queue)
#===========================================================================
# find operators that can perform preemption for a critical pending entity
#===========================================================================
def findPreemptiveOperators(self):
# for every queue that holds critical pending entities
for queue in self.criticalQueues:
# if no receivers can be found
if not queue.findReceiversFor(queue):
# for each of the following objects
for nextobject in queue.next:
# if an operator is occupied by a critical entity then that operator can preempt
# This way the first operator that is not currently on a critical entity is invoked
# TODO: consider picking an operator more wisely by sorting
for operator in nextobject.operatorPool.operators:
currentStation=operator.workingStation
if not currentStation.getActiveObjectQueue()[0].isCritical:
preemptiveOperator=operator
preemptiveOperator.candidateStations.append(nextobject)
if not preemptiveOperator in self.candidateOperators:
self.candidateOperators.append(preemptiveOperator)
self.preemptiveOperators.append(preemptiveOperator)
break
#======================================================================== #========================================================================
# Find candidate Operators # Find candidate Operators
# find the operators that can start working now even if they are not called # find the operators that can start working now even if they are not called
...@@ -341,17 +327,46 @@ class Router(ObjectInterruption): ...@@ -341,17 +327,46 @@ class Router(ObjectInterruption):
else: else:
self.printTrace('router', 'found NO candidate operators') self.printTrace('router', 'found NO candidate operators')
#===========================================================================
# find operators that can perform preemption for a critical pending entity
#===========================================================================
def findPreemptiveOperators(self):
# for every queue that holds critical pending entities
for queue in self.criticalQueues:
# if no receivers can be found
if not queue.findReceiversFor(queue):
# for each of the following objects
for nextobject in queue.next:
# if an operator is occupied by a critical entity then that operator can preempt
# This way the first operator that is not currently on a critical entity is invoked
# TODO: consider picking an operator more wisely by sorting
for operator in nextobject.operatorPool.operators:
currentStation=operator.workingStation
if not currentStation.getActiveObjectQueue()[0].isCritical:
preemptiveOperator=operator
preemptiveOperator.candidateStations.append(nextobject)
if not preemptiveOperator in self.candidateOperators:
self.candidateOperators.append(preemptiveOperator)
self.preemptiveOperators.append(preemptiveOperator)
break
#======================================================================= #=======================================================================
# Sort candidateOperators # Sort candidateOperators
# sort the operators according to their idle time # sort the operators according to their idle time
#======================================================================= #=======================================================================
def sortOperators(self): def sortOperators(self):
if self.candidateOperators: if self.candidateOperators:
for op in self.candidateOperators:
op.criterion=0
if op.schedule:
op.criterion=self.env.now-op.schedule[-1][-1]
# sort according to the time they concluded their last operation # sort according to the time they concluded their last operation
self.candidateOperators.sort(key=lambda x:x.schedule[-1][-1]) self.candidateOperators.sort(key=lambda x: x.criterion, reverse=True)
#===========================================================================
# find working stations for the candidateOperators
#===========================================================================
def findStationsForOperators(self): def findStationsForOperators(self):
occupiedEntities=[] occupiedEntities=[]
occupiedStations=[] occupiedStations=[]
...@@ -368,8 +383,8 @@ class Router(ObjectInterruption): ...@@ -368,8 +383,8 @@ class Router(ObjectInterruption):
else: else:
for predecessor in station.previous: for predecessor in station.previous:
if predecessor in self.pendingQueues and not station in occupiedStations: if predecessor in self.pendingQueues and not station in occupiedStations:
operator.candidateEntities.append([x for x in predecessor.getActiveObjectQueue() operator.candidateEntities+=[x for x in predecessor.getActiveObjectQueue()
if x in self.pending and not x in occupiedEntities]) if x in self.pending and not x in occupiedEntities]
# sort candidateEntities according to the scheduling rule of the operator # sort candidateEntities according to the scheduling rule of the operator
operator.sortEntities() operator.sortEntities()
...@@ -378,18 +393,19 @@ class Router(ObjectInterruption): ...@@ -378,18 +393,19 @@ class Router(ObjectInterruption):
operator.candidateEntities.sort(key=lambda x: x.isCritical, reverse=False) operator.candidateEntities.sort(key=lambda x: x.isCritical, reverse=False)
# pick an entity and a station # pick an entity and a station
operator.candidateEntity=candidateEntities[0] if operator.candidateEntities:
operator.candidateEntity=operator.candidateEntities[0]
# if the entities currentStation is machine # if the entities currentStation is machine
if operator.candidateEntity.currentStation in self.pendingMachines: if operator.candidateEntity.currentStation in self.pendingMachines:
operator.candidateStation=operator.candidateEntity.currentStation operator.candidateStation=operator.candidateEntity.currentStation
elif operator.candidateEntity.currentStation in self.pendingQueues: elif operator.candidateEntity.currentStation in self.pendingQueues:
for station in operator.candidateStations: for station in operator.candidateStations:
if station in candidateEntity.currentStation.next: if station in operator.candidateEntity.currentStation.next:
operator.candidateStation=station operator.candidateStation=station
break break
occupiedStations.append(operator.candidateStation) occupiedStations.append(operator.candidateStation)
occupiedEntities.append(candidateEntity) occupiedEntities.append(operator.candidateEntity)
#======================================================================= #=======================================================================
# Find the candidateEntities for each candidateOperator # Find the candidateEntities for each candidateOperator
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment