ideas-0.5.8: src/Service/ModeJSON.hs
-----------------------------------------------------------------------------
-- Copyright 2009, Open Universiteit Nederland. This file is distributed
-- under the terms of the GNU General Public License. For more information,
-- see the file "LICENSE.txt", which is included in the distribution.
-----------------------------------------------------------------------------
-- |
-- Maintainer : bastiaan.heeren@ou.nl
-- Stability : provisional
-- Portability : portable (depends on ghc)
--
-- Services using JSON notation
--
-----------------------------------------------------------------------------
module Service.ModeJSON (processJSON, jsonTuple) where
import Common.Context
import Common.Utils (Some(..), distinct)
import Common.Exercise
import Common.Strategy (makePrefix)
import Common.Transformation hiding (ruleList, defaultArgument)
import Text.JSON
import Service.Request
import Service.Types (Evaluator(..), Type, encodeDefault, decodeDefault, Encoder(..), Decoder(..))
import qualified Service.Types as Tp
import qualified Service.TypedAbstractService as TAS
import Service.ServiceList hiding (Service)
import qualified Service.ExerciseList as List
import Control.Monad
import Data.Maybe
import Data.Char
-- TODO: Clean-up code
extractCode :: JSON -> ExerciseCode
extractCode = fromMaybe noCode . List.resolveExerciseCode . f
where
f (String s) = s
f (Array [String _, String _, a@(Array _)]) = f a
f (Array (String s:tl)) | any (\c -> not (isAlphaNum c || isSpace c || c `elem` ".-")) s = f (Array tl)
f (Array (hd:_)) = f hd
f _ = ""
processJSON :: String -> IO (Request, String, String)
processJSON input = do
txt <- jsonRPC input myHandler
case fmap jsonRequest (parseJSON input) of
Just (Right req) -> return (req, txt, "application/json")
Just (Left err) -> fail err
_ -> fail "no parse"
jsonRequest :: JSON -> Either String Request
jsonRequest json = do
srv <- case lookupM "method" json of
Just (String s) -> return s
_ -> fail "Invalid method"
code <- liftM (return . extractCode) (lookupM "params" json)
enc <- case lookupM "encoding" json of
Nothing -> return Nothing
Just (String s) -> liftM Just (readEncoding s)
_ -> fail "Invalid encoding"
src <- case lookupM "source" json of
Nothing -> return Nothing
Just (String s) -> return (Just s)
_ -> fail "Invalid source"
return Request
{ service = srv
, exerciseID = code
, source = src
, dataformat = JSON
, encoding = enc
}
myHandler :: JSON_RPC_Handler
myHandler fun arg
| code == noCode && fun /= "exerciselist" =
fail "invalid exercise code"
| otherwise =
case jsonConverter code of
Some conv -> do
service <- getService fun
either fail return (evalService conv service arg)
where
code = extractCode arg
jsonConverter :: ExerciseCode -> Some (Evaluator (Either String) JSON JSON)
jsonConverter code =
let f a = Some (Evaluator (jsonEncoder a) (jsonDecoder a))
in case List.getExercise code of
Just (Some a) -> f a
Nothing -> f emptyExercise
jsonEncoder :: Monad m => Exercise a -> Encoder m JSON a
jsonEncoder ex = Encoder
{ encodeType = encode (jsonEncoder ex)
, encodeTerm = return . String . prettyPrinter ex
, encodeTuple = jsonTuple
}
where
encode :: Monad m => Encoder m JSON a -> Type a t -> t -> m JSON
encode enc serviceType =
case serviceType of
Tp.List t -> liftM Array . mapM (encode enc t)
Tp.Tag s t -> liftM (\a -> Object [(s, a)]) . encode enc t
Tp.Int -> return . toJSON
Tp.Bool -> return . toJSON
Tp.String -> return . toJSON
Tp.State -> encode enc stateType . fromState
Tp.Result -> encodeResult enc
_ -> encodeDefault enc serviceType
fromState :: TAS.State a -> (String, String, Context a, String)
fromState st =
( show (exerciseCode (TAS.exercise st))
, maybe "NoPrefix" show (TAS.prefix st)
, inContext (TAS.term st)
, showContext (TAS.context st)
)
stateType :: Type a (String, String, Context a, String)
stateType = Tp.Quadruple Tp.String Tp.String Tp.Term Tp.String
jsonDecoder :: MonadPlus m => Exercise a -> Decoder m JSON a
jsonDecoder ex = Decoder
{ decodeType = decode (jsonDecoder ex)
, decodeTerm = reader ex
, decoderExercise = ex
}
where
reader :: Monad m => Exercise a -> JSON -> m a
reader ex (String s) = either (fail . show) return (parser ex s)
reader _ _ = fail "Expecting a string when reading a term"
decode :: MonadPlus m => Decoder m JSON a -> Type a t -> JSON -> m (t, JSON)
decode dec serviceType =
case serviceType of
Tp.State -> useFirst $ decodeState (decoderExercise dec) (decodeTerm dec)
Tp.Location -> useFirst fromJSON
Tp.Term -> useFirst $ liftM inContext . decodeTerm dec
Tp.Rule -> useFirst $ \x -> fromJSON x >>= getRule (decoderExercise dec)
Tp.Exercise -> \json -> case json of
(Array (String s:rest)) -> return (decoderExercise dec, Array rest)
_ -> return (decoderExercise dec, json)
Tp.Int -> useFirst $ \json -> case json of
Number (I n) -> return (fromIntegral n)
_ -> fail "not an integer"
Tp.String -> useFirst $ \json -> case json of
String s -> return s
_ -> fail "not a string"
_ -> decodeDefault dec serviceType
useFirst :: Monad m => (JSON -> m a) -> JSON -> m (a, JSON)
useFirst f (Array (x:xs)) = do
a <- f x
return (a, Array xs)
useFirst _ _ = fail "expecting an argument"
instance InJSON Location where
toJSON = toJSON . show
fromJSON (String s) = case reads s of
[(loc, rest)] | all isSpace rest -> return loc
_ -> fail "invalid string"
fromJSON _ = fail "expecting a string"
--------------------------
decodeState :: Monad m => Exercise a -> (JSON -> m a) -> JSON -> m (TAS.State a)
decodeState ex f (Array [a]) = decodeState ex f a
decodeState ex f (Array [String code, String p, ce, String ctx]) = do
a <- f ce
unit <- maybe (fail "invalid context") return (parseContext ctx)
return TAS.State
{ TAS.exercise = ex
, TAS.prefix = fmap (`makePrefix` strategy ex) (readPrefix p)
, TAS.context = fmap (const a) unit
}
decodeState _ _ s = fail $ "invalid state" ++ show s
readPrefix :: String -> Maybe [Int]
readPrefix input =
case reads input of
[(is, rest)] | all isSpace rest -> return is
_ -> Nothing
encodeResult :: Monad m => Encoder m JSON a -> TAS.Result a -> m JSON
encodeResult enc result =
case result of
-- TAS.SyntaxError _ -> [("result", String "SyntaxError")]
TAS.Buggy rs -> return $ Object [("result", String "Buggy"), ("rules", Array $ map (String . name) rs)]
TAS.NotEquivalent -> return $ Object [("result", String "NotEquivalent")]
TAS.Ok rs st -> do
json <- encodeType enc Tp.State st
return $ Object [("result", String "Ok"), ("rules", Array $ map (String . name) rs), ("state", json)]
TAS.Detour rs st -> do
json <- encodeType enc Tp.State st
return $ Object [("result", String "Detour"), ("rules", Array $ map (String . name) rs), ("state", json)]
TAS.Unknown st -> do
json <- encodeType enc Tp.State st
return $ Object [("result", String "Unknown"), ("state", json)]
jsonTuple :: [JSON] -> JSON
jsonTuple xs =
case mapM f xs of
Just xs | distinct (map fst xs) -> Object xs
_ -> Array xs
where
f (Object [p]) = Just p
f _ = Nothing