Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
engine
Commits
d224fe69
Commit
d224fe69
authored
1 year ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
refactor: remove fs loading of timetable
parent
5e53132a
No related branches found
No related tags found
1 merge request
!35
ORM-less scheduling
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/aura_engine/scheduling/timetable.py
+1
-43
1 addition, 43 deletions
src/aura_engine/scheduling/timetable.py
with
1 addition
and
43 deletions
src/aura_engine/scheduling/timetable.py
+
1
−
43
View file @
d224fe69
...
...
@@ -28,7 +28,6 @@ from __future__ import annotations
import
logging
import
os
import
pathlib
from
datetime
import
datetime
import
confuse
...
...
@@ -63,7 +62,7 @@ class TimetableService:
Initialize.
Args:
cache_location (str): Path to folder where timetable.json is
cach
ed.
cache_location (str): Path to folder where timetable.json is
stor
ed.
"""
self
.
config
=
AuraConfig
.
instance
.
config
self
.
logger
=
logging
.
getLogger
(
"
engine
"
)
...
...
@@ -75,7 +74,6 @@ class TimetableService:
os
.
makedirs
(
cache_location
,
exist_ok
=
True
)
self
.
cache_location
=
cache_location
self
.
timetable_file
=
self
.
cache_location
+
"
/timetable.json
"
self
.
load_timetable
()
@synchronized
def
refresh
(
self
):
...
...
@@ -110,20 +108,6 @@ class TimetableService:
self
.
logger
.
warning
(
msg
)
self
.
logger
.
debug
(
"
Exception in API Fetcher:
\n
"
+
str
(
response
.
exception
))
def
load_timetable
(
self
):
"""
Loads the timetable from the local JSON file used for caching.
"""
if
self
.
timetable_file_exists
():
try
:
with
open
(
self
.
timetable_file
,
"
r
"
)
as
file
:
self
.
timetable
=
jsonpickle
.
decode
(
file
.
read
())
self
.
logger
.
info
(
SU
.
green
(
"
timetable.json loaded
"
))
except
Exception
as
e
:
self
.
logger
.
error
(
SU
.
red
(
f
"
Error while reading
{
self
.
timetable_file
}
"
),
e
)
else
:
self
.
logger
.
info
(
SU
.
green
(
"
timetable.json not yet available
"
))
def
merge_timetable
(
self
,
remote_timeslots
:
list
):
"""
Merge the fetched timeslots with the current local timetable.
...
...
@@ -283,32 +267,6 @@ class TimetableService:
return
True
return
False
def
timetable_file_exists
(
self
)
->
bool
:
"""
Checks if
'
timetable.json
'
is available.
Returns:
bool: True if file is existing.
"""
return
pathlib
.
Path
(
self
.
timetable_file
).
is_file
()
def
delete_timetable_file
(
self
)
->
bool
:
"""
Delete the `timetable.json` file.
Returns:
(bool): `True` if file is deleted.
"""
try
:
if
os
.
path
.
exists
(
self
.
timetable_file
):
os
.
remove
(
self
.
timetable_file
)
self
.
logger
.
info
(
SU
.
green
(
f
"
Purged
'
{
self
.
timetable_file
}
'"
))
except
Exception
as
e
:
msg
=
f
"
Error while deleting
'
{
self
.
timetable_file
}
'"
self
.
logger
.
critical
(
SU
.
red
(
msg
),
e
)
return
False
return
True
def
terminate
(
self
):
"""
Call this when the thread is stopped or a signal to terminate is received.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment