blob: 369f10369109cea68bd2168d4e9293ac311acac4 (
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
|
{-# LANGUAGE Arrows #-}
{-
Takes a list of XML files
Parses them for xi:xinclude elements
Extract included files
Prints list of included files
-}
module Main
( main
) where
import Data.List (isPrefixOf, stripPrefix)
import Data.Maybe (fromMaybe)
import System.Environment (getArgs)
import Text.XML.HXT.Core
((>>>), deep, getAttrValue, hasAttr, hasName, isElem, readDocument,
returnA, runX)
getXIncludes :: FilePath -> IO [String]
getXIncludes xmlFileName =
runX $
readDocument [] xmlFileName >>>
deep (isElem >>> hasName "xi:include" >>> hasAttr "href") >>>
proc d ->
do href <- getAttrValue "href" -< d
returnA -< href
getFiles :: [String] -> [String]
getFiles = map stripScheme . filter isFile
where
fileScheme = "file://"
isFile s = "/" `isPrefixOf` s || (fileScheme `isPrefixOf` s)
stripScheme u = fromMaybe u (stripPrefix fileScheme u)
unique :: [String] -> [String]
unique [] = []
unique (x:xs)
| x `elem` xs = unique xs
| otherwise = x : unique xs
toNix :: [String] -> String
toNix ss = "[" ++ unwords (map show ss) ++ "]"
main :: IO ()
main = do
paths <- getArgs
includedFiles <- unique . getFiles . concat <$> mapM getXIncludes paths
putStrLn $ toNix includedFiles
|