Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
f084ebcd
Commit
f084ebcd
authored
Feb 26, 2015
by
Ioannis Papagiannopoulos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
offshift intervals handled
parent
fa371ab9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
5 deletions
+63
-5
dream/plugins/ReadJSShifts.py
dream/plugins/ReadJSShifts.py
+63
-5
No files found.
dream/plugins/ReadJSShifts.py
View file @
f084ebcd
...
...
@@ -13,6 +13,20 @@ class ReadJSShifts(plugin.InputPreparationPlugin, TimeSupportMixin):
""" Input preparation
reads the shifts from a spreadsheet
"""
def
correctTimePair
(
self
,
start
,
end
):
'''takes a pair of times and returns the corrected pair according to the current time'''
# if the end of shift shift already finished we do not need to consider in simulation
if
start
<
0
and
end
<=
0
:
return
None
# if the start of the shift is before now, set the start to 0
if
start
<
0
:
start
=
0
# sometimes the date may change (e.g. shift from 23:00 to 01:00).
# these would be declared in the date of the start so add a date (self.timeUnitPerDay) to the end
if
end
<
start
:
end
+=
self
.
timeUnitPerDay
return
(
start
,
end
)
def
preprocess
(
self
,
data
):
""" reads the shifts from a spreadsheet and updates the interruptions of the corresponding node objects
...
...
@@ -34,10 +48,20 @@ class ReadJSShifts(plugin.InputPreparationPlugin, TimeSupportMixin):
if
shiftData
:
shiftData
.
pop
(
0
)
#iteration through the raw data to structure it into ManPy config
for
line
in
shiftData
:
# if all the records of that line are none then continue
if
any
(
record
==
None
for
record
in
line
):
continue
toContinue
=
False
for
record
in
line
:
if
record
!=
None
:
toContinue
=
True
break
if
not
toContinue
:
continue
# list to hold the working intervals start times
timeStartList
=
[]
# list to hold the working intervals end times
timeEndList
=
[]
#if no shift start was given, assume standard 8:00
startTime
=
line
[
2
]
if
startTime
==
''
:
...
...
@@ -48,21 +72,55 @@ class ReadJSShifts(plugin.InputPreparationPlugin, TimeSupportMixin):
if
endTime
==
''
:
endTime
=
"18:00"
shiftEnd
=
self
.
convertToSimulationTime
(
strptime
(
"%s %s"
%
(
line
[
1
],
endTime
),
'%Y/%m/%d %H:%M'
))
timePair
=
self
.
correctTimePair
(
shiftStart
,
shiftEnd
)
if
not
timePair
:
continue
else
:
shiftStart
,
shiftEnd
=
timePair
timeStartList
.
append
(
shiftStart
)
timeEndList
.
append
(
shiftEnd
)
if
line
[
-
1
]:
offshifts
=
line
[
-
1
].
replace
(
" "
,
""
).
split
(
";"
)
for
offshift
in
offshifts
:
limits
=
offshift
.
split
(
"-"
)
breakStart
=
self
.
convertToSimulationTime
(
strptime
(
"%s %s"
%
(
line
[
1
],
limits
[
0
]),
'%Y/%m/%d %H:%M'
))
breakEnd
=
self
.
convertToSimulationTime
(
strptime
(
"%s %s"
%
(
line
[
1
],
limits
[
1
]),
'%Y/%m/%d %H:%M'
))
timePair
=
self
.
correctTimePair
(
breakStart
,
breakEnd
)
if
not
timePair
:
continue
else
:
breakStart
,
breakEnd
=
timePair
timeStartList
.
append
(
breakEnd
)
timeEndList
.
insert
(
0
,
breakStart
)
#if it is the current row is an extended row for the information belonging to a resource, and no resource name is entered
entityID
=
line
[
0
].
split
(
"-"
)[
0
]
if
str
(
entityID
)
==
''
:
#take it as a continuation for the last entered resource
shiftPattern
[
lastrec
].
append
([
shiftStart
,
shiftEnd
])
for
index
,
start
in
enumerate
(
timeStartList
):
end
=
timeEndList
[
index
]
if
not
start
and
not
end
:
continue
shiftPattern
[
lastrec
].
append
([
start
,
end
])
#if resource name is defined
elif
str
(
entityID
)
not
in
shiftPattern
:
#take the name of the last entered resource from here
lastrec
=
str
(
entityID
)
shiftPattern
[
str
(
entityID
)]
=
[[
shiftStart
,
shiftEnd
]]
for
index
,
start
in
enumerate
(
timeStartList
):
end
=
timeEndList
[
index
]
if
not
start
and
not
end
:
continue
shiftPattern
[
lastrec
]
=
[[
start
,
end
]]
#to avoid overwriting existing records, if there is another entry for a resource but does not follow it immediately (e.g. W2-FS)
else
:
lastrec
=
str
(
entityID
)
#extend the previous entry for the resource
shiftPattern
[
str
(
entityID
)].
append
([
shiftStart
,
shiftEnd
])
for
index
,
start
in
enumerate
(
timeStartList
):
end
=
timeEndList
[
index
]
if
not
start
and
not
end
:
continue
shiftPattern
[
lastrec
].
append
([
start
,
end
])
#sorts the list in case the records were not entered in correct ascending order
for
info
in
shiftPattern
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment