| #ifndef _RIVE_FILE_READER_HPP_ |
| #define _RIVE_FILE_READER_HPP_ |
| |
| #include <rive/file.hpp> |
| #include "rive_testing.hpp" |
| #include "no_op_factory.hpp" |
| |
| static inline std::unique_ptr<rive::File> |
| ReadRiveFile(const char path[], |
| rive::Factory* factory = nullptr, |
| rive::FileAssetResolver* resolver = nullptr) { |
| if (!factory) { |
| factory = &rive::gNoOpFactory; |
| } |
| |
| FILE* fp = fopen(path, "rb"); |
| REQUIRE(fp != nullptr); |
| |
| fseek(fp, 0, SEEK_END); |
| const size_t length = ftell(fp); |
| fseek(fp, 0, SEEK_SET); |
| std::vector<uint8_t> bytes(length); |
| REQUIRE(fread(bytes.data(), 1, length, fp) == length); |
| fclose(fp); |
| |
| rive::ImportResult result; |
| auto file = rive::File::import(rive::toSpan(bytes), factory, &result, resolver); |
| REQUIRE(result == rive::ImportResult::success); |
| REQUIRE(file.get() != nullptr); |
| REQUIRE(file->artboard() != nullptr); |
| |
| return file; |
| } |
| |
| #endif |