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
cc55b1fb
Commit
cc55b1fb
authored
5 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
Channel and ChannelType handling.
parent
0f95b239
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libraries/database/broadcasts.py
+26
-33
26 additions, 33 deletions
libraries/database/broadcasts.py
libraries/enum/auraenumerations.py
+15
-2
15 additions, 2 deletions
libraries/enum/auraenumerations.py
modules/base/simpleutil.py
+39
-1
39 additions, 1 deletion
modules/base/simpleutil.py
with
80 additions
and
36 deletions
libraries/database/broadcasts.py
+
26
−
33
View file @
cc55b1fb
...
...
@@ -38,9 +38,9 @@ from sqlalchemy.orm import relationship
from
sqlalchemy
import
create_engine
from
libraries.enum.auraenumerations
import
ScheduleEntry
Type
from
libraries.enum.auraenumerations
import
Channel
,
Channel
Type
from
modules.base.config
import
AuraConfig
from
modules.base.simpleutil
import
SimpleUtil
from
modules.base.simpleutil
import
SimpleUtil
,
EngineUtil
# Init Config
...
...
@@ -462,23 +462,19 @@ class PlaylistEntry(DB.Model, AuraDatabaseModel):
@hybrid_property
def
type
(
self
):
if
self
.
uri
.
startswith
(
"
http
"
):
return
ScheduleEntryType
.
STREAM
if
self
.
uri
.
startswith
(
"
pool
"
)
or
self
.
uri
.
startswith
(
"
playlist
"
)
or
self
.
uri
.
startswith
(
"
file
"
):
return
ScheduleEntryType
.
FILESYSTEM
if
self
.
uri
.
startswith
(
"
live
"
)
or
self
.
uri
.
startswith
(
"
linein
"
):
if
self
.
cleansource
==
"
0
"
:
return
ScheduleEntryType
.
LIVE_0
elif
self
.
cleansource
==
"
1
"
:
return
ScheduleEntryType
.
LIVE_1
elif
self
.
cleansource
==
"
2
"
:
return
ScheduleEntryType
.
LIVE_2
elif
self
.
cleansource
==
"
3
"
:
return
ScheduleEntryType
.
LIVE_3
elif
self
.
cleansource
==
"
4
"
:
return
ScheduleEntryType
.
LIVE_4
return
EngineUtil
.
get_channel_type
(
self
.
uri
)
@hybrid_property
def
channel
(
self
):
type
=
EngineUtil
.
get_channel_type
(
self
.
uri
)
if
type
==
ChannelType
.
FILESYSTEM
:
return
Channel
.
FILESYSTEM_A
elif
type
==
ChannelType
.
STREAM
:
return
Channel
.
STREAM_A
else
:
return
"
foo:bar
"
#FIXME Extend & finalize!!
def
get_prev_entries
(
self
):
"""
Retrieves all previous entries as part of the current entry
'
s playlist.
...
...
@@ -754,21 +750,18 @@ class SingleEntry(DB.Model, AuraDatabaseModel):
@hybrid_property
def
type
(
self
):
if
self
.
uri
.
startswith
(
"
http
"
):
return
ScheduleEntryType
.
STREAM
if
self
.
uri
.
startswith
(
"
pool
"
)
or
self
.
uri
.
startswith
(
"
playlist
"
)
or
self
.
uri
.
startswith
(
"
file
"
):
return
ScheduleEntryType
.
FILESYSTEM
if
self
.
uri
.
startswith
(
"
live
"
)
or
self
.
uri
.
startswith
(
"
linein
"
):
if
self
.
cleansource
==
"
0
"
:
return
ScheduleEntryType
.
LIVE_0
elif
self
.
cleansource
==
"
1
"
:
return
ScheduleEntryType
.
LIVE_1
elif
self
.
cleansource
==
"
2
"
:
return
ScheduleEntryType
.
LIVE_2
elif
self
.
cleansource
==
"
3
"
:
return
ScheduleEntryType
.
LIVE_3
elif
self
.
cleansource
==
"
4
"
:
return
ScheduleEntryType
.
LIVE_4
return
EngineUtil
.
get_channel_type
(
self
.
uri
)
@hybrid_property
def
channel
(
self
):
type
=
EngineUtil
.
get_channel_type
(
self
.
uri
)
if
type
==
ChannelType
.
FILESYSTEM
:
return
Channel
.
FILESYSTEM_A
elif
type
==
ChannelType
.
STREAM
:
return
Channel
.
STREAM_A
else
:
return
"
foo:bar
"
#FIXME Extend & finalize!!
def
as_dict
(
self
):
...
...
This diff is collapsed.
Click to expand it.
libraries/enum/auraenumerations.py
+
15
−
2
View file @
cc55b1fb
...
...
@@ -61,10 +61,23 @@ class RedisChannel(Enum):
SNF_REPLY
=
"
get_next_file_reply
"
class
ScheduleEntryType
(
Enum
):
# enumeration with names of liquidsoap inputs
class
ChannelType
(
Enum
):
"""
Engine channel types mapped to `Entry` source types.
"""
FILESYSTEM
=
"
fs
"
STREAM
=
"
http
"
LIVE
=
"
live
"
class
Channel
(
Enum
):
"""
Channel name mappings to the Liqidsoap channel IDs
"""
FILESYSTEM_A
=
"
in_filesystem_0
"
FILESYSTEM_B
=
"
in_filesystem_1
"
STREAM_A
=
"
http_1
"
STREAM_B
=
"
http_2
"
LIVE_0
=
"
aura_linein_0
"
LIVE_1
=
"
aura_linein_1
"
LIVE_2
=
"
aura_linein_2
"
...
...
This diff is collapsed.
Click to expand it.
modules/base/simpleutil.py
+
39
−
1
View file @
cc55b1fb
...
...
@@ -33,11 +33,49 @@ __author__ = 'David Trattnig <david.trattnig@subsquare.at>'
import
datetime
import
time
from
libraries.enum.auraenumerations
import
Channel
,
ChannelType
class
EngineUtil
:
"""
A class for Engine utilities.
"""
@staticmethod
def
get_channel_type
(
uri
):
"""
Returns the channel type, depending on the passed URI and source.
Args:
uri (String): The URI of the source
"""
if
uri
.
startswith
(
"
http
"
):
return
ChannelType
.
STREAM
if
uri
.
startswith
(
"
pool
"
)
or
uri
.
startswith
(
"
playlist
"
)
or
uri
.
startswith
(
"
file
"
):
return
ChannelType
.
FILESYSTEM
if
uri
.
startswith
(
"
live
"
)
or
uri
.
startswith
(
"
linein
"
):
return
ChannelType
.
LIVE
# FIXME Mix of channels and channel-types!!!
# if source == "0":
# return Channel.LIVE_0
# elif source == "1":
# return Channel.LIVE_1
# elif source == "2":
# return Channel.LIVE_2
# elif source == "3":
# return Channel.LIVE_3
# elif source == "4":
# return Channel.LIVE_4
class
SimpleUtil
:
"""
A container for simple utility methods.
A container
class
for simple utility methods.
"""
...
...
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