{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE NoImplicitPrelude #-}
module Text.Pandoc.Filter.Plot.Renderers.SageMath
( sagemath,
sagemathSupportedSaveFormats,
)
where
import Text.Pandoc.Filter.Plot.Renderers.Prelude
sagemath :: PlotM Renderer
sagemath :: PlotM Renderer
sagemath = do
Text
cmdargs <- (Configuration -> Text) -> PlotM Text
forall a. (Configuration -> a) -> PlotM a
asksConfig Configuration -> Text
sagemathCmdArgs
Renderer -> PlotM Renderer
forall a. a -> StateT PlotState (ReaderT RuntimeEnv IO) a
forall (m :: * -> *) a. Monad m => a -> m a
return
(Renderer -> PlotM Renderer) -> Renderer -> PlotM Renderer
forall a b. (a -> b) -> a -> b
$ Renderer
{ rendererToolkit :: Toolkit
rendererToolkit = Toolkit
SageMath,
rendererCapture :: FigureSpec -> String -> Text
rendererCapture = FigureSpec -> String -> Text
sagemathCapture,
rendererCommand :: OutputSpec -> Text
rendererCommand = Text -> OutputSpec -> Text
sagemathCommand Text
cmdargs,
rendererAvailability :: AvailabilityCheck
rendererAvailability = (Executable -> Text) -> AvailabilityCheck
CommandSuccess ((Executable -> Text) -> AvailabilityCheck)
-> (Executable -> Text) -> AvailabilityCheck
forall a b. (a -> b) -> a -> b
$ \Executable
exe -> [st|#{pathToExe exe} -v|],
rendererSupportedSaveFormats :: [SaveFormat]
rendererSupportedSaveFormats = [SaveFormat]
sagemathSupportedSaveFormats,
rendererChecks :: [Text -> CheckResult]
rendererChecks = [Text -> CheckResult]
forall a. Monoid a => a
mempty,
rendererLanguage :: Text
rendererLanguage = Text
"sagemath",
rendererComment :: Text -> Text
rendererComment = Text -> Text -> Text
forall a. Monoid a => a -> a -> a
mappend Text
"# ",
rendererScriptExtension :: String
rendererScriptExtension = String
".sage"
}
sagemathSupportedSaveFormats :: [SaveFormat]
sagemathSupportedSaveFormats :: [SaveFormat]
sagemathSupportedSaveFormats = [SaveFormat
EPS, SaveFormat
PDF, SaveFormat
PNG, SaveFormat
SVG]
sagemathCommand :: Text -> OutputSpec -> Text
sagemathCommand :: Text -> OutputSpec -> Text
sagemathCommand Text
cmdargs OutputSpec {String
FigureSpec
Executable
oFigureSpec :: FigureSpec
oScriptPath :: String
oFigurePath :: String
oExecutable :: Executable
oCWD :: String
oFigureSpec :: OutputSpec -> FigureSpec
oScriptPath :: OutputSpec -> String
oFigurePath :: OutputSpec -> String
oExecutable :: OutputSpec -> Executable
oCWD :: OutputSpec -> String
..} = [st|#{pathToExe oExecutable} #{cmdargs} "#{oScriptPath}"|]
sagemathCapture :: FigureSpec -> FilePath -> Script
sagemathCapture :: FigureSpec -> String -> Text
sagemathCapture = (FigureSpec -> String -> Text) -> FigureSpec -> String -> Text
appendCapture FigureSpec -> String -> Text
sagemathCaptureFragment
sagemathCaptureFragment :: FigureSpec -> FilePath -> Script
sagemathCaptureFragment :: FigureSpec -> String -> Text
sagemathCaptureFragment FigureSpec {Bool
Int
String
[String]
[(Text, Text)]
Attr
Text
Renderer
SaveFormat
Executable
renderer_ :: Renderer
fsExecutable :: Executable
caption :: Text
withSource :: Bool
script :: Text
saveFormat :: SaveFormat
directory :: String
dpi :: Int
dependencies :: [String]
extraAttrs :: [(Text, Text)]
blockAttrs :: Attr
renderer_ :: FigureSpec -> Renderer
fsExecutable :: FigureSpec -> Executable
caption :: FigureSpec -> Text
withSource :: FigureSpec -> Bool
script :: FigureSpec -> Text
saveFormat :: FigureSpec -> SaveFormat
directory :: FigureSpec -> String
dpi :: FigureSpec -> Int
dependencies :: FigureSpec -> [String]
extraAttrs :: FigureSpec -> [(Text, Text)]
blockAttrs :: FigureSpec -> Attr
..} String
fname =
[st|
import sage.plot.graphics as go
import sage.plot.plot3d.base as go3d
import builtins
# Try to concatenate 3D graphics objects first; if this doesn't work, then
# concatenate all 2D graphic objects.
__all_graphics = builtins.sum( (obj for obj in globals().values() if isinstance(obj, go3d.Graphics3d)))
if not __all_graphics:
__all_graphics = builtins.sum( (obj for obj in globals().values() if isinstance(obj, go.Graphics)))
if not __all_graphics:
raise RuntimeError(''.join([
"No plotting objects detected. ",
"Make sure that all of your plotting objects are named, e.g. `G = plot(...)` rather than just `plot(...)`. ",
"This is a limitation specific to the interaction between sage and pandoc-plot."
]))
__all_graphics.save_image(r"#{fname}", dpi=#{dpi})
|]