mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
73 lines
1.9 KiB
Swift
73 lines
1.9 KiB
Swift
//
|
|
// MPDServerDelegate.swift
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 2019/8/02.
|
|
// Copyright © 2019 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import Dispatch
|
|
import NotificationCenter
|
|
|
|
class MPDServerDelegate: MPDClientDelegate {
|
|
func didConnect(mpdClient: MPDClient) {
|
|
NotificationCenter.default.post(name: .didConnect, object: nil)
|
|
DispatchQueue.main.async {
|
|
App.store.dispatch(UpdateConnectedState(connected: true))
|
|
}
|
|
}
|
|
|
|
func willDisconnect(mpdClient: MPDClient) {
|
|
NotificationCenter.default.post(name: .willDisconnect, object: nil)
|
|
DispatchQueue.main.async {
|
|
App.store.dispatch(UpdateConnectedState(connected: false))
|
|
}
|
|
}
|
|
|
|
func didRaiseError(
|
|
mpdClient: MPDClient,
|
|
error: MPDClient.MPDError
|
|
) {
|
|
NotificationCenter.default.post(name: .didRaiseError, object: error)
|
|
}
|
|
|
|
func didUpdateStatus(mpdClient: MPDClient, status: MPDClient.MPDStatus) {
|
|
DispatchQueue.main.async {
|
|
App.store.dispatch(UpdateStatusAction(status: status))
|
|
}
|
|
}
|
|
|
|
func willStartDatabaseUpdate(mpdClient: MPDClient) {
|
|
DispatchQueue.main.async {
|
|
App.store.dispatch(DatabaseUpdateStartedAction())
|
|
}
|
|
}
|
|
|
|
func didFinishDatabaseUpdate(mpdClient: MPDClient) {
|
|
DispatchQueue.main.async {
|
|
App.store.dispatch(DatabaseUpdateFinishedAction())
|
|
}
|
|
}
|
|
|
|
func didUpdateQueue(mpdClient: MPDClient, queue: [MPDClient.MPDSong]) {
|
|
DispatchQueue.main.async {
|
|
App.store.dispatch(UpdateQueueAction(queue: queue))
|
|
}
|
|
}
|
|
|
|
func didUpdateQueuePos(mpdClient: MPDClient, song: Int) {
|
|
DispatchQueue.main.async {
|
|
App.store.dispatch(UpdateQueuePosAction(queuePos: song))
|
|
}
|
|
}
|
|
|
|
func didLoadAlbums(mpdClient: MPDClient, albums: [MPDClient.MPDAlbum]) {
|
|
DispatchQueue.main.async {
|
|
App.store.dispatch(UpdateAlbumListAction(albums: albums))
|
|
}
|
|
}
|
|
|
|
func didLoadArtists(mpdClient: MPDClient, artists: [String]) {
|
|
}
|
|
}
|