aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/Files.hs
diff options
context:
space:
mode:
authorpacien2019-12-25 21:04:31 +0100
committerpacien2019-12-25 21:04:31 +0100
commit0b2f6fb420d213b4ee718b9ac79cc3f9fa7678d5 (patch)
tree496a268b92a46f8952d9792cb5565ebdde5fbfa4 /compiler/src/Files.hs
parent819ec9bfb9674375f696741816184fef06af68ed (diff)
downloadldgallery-0b2f6fb420d213b4ee718b9ac79cc3f9fa7678d5.tar.gz
compiler: refactor transform stages
Diffstat (limited to 'compiler/src/Files.hs')
-rw-r--r--compiler/src/Files.hs104
1 files changed, 104 insertions, 0 deletions
diff --git a/compiler/src/Files.hs b/compiler/src/Files.hs
new file mode 100644
index 0000000..7948842
--- /dev/null
+++ b/compiler/src/Files.hs
@@ -0,0 +1,104 @@
1{-# LANGUAGE DuplicateRecordFields, DeriveGeneric #-}
2
3-- ldgallery - A static generator which turns a collection of tagged
4-- pictures into a searchable web gallery.
5--
6-- Copyright (C) 2019 Pacien TRAN-GIRARD
7--
8-- This program is free software: you can redistribute it and/or modify
9-- it under the terms of the GNU Affero General Public License as
10-- published by the Free Software Foundation, either version 3 of the
11-- License, or (at your option) any later version.
12--
13-- This program is distributed in the hope that it will be useful,
14-- but WITHOUT ANY WARRANTY; without even the implied warranty of
15-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16-- GNU Affero General Public License for more details.
17--
18-- You should have received a copy of the GNU Affero General Public License
19-- along with this program. If not, see <https://www.gnu.org/licenses/>.
20
21
22module Files
23 ( FileName, LocalPath, WebPath, Path
24 , (</>), (</), (/>), localPath, webPath
25 , FSNode(..), AnchoredFSNode(..)
26 , nodePath, nodeName, isHidden, flatten, filterDir, readDirectory
27 ) where
28
29
30import Control.Monad (filterM, mapM)
31import Data.Bool (bool)
32import Data.List (isPrefixOf, length, deleteBy)
33import Data.Function ((&))
34import System.Directory (doesDirectoryExist, listDirectory)
35import qualified System.FilePath
36import qualified System.FilePath.Posix
37import Utils
38
39
40type FileName = String
41type LocalPath = String
42type WebPath = String
43
44 -- | Reversed path component list
45type Path = [FileName]
46
47(</>) :: Path -> Path -> Path
48l </> r = r ++ l
49
50(</) :: Path -> FileName -> Path
51path </ file = file:path
52
53(/>) :: FileName -> Path -> Path
54file /> path = path ++ [file]
55
56localPath :: Path -> LocalPath
57localPath = System.FilePath.joinPath . reverse
58
59webPath :: Path -> WebPath
60webPath = System.FilePath.Posix.joinPath . reverse
61
62
63data FSNode = File Path | Dir Path [FSNode] deriving Show
64data AnchoredFSNode = AnchoredFSNode
65 { anchor :: LocalPath
66 , root :: FSNode } deriving Show
67
68nodePath :: FSNode -> Path
69nodePath (File path) = path
70nodePath (Dir path _) = path
71
72nodeName :: FSNode -> FileName
73nodeName = head . nodePath
74
75isHidden :: FSNode -> Bool
76isHidden node = "." `isPrefixOf` filename && length filename > 1
77 where filename = nodeName node
78
79flatten :: FSNode -> [FSNode]
80flatten file@(File _) = [file]
81flatten dir@(Dir _ childs) = dir:(concatMap flatten childs)
82
83-- | Filters a dir tree. The root is always returned.
84filterDir :: (FSNode -> Bool) -> FSNode -> FSNode
85filterDir _ file@(File _) = file
86filterDir cond (Dir path childs) =
87 filter cond childs & map (filterDir cond) & Dir path
88
89readDirectory :: LocalPath -> IO AnchoredFSNode
90readDirectory root = mkNode [""] >>= return . AnchoredFSNode root
91 where
92 mkNode :: Path -> IO FSNode
93 mkNode path =
94 (doesDirectoryExist $ localPath (root /> path))
95 >>= bool (mkFileNode path) (mkDirNode path)
96
97 mkFileNode :: Path -> IO FSNode
98 mkFileNode path = return $ File path
99
100 mkDirNode :: Path -> IO FSNode
101 mkDirNode path =
102 (listDirectory $ localPath (root /> path))
103 >>= mapM (mkNode . ((</) path))
104 >>= return . Dir path