2022-01-19 12:18:33 +11:00
|
|
|
# IfcOpenShell - IFC toolkit and geometry engine
|
|
|
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.com>
|
|
|
|
|
#
|
|
|
|
|
# This file is part of IfcOpenShell.
|
|
|
|
|
#
|
|
|
|
|
# IfcOpenShell is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# IfcOpenShell is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2021-05-11 11:35:47 +10:00
|
|
|
import datetime
|
2021-04-20 17:11:06 +10:00
|
|
|
import ifcopenshell.util.date
|
2021-05-11 11:35:47 +10:00
|
|
|
import ifcopenshell.util.sequence
|
2021-04-20 17:11:06 +10:00
|
|
|
|
|
|
|
|
|
2021-04-20 05:12:13 +00:00
|
|
|
class Usecase:
|
|
|
|
|
def __init__(self, file, **settings):
|
|
|
|
|
self.file = file
|
2021-04-20 17:11:06 +10:00
|
|
|
self.settings = {"task_time": None, "attributes": {}}
|
2021-04-20 05:12:13 +00:00
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
2021-06-17 13:23:09 +10:00
|
|
|
self.task = self.get_task()
|
|
|
|
|
self.calendar = ifcopenshell.util.sequence.derive_calendar(self.task)
|
|
|
|
|
|
2021-05-11 11:35:47 +10:00
|
|
|
# If the user specifies both an end date and a duration, the duration takes priority
|
2021-06-04 15:21:48 +10:00
|
|
|
if (
|
2021-08-10 10:55:01 +10:00
|
|
|
self.settings["attributes"].get("ScheduleDuration", None)
|
2021-06-04 15:21:48 +10:00
|
|
|
and "ScheduleFinish" in self.settings["attributes"].keys()
|
|
|
|
|
):
|
2021-05-15 02:04:43 +00:00
|
|
|
del self.settings["attributes"]["ScheduleFinish"]
|
2021-05-11 11:35:47 +10:00
|
|
|
|
2021-06-04 15:21:48 +10:00
|
|
|
duration_type = self.settings["attributes"].get("DurationType", self.settings["task_time"].DurationType)
|
2022-03-25 15:53:05 +11:00
|
|
|
finish = self.settings["attributes"].get("ScheduleFinish", None)
|
|
|
|
|
if finish:
|
|
|
|
|
if isinstance(finish, str):
|
|
|
|
|
finish = datetime.datetime.fromisoformat(finish)
|
|
|
|
|
self.settings["attributes"]["ScheduleFinish"] = datetime.datetime.combine(
|
|
|
|
|
ifcopenshell.util.sequence.get_soonest_working_day(finish, duration_type, self.calendar),
|
|
|
|
|
datetime.time(17),
|
2021-06-04 15:21:48 +10:00
|
|
|
)
|
2022-03-25 15:53:05 +11:00
|
|
|
start = self.settings["attributes"].get("ScheduleStart", None)
|
|
|
|
|
if start:
|
|
|
|
|
if isinstance(start, str):
|
|
|
|
|
start = datetime.datetime.fromisoformat(start)
|
|
|
|
|
self.settings["attributes"]["ScheduleStart"] = datetime.datetime.combine(
|
|
|
|
|
ifcopenshell.util.sequence.get_soonest_working_day(start, duration_type, self.calendar),
|
|
|
|
|
datetime.time(9),
|
2021-06-04 15:21:48 +10:00
|
|
|
)
|
|
|
|
|
|
2021-04-20 05:12:13 +00:00
|
|
|
for name, value in self.settings["attributes"].items():
|
2022-01-21 18:52:40 +11:00
|
|
|
if value is not None:
|
2021-05-06 17:14:28 +10:00
|
|
|
if "Start" in name or "Finish" in name or name == "StatusTime":
|
2021-04-20 17:11:06 +10:00
|
|
|
value = ifcopenshell.util.date.datetime2ifc(value, "IfcDateTime")
|
2021-05-11 11:35:47 +10:00
|
|
|
elif name == "ScheduleDuration" or name == "ActualDuration" or name == "RemainingTime":
|
2021-05-04 00:27:53 +00:00
|
|
|
value = ifcopenshell.util.date.datetime2ifc(value, "IfcDuration")
|
2021-04-20 17:11:06 +10:00
|
|
|
setattr(self.settings["task_time"], name, value)
|
2021-05-11 11:35:47 +10:00
|
|
|
|
|
|
|
|
if (
|
|
|
|
|
"ScheduleDuration" in self.settings["attributes"].keys()
|
|
|
|
|
and self.settings["task_time"].ScheduleDuration
|
|
|
|
|
and self.settings["task_time"].ScheduleStart
|
|
|
|
|
):
|
2021-05-31 12:42:02 +10:00
|
|
|
self.calculate_finish()
|
2022-02-23 13:08:52 +11:00
|
|
|
elif self.settings["attributes"].get("ScheduleStart", None) and self.settings["task_time"].ScheduleDuration:
|
2021-05-31 12:42:02 +10:00
|
|
|
self.calculate_finish()
|
2022-02-23 12:28:34 +11:00
|
|
|
elif self.settings["attributes"].get("ScheduleFinish", None) and self.settings["task_time"].ScheduleStart:
|
2021-05-31 12:42:02 +10:00
|
|
|
self.calculate_duration()
|
|
|
|
|
|
2021-09-09 21:27:23 +10:00
|
|
|
if self.settings["task_time"].ScheduleDuration and (
|
|
|
|
|
"ScheduleStart" in self.settings["attributes"].keys()
|
|
|
|
|
or "ScheduleFinish" in self.settings["attributes"].keys()
|
|
|
|
|
or "ScheduleDuration" in self.settings["attributes"].keys()
|
2021-06-17 13:23:09 +10:00
|
|
|
):
|
|
|
|
|
ifcopenshell.api.run("sequence.cascade_schedule", self.file, task=self.task)
|
|
|
|
|
|
2021-05-31 12:42:02 +10:00
|
|
|
def calculate_finish(self):
|
2022-03-25 15:53:05 +11:00
|
|
|
finish = ifcopenshell.util.sequence.get_start_or_finish_date(
|
2021-06-04 15:21:48 +10:00
|
|
|
ifcopenshell.util.date.ifc2datetime(self.settings["task_time"].ScheduleStart),
|
|
|
|
|
ifcopenshell.util.date.ifc2datetime(self.settings["task_time"].ScheduleDuration),
|
|
|
|
|
self.settings["task_time"].DurationType,
|
2021-06-17 13:23:09 +10:00
|
|
|
self.calendar,
|
2022-03-25 15:53:05 +11:00
|
|
|
date_type="FINISH",
|
2021-06-04 15:21:48 +10:00
|
|
|
)
|
2022-03-25 15:53:05 +11:00
|
|
|
self.settings["task_time"].ScheduleFinish = ifcopenshell.util.date.datetime2ifc(finish, "IfcDateTime")
|
2021-05-31 12:42:02 +10:00
|
|
|
|
|
|
|
|
def calculate_duration(self):
|
|
|
|
|
start = ifcopenshell.util.date.ifc2datetime(self.settings["task_time"].ScheduleStart)
|
|
|
|
|
finish = ifcopenshell.util.date.ifc2datetime(self.settings["task_time"].ScheduleFinish)
|
|
|
|
|
current_date = datetime.date(start.year, start.month, start.day)
|
|
|
|
|
finish_date = datetime.date(finish.year, finish.month, finish.day)
|
2022-03-25 15:53:05 +11:00
|
|
|
duration = datetime.timedelta(days=1)
|
2021-05-31 12:42:02 +10:00
|
|
|
while current_date < finish_date:
|
2021-06-17 13:23:09 +10:00
|
|
|
if self.settings["task_time"].DurationType == "ELAPSEDTIME" or not self.calendar:
|
2021-05-31 12:42:02 +10:00
|
|
|
duration += datetime.timedelta(days=1)
|
2021-06-17 13:23:09 +10:00
|
|
|
elif ifcopenshell.util.sequence.is_working_day(current_date, self.calendar):
|
2021-05-31 12:42:02 +10:00
|
|
|
duration += datetime.timedelta(days=1)
|
|
|
|
|
current_date += datetime.timedelta(days=1)
|
|
|
|
|
self.settings["task_time"].ScheduleDuration = ifcopenshell.util.date.datetime2ifc(duration, "IfcDuration")
|
|
|
|
|
|
2021-06-17 13:23:09 +10:00
|
|
|
def get_task(self):
|
|
|
|
|
return [e for e in self.file.get_inverse(self.settings["task_time"]) if e.is_a("IfcTask")][0]
|