blob: 0abff0f785834c80b33939aa2e83acf52e5943df (
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
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
|
import Control.Monad( liftM )
import System( getArgs )
import Text.Printf
getLines :: FilePath -> IO [String]
getLines = liftM lines . readFile
stripReturn :: String -> String
stripReturn s = if (last s == '\r') then init s else s
isComment :: String -> Bool
isComment = (==) '#' . head
isNumber :: String -> Bool
isNumber ('0':[]) = True
isNumber ('-':ns)
| ns /= [] && head ns /= '0' = isNumber ns
isNumber n = null . filter (not . isDigit) $ n
isDigit :: Char -> Bool
isDigit '0' = True
isDigit '1' = True
isDigit '2' = True
isDigit '3' = True
isDigit '4' = True
isDigit '5' = True
isDigit '6' = True
isDigit '7' = True
isDigit '8' = True
isDigit '9' = True
isDigit _ = False
isName :: String -> Bool
isName s = foldr (&&) True $ map ((==) '"') $ [head s, last s]
scan :: String -> String
scan s = if (s == "absTerm" ||
s == "absThm" ||
s == "appTerm" ||
s == "appThm" ||
s == "assume" ||
s == "axiom" ||
s == "betaConv" ||
s == "cons" ||
s == "const" ||
s == "constTerm" ||
s == "deductAntisym" ||
s == "def" ||
s == "defineConst" ||
s == "defineTypeOp" ||
s == "eqMp" ||
s == "nil" ||
s == "opType" ||
s == "pop" ||
s == "ref" ||
s == "refl" ||
s == "remove" ||
s == "subst" ||
s == "thm" ||
s == "typeOp" ||
s == "var" ||
s == "varTerm" ||
s == "varType" ||
isComment(s) ||
isNumber(s) ||
isName(s))
then s
else error $ "Invalid input " ++ s
doScan :: [String] -> [String]
doScan = map (scan . stripReturn)
main = do
args <- getArgs
list <- getLines $ head args
plist <- return $ doScan list
printf $ if (list == plist) then "Scan OK\n" else "Syntax error\n"
|