#ifndef MBGL_STORAGE_DEFAULT_SQLITE_CACHE_IMPL #define MBGL_STORAGE_DEFAULT_SQLITE_CACHE_IMPL #include typedef struct uv_loop_s uv_loop_t; namespace mapbox { namespace sqlite { class Database; class Statement; } } namespace mbgl { class SQLiteCache::Impl { public: Impl(uv_loop_t*, const std::string &path = ":memory:"); ~Impl(); std::unique_ptr get(const Resource&); void put(const Resource& resource, std::shared_ptr response); void refresh(const Resource& resource, int64_t expires); private: void createDatabase(); void createSchema(); const std::string path; std::unique_ptr<::mapbox::sqlite::Database> db; std::unique_ptr<::mapbox::sqlite::Statement> getStmt; std::unique_ptr<::mapbox::sqlite::Statement> putStmt; std::unique_ptr<::mapbox::sqlite::Statement> refreshStmt; bool schema = false; }; } #endif