This commit is contained in:
Peder Bergebakken Sundt 2017-02-05 17:11:18 +01:00
commit 1fc402d911
3 changed files with 37 additions and 1 deletions

View File

@ -1,7 +1,9 @@
import asyncio
from . import playlistmanage
async def entry():
await asyncio.wait([
playlistmanage.metadatafetch_loop(),
])
def main():

View File

@ -38,7 +38,7 @@ class Condition:
self.monitor.notify_all()
class UnixConnection:
def __init__(self, path):
async def __init__(self, path):
(self.reader, self.writer) = await asyncio.open_unix_connection(path)
def __aiter__(self):

View File

@ -0,0 +1,34 @@
import asyncio
from . import metadatafetch
from . import nyasync
metadatafetch_queue = nyasync.Queue()
async def metadatafetch_loop():
async for item in metadatafetch_queue:
title = await metadatafetch.title(item.url)
item.title = title
metadatafetch_queue.task_done()
class PlaylistItem:
def __init__(self, url):
self.url = url
self.title = None
class Playlist:
def __init__(self):
self.playlist = []
self.nonempty = nyasync.Condition(lambda: self.playlist)
self.change = nyasync.Event()
def queue(self, url):
item = PlaylistItem(url)
self.playlist.append(item)
metadatafetch_queue.put_nowait(item)
self.nonempty.notify()
self.change.notify()
async def dequeue(self) -> PlaylistItem:
await self.nonempty
self.change.notify()
return self.playlist.pop(0)