Merge 7ed3430fdb
into 9fb917c357
This commit is contained in:
commit
6c10f78d7b
|
@ -57,66 +57,54 @@ void compat_splitpath(const char* path, char* drive, char* dir, char* fname, cha
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
_splitpath(path, drive, dir, fname, ext);
|
_splitpath(path, drive, dir, fname, ext);
|
||||||
#else
|
#else
|
||||||
const char* driveStart = path;
|
// Initialize outputs to empty strings
|
||||||
if (path[0] == '/' && path[1] == '/') {
|
if (drive) drive[0] = '\0';
|
||||||
|
if (dir) dir[0] = '\0';
|
||||||
|
if (fname) fname[0] = '\0';
|
||||||
|
if (ext) ext[0] = '\0';
|
||||||
|
|
||||||
|
const char* lastSlash = strrchr(path, '/');
|
||||||
|
const char* lastBackSlash = strrchr(path, '\\');
|
||||||
|
if (lastBackSlash && (!lastSlash || lastBackSlash > lastSlash)) {
|
||||||
|
lastSlash = lastBackSlash;
|
||||||
|
}
|
||||||
|
|
||||||
|
const char* lastDot = strrchr((lastSlash ? lastSlash : path), '.');
|
||||||
|
|
||||||
|
// Handle drive letter for Windows-style paths on non-Windows platforms
|
||||||
|
if (path[1] == ':') {
|
||||||
|
if (drive) {
|
||||||
|
drive[0] = path[0];
|
||||||
|
drive[1] = ':';
|
||||||
|
drive[2] = '\0';
|
||||||
|
}
|
||||||
path += 2;
|
path += 2;
|
||||||
while (*path != '\0' && *path != '/' && *path != '.') {
|
|
||||||
path++;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (drive != nullptr) {
|
// Directory component
|
||||||
size_t driveSize = path - driveStart;
|
if (lastSlash) {
|
||||||
if (driveSize > COMPAT_MAX_DRIVE - 1) {
|
size_t length = lastSlash - path + 1; // Include slash
|
||||||
driveSize = COMPAT_MAX_DRIVE - 1;
|
if (dir) {
|
||||||
|
strncpy(dir, path, length);
|
||||||
|
dir[length] = '\0';
|
||||||
}
|
}
|
||||||
strncpy(drive, path, driveSize);
|
path = lastSlash + 1; // Move past the slash or backslash
|
||||||
drive[driveSize] = '\0';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const char* dirStart = path;
|
// Filename and extension
|
||||||
const char* fnameStart = path;
|
if (lastDot && (lastDot > lastSlash)) {
|
||||||
const char* extStart = nullptr;
|
size_t length = lastDot - path;
|
||||||
|
if (fname) {
|
||||||
const char* end = path;
|
strncpy(fname, path, length);
|
||||||
while (*end != '\0') {
|
fname[length] = '\0';
|
||||||
if (*end == '/') {
|
|
||||||
fnameStart = end + 1;
|
|
||||||
} else if (*end == '.') {
|
|
||||||
extStart = end;
|
|
||||||
}
|
}
|
||||||
end++;
|
if (ext) {
|
||||||
}
|
strcpy(ext, lastDot);
|
||||||
|
|
||||||
if (extStart == nullptr) {
|
|
||||||
extStart = end;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (dir != nullptr) {
|
|
||||||
size_t dirSize = fnameStart - dirStart;
|
|
||||||
if (dirSize > COMPAT_MAX_DIR - 1) {
|
|
||||||
dirSize = COMPAT_MAX_DIR - 1;
|
|
||||||
}
|
}
|
||||||
strncpy(dir, path, dirSize);
|
} else {
|
||||||
dir[dirSize] = '\0';
|
if (fname) {
|
||||||
}
|
strcpy(fname, path);
|
||||||
|
|
||||||
if (fname != nullptr) {
|
|
||||||
size_t fileNameSize = extStart - fnameStart;
|
|
||||||
if (fileNameSize > COMPAT_MAX_FNAME - 1) {
|
|
||||||
fileNameSize = COMPAT_MAX_FNAME - 1;
|
|
||||||
}
|
}
|
||||||
strncpy(fname, fnameStart, fileNameSize);
|
|
||||||
fname[fileNameSize] = '\0';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ext != nullptr) {
|
|
||||||
size_t extSize = end - extStart;
|
|
||||||
if (extSize > COMPAT_MAX_EXT - 1) {
|
|
||||||
extSize = COMPAT_MAX_EXT - 1;
|
|
||||||
}
|
|
||||||
strncpy(ext, extStart, extSize);
|
|
||||||
ext[extSize] = '\0';
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue