36e745c678
+ Run writer benchmarks for binary formats too. + Alphabetize benchmarks. + Don't run benchmarks for bibliography formats (yet; we need a special input for them).
102 lines
4 KiB
Haskell
102 lines
4 KiB
Haskell
{-# LANGUAGE OverloadedStrings #-}
|
|
{-
|
|
Copyright (C) 2012-2021 John MacFarlane <jgm@berkeley.edu>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
-}
|
|
import Text.Pandoc
|
|
import Text.Pandoc.MIME
|
|
import Control.Monad (when)
|
|
import Control.Monad.Except (throwError)
|
|
import qualified Text.Pandoc.UTF8 as UTF8
|
|
import qualified Data.ByteString as B
|
|
import qualified Data.Text as T
|
|
import Test.Tasty.Bench
|
|
import qualified Data.ByteString.Lazy as BL
|
|
import Data.Maybe (mapMaybe)
|
|
import Data.List (sortOn)
|
|
|
|
readerBench :: Pandoc
|
|
-> T.Text
|
|
-> Maybe Benchmark
|
|
readerBench doc name = either (const Nothing) Just $
|
|
runPure $ do
|
|
when (name `elem` ["bibtex", "biblatex", "csljson"]) $
|
|
throwError $ PandocSomeError $ name <> " not supported for benchmark"
|
|
(rdr, rexts) <- getReader name
|
|
(wtr, wexts) <- getWriter name
|
|
case (rdr, wtr) of
|
|
(TextReader r, TextWriter w) -> do
|
|
inp <- w def{ writerWrapText = WrapAuto
|
|
, writerExtensions = wexts } doc
|
|
return $ bench (T.unpack name) $
|
|
nf (either (error . show) id . runPure . r def) inp
|
|
(ByteStringReader r, ByteStringWriter w) -> do
|
|
tmpl <- Just <$> compileDefaultTemplate name
|
|
inp <- w def{ writerWrapText = WrapAuto
|
|
, writerExtensions = wexts
|
|
, writerTemplate = tmpl } doc
|
|
return $ bench (T.unpack name) $
|
|
nf (either (error . show) id .
|
|
runPure . r def{readerExtensions = rexts}) inp
|
|
_ -> throwError $ PandocSomeError $ "text/bytestring format mismatch: "
|
|
<> name
|
|
|
|
getImages :: IO [(FilePath, MimeType, BL.ByteString)]
|
|
getImages = do
|
|
ll <- BL.readFile "test/lalune.jpg"
|
|
mv <- BL.readFile "test/movie.jpg"
|
|
return [("lalune.jpg", "image/jpg", ll)
|
|
,("movie.jpg", "image/jpg", mv)]
|
|
|
|
writerBench :: [(FilePath, MimeType, BL.ByteString)]
|
|
-> Pandoc
|
|
-> T.Text
|
|
-> Maybe Benchmark
|
|
writerBench imgs doc name = either (const Nothing) Just $
|
|
runPure $ do
|
|
when (name `elem` ["bibtex", "biblatex", "csljson"]) $
|
|
throwError $ PandocSomeError $ name <> " not supported for benchmark"
|
|
(wtr, wexts) <- getWriter name
|
|
case wtr of
|
|
TextWriter writerFun ->
|
|
return $ bench (T.unpack name)
|
|
$ nf (\d -> either (error . show) id $
|
|
runPure $ do
|
|
mapM_ (\(fp,mt,bs) -> insertMedia fp (Just mt) bs) imgs
|
|
writerFun def{ writerExtensions = wexts} d)
|
|
doc
|
|
ByteStringWriter writerFun ->
|
|
return $ bench (T.unpack name)
|
|
$ nf (\d -> either (error . show) id $
|
|
runPure $ do
|
|
mapM_ (\(fp,mt,bs) -> insertMedia fp (Just mt) bs) imgs
|
|
writerFun def{ writerExtensions = wexts} d)
|
|
doc
|
|
|
|
main :: IO ()
|
|
main = do
|
|
inp <- UTF8.toText <$> B.readFile "test/testsuite.txt"
|
|
let opts = def
|
|
let doc = either (error . show) id $ runPure $ readMarkdown opts inp
|
|
imgs <- getImages
|
|
defaultMain
|
|
[ bgroup "writers" $ mapMaybe (writerBench imgs doc . fst)
|
|
(sortOn fst
|
|
writers :: [(T.Text, Writer PandocPure)])
|
|
, bgroup "readers" $ mapMaybe (readerBench doc . fst)
|
|
(sortOn fst
|
|
readers :: [(T.Text, Reader PandocPure)])
|
|
]
|