#ifndef ASSETS_H #define ASSETS_H #include #include #include #include #include #include struct Asset { size_t size; size_t offset; }; class Assets { public: static Assets& GetInstance() { static Assets instance; return instance; } ~Assets(); bool Download(std::string url, std::function progress_callback); bool Apply(); bool GetAssetData(const std::string& name, void*& ptr, size_t& size); inline bool partition_valid() const { return partition_valid_; } inline bool checksum_valid() const { return checksum_valid_; } inline std::string default_assets_url() const { return default_assets_url_; } private: Assets(); Assets(const Assets&) = delete; Assets& operator=(const Assets&) = delete; bool InitializePartition(); uint32_t CalculateChecksum(const char* data, uint32_t length); const esp_partition_t* partition_ = nullptr; esp_partition_mmap_handle_t mmap_handle_ = 0; const char* mmap_root_ = nullptr; bool partition_valid_ = false; bool checksum_valid_ = false; std::string default_assets_url_; srmodel_list_t* models_list_ = nullptr; std::map assets_; }; #endif