summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoe Crayne <joe@jerkface.net>2019-07-06 17:33:40 -0400
committerJoe Crayne <joe@jerkface.net>2019-07-06 17:33:40 -0400
commitb7da6a23a4ae94e8ce376376df77401ee779f028 (patch)
treeb126cf0b6bc6cb0fb6e383409f35430a32fe58bf /lib
parentb1ae1ecdc9d1f16134ea40b07a6cedcc26a94db8 (diff)
sigs
Diffstat (limited to 'lib')
-rw-r--r--lib/CommandLine.hs2
-rw-r--r--lib/Hosts.hs4
-rw-r--r--lib/PEM.hs2
3 files changed, 8 insertions, 0 deletions
diff --git a/lib/CommandLine.hs b/lib/CommandLine.hs
index 55b77b3..ea5d6b8 100644
--- a/lib/CommandLine.hs
+++ b/lib/CommandLine.hs
@@ -286,6 +286,7 @@ vanilla flags = ArgsStyle { parseInvocation = parse flags }
286-- 286--
287-- * default polyvariadic - Implicit polyvariadic option if no other option is specified. 287-- * default polyvariadic - Implicit polyvariadic option if no other option is specified.
288-- 288--
289fancy :: [([Char], Int)] -> [[Char]] -> [Char] -> ArgsStyle
289fancy sargspsec polyVariadicArgs defaultPoly = ArgsStyle 290fancy sargspsec polyVariadicArgs defaultPoly = ArgsStyle
290 { parseInvocation = parse sargspsec polyVariadicArgs defaultPoly } 291 { parseInvocation = parse sargspsec polyVariadicArgs defaultPoly }
291 where 292 where
@@ -436,6 +437,7 @@ sortOn f =
436#endif 437#endif
437#endif 438#endif
438 439
440removeIntersection :: Ord a => [a] -> [a] -> ([a], [a])
439removeIntersection (x:xs) (y:ys) 441removeIntersection (x:xs) (y:ys)
440 | x == y = removeIntersection xs ys 442 | x == y = removeIntersection xs ys
441 | x < y = first (x :) $ removeIntersection xs (y:ys) 443 | x < y = first (x :) $ removeIntersection xs (y:ys)
diff --git a/lib/Hosts.hs b/lib/Hosts.hs
index 5f09de1..0f1d9a6 100644
--- a/lib/Hosts.hs
+++ b/lib/Hosts.hs
@@ -162,6 +162,7 @@ chaddr n addr hosts =
162 where oo = (.) . (.) 162 where oo = (.) . (.)
163 (a,ws') = splitAt 2 ws 163 (a,ws') = splitAt 2 ws
164 164
165isLonerName :: L.ByteString -> Bool
165isLonerName line = length ws' <= 2 166isLonerName line = length ws' <= 2
166 where (x,_) = L.break (=='#') line 167 where (x,_) = L.break (=='#') line
167 ws = L.groupBy ( (==EQ) `oo` comparing isSpace) x 168 ws = L.groupBy ( (==EQ) `oo` comparing isSpace) x
@@ -186,12 +187,15 @@ cannonizeName name line = scrubName f line
186 where 187 where
187 (pre,rst) = break (==name) ws 188 (pre,rst) = break (==name) ws
188 189
190removeName :: L.ByteString -> Hosts -> Hosts
189removeName name hosts = hosts' 191removeName name hosts = hosts'
190 where 192 where
191 hosts' = scrubTrailingEmpties (maybe hosts (removeName0 name hosts) ns) 193 hosts' = scrubTrailingEmpties (maybe hosts (removeName0 name hosts) ns)
192 ns = Map.lookup name (namenum hosts) 194 ns = Map.lookup name (namenum hosts)
193 195
194 196
197removeName0 :: Foldable t =>
198 L.ByteString -> Hosts -> t Int -> Hosts
195removeName0 name hosts nums = hosts 199removeName0 name hosts nums = hosts
196 { namenum = Map.delete name (namenum hosts) 200 { namenum = Map.delete name (namenum hosts)
197 , numline = foldl' scrub (numline hosts) nums 201 , numline = foldl' scrub (numline hosts) nums
diff --git a/lib/PEM.hs b/lib/PEM.hs
index fd2fe98..003f4ff 100644
--- a/lib/PEM.hs
+++ b/lib/PEM.hs
@@ -20,6 +20,8 @@ data PEMBlob = PEMBlob { pemType :: L.ByteString
20 } 20 }
21 deriving (Eq,Show) 21 deriving (Eq,Show)
22 22
23pemParser :: Maybe L.ByteString
24 -> ScanningParser L.ByteString PEMBlob
23pemParser mtyp = ScanningParser (maybe fndany fndtyp mtyp) pbdy 25pemParser mtyp = ScanningParser (maybe fndany fndtyp mtyp) pbdy
24 where 26 where
25 hdr typ = "-----BEGIN " <> typ <> "-----" 27 hdr typ = "-----BEGIN " <> typ <> "-----"