This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
forked from Haskell-Things/ImplicitCAD
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimplicitsnap.hs
124 lines (103 loc) · 3.9 KB
/
implicitsnap.hs
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{-# LANGUAGE OverloadedStrings, ViewPatterns #-}
-- PACKAGES: snap, silently
{- This is a Snap server providing a ImplicitCAD REST API.
It does not install by default. Its dependencies are not in the cabal file.
We're just sticking it in the repo for lack of a better place... -}
module Main where
import Control.Applicative
import Snap.Core
import Snap.Http.Server
import Snap.Util.GZip (withCompression)
import Graphics.Implicit (runOpenscad)
import Graphics.Implicit.ExtOpenScad.Definitions (OpenscadObj (ONum))
import Graphics.Implicit.ObjectUtil (getBox2, getBox3)
import Graphics.Implicit.Export.TriangleMeshFormats (jsTHREE)
import Graphics.Implicit.Definitions (xmlErrorOn, errorMessage)
import Data.Map as Map
import Text.ParserCombinators.Parsec (errorPos, sourceLine)
import Text.ParserCombinators.Parsec.Error
-- class DiscreteApproxable
import Graphics.Implicit.Export.Definitions
-- instances of DiscreteApproxable...
import Graphics.Implicit.Export.SymbolicObj2
import Graphics.Implicit.Export.SymbolicObj3
import System.IO.Unsafe (unsafePerformIO)
import System.IO.Silently (capture)
import qualified Data.ByteString.Char8 as BS.Char
import qualified Data.Text.Lazy as TL
main :: IO ()
main = quickHttpServe site
site :: Snap ()
site = route
[
("render/", renderHandler)
] <|> writeBS "fall through"
renderHandler :: Snap ()
renderHandler = method GET $ withCompression $ do
modifyResponse $ setContentType "application/x-javascript"
request <- getRequest
case (rqParam "source" request, rqParam "callback" request) of
(Just [source], Just [callback]) -> do
writeBS $ BS.Char.pack $ executeAndExport
(BS.Char.unpack source)
(BS.Char.unpack callback)
(_, _) -> writeBS "must provide source and callback as 1 GET variable each"
getRes (varlookup, obj2s, obj3s) =
let
qual = case Map.lookup "$quality" varlookup of
Just (ONum n) | n >= 1 -> n
_ -> 1
(defaultRes, qualRes) = case (obj2s, obj3s) of
(_, obj:_) -> ( min (minimum [x,y,z]/2) ((x*y*z )**(1/3) / 22)
, min (minimum [x,y,z]/2) ((x*y*z/qual)**(1/3) / 22))
where
((x1,y1,z1),(x2,y2,z2)) = getBox3 obj
(x,y,z) = (x2-x1, y2-y1, z2-z1)
(obj:_, _) -> ( min (min x y/2) ((x*y )**0.5 / 30)
, min (min x y/2) ((x*y/qual)**0.5 / 30) )
where
((x1,y1),(x2,y2)) = getBox2 obj
(x,y) = (x2-x1, y2-y1)
_ -> (1, 1)
in case Map.lookup "$res" varlookup of
Just (ONum requestedRes) ->
if defaultRes <= 4*requestedRes
then requestedRes
else -1
_ ->
if qual <= 8
then qualRes
else -1
-- | Give an openscad object to run and the basename of
-- the target to write to... write an object!
executeAndExport :: String -> String -> String
executeAndExport content callback =
let
callbackF :: Bool -> String -> String
callbackF False msg = callback ++ "([null," ++ show msg ++ "]);"
callbackF True msg = callback ++ "([new Shape()," ++ show msg ++ "]);"
in case runOpenscad content of
Left err ->
let
line = sourceLine . errorPos $ err
showErrorMessages' = showErrorMessages
"or" "unknown parse error" "expecting" "unexpected" "end of input"
msgs :: String
msgs = showErrorMessages' $ errorMessages err
in callbackF False $ (\s-> "error (" ++ show line ++ "):" ++ s) msgs
Right openscadProgram -> unsafePerformIO $ do
(msgs,s) <- capture $ openscadProgram
let
res = getRes s
return $ case s of
(_, _, x:xs) ->
if res > 0
then TL.unpack (jsTHREE (discreteAprox res x)) ++ callbackF True msgs
else callbackF False $
"Unreasonable resolution requested: "
++ "the server imps revolt! "
++ "(Install ImplicitCAD locally -- github.com/colah/ImplicitCAD/)"
(_, x:xs, _) -> callbackF False $
msgs ++
"Sorry, we only support 3D objects at the moment. Use linear_extrude()."
_ -> callbackF False $ msgs ++ "Nothing to render."