mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 09:48:32 +00:00
86 lines
3.2 KiB
Python
86 lines
3.2 KiB
Python
import datetime
|
|
from re import findall
|
|
|
|
try:
|
|
import isodate
|
|
except:
|
|
pass # Duration parsing not supported
|
|
|
|
|
|
def timedelta2duration(timedelta):
|
|
components = {
|
|
"days": getattr(timedelta, "days", 0),
|
|
"hours": 0,
|
|
"minutes": 0,
|
|
"seconds": getattr(timedelta, "seconds", 0),
|
|
}
|
|
if components["seconds"]:
|
|
components["hours"], components["minutes"], components["seconds"] = [
|
|
int(i) for i in str(datetime.timedelta(seconds=components["seconds"])).split(":")
|
|
]
|
|
return isodate.Duration(**components)
|
|
|
|
|
|
def ifc2datetime(element):
|
|
if isinstance(element, str) and "P" in element[0:2]: # IfcDuration
|
|
duration = isodate.parse_duration(element)
|
|
if isinstance(duration, datetime.timedelta):
|
|
return timedelta2duration(duration)
|
|
return duration
|
|
elif isinstance(element, str) and len(element) > 3 and element[2] == ":": # IfcTime
|
|
return datetime.time.fromisoformat(element)
|
|
elif isinstance(element, str) and ":" in element: # IfcDateTime
|
|
return datetime.datetime.fromisoformat(element)
|
|
elif isinstance(element, str): # IfcDate
|
|
return datetime.date.fromisoformat(element)
|
|
elif isinstance(element, int): # IfcTimeStamp
|
|
return datetime.datetime.fromtimestamp(element)
|
|
elif element.is_a("IfcDateAndTime"):
|
|
return datetime.datetime(
|
|
element.DateComponent.YearComponent,
|
|
element.DateComponent.MonthComponent,
|
|
element.DateComponent.DayComponent,
|
|
element.TimeComponent.HourComponent,
|
|
element.TimeComponent.MinuteComponent,
|
|
int(element.TimeComponent.SecondComponent),
|
|
# TODO: implement TimeComponent timezone
|
|
)
|
|
elif element.is_a("IfcCalendarDate"):
|
|
return datetime.date(
|
|
element.YearComponent,
|
|
element.MonthComponent,
|
|
element.DayComponent,
|
|
)
|
|
|
|
|
|
def datetime2ifc(dt, ifc_type):
|
|
if isinstance(dt, str):
|
|
if ifc_type == "IfcDuration":
|
|
return dt
|
|
dt = datetime.datetime.fromisoformat(dt)
|
|
|
|
if ifc_type == "IfcDuration":
|
|
return isodate.duration_isoformat(dt)
|
|
elif ifc_type == "IfcTimeStamp":
|
|
return int(dt.timestamp())
|
|
elif ifc_type == "IfcDateTime":
|
|
if isinstance(dt, datetime.datetime):
|
|
return dt.isoformat()
|
|
elif isinstance(dt, datetime.date):
|
|
return datetime.datetime.combine(dt, datetime.datetime.min.time()).isoformat()
|
|
elif ifc_type == "IfcDate":
|
|
if isinstance(dt, datetime.datetime):
|
|
return dt.date().isoformat()
|
|
elif isinstance(dt, datetime.date):
|
|
return dt.isoformat()
|
|
elif ifc_type == "IfcTime":
|
|
if isinstance(dt, datetime.datetime):
|
|
return dt.time().isoformat()
|
|
elif isinstance(dt, datetime.time):
|
|
return dt.isoformat()
|
|
elif ifc_type == "IfcCalendarDate":
|
|
return {"DayComponent": dt.day, "MonthComponent": dt.month, "YearComponent": dt.year}
|
|
elif ifc_type == "IfcLocalTime":
|
|
# TODO implement timezones
|
|
return {"HourComponent": dt.hour, "MinuteComponent": dt.minute, "SecondComponent": dt.second}
|