diff options
author | Jed Barber <jjbarber@y7mail.com> | 2014-04-29 16:04:49 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2014-04-29 16:04:49 +1000 |
commit | f67e758cf871bed55ec2438f4436da919c726a01 (patch) | |
tree | 2e05217e260ead4d5a2f1f68aca8381890957c51 | |
parent | 01b21135a76f38c9b4ce6129fe9c7368f02a405a (diff) |
Outline of code for parse-time errors written
-rw-r--r-- | src/Grasp/Parser.hs | 54 |
1 files changed, 26 insertions, 28 deletions
diff --git a/src/Grasp/Parser.hs b/src/Grasp/Parser.hs index 75f8fad..5c2c83c 100644 --- a/src/Grasp/Parser.hs +++ b/src/Grasp/Parser.hs @@ -1,17 +1,14 @@ module Grasp.Parser ( GraspProgram(..), - GraspNode, parseGrasp, - - getNodeLabel, - getFloat, - getString ) where import Control.Applicative( some ) import Text.ParserCombinators.Parsec +import Text.ParserCombinators.Parsec.Error +import Text.Parsec.Pos import Data.Graph.Inductive.Graph( Node, LNode, LEdge, (&) ) import Data.Graph.Inductive.Graph as Graph import Data.Graph.Inductive.Tree @@ -19,49 +16,50 @@ import Data.Graph.Inductive.Tree -data GraspProgram = Gr GraspNode GraspLabel +type GraspProgram = Gr String String + + -data GraspNode = GFloat GraspLabel Float - | GString GraspLabel String - | GEmpty GraspLabel +parseGrasp :: String -> Either ParseError GraspProgram +parseGrasp input = parse grasp "error" input >>= validate -type GraspLabel = String +validate :: ([LNode String],[LEdge String]) -> Either ParseError GraspProgram +validate (nodeList, edgeList) = + let nameEdges = filter (\(_,_,z) -> z == "name") edgeList + nameNodes = map (\(_,x,_) -> x) nameEdges + nameLNodes = filter (\(x,_) -> x `elem` nameNodes) nodeList + a = multiNames nameEdges + b = nonStringNames nameLNodes + c = noGraspMain nameLNodes -parseGrasp :: String -> Either ParseError ([LNode String],[LEdge String]) -parseGrasp = parse grasp "error" ---parseGrasp input = --- let firstPass = parse grasp "error" input --- in case firstPass of --- Left e -> Left e --- Right (n,e) -> validate n e + in case (a,b,c) of + ([],[],False) -> Right (Graph.mkGraph nodeList edgeList) + ([],[],True) -> Left (newErrorMessage (Message "could not find grasp:main") (newPos "" 0 0)) + ([],(x:_),_) -> Left (newErrorMessage (Message ("node " ++ (show x) ++ " has a numeric name")) (newPos "" 0 0)) ---validate :: [LNode String] -> [LEdge String] -> Either ParseError GraspProgram + ((x:_),_,_) -> Left (newErrorMessage (Message ("node " ++ (show x) ++ " has multiple names")) (newPos "" 0 0)) -getNodeLabel :: GraspNode -> GraspLabel -getNodeLabel (GFloat label _) = label -getNodeLabel (GString label _) = label -getNodelabel (GEmpty label) = label +multiNames :: [LEdge String] -> [LNode String] +multiNames x = [] -getFloat :: GraspNode -> Maybe Float -getFloat (GFloat _ f) = Just f -getFloat _ = Nothing +nonStringNames :: [LNode String] -> [LNode String] +nonStringNames x = [] -getString :: GraspNode -> Maybe String -getString (GString _ s) = Just s -getString _ = Nothing +noGraspMain :: [LNode String] -> Bool +noGraspMain x = False |