16 #ifndef SURGSIM_DATASTRUCTURES_PLYREADER_H 17 #define SURGSIM_DATASTRUCTURES_PLYREADER_H 22 #include <unordered_map> 27 namespace DataStructures
30 class PlyReaderDelegate;
133 std::function<
void* (
const std::string&,
size_t)> startElementCallback,
134 std::function<
void (
const std::string&)> processElementCallback,
135 std::function<
void (
const std::string&)> endElementCallback);
168 int dataType,
int dataOffset,
169 int countType,
int countOffset);
202 bool setDelegate(std::shared_ptr<PlyReaderDelegate> delegate);
222 int dataType,
int dataOffset,
223 int countType,
int countOffset);
253 std::unique_ptr<Data>
m_data;
269 #endif // SURGSIM_DATASTRUCTURES_PLYREADER_H void parseFile()
Parse the file.
Definition: PlyReader.cpp:210
Definition: PlyReader.h:91
Definition: DriveElementFromInputBehavior.cpp:27
Definition: PlyReader.h:100
Definition: PlyReader.h:94
virtual ~PlyReader()
Destructor.
Definition: PlyReader.cpp:74
bool hasElement(std::string elementName) const
Query if this elementName is in the .ply file.
Definition: PlyReader.cpp:324
Information about the property on the .ply file.
Definition: PlyReader.h:229
void setStartParseFileCallback(std::function< void(void)> startParseFileCallback)
Register callback to be called at the begining of parseFile.
Definition: PlyReader.cpp:131
std::shared_ptr< PlyReaderDelegate > m_delegate
The delegate.
Definition: PlyReader.h:257
std::function< void(const std::string &)> StandardCallbackType
The callback that is used for the processing and the end of processing, the parameter passed is the n...
Definition: PlyReader.h:111
Definition: PlyReader.h:97
std::unique_ptr< Data > m_data
Definition: PlyReader.h:252
Definition: PlyReader.h:95
int dataType
Type of the receiving data.
Definition: PlyReader.h:232
Definition: PlyReader.h:99
std::string propertyName
Name of the property.
Definition: PlyReader.h:231
Definition: PlyReader.cpp:34
Wrapper for the C .ply file parser This class wraps the main functionality for the original C ...
Definition: PlyReader.h:85
string(TOUPPER ${DEVICE}DEVICE_UPPER_CASE) option(BUILD_DEVICE_ $
Definition: CMakeLists.txt:35
int dataOffset
Location for the receiving data.
Definition: PlyReader.h:233
bool hasProperty(std::string elementName, std::string propertyName) const
Query if 'elementName' has the given property.
Definition: PlyReader.cpp:331
Type
Values that represent the data type/size of requested data.
Definition: PlyReader.h:89
StandardCallbackType processElementCallback
Callback to be used for each processed element.
Definition: PlyReader.h:243
bool setDelegate(std::shared_ptr< PlyReaderDelegate > delegate)
Sets a delegate for parsing.
Definition: PlyReader.cpp:195
std::string m_filename
The name of the .ply file.
Definition: PlyReader.h:226
int countOffset
For lists, location of the receiving data for the count.
Definition: PlyReader.h:235
bool requestScalarProperty(std::string elementName, std::string propertyName, int dataType, int dataOffset)
Request a scalar property for parsing.
Definition: PlyReader.cpp:118
Definition: PlyReader.h:92
friend class PlyReaderTests
Definition: PlyReader.h:208
bool requestProperty(std::string elementName, std::string propertyName, int dataType, int dataOffset, int countType, int countOffset)
Generic Internal function to handle list and scalar properties, see requestScalarProperty() and reque...
Definition: PlyReader.cpp:141
Definition: PlyReader.h:96
Definition: PlyReader.h:93
std::function< void(void)> m_startParseFileCallback
Callback to be executed at the start of 'parseFile'.
Definition: PlyReader.h:260
std::unordered_map< std::string, ElementInfo > m_requestedElements
Definition: PlyReader.h:248
std::function< void *(const std::string &, size_t)> StartElementCallbackType
The callback that is being used to indicate the start of an element, the parameters that are passed i...
Definition: PlyReader.h:107
StartElementCallbackType startElementCallback
Callback to be used when the element is first encountered.
Definition: PlyReader.h:242
bool requestElement(std::string elementName, std::function< void *(const std::string &, size_t)> startElementCallback, std::function< void(const std::string &)> processElementCallback, std::function< void(const std::string &)> endElementCallback)
Request element to be processed during parsing.
Definition: PlyReader.cpp:94
bool requestListProperty(std::string elementName, std::string propertyName, int dataType, int dataOffset, int countType, int countOffset)
Request a list property for parsing.
Definition: PlyReader.cpp:123
bool isValid() const
Query if this object is valid.
Definition: PlyReader.cpp:89
std::vector< PropertyInfo > requestedProperties
All the properties that are wanted.
Definition: PlyReader.h:245
std::string name
Name of the element.
Definition: PlyReader.h:241
bool isScalar(std::string elementName, std::string propertyName) const
Query if the property of the give element is scalar.
Definition: PlyReader.cpp:345
std::function< void(void)> m_endParseFileCallback
Callback to be executed at the end of 'parseFile'.
Definition: PlyReader.h:263
Information about the element in the .ply file.
Definition: PlyReader.h:239
void setEndParseFileCallback(std::function< void(void)> endParseFileCallback)
Register callback to be called at the end of parseFile.
Definition: PlyReader.cpp:136
Definition: PlyReader.h:98
bool parseWithDelegate(std::shared_ptr< PlyReaderDelegate > delegate)
Sets a delegate for parsing and then parse the file.
Definition: PlyReader.cpp:314
PlyReader(std::string filename)
Constructor.
Definition: PlyReader.cpp:60
StandardCallbackType endElementCallback
Callback to be used after all the elements have been processed.
Definition: PlyReader.h:244
int countType
For lists, type of the receiving data for the count of listelements.
Definition: PlyReader.h:234