summaryrefslogtreecommitdiffhomepage
path: root/Plugins/Monitors/MPD.hs
blob: d5da7942fedc92d8895d564a74e738b4a443fe2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
-----------------------------------------------------------------------------
-- |
-- Module      :  Plugins.Monitors.MPD
-- Copyright   :  (c) Jose A Ortega Ruiz
-- License     :  BSD-style (see LICENSE)
--
-- Maintainer  :  Jose A Ortega Ruiz <jao@gnu.org>
-- Stability   :  unstable
-- Portability :  unportable
--
--  MPD status and song
--
-----------------------------------------------------------------------------

module Plugins.Monitors.MPD ( mpdConfig, runMPD ) where

import Plugins.Monitors.Common
import System.Console.GetOpt
import qualified Network.MPD as M

mpdConfig :: IO MConfig
mpdConfig = mkMConfig "MPD: <state>"
              [ "bar", "state", "statei", "volume", "length"
              , "lapsed", "remaining", "plength", "ppos"
              , "name", "artist", "composer", "performer"
              , "album", "title", "track", "trackno", "file", "genre"
              ]

data MOpts = MOpts {mPlaying :: String, mStopped :: String, mPaused :: String}

defaultOpts :: MOpts
defaultOpts = MOpts { mPlaying = ">>", mStopped = "><", mPaused = "||" }

options :: [OptDescr (MOpts -> MOpts)]
options =
  [ Option "P" ["playing"] (ReqArg (\x o -> o { mPlaying = x }) "") ""
  , Option "S" ["stopped"] (ReqArg (\x o -> o { mStopped = x }) "") ""
  , Option "Z" ["paused"] (ReqArg (\x o -> o { mPaused = x }) "") ""
  ]

runMPD :: [String] -> Monitor String
runMPD args = do
  status <- io $ M.withMPD M.status
  song <- io $ M.withMPD M.currentSong
  opts <- io $ mopts args
  let (b, s) = parseMPD status song opts
  bs <- showPercentBar (100 * b) b
  parseTemplate (bs:s)

mopts :: [String] -> IO MOpts
mopts argv =
  case getOpt Permute options argv of
    (o, _, []) -> return $ foldr id defaultOpts o
    (_, _, errs) -> ioError . userError $ concat errs

parseMPD :: M.Response M.Status -> M.Response (Maybe M.Song) -> MOpts
            -> (Float, [String])
parseMPD (Left e) _ _ = (0, show e:repeat "")
parseMPD (Right st) song opts =
  (realToFrac b, [ss, si, vol, len, lap, remain, plen, pp] ++ parseSong song)
  where s = M.stState st
        ss = show s
        si = stateGlyph s opts
        vol = int2str $ M.stVolume st
        (p, t) = M.stTime st
        ps = floor p
        [lap, len, remain] = map showTime [ps, t, max 0 (t - ps)]
        b = if t > 0 then p / fromIntegral t else 0
        plen = int2str $ M.stPlaylistLength st
        pp = case M.stSongPos st of
               Nothing -> ""
               Just n -> int2str $ n + 1

stateGlyph :: M.State -> MOpts -> String
stateGlyph s o =
  case s of
    M.Playing -> mPlaying o
    M.Paused -> mPaused o
    M.Stopped -> mStopped o

parseSong :: M.Response (Maybe M.Song) -> [String]
parseSong (Left _) = repeat ""
parseSong (Right Nothing) = repeat ""
parseSong (Right (Just s)) =
  [ name, artist, composer, performer , album, title
  , track, trackno, M.sgFilePath s, genre]
  where str sel = maybe "" head (M.sgGet sel s)
        name = str M.Name
        artist = str M.Artist
        composer = str M.Composer
        performer = str M.Performer
        album = str M.Album
        title = str M.Title
        genre = str M.Genre
        track = str M.Track
        trackno = track

showTime :: Integer -> String
showTime t = int2str minutes ++ ":" ++ int2str seconds
  where minutes = t `div` 60
        seconds = t `mod` 60

int2str :: (Num a, Ord a) => a -> String
int2str x = if x < 10 then '0':sx else sx where sx = show x