mirror of
https://github.com/The1Penguin/org-to-mafiauniverse.git
synced 2024-11-24 19:08:11 +00:00
more readable code and moved main to bottom
This commit is contained in:
parent
39f5aa8770
commit
cea8d45ddd
29
app/Main.hs
29
app/Main.hs
@ -8,37 +8,27 @@ import System.Environment
|
||||
import System.Exit
|
||||
import Text.Megaparsec hiding (satisfy)
|
||||
import Text.Megaparsec.Char
|
||||
import Text.ParserCombinators.ReadP hiding (string)
|
||||
|
||||
type Parser = Parsec Void String
|
||||
|
||||
parseFile :: String -> String
|
||||
parseFile =
|
||||
unlines
|
||||
. map
|
||||
( \x -> case parse fileParser "" x of
|
||||
Left bundle -> error ("Error parsing text" ++ errorBundlePretty bundle)
|
||||
parseHelper :: Parser String -> String -> String
|
||||
parseHelper parser x = case parse parser "" x of
|
||||
Left bundle -> error $ errorBundlePretty bundle
|
||||
Right text -> text
|
||||
)
|
||||
. lines
|
||||
|
||||
parseFile :: String -> String
|
||||
parseFile = unlines . map (parseHelper fileParser) . lines
|
||||
|
||||
fileParser :: Parser String
|
||||
fileParser = undefined
|
||||
|
||||
main :: IO ()
|
||||
main = putStr =<< parseCli =<< getArgs
|
||||
|
||||
parseCli :: [String] -> IO String
|
||||
parseCli [] = return usage
|
||||
parseCli [x] =
|
||||
if head x /= '-'
|
||||
then parseFile <$> readFile x
|
||||
else case parse argParse "" x of
|
||||
Left bundle -> fail $ "Failed parsing args" ++ errorBundlePretty bundle
|
||||
Right text -> return $ useArgs text
|
||||
parseCli [x, _] = case parse argParse "" x of
|
||||
Left bundle -> fail $ "Failed parsing args" ++ errorBundlePretty bundle
|
||||
Right text -> return $ useArgs text
|
||||
else return $ useArgs $ parseHelper argParse x
|
||||
parseCli [x, _] = return $ useArgs $ parseHelper argParse x
|
||||
parseCli _ = fail "Too many arugemnts"
|
||||
|
||||
argParse :: Parser String
|
||||
@ -56,3 +46,6 @@ usage = "Usage: otm [-hv] [file]"
|
||||
|
||||
version :: String
|
||||
version = "otm 0.1"
|
||||
|
||||
main :: IO ()
|
||||
main = putStr =<< parseCli =<< getArgs
|
||||
|
Loading…
Reference in New Issue
Block a user