/*========================================================================= Library: iMSTK Copyright (c) Kitware, Inc. & Center for Modeling, Simulation, & Imaging in Medicine, Rensselaer Polytechnic Institute. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.txt Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ #include #include "imstkMeshIO.h" #include "imstkVTKMeshIO.h" #include "imstkAssimpMeshIO.h" #include "imstkVegaMeshIO.h" #include "imstkMSHMeshIO.h" #include "g3log/g3log.hpp" namespace imstk { std::shared_ptr MeshIO::read(const std::string& filePath) { if (!MeshIO::fileExists(filePath)) { LOG(WARNING) << "MeshIO::read error: file not found: " << filePath; return nullptr; } MeshFileType meshType = MeshIO::getFileType(filePath); switch (meshType) { case MeshFileType::VTK : case MeshFileType::VTU : case MeshFileType::VTP : case MeshFileType::STL : case MeshFileType::PLY : return VTKMeshIO::read(filePath, meshType); break; case MeshFileType::OBJ : case MeshFileType::DAE : case MeshFileType::FBX : case MeshFileType::_3DS : return AssimpMeshIO::read(filePath, meshType); break; case MeshFileType::VEG : return VegaMeshIO::read(filePath, meshType); break; case MeshFileType::MSH: return MSHMeshIO::read(filePath, meshType); break; } LOG(WARNING) << "MeshIO::read error: file type not supported"; return nullptr; } bool MeshIO::fileExists(const std::string& file) { struct stat buf; return (stat(file.c_str(), &buf) == 0); } const MeshFileType MeshIO::getFileType(const std::string& filePath) { MeshFileType meshType = MeshFileType::UNKNOWN; std::string extString = filePath.substr(filePath.find_last_of(".") + 1); if (extString.empty()) { LOG(WARNING) << "MeshIO::getFileType error: invalid file name"; return meshType; } if (extString == "vtk" || extString == "VTK") { meshType = MeshFileType::VTK; } else if (extString == "vtp" || extString == "VTP") { meshType = MeshFileType::VTP; } else if (extString == "vtu" || extString == "VTU") { meshType = MeshFileType::VTU; } else if (extString == "obj" || extString == "OBJ") { meshType = MeshFileType::OBJ; } else if (extString == "stl" || extString == "STL") { meshType = MeshFileType::STL; } else if (extString == "ply" || extString == "PLY") { meshType = MeshFileType::PLY; } else if (extString == "dae" || extString == "DAE") { meshType = MeshFileType::DAE; } else if (extString == "fbx" || extString == "FBX") { meshType = MeshFileType::FBX; } else if (extString == "3ds" || extString == "3DS") { meshType = MeshFileType::_3DS; } else if (extString == "veg" || extString == "VEG") { meshType = MeshFileType::VEG; } else if (extString == "msh" || extString == "MSH") { meshType = MeshFileType::MSH; } else { LOG(WARNING) << "MeshIO::getFileType error: unknown file extension"; } return meshType; } bool MeshIO::write(const std::shared_ptr imstkMesh, const std::string& filePath) { MeshFileType meshType = MeshIO::getFileType(filePath); switch (meshType) { case MeshFileType::VEG: return VegaMeshIO::write(imstkMesh, filePath, meshType); break; case MeshFileType::VTU: case MeshFileType::VTP: case MeshFileType::STL: case MeshFileType::PLY: return VTKMeshIO::write(imstkMesh, filePath, meshType); break; } LOG(WARNING) << "MeshIO::write error: file type not supported"; return false; } } // imstk