waterfall-cad-0.2.2.0: src/Waterfall/IO.hs
module Waterfall.IO
( WaterfallIOException (..)
, WaterfallIOExceptionCause (..)
-- * Solid Writers
, writeSolid
, writeSTL
, writeAsciiSTL
, writeSTEP
, writeGLTF
, writeGLB
, writeOBJ
-- * Solid Readers
--
-- | Load a `Waterfall.Solid` from a file
--
-- At present, the "read*" functions do slightly less validation on the loaded solid
-- than they arguably should
-- and may succeed when reading solids that may generate invalid geometry when processed
, readSolid
, readSTL
, readSTEP
, readGLTF
, readGLB
, readOBJ
) where
import Waterfall.Internal.Solid (Solid(..))
import qualified Waterfall.Internal.Remesh as Remesh
import qualified OpenCascade.BRepMesh.IncrementalMesh as BRepMesh.IncrementalMesh
import qualified OpenCascade.StlAPI.Writer as StlWriter
import qualified OpenCascade.StlAPI.Reader as StlReader
import qualified OpenCascade.STEPControl.Writer as StepWriter
import qualified OpenCascade.STEPControl.StepModelType as StepModelType
import qualified OpenCascade.STEPControl.Reader as STEPReader
import qualified OpenCascade.XSControl.Reader as XSControl.Reader
import qualified OpenCascade.IFSelect.ReturnStatus as IFSelect.ReturnStatus
import qualified OpenCascade.TDocStd.Document as TDocStd.Document
import qualified OpenCascade.Message.Types as Message
import qualified OpenCascade.Message.ProgressRange as Message.ProgressRange
import qualified OpenCascade.TColStd.IndexedDataMapOfStringString as TColStd.IndexedDataMapOfStringString
import qualified OpenCascade.RWGltf.CafWriter as RWGltf.CafWriter
import qualified OpenCascade.RWGltf.CafReader as RWGltf.CafReader
import qualified OpenCascade.RWObj.CafWriter as RWObj.CafWriter
import qualified OpenCascade.RWObj.CafReader as RWObj.CafReader
import qualified OpenCascade.RWMesh.Types as RWMesh
import qualified OpenCascade.RWMesh.CafReader as RWMesh.CafReader
import qualified OpenCascade.TDocStd.Types as TDocStd
import qualified OpenCascade.TColStd.Types as TColStd
import qualified OpenCascade.XCAFDoc.DocumentTool as XCafDoc.DocumentTool
import qualified OpenCascade.XCAFDoc.ShapeTool as XCafDoc.ShapeTool
import qualified OpenCascade.TopoDS.Types as TopoDS
import qualified OpenCascade.TopoDS.Shape as TopoDS.Shape
import OpenCascade.Handle (Handle)
import OpenCascade.Inheritance (upcast)
import Control.Monad.IO.Class (liftIO)
import Control.Monad (unless, when)
import Waterfall.Internal.Finalizers (toAcquire, fromAcquire)
import Data.Acquire ( Acquire, withAcquire )
import Foreign.Ptr (Ptr)
import Data.Char (toLower)
import System.FilePath (takeExtension)
import Control.Exception (Exception, throwIO)
-- | The type of exceptions thrown by IO actions defined in `Waterfall.IO`
data WaterfallIOException =
WaterfallIOException
{ ioExceptionCause :: WaterfallIOExceptionCause
, ioExceptionFilePath :: FilePath
}
deriving Show
instance Exception WaterfallIOException
-- | Reason for an IO action to have failed
data WaterfallIOExceptionCause =
-- | Something went wrong when accessing a file,
-- eg. a write to a file path that is unreachable,
-- or a read to a file in the wrong format
FileError
-- | The contents of a file could not be converted into a `Waterfall.Solid`
-- e.g the file did not contain a solid object
| BadGeometryError
-- | The `readSolid`/`writeSolid` functions could not infer the correct file format from a filepath
| UnrecognizedFormatError
deriving (Show, Eq)
extensionToFormats :: String -> Maybe (Double -> FilePath -> Solid -> IO(), FilePath -> IO Solid)
extensionToFormats s =
let ext = fmap toLower . takeExtension $ s
in case ext of
".stl" -> Just (writeSTL, readSTL)
".step" -> Just (const writeSTEP, readSTEP)
".gltf" -> Just (writeGLTF, readGLTF)
".glb" -> Just (writeGLB, readGLB)
".obj" -> Just (writeOBJ, readOBJ)
_ -> Nothing
-- | Write a `Solid` to a file, work out the format from the file extension
--
-- Errors if passed a filename with an unrecognized extension
--
-- Because BRep representations of objects can store arbitrary precision curves,
-- but some of the supported file formats store triangulated surfaces,
-- this function takes a "deflection" argument used to discretize curves.
--
-- The deflection is the maximum allowable distance between a curve and the generated triangulation.
writeSolid :: Double -> FilePath -> Solid -> IO ()
writeSolid res filepath =
case extensionToFormats filepath of
Just (writer, _) -> writer res filepath
Nothing -> const $ throwIO (WaterfallIOException UnrecognizedFormatError filepath)
writeSTLAsciiOrBinary :: Bool -> Double -> FilePath -> Solid -> IO ()
writeSTLAsciiOrBinary asciiMode linDeflection filepath (Solid ptr) = (`withAcquire` pure) $ do
s <- toAcquire ptr
mesh <- BRepMesh.IncrementalMesh.fromShapeAndLinDeflection s linDeflection
liftIO $ BRepMesh.IncrementalMesh.perform mesh
writer <- StlWriter.new
liftIO $ do
StlWriter.setAsciiMode writer asciiMode
res <- StlWriter.write writer s filepath
unless res (throwIO (WaterfallIOException FileError filepath))
return ()
-- | Write a `Solid` to a (binary) STL file at a given path
--
-- Because BRep representations of objects can store arbitrary precision curves,
-- but STL files store triangulated surfaces,
-- this function takes a "deflection" argument used to discretize curves.
--
-- The deflection is the maximum allowable distance between a curve and the generated triangulation.
writeSTL :: Double -> FilePath -> Solid -> IO ()
writeSTL = writeSTLAsciiOrBinary False
-- | Write a `Solid` to an Ascii STL file at a given path
--
-- Because BRep representations of objects can store arbitrary precision curves,
-- but STL files store triangulated surfaces,
-- this function takes a "deflection" argument used to discretize curves.
--
-- The deflection is the maximum allowable distance between a curve and the generated triangulation.
writeAsciiSTL :: Double -> FilePath -> Solid -> IO ()
writeAsciiSTL = writeSTLAsciiOrBinary True
-- | Write a `Solid` to a STEP file at a given path
--
-- STEP files can be imported by [FreeCAD](https://www.freecad.org/)
writeSTEP :: FilePath -> Solid -> IO ()
writeSTEP filepath (Solid ptr) = (`withAcquire` pure) $ do
s <- toAcquire ptr
writer <- StepWriter.new
resTransfer <- liftIO $ StepWriter.transfer writer s StepModelType.Asls True
unless (resTransfer == IFSelect.ReturnStatus.Done) (liftIO . throwIO $ WaterfallIOException BadGeometryError filepath)
resWrite <- liftIO $ StepWriter.write writer filepath
unless (resWrite == IFSelect.ReturnStatus.Done) (liftIO . throwIO $ WaterfallIOException FileError filepath)
cafWriter :: (FilePath -> Ptr (Handle TDocStd.Document) -> Ptr TColStd.IndexedDataMapOfStringString -> Ptr Message.ProgressRange -> Acquire ()) -> Double -> FilePath -> Solid-> IO ()
cafWriter write linDeflection filepath (Solid ptr) = (`withAcquire` pure) $ do
s <- toAcquire ptr
mesh <- BRepMesh.IncrementalMesh.fromShapeAndLinDeflection s linDeflection
liftIO $ BRepMesh.IncrementalMesh.perform mesh
doc <- TDocStd.Document.fromStorageFormat ""
mainLabel <- TDocStd.Document.main doc
shapeTool <- XCafDoc.DocumentTool.shapeTool mainLabel
_ <- XCafDoc.ShapeTool.addShape shapeTool s True True
meta <- TColStd.IndexedDataMapOfStringString.new
progress <- Message.ProgressRange.new
write filepath doc meta progress
writeGLTFOrGLB :: Bool -> Double -> FilePath -> Solid -> IO ()
writeGLTFOrGLB binary =
let write filepath doc meta progress = do
writer <- RWGltf.CafWriter.new filepath binary
liftIO $ RWGltf.CafWriter.perform writer doc meta progress
in cafWriter write
-- | Write a `Solid` to a glTF file at a given path
--
-- glTF, or Graphics Library Transmission Format is a JSON based format
-- used for three-dimensional scenes and models
--
-- Because BRep representations of objects can store arbitrary precision curves,
-- but glTF files store triangulated surfaces,
-- this function takes a "deflection" argument used to discretize curves.
--
-- The deflection is the maximum allowable distance between a curve and the generated triangulation.
writeGLTF :: Double -> FilePath -> Solid -> IO ()
writeGLTF = writeGLTFOrGLB False
-- | Write a `Solid` to a glb file at a given path
--
-- glb is the binary variant of the glTF file format
--
-- Because BRep representations of objects can store arbitrary precision curves,
-- but glTF files store triangulated surfaces,
-- this function takes a "deflection" argument used to discretize curves.
--
-- The deflection is the maximum allowable distance between a curve and the generated triangulation.
writeGLB :: Double -> FilePath -> Solid -> IO ()
writeGLB = writeGLTFOrGLB True
-- | Write a `Solid` to an obj file at a given path
--
-- Wavefront OBJ is a simple ascii file format that stores geometric data.
--
-- Because BRep representations of objects can store arbitrary precision curves,
-- but obj files store triangulated surfaces,
-- this function takes a "deflection" argument used to discretize curves.
--
-- The deflection is the maximum allowable distance between a curve and the generated triangulation.
writeOBJ :: Double -> FilePath -> Solid -> IO ()
writeOBJ =
let write filepath doc meta progress = do
writer <- RWObj.CafWriter.new filepath
liftIO $ RWObj.CafWriter.perform writer doc meta progress
in cafWriter write
-- | Read a `Solid` from a file at a given path
--
-- Throws an error if loading fails, or if it's unable to work out
-- the intended file format from the path
readSolid :: FilePath -> IO Solid
readSolid filepath =
case extensionToFormats filepath of
Nothing -> throwIO (WaterfallIOException UnrecognizedFormatError filepath)
Just (_, reader) -> reader filepath
remeshOrThrow :: FilePath -> Ptr TopoDS.Shape -> Acquire (Ptr TopoDS.Shape)
remeshOrThrow filepath shape = do
remeshed <- Remesh.remesh shape
case remeshed of
Just solid -> pure solid
Nothing -> liftIO . throwIO $ WaterfallIOException BadGeometryError filepath
-- | Read a `Solid` from an STL file at a given path
readSTL :: FilePath -> IO Solid
readSTL filepath = fmap Solid . fromAcquire $ do
shape <- TopoDS.Shape.new
reader <- StlReader.new
res <- liftIO $ StlReader.read reader shape filepath
unless res $ liftIO . throwIO $ WaterfallIOException FileError filepath
remeshOrThrow filepath shape
-- | Read a `Solid` from a STEP file at a given path
readSTEP :: FilePath -> IO Solid
readSTEP filepath = fmap Solid . fromAcquire $ do
reader <- STEPReader.new
status <- liftIO $ XSControl.Reader.readFile (upcast reader) filepath
_ <- liftIO $ XSControl.Reader.transferRoots (upcast reader)
shape <- XSControl.Reader.oneShape (upcast reader)
unless (status == IFSelect.ReturnStatus.Done) (liftIO . throwIO $ WaterfallIOException FileError filepath)
shapeIsNull <- liftIO $ TopoDS.Shape.isNull shape
when shapeIsNull (liftIO . throwIO $ WaterfallIOException BadGeometryError filepath)
return shape
cafReader :: Acquire (Ptr RWMesh.CafReader) -> FilePath -> IO Solid
cafReader mkReader filepath = fmap Solid . fromAcquire $ do
reader <- mkReader
doc <- TDocStd.Document.fromStorageFormat ""
progress <- Message.ProgressRange.new
_ <- liftIO $ RWMesh.CafReader.setDocument reader doc
res <- liftIO $ RWMesh.CafReader.perform reader filepath progress
unless res (liftIO . throwIO $ WaterfallIOException FileError filepath)
remeshOrThrow filepath =<< RWMesh.CafReader.singleShape reader
-- | Read a `Solid` from a GLTF file at a given path
--
-- This should support reading both the GLTF (json) and GLB (binary) formats
readGLTF :: FilePath -> IO Solid
readGLTF = cafReader $ do
reader <- RWGltf.CafReader.new
liftIO $ RWGltf.CafReader.setDoublePrecision reader True
liftIO $ RWMesh.CafReader.setFileLengthUnit (upcast reader) 1
return (upcast reader)
-- | Alias for `readGLTF`
readGLB :: FilePath -> IO Solid
readGLB = readGLTF
-- | Read a `Solid` from an obj file at a given path
--
-- This should support reading both the GLTF (json) and GLB (binary) formats
readOBJ :: FilePath -> IO Solid
readOBJ = cafReader $ do
reader <- RWObj.CafReader.new
liftIO $ RWObj.CafReader.setSinglePrecision reader False
liftIO $ RWMesh.CafReader.setFileLengthUnit (upcast reader) 1
return (upcast reader)