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
66b67e2e
Commit
66b67e2e
authored
4 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
Recreate DB to model space.
#41
parent
9ea7208e
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
run.py
+3
-3
3 additions, 3 deletions
run.py
src/scheduling/models.py
+24
-0
24 additions, 0 deletions
src/scheduling/models.py
src/scheduling/scheduler.py
+3
-29
3 additions, 29 deletions
src/scheduling/scheduler.py
with
30 additions
and
32 deletions
run.py
+
3
−
3
View file @
66b67e2e
...
...
@@ -78,12 +78,12 @@ class EngineRunner:
"""
Starts Engine Core.
"""
from
src.scheduling.
scheduler
import
Aura
Scheduler
from
src.scheduling.
models
import
Aura
DatabaseModel
from
src.core.engine
import
Engine
# Check if the database has to be re-created
# Check if the database has to be re-
)
created
if
self
.
config
.
get
(
"
recreate_db
"
)
is
not
None
:
Aura
Scheduler
.
init_database
()
Aura
DatabaseModel
.
recreate_db
()
if
start_lqs
:
runner
.
run_lqs
(
lqs_debug_flags
)
...
...
This diff is collapsed.
Click to expand it.
src/scheduling/models.py
+
24
−
0
View file @
66b67e2e
...
...
@@ -99,6 +99,30 @@ class AuraDatabaseModel():
return
self
.
__dict__
@staticmethod
def
init_database
():
"""
Initializes the database.
Raises:
sqlalchemy.exc.ProgrammingError: In case the DB model is invalid
"""
if
AuraConfig
.
config
().
get
(
"
recreate_db
"
)
is
not
None
:
AuraDatabaseModel
.
recreate_db
(
systemexit
=
True
)
# Check if tables exists, if not create them
try
:
Playlist
.
is_empty
()
except
sa
.
exc
.
ProgrammingError
as
e
:
errcode
=
e
.
orig
.
args
[
0
]
if
errcode
==
1146
:
# Error for no such table
model
=
AuraDatabaseModel
()
model
.
recreate_db
()
else
:
raise
@staticmethod
def
recreate_db
(
systemexit
=
False
):
"""
...
...
This diff is collapsed.
Click to expand it.
src/scheduling/scheduler.py
+
3
−
29
View file @
66b67e2e
...
...
@@ -21,12 +21,11 @@
import
logging
import
threading
import
time
import
sqlalchemy
from
src.base.config
import
AuraConfig
from
src.base.utils
import
SimpleUtil
as
SU
from
src.scheduling.models
import
AuraDatabaseModel
,
Playlist
from
src.scheduling.models
import
AuraDatabaseModel
from
src.base.exceptions
import
NoActiveTimeslotException
,
LoadSourceException
from
src.core.control
import
EngineExecutor
from
src.core.engine
import
Engine
...
...
@@ -82,14 +81,14 @@ class AuraScheduler(threading.Thread):
self
.
config
=
AuraConfig
.
config
()
self
.
logger
=
logging
.
getLogger
(
"
AuraEngine
"
)
self
.
programme
=
Programme
()
self
.
timeslot_renderer
=
TimeslotRenderer
(
self
)
AuraScheduler
.
init_database
()
self
.
timeslot_renderer
=
TimeslotRenderer
(
self
)
self
.
fallback
=
fallback_manager
self
.
engine
=
engine
self
.
engine
.
scheduler
=
self
self
.
is_soundsytem_init
=
False
# Scheduler Initialization
AuraDatabaseModel
.
init_database
()
self
.
is_initialized
=
False
self
.
is_engine_ready
=
False
...
...
@@ -364,31 +363,6 @@ class AuraScheduler(threading.Thread):
# FIXME Move to adequate module
@staticmethod
def
init_database
():
"""
Initializes the database.
Raises:
sqlalchemy.exc.ProgrammingError: In case the DB model is invalid
"""
if
AuraConfig
.
config
().
get
(
"
recreate_db
"
)
is
not
None
:
AuraDatabaseModel
.
recreate_db
(
systemexit
=
True
)
# Check if tables exists, if not create them
try
:
Playlist
.
is_empty
()
except
sqlalchemy
.
exc
.
ProgrammingError
as
e
:
errcode
=
e
.
orig
.
args
[
0
]
if
errcode
==
1146
:
# Error for no such table
model
=
AuraDatabaseModel
()
model
.
recreate_db
()
else
:
raise
def
terminate
(
self
):
"""
...
...
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