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
|
-----------------------------------------------------------------------------
-- |
-- Module : XMobar.Parsers
-- Copyright : (c) Andrea Rossato
-- License : BSD-style (see LICENSE)
--
-- Maintainer : Andrea Rossato <andrea.rossato@unibz.it>
-- Stability : unstable
-- Portability : unportable
--
-- Parsers needed for XMobar, a status bar for the Xmonad Window Manager
--
-----------------------------------------------------------------------------
module Parsers (
-- * Parsing
-- $parser
parseString
, stringParser
, defaultColors
, colorsAndText
, templateStringParser
, templateCommandParser
, templateParser
, parseTemplate
) where
import Config
import Text.ParserCombinators.Parsec
{- $parser
These are the neede parsers. Don't trust them too much.
There are parsers for the commands output and parsers for the
formatting template.
-}
-- | Runs the actual string parsers
parseString :: Config -> String -> IO [(String, String)]
parseString config s =
case (parse (stringParser config) "" s) of
Left _ -> return [("Could not parse string: " ++ s
, (fgColor config))]
Right x -> return x
-- | Gets the string and combines the needed parsers
stringParser :: Config -> Parser [(String, String)]
stringParser c = manyTill (colorsAndText c <|> defaultColors c) eof
-- | Parses a string with the default color (no color set)
defaultColors :: Config -> Parser (String, String)
defaultColors config =
do { s <- many $ noneOf "<"
; return (s,(fgColor config))
}
<|> colorsAndText config
-- | Parses a string with a color set
colorsAndText :: Config -> Parser (String, String)
colorsAndText config =
do { string "<fc=#"
; n <- count 6 hexDigit
; string ">"
; s <- many $ noneOf "<"
; string "</fc>"
; return (s,"#"++n)
}
<|> defaultColors config
-- | Parses the output template string
templateStringParser :: Config -> Parser (String,String,String)
templateStringParser c =
do{ s <- many $ noneOf (sepChar c)
; (_,com,_) <- templateCommandParser c
; ss <- many $ noneOf (sepChar c)
; return (s, com, ss)
}
-- | Parses the command part of the template string
templateCommandParser :: Config -> Parser (String,String,String)
templateCommandParser c =
do { let chr = head $ sepChar c
; char chr
; com <- many $ noneOf (sepChar c)
; char chr
; return $ ("",com,"")
}
-- | Combines the template parsers
templateParser :: Config -> Parser [(String,String,String)]
templateParser c = many (templateStringParser c)
-- | Actually runs the template parsers
parseTemplate :: Config -> String -> IO [(String,String,String)]
parseTemplate config s =
case (parse (templateParser config) "" s) of
Left _ -> return [("","","")]
Right x -> return x
|