2015-06-21 09:33:46 -06:00
|
|
|
/*
|
2024-01-01 14:15:26 -07:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06: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.
|
|
|
|
*/
|
2015-12-04 14:12:36 -07:00
|
|
|
/* Simple test of filesystem functions. */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL.h>
|
2022-12-14 21:58:20 -07:00
|
|
|
#include <SDL3/SDL_main.h>
|
2023-03-16 17:25:39 -06:00
|
|
|
#include <SDL3/SDL_test.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2024-03-16 10:18:32 -06:00
|
|
|
static int SDLCALL enum_callback(void *userdata, const char *origdir, const char *fname)
|
2024-03-16 09:15:13 -06:00
|
|
|
{
|
|
|
|
SDL_PathInfo info;
|
|
|
|
char *fullpath = NULL;
|
|
|
|
|
|
|
|
/* you can use '/' for a path separator on Windows, but to make the log output look correct, we'll #ifdef this... */
|
|
|
|
#ifdef SDL_PLATFORM_WINDOWS
|
|
|
|
const char *pathsep = "\\";
|
|
|
|
#else
|
|
|
|
const char *pathsep = "/";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (SDL_asprintf(&fullpath, "%s%s%s", origdir, *origdir ? pathsep : "", fname) < 0) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Out of memory!");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SDL_GetPathInfo(fullpath, &info) < 0) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't stat '%s': %s", fullpath, SDL_GetError());
|
|
|
|
} else {
|
|
|
|
const char *type;
|
|
|
|
if (info.type == SDL_PATHTYPE_FILE) {
|
|
|
|
type = "FILE";
|
|
|
|
} else if (info.type == SDL_PATHTYPE_DIRECTORY) {
|
|
|
|
type = "DIRECTORY";
|
|
|
|
} else {
|
|
|
|
type = "OTHER";
|
|
|
|
}
|
|
|
|
SDL_Log("%s (type=%s, size=%" SDL_PRIu64 ", create=%" SDL_PRIu64 ", mod=%" SDL_PRIu64 ", access=%" SDL_PRIu64 ")",
|
|
|
|
fullpath, type, info.size, info.modify_time, info.create_time, info.access_time);
|
|
|
|
|
|
|
|
if (info.type == SDL_PATHTYPE_DIRECTORY) {
|
|
|
|
if (SDL_EnumerateDirectory(fullpath, enum_callback, userdata) < 0) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Enumeration failed!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_free(fullpath);
|
|
|
|
return 1; /* keep going */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
int main(int argc, char *argv[])
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
2023-03-16 17:25:39 -06:00
|
|
|
SDLTest_CommonState *state;
|
2015-12-01 14:21:29 -07:00
|
|
|
char *pref_path;
|
2024-03-16 09:15:13 -06:00
|
|
|
char *base_path;
|
2015-12-01 14:21:29 -07:00
|
|
|
|
2023-03-16 17:25:39 -06:00
|
|
|
/* Initialize test framework */
|
|
|
|
state = SDLTest_CommonCreateState(argv, 0);
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!state) {
|
2023-03-16 17:25:39 -06:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/* Enable standard application logging */
|
|
|
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
|
|
|
|
2023-03-16 17:25:39 -06:00
|
|
|
/* Parse commandline */
|
|
|
|
if (!SDLTest_CommonDefaultArgs(state, argc, argv)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
if (SDL_Init(0) == -1) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_Init() failed: %s\n", SDL_GetError());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-12-01 14:21:29 -07:00
|
|
|
base_path = SDL_GetBasePath();
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!base_path) {
|
2022-11-30 13:51:59 -07:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't find base path: %s\n",
|
|
|
|
SDL_GetError());
|
2020-02-13 15:58:04 -07:00
|
|
|
} else {
|
|
|
|
SDL_Log("base path: '%s'\n", base_path);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
2022-07-03 08:20:26 -06:00
|
|
|
pref_path = SDL_GetPrefPath("libsdl", "test_filesystem");
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!pref_path) {
|
2022-11-30 13:51:59 -07:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't find pref path: %s\n",
|
|
|
|
SDL_GetError());
|
2020-02-13 15:58:04 -07:00
|
|
|
} else {
|
|
|
|
SDL_Log("pref path: '%s'\n", pref_path);
|
|
|
|
SDL_free(pref_path);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
2022-07-03 08:20:26 -06:00
|
|
|
pref_path = SDL_GetPrefPath(NULL, "test_filesystem");
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!pref_path) {
|
2022-11-30 13:51:59 -07:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't find pref path without organization: %s\n",
|
|
|
|
SDL_GetError());
|
2020-02-13 15:58:04 -07:00
|
|
|
} else {
|
|
|
|
SDL_Log("pref path: '%s'\n", pref_path);
|
|
|
|
SDL_free(pref_path);
|
2017-08-11 12:32:00 -06:00
|
|
|
}
|
|
|
|
|
2024-03-16 09:15:13 -06:00
|
|
|
if (base_path) {
|
2024-03-18 13:32:04 -06:00
|
|
|
char **globlist;
|
|
|
|
|
2024-03-16 09:15:13 -06:00
|
|
|
if (SDL_EnumerateDirectory(base_path, enum_callback, NULL) < 0) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Base path enumeration failed!");
|
|
|
|
}
|
|
|
|
|
2024-04-04 08:40:11 -06:00
|
|
|
globlist = SDL_GlobDirectory(base_path, "*/test*/T?st*", SDL_GLOB_CASEINSENSITIVE, NULL);
|
2024-03-18 13:32:04 -06:00
|
|
|
if (!globlist) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Base path globbing failed!");
|
|
|
|
} else {
|
|
|
|
int i;
|
|
|
|
for (i = 0; globlist[i]; i++) {
|
|
|
|
SDL_Log("GLOB[%d]: '%s'", i, globlist[i]);
|
|
|
|
}
|
|
|
|
SDL_free(globlist);
|
|
|
|
}
|
|
|
|
|
2024-03-16 09:15:13 -06:00
|
|
|
/* !!! FIXME: put this in a subroutine and make it test more thoroughly (and put it in testautomation). */
|
|
|
|
if (SDL_CreateDirectory("testfilesystem-test") == -1) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_CreateDirectory('testfilesystem-test') failed: %s", SDL_GetError());
|
|
|
|
} else if (SDL_CreateDirectory("testfilesystem-test/1") == -1) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_CreateDirectory('testfilesystem-test/1') failed: %s", SDL_GetError());
|
|
|
|
} else if (SDL_CreateDirectory("testfilesystem-test/1") == -1) { /* THIS SHOULD NOT FAIL! Making a directory that already exists should succeed here. */
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_CreateDirectory('testfilesystem-test/1') failed: %s", SDL_GetError());
|
|
|
|
} else if (SDL_RenamePath("testfilesystem-test/1", "testfilesystem-test/2") == -1) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_RenamePath('testfilesystem-test/1', 'testfilesystem-test/2') failed: %s", SDL_GetError());
|
|
|
|
} else if (SDL_RemovePath("testfilesystem-test/2") == -1) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_RemovePath('testfilesystem-test/2') failed: %s", SDL_GetError());
|
|
|
|
} else if (SDL_RemovePath("testfilesystem-test") == -1) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_RemovePath('testfilesystem-test') failed: %s", SDL_GetError());
|
|
|
|
} else if (SDL_RemovePath("testfilesystem-test") == -1) { /* THIS SHOULD NOT FAIL! Removing a directory that is already gone should succeed here. */
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_RemovePath('testfilesystem-test') failed: %s", SDL_GetError());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_free(base_path);
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_Quit();
|
2023-03-16 17:25:39 -06:00
|
|
|
SDLTest_CommonDestroyState(state);
|
2015-06-21 09:33:46 -06:00
|
|
|
return 0;
|
|
|
|
}
|