mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2025-12-16 19:24:40 +00:00
Refactor image info structure to use fixed-size arrays and improve UTF-16 to UTF-8 conversion
This commit is contained in:
@@ -156,10 +156,20 @@ include(3rdparty/flac.cmake)
|
||||
include(3rdparty/lzma.cmake)
|
||||
include(3rdparty/xxhash.cmake)
|
||||
include(3rdparty/blake3.cmake)
|
||||
|
||||
# Find and link ICU library for UTF-16LE to UTF-8 conversion
|
||||
find_package(ICU COMPONENTS uc REQUIRED)
|
||||
|
||||
if(TARGET blake3)
|
||||
target_link_libraries(aaruformat blake3)
|
||||
endif()
|
||||
|
||||
# Add ICU include directories and link library to the target
|
||||
if(ICU_FOUND)
|
||||
target_include_directories(aaruformat PRIVATE ${ICU_INCLUDE_DIRS})
|
||||
target_link_libraries(aaruformat ${ICU_LIBRARIES})
|
||||
endif()
|
||||
|
||||
macro(TARGET_LINK_LIBRARIES_WHOLE_ARCHIVE target)
|
||||
if(MSVC)
|
||||
foreach(lib IN LISTS ARGN)
|
||||
|
||||
@@ -812,9 +812,9 @@ typedef struct ImageInfo // NOLINT
|
||||
uint64_t ImageSize; ///< Size of the image without headers
|
||||
uint64_t Sectors; ///< Sectors contained in the image
|
||||
uint32_t SectorSize; ///< Size of sectors contained in the image
|
||||
uint8_t *Version; ///< Image version
|
||||
uint8_t *Application; ///< Application that created the image
|
||||
uint8_t *ApplicationVersion; ///< Version of the application that created the image
|
||||
char Version[32]; ///< Image version
|
||||
char Application[64]; ///< Application that created the image
|
||||
char ApplicationVersion[32]; ///< Version of the application that created the image
|
||||
int64_t CreationTime; ///< Image creation time
|
||||
int64_t LastModificationTime; ///< Image last modification time
|
||||
uint32_t MediaType; ///< Media type represented by the image
|
||||
|
||||
90
src/create.c
90
src/create.c
@@ -22,6 +22,9 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <unicode/ucnv.h>
|
||||
#include <unicode/ustring.h>
|
||||
|
||||
#include "aaruformat.h"
|
||||
#include "enums.h"
|
||||
#include "internal.h"
|
||||
@@ -73,17 +76,7 @@ static void cleanup_failed_create(aaruformatContext *ctx)
|
||||
ctx->readableSectorTags = NULL;
|
||||
}
|
||||
|
||||
if(ctx->imageInfo.ApplicationVersion != NULL)
|
||||
{
|
||||
free(ctx->imageInfo.ApplicationVersion);
|
||||
ctx->imageInfo.ApplicationVersion = NULL;
|
||||
}
|
||||
|
||||
if(ctx->imageInfo.Version != NULL)
|
||||
{
|
||||
free(ctx->imageInfo.Version);
|
||||
ctx->imageInfo.Version = NULL;
|
||||
}
|
||||
// ApplicationVersion and Version are fixed-size arrays, not pointers - no need to free
|
||||
|
||||
if(ctx->imageStream != NULL)
|
||||
{
|
||||
@@ -368,20 +361,75 @@ void *aaruf_create(const char *filepath, const uint32_t media_type, const uint32
|
||||
|
||||
// Initialize image info
|
||||
TRACE("Initializing image info");
|
||||
ctx->imageInfo.Application = ctx->header.application;
|
||||
ctx->imageInfo.ApplicationVersion = (uint8_t *)malloc(32);
|
||||
if(ctx->imageInfo.ApplicationVersion != NULL)
|
||||
|
||||
// Convert application name from UTF-16LE to UTF-8 using libicu
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
int32_t app_name_utf16_len = AARU_HEADER_APP_NAME_LEN / 2; // UTF-16LE uses 2 bytes per character
|
||||
UChar *app_name_utf16 = (UChar *)malloc(app_name_utf16_len * sizeof(UChar));
|
||||
|
||||
if(app_name_utf16 != NULL)
|
||||
{
|
||||
// Convert raw UTF-16LE bytes to UChar (UTF-16, host endian)
|
||||
for(int32_t j = 0; j < app_name_utf16_len; j++)
|
||||
{
|
||||
app_name_utf16[j] = (UChar)(ctx->header.application[j * 2] | (ctx->header.application[j * 2 + 1] << 8));
|
||||
}
|
||||
|
||||
// Get required length for UTF-8
|
||||
int32_t app_name_utf8_len = 0;
|
||||
u_strToUTF8(NULL, 0, &app_name_utf8_len, app_name_utf16, app_name_utf16_len, &status);
|
||||
|
||||
if(U_SUCCESS(status) || status == U_BUFFER_OVERFLOW_ERROR)
|
||||
{
|
||||
status = U_ZERO_ERROR;
|
||||
|
||||
// Ensure it fits in the Application buffer (64 bytes including null terminator)
|
||||
if(app_name_utf8_len < 64)
|
||||
{
|
||||
u_strToUTF8(ctx->imageInfo.Application, 64, NULL, app_name_utf16, app_name_utf16_len, &status);
|
||||
|
||||
if(U_FAILURE(status))
|
||||
{
|
||||
TRACE("Error converting application name to UTF-8: %d, using raw bytes", status);
|
||||
// Fallback: just copy what we can
|
||||
memset(ctx->imageInfo.Application, 0, 64);
|
||||
memcpy(ctx->imageInfo.Application, ctx->header.application, AARU_HEADER_APP_NAME_LEN);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
TRACE("Application name too long for buffer, truncating");
|
||||
u_strToUTF8(ctx->imageInfo.Application, 63, NULL, app_name_utf16, app_name_utf16_len, &status);
|
||||
ctx->imageInfo.Application[63] = '\0';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
TRACE("Error getting UTF-8 length: %d, using raw bytes", status);
|
||||
// Fallback: just copy what we can
|
||||
memset(ctx->imageInfo.Application, 0, 64);
|
||||
memcpy(ctx->imageInfo.Application, ctx->header.application, AARU_HEADER_APP_NAME_LEN);
|
||||
}
|
||||
|
||||
free(app_name_utf16);
|
||||
}
|
||||
else
|
||||
{
|
||||
TRACE("Could not allocate memory for UTF-16 conversion, using raw bytes");
|
||||
// Fallback: just copy what we can
|
||||
memset(ctx->imageInfo.Application, 0, 64);
|
||||
memcpy(ctx->imageInfo.Application, ctx->header.application, AARU_HEADER_APP_NAME_LEN);
|
||||
}
|
||||
|
||||
// Set application version string directly in the fixed-size array
|
||||
memset(ctx->imageInfo.ApplicationVersion, 0, 32);
|
||||
sprintf((char *)ctx->imageInfo.ApplicationVersion, "%d.%d", ctx->header.applicationMajorVersion,
|
||||
sprintf(ctx->imageInfo.ApplicationVersion, "%d.%d", ctx->header.applicationMajorVersion,
|
||||
ctx->header.applicationMinorVersion);
|
||||
}
|
||||
ctx->imageInfo.Version = (uint8_t *)malloc(32);
|
||||
if(ctx->imageInfo.Version != NULL)
|
||||
{
|
||||
|
||||
// Set image version string directly in the fixed-size array
|
||||
memset(ctx->imageInfo.Version, 0, 32);
|
||||
sprintf((char *)ctx->imageInfo.Version, "%d.%d", ctx->header.imageMajorVersion, ctx->header.imageMinorVersion);
|
||||
}
|
||||
sprintf(ctx->imageInfo.Version, "%d.%d", ctx->header.imageMajorVersion, ctx->header.imageMinorVersion);
|
||||
|
||||
ctx->imageInfo.MediaType = ctx->header.mediaType;
|
||||
ctx->imageInfo.ImageSize = 0;
|
||||
ctx->imageInfo.CreationTime = ctx->header.creationTime;
|
||||
|
||||
84
src/open.c
84
src/open.c
@@ -22,6 +22,9 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <unicode/ucnv.h>
|
||||
#include <unicode/ustring.h>
|
||||
|
||||
#include <aaruformat.h>
|
||||
|
||||
#include "internal.h"
|
||||
@@ -41,12 +44,6 @@ static void cleanup_open_failure(aaruformatContext *ctx)
|
||||
free(ctx->readableSectorTags);
|
||||
ctx->readableSectorTags = NULL;
|
||||
|
||||
free(ctx->imageInfo.ApplicationVersion);
|
||||
ctx->imageInfo.ApplicationVersion = NULL;
|
||||
|
||||
free(ctx->imageInfo.Version);
|
||||
ctx->imageInfo.Version = NULL;
|
||||
|
||||
free(ctx);
|
||||
}
|
||||
|
||||
@@ -245,20 +242,75 @@ void *aaruf_open(const char *filepath) // NOLINT(readability-function-size)
|
||||
memset(ctx->readableSectorTags, 0, sizeof(bool) * MaxSectorTag);
|
||||
|
||||
TRACE("Setting up image info");
|
||||
ctx->imageInfo.Application = ctx->header.application;
|
||||
ctx->imageInfo.ApplicationVersion = (uint8_t *)malloc(32);
|
||||
if(ctx->imageInfo.ApplicationVersion != NULL)
|
||||
|
||||
// Convert application name from UTF-16LE to UTF-8 using libicu
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
int32_t app_name_utf16_len = AARU_HEADER_APP_NAME_LEN / 2; // UTF-16LE uses 2 bytes per character
|
||||
UChar *app_name_utf16 = (UChar *)malloc(app_name_utf16_len * sizeof(UChar));
|
||||
|
||||
if(app_name_utf16 != NULL)
|
||||
{
|
||||
// Convert raw UTF-16LE bytes to UChar (UTF-16, host endian)
|
||||
for(int32_t j = 0; j < app_name_utf16_len; j++)
|
||||
{
|
||||
app_name_utf16[j] = (UChar)(ctx->header.application[j * 2] | (ctx->header.application[j * 2 + 1] << 8));
|
||||
}
|
||||
|
||||
// Get required length for UTF-8
|
||||
int32_t app_name_utf8_len = 0;
|
||||
u_strToUTF8(NULL, 0, &app_name_utf8_len, app_name_utf16, app_name_utf16_len, &status);
|
||||
|
||||
if(U_SUCCESS(status) || status == U_BUFFER_OVERFLOW_ERROR)
|
||||
{
|
||||
status = U_ZERO_ERROR;
|
||||
|
||||
// Ensure it fits in the Application buffer (64 bytes including null terminator)
|
||||
if(app_name_utf8_len < 64)
|
||||
{
|
||||
u_strToUTF8(ctx->imageInfo.Application, 64, NULL, app_name_utf16, app_name_utf16_len, &status);
|
||||
|
||||
if(U_FAILURE(status))
|
||||
{
|
||||
TRACE("Error converting application name to UTF-8: %d, using raw bytes", status);
|
||||
// Fallback: just copy what we can
|
||||
memset(ctx->imageInfo.Application, 0, 64);
|
||||
strncpy(ctx->imageInfo.Application, (const char *)ctx->header.application, 63);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
TRACE("Application name too long for buffer, truncating");
|
||||
u_strToUTF8(ctx->imageInfo.Application, 63, NULL, app_name_utf16, app_name_utf16_len, &status);
|
||||
ctx->imageInfo.Application[63] = '\0';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
TRACE("Error getting UTF-8 length: %d, using raw bytes", status);
|
||||
// Fallback: just copy what we can
|
||||
memset(ctx->imageInfo.Application, 0, 64);
|
||||
strncpy(ctx->imageInfo.Application, (const char *)ctx->header.application, 63);
|
||||
}
|
||||
|
||||
free(app_name_utf16);
|
||||
}
|
||||
else
|
||||
{
|
||||
TRACE("Could not allocate memory for UTF-16 conversion, using raw bytes");
|
||||
// Fallback: just copy what we can
|
||||
memset(ctx->imageInfo.Application, 0, 64);
|
||||
strncpy(ctx->imageInfo.Application, (const char *)ctx->header.application, 63);
|
||||
}
|
||||
|
||||
// Set application version string directly in the fixed-size array
|
||||
memset(ctx->imageInfo.ApplicationVersion, 0, 32);
|
||||
sprintf((char *)ctx->imageInfo.ApplicationVersion, "%d.%d", ctx->header.applicationMajorVersion,
|
||||
sprintf(ctx->imageInfo.ApplicationVersion, "%d.%d", ctx->header.applicationMajorVersion,
|
||||
ctx->header.applicationMinorVersion);
|
||||
}
|
||||
ctx->imageInfo.Version = (uint8_t *)malloc(32);
|
||||
if(ctx->imageInfo.Version != NULL)
|
||||
{
|
||||
|
||||
// Set image version string directly in the fixed-size array
|
||||
memset(ctx->imageInfo.Version, 0, 32);
|
||||
sprintf((char *)ctx->imageInfo.Version, "%d.%d", ctx->header.imageMajorVersion, ctx->header.imageMinorVersion);
|
||||
}
|
||||
sprintf(ctx->imageInfo.Version, "%d.%d", ctx->header.imageMajorVersion, ctx->header.imageMinorVersion);
|
||||
|
||||
ctx->imageInfo.MediaType = ctx->header.mediaType;
|
||||
|
||||
// Read the index header
|
||||
|
||||
Reference in New Issue
Block a user