2015-06-21 18:33:46 +03:00
|
|
|
/*
|
2024-01-02 00:15:26 +03:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
|
|
|
*/
|
|
|
|
|
2022-11-27 07:43:38 +03:00
|
|
|
#include <SDL3/SDL.h>
|
2022-12-15 07:58:20 +03:00
|
|
|
#include <SDL3/SDL_main.h>
|
2023-03-17 02:25:39 +03:00
|
|
|
#include <SDL3/SDL_test.h>
|
2022-04-12 15:07:18 +03:00
|
|
|
#include "testutils.h"
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
static size_t
|
|
|
|
widelen(char *data)
|
|
|
|
{
|
|
|
|
size_t len = 0;
|
2022-11-30 23:51:59 +03:00
|
|
|
Uint32 *p = (Uint32 *)data;
|
2015-06-21 18:33:46 +03:00
|
|
|
while (*p++) {
|
|
|
|
++len;
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2024-06-27 04:32:45 +03:00
|
|
|
static char *get_next_line(Uint8 **fdataptr, size_t *fdatalen)
|
|
|
|
{
|
2024-08-23 03:33:49 +03:00
|
|
|
char *result = (char *) *fdataptr;
|
2024-06-27 04:32:45 +03:00
|
|
|
Uint8 *ptr = *fdataptr;
|
|
|
|
size_t len = *fdatalen;
|
|
|
|
|
|
|
|
if (len == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (len > 0) {
|
|
|
|
if (*ptr == '\r') {
|
|
|
|
*ptr = '\0';
|
|
|
|
} else if (*ptr == '\n') {
|
|
|
|
*ptr = '\0';
|
|
|
|
ptr++;
|
|
|
|
len--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ptr++;
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
|
|
|
|
*fdataptr = ptr;
|
|
|
|
*fdatalen = len;
|
2024-08-23 03:33:49 +03:00
|
|
|
return result;
|
2024-06-27 04:32:45 +03:00
|
|
|
}
|
|
|
|
|
2022-11-30 23:51:59 +03:00
|
|
|
int main(int argc, char *argv[])
|
2015-06-21 18:33:46 +03:00
|
|
|
{
|
|
|
|
const char *formats[] = {
|
|
|
|
"UTF8",
|
|
|
|
"UTF-8",
|
|
|
|
"UTF16BE",
|
|
|
|
"UTF-16BE",
|
|
|
|
"UTF16LE",
|
|
|
|
"UTF-16LE",
|
|
|
|
"UTF32BE",
|
|
|
|
"UTF-32BE",
|
|
|
|
"UTF32LE",
|
|
|
|
"UTF-32LE",
|
|
|
|
"UCS4",
|
|
|
|
"UCS-4",
|
|
|
|
};
|
2021-11-20 01:02:02 +03:00
|
|
|
|
2023-03-17 02:25:39 +03:00
|
|
|
char *fname = NULL;
|
2015-06-21 18:33:46 +03:00
|
|
|
char *ucs4;
|
|
|
|
char *test[2];
|
|
|
|
int i;
|
|
|
|
int errors = 0;
|
2023-03-17 02:25:39 +03:00
|
|
|
SDLTest_CommonState *state;
|
2024-06-27 04:32:45 +03:00
|
|
|
Uint8 *fdata = NULL;
|
|
|
|
Uint8 *fdataptr = NULL;
|
|
|
|
char *line = NULL;
|
|
|
|
size_t fdatalen = 0;
|
2023-03-17 02:25:39 +03:00
|
|
|
|
|
|
|
/* Initialize test framework */
|
|
|
|
state = SDLTest_CommonCreateState(argv, 0);
|
2023-11-10 00:29:15 +03:00
|
|
|
if (!state) {
|
2023-03-17 02:25:39 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2015-06-21 18:33:46 +03:00
|
|
|
|
2023-03-17 02:25:39 +03:00
|
|
|
/* Parse commandline */
|
|
|
|
for (i = 1; i < argc;) {
|
|
|
|
int consumed;
|
|
|
|
|
|
|
|
consumed = SDLTest_CommonArg(state, i);
|
|
|
|
if (!consumed) {
|
|
|
|
if (!fname) {
|
|
|
|
fname = argv[i];
|
|
|
|
consumed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (consumed <= 0) {
|
|
|
|
static const char *options[] = { "[utf8.txt]", NULL };
|
|
|
|
SDLTest_CommonLogUsage(state, argv[0], options);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
i += consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
fname = GetResourceFilename(fname, "utf8.txt");
|
2024-06-27 04:32:45 +03:00
|
|
|
fdata = (Uint8 *) (fname ? SDL_LoadFile(fname, &fdatalen) : NULL);
|
|
|
|
if (!fdata) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Unable to load %s\n", fname);
|
2022-11-27 19:38:43 +03:00
|
|
|
return 1;
|
2015-06-21 18:33:46 +03:00
|
|
|
}
|
|
|
|
|
2024-06-27 04:32:45 +03:00
|
|
|
fdataptr = fdata;
|
|
|
|
while ((line = get_next_line(&fdataptr, &fdatalen)) != NULL) {
|
2015-06-21 18:33:46 +03:00
|
|
|
/* Convert to UCS-4 */
|
|
|
|
size_t len;
|
2024-06-27 04:32:45 +03:00
|
|
|
ucs4 = SDL_iconv_string("UCS-4", "UTF-8", line, SDL_strlen(line) + 1);
|
2015-06-21 18:33:46 +03:00
|
|
|
len = (widelen(ucs4) + 1) * 4;
|
2024-06-27 04:32:45 +03:00
|
|
|
|
2015-06-21 18:33:46 +03:00
|
|
|
for (i = 0; i < SDL_arraysize(formats); ++i) {
|
|
|
|
test[0] = SDL_iconv_string(formats[i], "UCS-4", ucs4, len);
|
|
|
|
test[1] = SDL_iconv_string("UCS-4", formats[i], test[0], len);
|
|
|
|
if (!test[1] || SDL_memcmp(test[1], ucs4, len) != 0) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "FAIL: %s\n", formats[i]);
|
|
|
|
++errors;
|
|
|
|
}
|
|
|
|
SDL_free(test[0]);
|
|
|
|
SDL_free(test[1]);
|
|
|
|
}
|
|
|
|
test[0] = SDL_iconv_string("UTF-8", "UCS-4", ucs4, len);
|
|
|
|
SDL_free(ucs4);
|
2024-06-27 04:32:45 +03:00
|
|
|
SDL_Log("%s", test[0]);
|
2015-06-21 18:33:46 +03:00
|
|
|
SDL_free(test[0]);
|
|
|
|
}
|
2024-06-27 04:32:45 +03:00
|
|
|
SDL_free(fdata);
|
|
|
|
SDL_free(fname);
|
2022-09-24 18:55:10 +03:00
|
|
|
|
|
|
|
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, "Total errors: %d\n", errors);
|
2024-05-13 17:06:37 +03:00
|
|
|
SDL_Quit();
|
2023-03-17 02:25:39 +03:00
|
|
|
SDLTest_CommonDestroyState(state);
|
2022-11-27 19:38:43 +03:00
|
|
|
return errors ? errors + 1 : 0;
|
2015-06-21 18:33:46 +03:00
|
|
|
}
|