Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing relative imports for extopenscad. #487

Merged
merged 2 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* Making `torus` and `ellipsoid` primitive objects, rather than being defined implicitly. [#450](https://github.com/Haskell-Things/ImplicitCAD/issues/450)
* Improved formatting of ExtOpenSCAD code [#472](https://github.com/Haskell-Things/ImplicitCAD/pull/472)
* Fixing an issue where ImplicitCAD extended primitive objects were being exported to OpenSCAD where they aren't supported.
* Fixing relative imports to use the directory of the initial source file rather than the directory where `extopenscad` was called.

# Version [0.4.1.0](https://github.com/Haskell-Things/ImplicitCAD/compare/v0.4.0.0...v0.4.1.0) (2023-12-18)

Expand Down
12 changes: 7 additions & 5 deletions Graphics/Implicit/ExtOpenScad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
-- An executor, which parses openscad code, and executes it.
module Graphics.Implicit.ExtOpenScad (runOpenscad) where

import Prelude(String, IO, ($), (<$>), pure, either, (.), Applicative, Bool(True))
import Prelude(String, IO, ($), (<$>), pure, either, (.), Applicative, Bool(True), Maybe, maybe)

import Graphics.Implicit.Definitions (SymbolicObj2, SymbolicObj3)

Expand All @@ -28,22 +28,24 @@ import System.Directory (getCurrentDirectory)
import Data.Foldable (traverse_)

import Data.Text.Lazy (pack)
import System.FilePath (FilePath, takeDirectory)

-- | Small wrapper of our parser to handle parse errors, etc.
runOpenscad :: ScadOpts -> [String] -> String -> IO (VarLookup, [SymbolicObj2], [SymbolicObj3], [Message])
runOpenscad scadOpts constants source = do
runOpenscad :: ScadOpts -> [String] -> Maybe FilePath -> String -> IO (VarLookup, [SymbolicObj2], [SymbolicObj3], [Message])
runOpenscad scadOpts constants filepath source = do
(initialObjects, initialMessages) <- addConstants constants True
let
err :: Applicative f => ParseError -> f (VarLookup, [SymbolicObj2], [SymbolicObj3], [Message])
err e = pure (initialObjects, [], [], mesg e : initialMessages)
run :: [StatementI] -> IO (VarLookup, [SymbolicObj2], [SymbolicObj3], [Message])
run sts = rearrange <$> do
let sts' = traverse_ runStatementI sts
path <- getCurrentDirectory
-- If we are given a filepath, use its directory, relative or absolute.
-- If there is no filepath given, then use the current directory of the process.
path <- maybe getCurrentDirectory (pure . takeDirectory) filepath
let initState = CompState initialObjects [] path
(_, w, s') <- runImplicitCadM scadOpts initState sts'
pure (w, s')

either err run $ parseProgram "" source
where
rearrange :: ([Message], CompState) -> (VarLookup, [SymbolicObj2], [SymbolicObj3], [Message])
Expand Down
4 changes: 2 additions & 2 deletions programs/extopenscad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

-- Let's be explicit about what we're getting from where :)

import Prelude (Maybe(Just, Nothing), IO, Bool(True, False), FilePath, String, (<>), ($), readFile, fst, putStrLn, show, (>>=), return, unlines, filter, not, null, (||), (&&), (.), print)
import Prelude (Maybe(Just, Nothing), IO, Bool(True, False), FilePath, String, (<>), ($), readFile, fst, putStrLn, show, (>>=), return, unlines, filter, not, null, (||), (&&), (.), print, pure)

-- Our Extended OpenScad interpreter
import Graphics.Implicit (union, runOpenscad)
Expand Down Expand Up @@ -173,7 +173,7 @@ run rawargs = do
_ | Just file <- outputFile args -> Just $ guessOutputFormat file
_ -> Nothing
scadOpts = generateScadOpts args
openscadProgram = runOpenscad scadOpts (rawDefines args) content
openscadProgram = runOpenscad scadOpts (rawDefines args) (pure $ inputFile args) content

if quiet args
then return ()
Expand Down
2 changes: 1 addition & 1 deletion programs/implicitsnap.hs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ executeAndExport content callback maybeFormat =
callbackS str msg =
callback <> "([" <> BSL.toStrict (encode str) <> "," <> BSL.toStrict (encode msg) <> ",null,null]);"
scadOptions = generateScadOpts
openscadProgram = runOpenscad scadOptions [] content
openscadProgram = runOpenscad scadOptions [] Nothing content
in
unsafePerformIO $ do
s@(_, obj2s, obj3s, messages) <- openscadProgram
Expand Down
4 changes: 2 additions & 2 deletions tests/MessageSpec/Util.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module MessageSpec.Util
) where

-- be explicit about where we get things from.
import Prelude (String, Bool(False), IO, return)
import Prelude (String, Bool(False), IO, return, Maybe (Nothing))

-- Expressions, symbols, and values in the OpenScad language.
import Graphics.Implicit.ExtOpenScad.Definitions (ScadOpts(ScadOpts), MessageType, Message(Message), SourcePosition)
Expand Down Expand Up @@ -39,7 +39,7 @@ infixr 1 -->
-- | An even smaller wrapper which runs a program, and only returns the generated messages. for the test suite.
getOpenscadMessages :: ScadOpts -> [String] -> String -> IO [Message]
getOpenscadMessages scadOpts constants source = do
(_, _, _, messages) <- runOpenscad scadOpts constants source
(_, _, _, messages) <- runOpenscad scadOpts constants Nothing source
return messages

oneMessage :: MessageType -> SourcePosition -> Text -> [Message]
Expand Down
2 changes: 1 addition & 1 deletion tests/ParserSpec/Statement.hs
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,4 @@ statementSpec = do
"module foo\n(\nbar\n)\n{}" --> single (NewModule (Symbol "foo") [(Symbol "bar", Nothing)] [])
describe "identifiers" $ do
it "accepts unicode" $
"module 💩 () { }" --> single (NewModule (Symbol "💩") [] [])
"module 💩 () { }" --> single (NewModule (Symbol "💩") [] [])
1 change: 1 addition & 0 deletions tests/imports/child.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include <relative/parent.scad>;
3 changes: 3 additions & 0 deletions tests/imports/config.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
foo=1;
bar=2;
baz=3;
3 changes: 3 additions & 0 deletions tests/imports/neighbour.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include <./config.scad>;

cube(foo,bar,baz);
1 change: 1 addition & 0 deletions tests/imports/relative/deep/grandparent.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include <../parent.scad>;
3 changes: 3 additions & 0 deletions tests/imports/relative/parent.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include <../config.scad>;

cube(foo,bar,baz);
Loading