我在 Haskell 中有一个响应 Json 输入的服务器。问题是在某些情况下服务器会因为部分功能而崩溃,但 Liquid Haskell 表示它是安全的。
这是一个最小的工作示例:
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE DeriveGeneric #-}
module Main where
import qualified Web.Scotty as Scot
import GHC.Generics (Generic)
import qualified Data.Aeson as Json
import Data.Text.Internal.Lazy (Text)
main :: IO ()
main =
Scot.scotty 3000 $
Scot.get "/:queryJson" $ do
rawRequest <- Scot.param "queryJson"
case Json.decode rawRequest of
Nothing -> Scot.text "Could not decode input."
Just input -> Scot.text $ makeOutput (dim1 input)
{-@ type Dim = { x : Int | x >= 0 && x <= 1 } @-}
{-@ makeOutput :: Dim -> Text @-}
makeOutput :: Int -> Text
makeOutput dim =
case dim of
0 -> "a"
1 -> "b"
_ -> error "Liquid haskell should stop this happening."
{-@ dim1 :: Input -> Dim @-}
data Input = Input
{ dim1 :: Int
} deriving (Generic)
instance Json.FromJSON Input
Liquid Haskell 说这是安全的,但我可以通过访问http://localhost:3000/ {"dim1":2} 使其崩溃。
我希望 Liquid Haskell 告诉我“dim1”函数的注释无效,因为它不能确定输入是 0 还是 1。
编辑:
我发现如果我在 Input 中手动为 dim1 创建一个访问函数,例如:
{-@ dim1get :: Input -> Dim @-}
dim1get :: Input -> Int
dim1get (Input x) = x
并使用它而不是“dim1”函数,然后我从 Liquid Haskell 获得所需的警告,即代码不安全。