mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-20 06:52:03 +00:00

Introduced a dedicated mutex for each surface instance
to ensure safe sharing between the loader, renderer, and engine.
This enhancement allows for secure modification and access to bitmap data,
addressing potential concurrency issues.
Multiple Picture instances can now safely share a single loader instance,
optimizing performance.
This change builds upon the previous Loader Cache improvements:
ff6ea4b6c4
150 lines
No EOL
4 KiB
C++
150 lines
No EOL
4 KiB
C++
/*
|
|
* Copyright (c) 2021 - 2024 the ThorVG project. All rights reserved.
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#include <memory.h>
|
|
#include "tvgLoader.h"
|
|
#include "tvgPngLoader.h"
|
|
|
|
|
|
/************************************************************************/
|
|
/* Internal Class Implementation */
|
|
/************************************************************************/
|
|
|
|
|
|
void PngLoader::run(unsigned tid)
|
|
{
|
|
auto width = static_cast<unsigned>(w);
|
|
auto height = static_cast<unsigned>(h);
|
|
|
|
if (lodepng_decode(&surface.buf8, &width, &height, &state, data, size)) {
|
|
TVGERR("PNG", "Failed to decode image");
|
|
}
|
|
|
|
//setup the surface
|
|
surface.stride = width;
|
|
surface.w = width;
|
|
surface.h = height;
|
|
surface.channelSize = sizeof(uint32_t);
|
|
surface.premultiplied = false;
|
|
}
|
|
|
|
|
|
/************************************************************************/
|
|
/* External Class Implementation */
|
|
/************************************************************************/
|
|
|
|
PngLoader::PngLoader() : ImageLoader(FileType::Png)
|
|
{
|
|
lodepng_state_init(&state);
|
|
}
|
|
|
|
|
|
PngLoader::~PngLoader()
|
|
{
|
|
if (freeData) free(data);
|
|
free(surface.buf8);
|
|
lodepng_state_cleanup(&state);
|
|
}
|
|
|
|
|
|
bool PngLoader::open(const string& path)
|
|
{
|
|
auto pngFile = fopen(path.c_str(), "rb");
|
|
if (!pngFile) return false;
|
|
|
|
auto ret = false;
|
|
|
|
//determine size
|
|
if (fseek(pngFile, 0, SEEK_END) < 0) goto finalize;
|
|
if (((size = ftell(pngFile)) < 1)) goto finalize;
|
|
if (fseek(pngFile, 0, SEEK_SET)) goto finalize;
|
|
|
|
data = (unsigned char *) malloc(size);
|
|
if (!data) goto finalize;
|
|
|
|
freeData = true;
|
|
|
|
if (fread(data, size, 1, pngFile) < 1) goto finalize;
|
|
|
|
lodepng_state_init(&state);
|
|
|
|
unsigned int width, height;
|
|
if (lodepng_inspect(&width, &height, &state, data, size) > 0) goto finalize;
|
|
|
|
w = static_cast<float>(width);
|
|
h = static_cast<float>(height);
|
|
|
|
if (state.info_png.color.colortype == LCT_RGBA) surface.cs = ColorSpace::ABGR8888;
|
|
else surface.cs = ColorSpace::ARGB8888;
|
|
|
|
ret = true;
|
|
|
|
goto finalize;
|
|
|
|
finalize:
|
|
fclose(pngFile);
|
|
return ret;
|
|
}
|
|
|
|
|
|
bool PngLoader::open(const char* data, uint32_t size, bool copy)
|
|
{
|
|
unsigned int width, height;
|
|
if (lodepng_inspect(&width, &height, &state, (unsigned char*)(data), size) > 0) return false;
|
|
|
|
if (copy) {
|
|
this->data = (unsigned char *) malloc(size);
|
|
if (!this->data) return false;
|
|
memcpy((unsigned char *)this->data, data, size);
|
|
freeData = true;
|
|
} else {
|
|
this->data = (unsigned char *) data;
|
|
freeData = false;
|
|
}
|
|
|
|
w = static_cast<float>(width);
|
|
h = static_cast<float>(height);
|
|
this->size = size;
|
|
|
|
surface.cs = ColorSpace::ABGR8888;
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool PngLoader::read()
|
|
{
|
|
if (!data || w == 0 || h == 0) return false;
|
|
|
|
if (!LoadModule::read()) return true;
|
|
|
|
TaskScheduler::request(this);
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
Surface* PngLoader::bitmap()
|
|
{
|
|
this->done();
|
|
return ImageLoader::bitmap();
|
|
} |