-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathre-sort-imports.lhs
133 lines (110 loc) · 3.3 KB
/
re-sort-imports.lhs
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
Example: Sort-Import Processor
==============================
This example looks for Haskell files and sorts their import statements
into a standard (alphabetical) order
\begin{code}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE OverloadedStrings #-}
module Main
( main
) where
import Control.Applicative
import qualified Control.Monad as M
import qualified Data.ByteString.Lazy.Char8 as LBS
import Prelude.Compat
import System.Directory
import System.Environment
import System.Exit
import System.FilePath
import TestKit
import Text.Printf
import Text.RE.TDFA.String
import Text.RE.Tools.Find
\end{code}
Mode
----
This program can run in one of two modes.
\begin{code}
data Mode
= Check -- only check for unsorted files, generating an
-- error if any not sorted
| Update -- update any unsorted files
deriving (Eq,Show)
\end{code}
\begin{code}
main :: IO ()
main = do
as <- getArgs
case as of
[] -> test
["test"] -> test
["update",fp] | is_file fp -> sort_r Update fp
["check" ,fp] | is_file fp -> sort_r Check fp
_ -> usage
where
is_file = not . (== "--") . take 2
test = do
sort_r Check "Text"
sort_r Check "examples"
usage = do
prg <- getProgName
putStr $ unlines
[ "usage:"
, " "++prg++" [test]"
, " "++prg++" check <directory>"
, " "++prg++" update <directory>"
]
\end{code}
The Find Script
---------------
\begin{code}
sort_r :: Mode -> FilePath -> IO ()
sort_r md root = findMatches_ fm [re|\.l?hs|] root >>= sort_these md root
where
fm = FindMethods
{ doesDirectoryExistDM = doesDirectoryExist
, listDirectoryDM = getDirectoryContents
, combineDM = (</>)
}
\end{code}
Processing the List of Files
----------------------------
\begin{code}
sort_these :: Mode -> FilePath -> [FilePath] -> IO ()
sort_these md root fps = do
ok <- and <$> mapM (sort_this md) fps
case ok of
True -> msg "all imports sorted"
False -> case md of
Check -> do
msg "Some imports need sorting"
exitWith $ ExitFailure 1
Update ->
msg "Some imports were sorted"
where
msg :: String -> IO ()
msg s = printf "%-10s : %s\n" root s
\end{code}
Processing a single File
------------------------
\begin{code}
sort_this :: Mode -> FilePath -> IO Bool
sort_this md fp = LBS.readFile fp >>= sort_this'
where
sort_this' lbs = do
M.when (not same) $ putStrLn fp
M.when (md==Update) $ LBS.writeFile fp lbs'
return same
where
same = lbs==lbs'
lbs' = sortImports lbs
\end{code}
Sorting the Imports of the Text of a Haskell Script
---------------------------------------------------
The function for sorting a Haskell script, `sortImports` has been
placed in `TestKit` so that it can be shared with re-gen-modules`.
%include "examples/TestKit.lhs" "sortImports ::"