File: JsonParse.hs

package info (click to toggle)
haskell-aeson 0.6.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 616 kB
  • sloc: haskell: 2,447; python: 67; makefile: 15
file content (34 lines) | stat: -rw-r--r-- 1,002 bytes parent folder | download
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
{-# LANGUAGE BangPatterns, ScopedTypeVariables #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}

import Control.DeepSeq
import Control.Monad
import Text.JSON
import Data.Time.Clock
import System.Environment (getArgs)
import System.IO

instance NFData JSValue where
    rnf JSNull = ()
    rnf (JSBool b) = rnf b
    rnf (JSRational b r) = rnf b `seq` rnf r `seq` ()
    rnf (JSString s) = rnf (fromJSString s)
    rnf (JSArray vs) = rnf vs
    rnf (JSObject kvs) = rnf (fromJSObject kvs)

main = do
  (cnt:args) <- getArgs
  let count = read cnt :: Int
  forM_ args $ \arg -> do
    putStrLn $ arg ++ ":"
    start <- getCurrentTime
    let loop !good !bad
            | good+bad >= count = return (good, bad)
            | otherwise = do
          s <- readFile arg
          case decodeStrict s of
            Ok (v::JSValue) -> loop (good+1) 0
            _ -> loop 0 (bad+1)
    (good, _) <- loop 0 0
    end <- getCurrentTime
    putStrLn $ "  " ++ show good ++ " good, " ++ show (diffUTCTime end start)