![]() |
Inviwo 0.9.12-pre
Inviwo documentation
|
#include <inviwo/dataframe/io/jsondataframereader.h>
Inheritance diagram for inviwo::JSONDataFrameReader:Public Member Functions | |
| virtual JSONDataFrameReader * | clone () const override |
| JSONDataFrameReader (const JSONDataFrameReader &)=default | |
| JSONDataFrameReader (JSONDataFrameReader &&) noexcept=default | |
| JSONDataFrameReader & | operator= (const JSONDataFrameReader &)=default |
| JSONDataFrameReader & | operator= (JSONDataFrameReader &&) noexcept=default |
| virtual std::shared_ptr< DataFrame > | readData (const std::filesystem::path &fileName) override |
| std::shared_ptr< DataFrame > | readData (std::istream &stream) const |
Public Member Functions inherited from inviwo::DataReaderType< DataFrame > | |
| DataReaderType (const DataReaderType &rhs)=default | |
| DataReaderType (DataReaderType &&rhs) noexcept=default | |
| DataReaderType & | operator= (const DataReaderType &that)=default |
| DataReaderType & | operator= (DataReaderType &&that) noexcept=default |
| virtual std::shared_ptr< DataFrame > | readData (const std::filesystem::path &filePath, MetaDataOwner *) |
Public Member Functions inherited from inviwo::DataReader | |
| void | addExtension (FileExtension ext) |
| DataReader (const DataReader &rhs)=default | |
| DataReader (DataReader &&rhs) noexcept=default | |
| const std::vector< FileExtension > & | getExtensions () const |
| virtual std::any | getOption (std::string_view key) |
| Query the value of an reader specific option. | |
| DataReader & | operator= (const DataReader &that)=default |
| DataReader & | operator= (DataReader &&that) noexcept=default |
| template<typename T > | |
| bool | readsType () const |
| virtual bool | setOption (std::string_view key, std::any value) |
| Set reader specific options See the documentation of the specific reader for the available options. | |
Additional Inherited Members | |
Protected Member Functions inherited from inviwo::DataReaderType< DataFrame > | |
| virtual bool | canRead (const std::type_index &index) const override |
Static Protected Member Functions inherited from inviwo::DataReader | |
| static void | checkExists (const std::filesystem::path &path) |
| static std::filesystem::path | downloadAndCacheIfUrl (const std::filesystem::path &url) |
| static std::ifstream | open (const std::filesystem::path &path, std::ios_base::openmode mode=std::ios_base::in) |
| static std::ifstream | openAndCacheIfUrl (const std::filesystem::path &path, std::ios_base::openmode mode=std::ios_base::in) |
| static std::string | readFileContents (const std::filesystem::path &path) |
Protected Attributes inherited from inviwo::DataReader | |
| std::vector< FileExtension > | extensions_ |
Reads a json file into DataFrame Expects object layout: [ {"Col1": val11, "Col2": val12 }, {"Col1": val21, "Col2": val22 } ] The example above contains two rows and two columns.
|
overridevirtual |
Implements inviwo::DataReaderType< DataFrame >.
|
overridevirtual |
read a JSON file from a file Expects object layout: [ {"Col1": val11, "Col2": val12 }, {"Col1": val21, "Col2": val22 } ] The example above contains two rows and two columns.
| fileName | name of the input file |
| FileException | if the file cannot be accessed |
Implements inviwo::DataReaderType< DataFrame >.
| std::shared_ptr< DataFrame > inviwo::JSONDataFrameReader::readData | ( | std::istream & | stream | ) | const |
read DataFrame from a JSON-encoded input stream, e.g. a std::ifstream. In case file streams are used, the file must have be opened prior calling this function. Expects object layout: [ {"Col1": val11, "Col2": val12 }, {"Col1": val21, "Col2": val22 } ] The example above contains two rows and two columns.
| stream | input stream with the json data |