SRB2/src/filesrch.c

1181 lines
26 KiB
C
Raw Normal View History

2014-03-15 16:59:03 +00:00
/// \file
/// \brief Support to find files
///
///
/// filesearch:
///
/// ATTENTION : make sure there is enouth space in filename to put a full path (255 or 512)
/// if needmd5check == 0 there is no md5 check
/// if completepath then filename will be change with the full path and name
/// maxsearchdepth == 0 only search given directory, no subdirs
/// return FS_NOTFOUND
/// FS_MD5SUMBAD;
/// FS_FOUND
#include <stdio.h>
2021-09-13 01:53:51 +00:00
#include <errno.h>
2014-03-15 16:59:03 +00:00
#ifdef __GNUC__
#include <dirent.h>
#endif
2017-09-29 18:27:17 +00:00
#ifdef _WIN32
2014-03-15 16:59:03 +00:00
//#define WIN32_LEAN_AND_MEAN
#define RPC_NO_WINDOWS_H
#include <windows.h>
#endif
#include <sys/stat.h>
#include <string.h>
#include "filesrch.h"
#include "d_netfil.h"
#include "m_misc.h"
#include "z_zone.h"
#include "m_menu.h" // Addons_option_Onchange
2021-03-23 02:56:55 +00:00
#include "w_wad.h"
2014-03-15 16:59:03 +00:00
2017-09-29 22:25:34 +00:00
#if defined (_WIN32) && defined (_MSC_VER)
2014-03-15 16:59:03 +00:00
#include <io.h>
#include <tchar.h>
#define SUFFIX "*"
#define SLASH "\\"
2014-03-15 16:59:03 +00:00
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
#ifndef INVALID_FILE_ATTRIBUTES
#define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
#endif
struct dirent
{
long d_ino; /* Always zero. */
unsigned short d_reclen; /* Always zero. */
unsigned short d_namlen; /* Length of name in d_name. */
char d_name[FILENAME_MAX]; /* File name. */
};
/*
* This is an internal data structure. Good programmers will not use it
* except as an argument to one of the functions below.
* dd_stat field is now int (was short in older versions).
*/
typedef struct
{
/* disk transfer area for this dir */
struct _finddata_t dd_dta;
/* dirent struct to return from dir (NOTE: this makes this thread
* safe as long as only one thread uses a particular DIR struct at
* a time) */
struct dirent dd_dir;
/* _findnext handle */
#if _MSC_VER > 1200
intptr_t dd_handle;
#else
long dd_handle;
#endif
/*
* Status of search:
* 0 = not started yet (next entry to read is first entry)
* -1 = off the end
* positive = 0 based index of next entry
*/
int dd_stat;
/* given path for dir with search pattern (struct is extended) */
CHAR dd_name[1];
} DIR;
/*
* opendir
*
* Returns a pointer to a DIR structure appropriately filled in to begin
* searching a directory.
*/
DIR *
opendir (const CHAR *szPath)
{
DIR *nd;
DWORD rc;
CHAR szFullPath[MAX_PATH];
errno = 0;
if (!szPath)
{
errno = EFAULT;
return (DIR *) 0;
}
if (szPath[0] == '\0')
{
errno = ENOTDIR;
return (DIR *) 0;
}
/* Attempt to determine if the given path really is a directory. */
rc = GetFileAttributesA(szPath);
if (rc == INVALID_FILE_ATTRIBUTES)
{
/* call GetLastError for more error info */
errno = ENOENT;
return (DIR *) 0;
}
if (!(rc & FILE_ATTRIBUTE_DIRECTORY))
{
/* Error, entry exists but not a directory. */
errno = ENOTDIR;
return (DIR *) 0;
}
/* Make an absolute pathname. */
_fullpath (szFullPath, szPath, MAX_PATH);
/* Allocate enough space to store DIR structure and the complete
* directory path given. */
nd = (DIR *) malloc (sizeof (DIR) + (strlen(szFullPath) + strlen (SLASH) +
strlen(SUFFIX) + 1) * sizeof (CHAR));
if (!nd)
{
/* Error, out of memory. */
errno = ENOMEM;
return (DIR *) 0;
}
/* Create the search expression. */
strcpy (nd->dd_name, szFullPath);
/* Add on a slash if the path does not end with one. */
if (nd->dd_name[0] != '\0' &&
nd->dd_name[strlen (nd->dd_name) - 1] != '/' &&
nd->dd_name[strlen (nd->dd_name) - 1] != '\\')
{
strcat (nd->dd_name, SLASH);
}
/* Add on the search pattern */
strcat (nd->dd_name, SUFFIX);
/* Initialize handle to -1 so that a premature closedir doesn't try
* to call _findclose on it. */
nd->dd_handle = -1;
/* Initialize the status. */
nd->dd_stat = 0;
/* Initialize the dirent structure. ino and reclen are invalid under
* Win32, and name simply points at the appropriate part of the
* findfirst_t structure. */
nd->dd_dir.d_ino = 0;
nd->dd_dir.d_reclen = 0;
nd->dd_dir.d_namlen = 0;
ZeroMemory(nd->dd_dir.d_name, FILENAME_MAX);
return nd;
}
/*
* readdir
*
* Return a pointer to a dirent structure filled with the information on the
* next entry in the directory.
*/
struct dirent *
readdir (DIR * dirp)
{
errno = 0;
/* Check for valid DIR struct. */
if (!dirp)
{
errno = EFAULT;
return (struct dirent *) 0;
}
if (dirp->dd_stat < 0)
{
/* We have already returned all files in the directory
* (or the structure has an invalid dd_stat). */
return (struct dirent *) 0;
}
else if (dirp->dd_stat == 0)
{
/* We haven't started the search yet. */
/* Start the search */
dirp->dd_handle = _findfirst (dirp->dd_name, &(dirp->dd_dta));
if (dirp->dd_handle == -1)
{
/* Whoops! Seems there are no files in that
* directory. */
dirp->dd_stat = -1;
}
else
{
dirp->dd_stat = 1;
}
}
else
{
/* Get the next search entry. */
if (_findnext (dirp->dd_handle, &(dirp->dd_dta)))
{
/* We are off the end or otherwise error.
_findnext sets errno to ENOENT if no more file
Undo this. */
DWORD winerr = GetLastError();
if (winerr == ERROR_NO_MORE_FILES)
errno = 0;
_findclose (dirp->dd_handle);
dirp->dd_handle = -1;
dirp->dd_stat = -1;
}
else
{
/* Update the status to indicate the correct
* number. */
dirp->dd_stat++;
}
}
if (dirp->dd_stat > 0)
{
/* Successfully got an entry. Everything about the file is
* already appropriately filled in except the length of the
* file name. */
dirp->dd_dir.d_namlen = (unsigned short)strlen (dirp->dd_dta.name);
strcpy (dirp->dd_dir.d_name, dirp->dd_dta.name);
return &dirp->dd_dir;
}
return (struct dirent *) 0;
}
/*
* rewinddir
*
* Makes the next readdir start from the beginning.
*/
int
rewinddir (DIR * dirp)
{
errno = 0;
/* Check for valid DIR struct. */
if (!dirp)
{
errno = EFAULT;
return -1;
}
dirp->dd_stat = 0;
return 0;
}
2014-03-15 16:59:03 +00:00
/*
* closedir
*
* Frees up resources allocated by opendir.
*/
int
closedir (DIR * dirp)
{
int rc;
errno = 0;
rc = 0;
if (!dirp)
{
errno = EFAULT;
return -1;
}
if (dirp->dd_handle != -1)
{
rc = _findclose (dirp->dd_handle);
}
/* Delete the dir structure. */
free (dirp);
return rc;
}
#endif
static CV_PossibleValue_t addons_cons_t[] = {{0, "Default"},
#if 1
{1, "HOME"}, {2, "SRB2"},
#endif
{3, "CUSTOM"}, {0, NULL}};
2020-10-07 06:04:23 +00:00
consvar_t cv_addons_option = CVAR_INIT ("addons_option", "Default", CV_SAVE|CV_CALL, addons_cons_t, Addons_option_Onchange);
consvar_t cv_addons_folder = CVAR_INIT ("addons_folder", "", CV_SAVE, NULL, NULL);
static CV_PossibleValue_t addons_md5_cons_t[] = {{0, "Name"}, {1, "Contents"}, {0, NULL}};
2020-10-07 06:04:23 +00:00
consvar_t cv_addons_md5 = CVAR_INIT ("addons_md5", "Name", CV_SAVE, addons_md5_cons_t, NULL);
2020-10-07 06:04:23 +00:00
consvar_t cv_addons_showall = CVAR_INIT ("addons_showall", "No", CV_SAVE, CV_YesNo, NULL);
2020-10-07 06:04:23 +00:00
consvar_t cv_addons_search_case = CVAR_INIT ("addons_search_case", "No", CV_SAVE, CV_YesNo, NULL);
static CV_PossibleValue_t addons_search_type_cons_t[] = {{0, "Start"}, {1, "Anywhere"}, {0, NULL}};
2020-10-07 06:04:23 +00:00
consvar_t cv_addons_search_type = CVAR_INIT ("addons_search_type", "Anywhere", CV_SAVE, addons_search_type_cons_t, NULL);
char menupath[1024];
size_t menupathindex[menudepth];
size_t menudepthleft = menudepth;
char menusearch[MAXSTRINGLENGTH+1];
char **dirmenu, **coredirmenu; // core only local for this file
size_t sizedirmenu, sizecoredirmenu; // ditto
size_t dir_on[menudepth];
UINT8 refreshdirmenu = 0;
char *refreshdirname = NULL;
2021-09-12 21:08:06 +00:00
#define dirpathlen 1024
#define maxdirdepth 48
2021-03-23 02:56:55 +00:00
#define isuptree(dirent) ((dirent)[0]=='.' && ((dirent)[1]=='\0' || ((dirent)[1]=='.' && (dirent)[2]=='\0')))
2014-03-15 16:59:03 +00:00
filestatus_t filesearch(char *filename, const char *startpath, const UINT8 *wantedmd5sum, boolean completepath, int maxsearchdepth)
{
filestatus_t retval = FS_NOTFOUND;
DIR **dirhandle;
struct dirent *dent;
struct stat fsstat;
int found = 0;
char *searchname = strdup(filename);
int depthleft = maxsearchdepth;
char searchpath[1024];
size_t *searchpathindex;
dirhandle = (DIR**) malloc(maxsearchdepth * sizeof (DIR*));
searchpathindex = (size_t *) malloc(maxsearchdepth * sizeof (size_t));
strcpy(searchpath,startpath);
searchpathindex[--depthleft] = strlen(searchpath) + 1;
dirhandle[depthleft] = opendir(searchpath);
if (dirhandle[depthleft] == NULL)
{
free(searchname);
free(dirhandle);
free(searchpathindex);
return FS_NOTFOUND;
}
if (searchpath[searchpathindex[depthleft]-2] != PATHSEP[0])
2014-03-15 16:59:03 +00:00
{
searchpath[searchpathindex[depthleft]-1] = PATHSEP[0];
2014-03-15 16:59:03 +00:00
searchpath[searchpathindex[depthleft]] = 0;
}
else
searchpathindex[depthleft]--;
while ((!found) && (depthleft < maxsearchdepth))
{
searchpath[searchpathindex[depthleft]]=0;
dent = readdir(dirhandle[depthleft]);
if (!dent)
{
2014-03-15 16:59:03 +00:00
closedir(dirhandle[depthleft++]);
continue;
}
2021-03-23 02:56:55 +00:00
if (isuptree(dent->d_name))
2014-03-15 16:59:03 +00:00
{
// we don't want to scan uptree
continue;
2014-03-15 16:59:03 +00:00
}
// okay, now we actually want searchpath to incorporate d_name
strcpy(&searchpath[searchpathindex[depthleft]],dent->d_name);
if (stat(searchpath,&fsstat) < 0) // do we want to follow symlinks? if not: change it to lstat
; // was the file (re)moved? can't stat it
2014-03-15 16:59:03 +00:00
else if (S_ISDIR(fsstat.st_mode) && depthleft)
{
searchpathindex[--depthleft] = strlen(searchpath) + 1;
dirhandle[depthleft] = opendir(searchpath);
if (!dirhandle[depthleft])
{
// can't open it... maybe no read-permissions
// go back to previous dir
depthleft++;
}
searchpath[searchpathindex[depthleft]-1]=PATHSEP[0];
2014-03-15 16:59:03 +00:00
searchpath[searchpathindex[depthleft]]=0;
}
else if (!strcasecmp(searchname, dent->d_name))
{
switch (checkfilemd5(searchpath, wantedmd5sum))
{
case FS_FOUND:
if (completepath)
strcpy(filename,searchpath);
else
strcpy(filename,dent->d_name);
retval = FS_FOUND;
found = 1;
break;
case FS_MD5SUMBAD:
retval = FS_MD5SUMBAD;
break;
default: // prevent some compiler warnings
break;
}
}
}
for (; depthleft < maxsearchdepth; closedir(dirhandle[depthleft++]));
free(searchname);
free(searchpathindex);
free(dirhandle);
2014-03-15 16:59:03 +00:00
return retval;
}
2021-09-12 21:08:06 +00:00
#ifndef AVOID_ERRNO
int direrror = 0;
#endif
// Checks if the specified path is a directory.
// Returns 1 if so, 0 if not, and -1 if an error occurred.
// direrror is set if there was an error.
INT32 pathisdirectory(const char *path)
2021-03-23 02:56:55 +00:00
{
2021-09-12 21:08:06 +00:00
struct stat fsstat;
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
if (stat(path, &fsstat) < 0)
2021-03-23 02:56:55 +00:00
{
2021-09-12 21:08:06 +00:00
#ifndef AVOID_ERRNO
direrror = errno;
#endif
return -1;
}
else if (S_ISDIR(fsstat.st_mode))
return 1;
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
return 0;
}
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
// Concatenates two paths, and checks if it is a directory that can be opened.
// Returns 1 if so, 0 if not, and -1 if an error occurred.
INT32 concatpaths(const char *path, const char *startpath)
{
char dirpath[dirpathlen];
DIR *dirhandle;
INT32 stat;
2021-03-23 02:56:55 +00:00
if (startpath)
{
2021-09-12 21:08:06 +00:00
char basepath[dirpathlen];
2021-03-23 02:56:55 +00:00
snprintf(basepath, sizeof basepath, "%s" PATHSEP, startpath);
2021-09-12 21:08:06 +00:00
snprintf(dirpath, sizeof dirpath, "%s%s", basepath, path);
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
// Base path and directory path are the same? Not valid.
stat = samepaths(basepath, dirpath);
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
if (stat == 1)
return 0;
else if (stat < 0)
return -1;
2021-03-23 02:56:55 +00:00
}
2021-09-12 21:08:06 +00:00
else
snprintf(dirpath, sizeof dirpath, "%s", path);
// Check if the path is a directory.
// Will return -1 if there was an error.
stat = pathisdirectory(dirpath);
if (stat == 0)
return 0;
else if (stat < 0)
2021-03-23 02:56:55 +00:00
{
2021-09-12 21:08:06 +00:00
// The path doesn't exist, so it can't be a directory.
if (direrror == ENOENT)
return 0;
return -1;
2021-03-23 02:56:55 +00:00
}
2021-09-12 21:08:06 +00:00
// Open the directory.
// Will return 0 if it couldn't be opened.
dirhandle = opendir(dirpath);
2021-03-23 02:56:55 +00:00
if (dirhandle == NULL)
2021-09-12 21:08:06 +00:00
return 0;
2021-03-23 02:56:55 +00:00
else
closedir(dirhandle);
2021-09-12 21:08:06 +00:00
return 1;
2021-03-23 02:56:55 +00:00
}
2021-09-12 21:08:06 +00:00
// Checks if two paths are the same. Returns 1 if so, and 0 if not.
// Returns -1 if an error occurred with the first path,
// and returns -2 if an error occurred with the second path.
// direrror is set if there was an error.
2021-03-23 02:56:55 +00:00
INT32 samepaths(const char *path1, const char *path2)
{
struct stat stat1;
struct stat stat2;
if (stat(path1, &stat1) < 0)
2021-09-12 21:08:06 +00:00
{
#ifndef AVOID_ERRNO
direrror = errno;
#endif
2021-03-23 02:56:55 +00:00
return -1;
2021-09-12 21:08:06 +00:00
}
2021-03-23 02:56:55 +00:00
if (stat(path2, &stat2) < 0)
2021-09-12 21:08:06 +00:00
{
#ifndef AVOID_ERRNO
direrror = errno;
#endif
return -2;
}
2021-03-23 02:56:55 +00:00
if (stat1.st_dev == stat2.st_dev)
{
#if !defined(_WIN32)
return (stat1.st_ino == stat2.st_ino);
#else
2021-09-12 21:08:06 +00:00
// The above doesn't work on NTFS or FAT.
2021-03-23 02:56:55 +00:00
HANDLE file1 = CreateFileA(path1, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
HANDLE file2 = CreateFileA(path2, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
BY_HANDLE_FILE_INFORMATION file1info, file2info;
2021-09-12 21:08:06 +00:00
if (file1 == INVALID_HANDLE_VALUE)
2021-03-23 02:56:55 +00:00
{
2021-09-12 21:08:06 +00:00
#ifndef AVOID_ERRNO
direrror = ENOENT;
#endif
return -1;
}
else if (file2 == INVALID_HANDLE_VALUE)
{
CloseHandle(file1);
#ifndef AVOID_ERRNO
direrror = ENOENT;
#endif
return -2;
2021-03-23 02:56:55 +00:00
}
2021-09-12 21:08:06 +00:00
// I have no idea why GetFileInformationByHandle would fail.
// Microsoft's documentation doesn't tell me.
// I'll just use EIO...
if (!GetFileInformationByHandle(file1, &file1info))
{
#ifndef AVOID_ERRNO
direrror = EIO;
#endif
return -1;
}
else if (!GetFileInformationByHandle(file2, &file2info))
{
2021-03-23 02:56:55 +00:00
CloseHandle(file1);
CloseHandle(file2);
2021-09-12 21:08:06 +00:00
#ifndef AVOID_ERRNO
direrror = EIO;
#endif
return -2;
}
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
if (file1info.dwVolumeSerialNumber == file2info.dwVolumeSerialNumber
&& file1info.nFileIndexLow == file2info.nFileIndexLow
&& file1info.nFileIndexHigh == file2info.nFileIndexHigh)
{
CloseHandle(file1);
CloseHandle(file2);
return 1;
}
return 0;
2021-03-23 02:56:55 +00:00
#endif
}
2021-09-12 21:08:06 +00:00
return 0;
2021-03-23 02:56:55 +00:00
}
//
2021-09-12 21:08:06 +00:00
// Directory loading
2021-03-23 02:56:55 +00:00
//
2021-09-12 21:08:06 +00:00
static void initdirpath(char *dirpath, size_t *dirpathindex, int depthleft)
2021-03-23 02:56:55 +00:00
{
2021-09-12 21:08:06 +00:00
dirpathindex[depthleft] = strlen(dirpath) + 1;
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
if (dirpath[dirpathindex[depthleft]-2] != PATHSEP[0])
2021-03-23 02:56:55 +00:00
{
2021-09-12 21:08:06 +00:00
dirpath[dirpathindex[depthleft]-1] = PATHSEP[0];
dirpath[dirpathindex[depthleft]] = 0;
2021-03-23 02:56:55 +00:00
}
else
2021-09-12 21:08:06 +00:00
dirpathindex[depthleft]--;
2021-03-23 02:56:55 +00:00
}
2021-09-12 21:08:06 +00:00
lumpinfo_t *getdirectoryfiles(const char *path, UINT16 *nlmp, UINT16 *nfolders)
2021-03-23 02:56:55 +00:00
{
DIR **dirhandle;
struct dirent *dent;
struct stat fsstat;
2021-09-12 21:08:06 +00:00
int rootdir = (maxdirdepth - 1);
int depthleft = rootdir;
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
char dirpath[dirpathlen];
size_t *dirpathindex;
2021-03-23 02:56:55 +00:00
lumpinfo_t *lumpinfo, *lump_p;
2021-09-12 21:08:06 +00:00
UINT16 i = 0, numlumps = 0;
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
boolean failure = false;
dirhandle = (DIR **)malloc(maxdirdepth * sizeof (DIR*));
dirpathindex = (size_t *)malloc(maxdirdepth * sizeof(size_t));
2021-03-23 02:56:55 +00:00
// Open the root directory
2021-09-12 21:08:06 +00:00
strlcpy(dirpath, path, dirpathlen);
dirhandle[depthleft] = opendir(dirpath);
2021-03-23 02:56:55 +00:00
if (dirhandle[depthleft] == NULL)
{
free(dirhandle);
2021-09-12 21:08:06 +00:00
free(dirpathindex);
2021-03-23 02:56:55 +00:00
return NULL;
}
2021-09-12 21:08:06 +00:00
initdirpath(dirpath, dirpathindex, depthleft);
2021-03-23 02:56:55 +00:00
(*nfolders) = 0;
// Count files and directories
2021-09-12 21:08:06 +00:00
while (depthleft < maxdirdepth)
2021-03-23 02:56:55 +00:00
{
2021-09-12 21:08:06 +00:00
dirpath[dirpathindex[depthleft]] = 0;
2021-03-23 02:56:55 +00:00
dent = readdir(dirhandle[depthleft]);
if (!dent)
{
2021-09-12 21:08:06 +00:00
if (depthleft != rootdir) // Don't close the root directory
2021-03-23 02:56:55 +00:00
closedir(dirhandle[depthleft]);
depthleft++;
continue;
}
else if (isuptree(dent->d_name))
continue;
2021-09-12 21:08:06 +00:00
strcpy(&dirpath[dirpathindex[depthleft]], dent->d_name);
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
if (stat(dirpath, &fsstat) < 0)
2021-03-23 02:56:55 +00:00
;
else if (S_ISDIR(fsstat.st_mode) && depthleft)
{
2021-09-12 21:08:06 +00:00
dirpathindex[--depthleft] = strlen(dirpath) + 1;
dirhandle[depthleft] = opendir(dirpath);
2021-03-23 02:56:55 +00:00
if (dirhandle[depthleft])
(*nfolders)++;
else
depthleft++;
2021-09-12 21:08:06 +00:00
dirpath[dirpathindex[depthleft]-1] = '/';
dirpath[dirpathindex[depthleft]] = 0;
2021-03-23 02:56:55 +00:00
}
else
numlumps++;
2021-09-12 21:08:06 +00:00
// Failure: Too many files.
if (numlumps == UINT16_MAX)
{
(*nlmp) = UINT16_MAX;
failure = true;
2021-03-23 02:56:55 +00:00
break;
2021-09-12 21:08:06 +00:00
}
2021-03-23 02:56:55 +00:00
}
// Failure: No files have been found.
2021-09-12 21:08:06 +00:00
if (!numlumps)
2021-03-23 02:56:55 +00:00
{
2021-09-12 21:08:06 +00:00
(*nlmp) = 0;
failure = true;
}
// Close any open directories and return if something went wrong.
if (failure)
{
2022-08-11 07:30:03 +00:00
for (; depthleft < maxdirdepth; closedir(dirhandle[depthleft++]));
2021-09-12 21:08:06 +00:00
free(dirpathindex);
2021-03-23 02:56:55 +00:00
free(dirhandle);
return NULL;
}
// Create the files and directories as lump entries
// It's possible to create lumps and count files at the same time,
2021-09-12 21:08:06 +00:00
// but I didn't want to have to reallocate memory for every lump.
rewinddir(dirhandle[rootdir]);
depthleft = rootdir;
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
strlcpy(dirpath, path, dirpathlen);
initdirpath(dirpath, dirpathindex, depthleft);
2021-03-23 02:56:55 +00:00
lump_p = lumpinfo = Z_Calloc(numlumps * sizeof(lumpinfo_t), PU_STATIC, NULL);
2021-09-12 21:08:06 +00:00
while (depthleft < maxdirdepth)
2021-03-23 02:56:55 +00:00
{
char *fullname, *trimname;
2021-09-12 21:08:06 +00:00
dirpath[dirpathindex[depthleft]] = 0;
2021-03-23 02:56:55 +00:00
dent = readdir(dirhandle[depthleft]);
if (!dent)
{
closedir(dirhandle[depthleft++]);
continue;
}
else if (isuptree(dent->d_name))
continue;
2021-09-12 21:08:06 +00:00
strcpy(&dirpath[dirpathindex[depthleft]], dent->d_name);
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
if (stat(dirpath, &fsstat) < 0)
2021-03-23 02:56:55 +00:00
continue;
else if (S_ISDIR(fsstat.st_mode) && depthleft)
{
2021-09-12 21:08:06 +00:00
dirpathindex[--depthleft] = strlen(dirpath) + 1;
dirhandle[depthleft] = opendir(dirpath);
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
if (dirhandle[depthleft])
2021-03-23 02:56:55 +00:00
{
2021-09-12 21:08:06 +00:00
dirpath[dirpathindex[depthleft]-1] = '/';
dirpath[dirpathindex[depthleft]] = 0;
2021-03-23 02:56:55 +00:00
}
2021-09-12 21:08:06 +00:00
else
depthleft++;
2021-03-23 02:56:55 +00:00
2021-09-12 21:08:06 +00:00
continue;
2021-03-23 02:56:55 +00:00
}
2021-09-12 21:08:06 +00:00
lump_p->diskpath = Z_StrDup(dirpath); // Path in the filesystem to the file
2021-03-23 02:56:55 +00:00
lump_p->compression = CM_NOCOMPRESSION; // Lump is uncompressed
2021-09-12 21:08:06 +00:00
// Remove the directory's path.
2021-03-23 02:56:55 +00:00
fullname = lump_p->diskpath;
if (strstr(fullname, path))
fullname += strlen(path) + 1;
// Get the 8-character long lump name.
trimname = strrchr(fullname, '/');
if (trimname)
trimname++;
else
trimname = fullname;
if (trimname[0])
{
char *dotpos = strrchr(trimname, '.');
if (dotpos == NULL)
dotpos = fullname + strlen(fullname);
strncpy(lump_p->name, trimname, min(8, dotpos - trimname));
// The name of the file, without the extension.
lump_p->longname = Z_Calloc(dotpos - trimname + 1, PU_STATIC, NULL);
strlcpy(lump_p->longname, trimname, dotpos - trimname + 1);
}
else
lump_p->longname = Z_Calloc(1, PU_STATIC, NULL);
// The complete name of the file, with its extension,
2021-09-12 21:08:06 +00:00
// excluding the path of the directory where it resides.
2021-03-23 02:56:55 +00:00
lump_p->fullname = Z_StrDup(fullname);
lump_p++;
i++;
if (i > numlumps || i == (UINT16_MAX-1))
{
2021-09-12 21:08:06 +00:00
for (; depthleft < maxdirdepth; closedir(dirhandle[depthleft++])); // Close any open directories.
2021-03-23 02:56:55 +00:00
break;
}
}
2021-09-12 21:08:06 +00:00
free(dirpathindex);
2021-03-23 02:56:55 +00:00
free(dirhandle);
(*nlmp) = numlumps;
return lumpinfo;
}
//
// Addons menu
//
char exttable[NUM_EXT_TABLE][7] = { // maximum extension length (currently 4) plus 3 (null terminator, stop, and length including previous two)
"\5.txt", "\5.cfg", // exec
"\5.wad",
#ifdef USE_KART
"\6.kart",
#endif
"\5.pk3", "\5.soc", "\5.lua"}; // addfile
2021-12-02 22:50:44 +00:00
static char (*filenamebuf)[MAX_WADPATH];
static boolean filemenucmp(char *haystack, char *needle)
{
static char localhaystack[128];
strlcpy(localhaystack, haystack, 128);
if (!cv_addons_search_case.value)
strupr(localhaystack);
if (cv_addons_search_type.value)
return (strstr(localhaystack, needle) != 0);
return (!strncmp(localhaystack, needle, menusearch[0]));
}
void closefilemenu(boolean validsize)
{
// search
if (dirmenu)
{
if (dirmenu != coredirmenu)
{
if (dirmenu[0] && ((UINT8)(dirmenu[0][DIR_TYPE]) == EXT_NORESULTS))
{
Z_Free(dirmenu[0]);
dirmenu[0] = NULL;
}
Z_Free(dirmenu);
}
dirmenu = NULL;
sizedirmenu = 0;
}
if (coredirmenu)
{
// core
if (validsize)
{
for (; sizecoredirmenu > 0; sizecoredirmenu--)
{
Z_Free(coredirmenu[sizecoredirmenu-1]);
coredirmenu[sizecoredirmenu-1] = NULL;
}
}
else
sizecoredirmenu = 0;
Z_Free(coredirmenu);
coredirmenu = NULL;
}
if (refreshdirname)
Z_Free(refreshdirname);
refreshdirname = NULL;
}
void searchfilemenu(char *tempname)
{
size_t i, first;
char localmenusearch[MAXSTRINGLENGTH] = "";
if (dirmenu)
{
if (dirmenu != coredirmenu)
{
if (dirmenu[0] && ((UINT8)(dirmenu[0][DIR_TYPE]) == EXT_NORESULTS))
{
Z_Free(dirmenu[0]);
dirmenu[0] = NULL;
}
//Z_Free(dirmenu); -- Z_Realloc later tho...
}
else
dirmenu = NULL;
}
first = (((UINT8)(coredirmenu[0][DIR_TYPE]) == EXT_UP) ? 1 : 0); // skip UP...
if (!menusearch[0])
{
if (dirmenu)
Z_Free(dirmenu);
dirmenu = coredirmenu;
sizedirmenu = sizecoredirmenu;
if (tempname)
{
for (i = first; i < sizedirmenu; i++)
{
if (!strcmp(dirmenu[i]+DIR_STRING, tempname))
{
dir_on[menudepthleft] = i;
break;
}
}
if (i == sizedirmenu)
dir_on[menudepthleft] = first;
Z_Free(tempname);
}
return;
}
strcpy(localmenusearch, menusearch+1);
if (!cv_addons_search_case.value)
strupr(localmenusearch);
sizedirmenu = 0;
for (i = first; i < sizecoredirmenu; i++)
{
if (filemenucmp(coredirmenu[i]+DIR_STRING, localmenusearch))
sizedirmenu++;
}
if (!sizedirmenu) // no results...
{
if ((!(dirmenu = Z_Realloc(dirmenu, sizeof(char *), PU_STATIC, NULL)))
|| !(dirmenu[0] = Z_StrDup(va("%c\13No results...", EXT_NORESULTS))))
I_Error("searchfilemenu(): could not create \"No results...\".");
sizedirmenu = 1;
dir_on[menudepthleft] = 0;
if (tempname)
Z_Free(tempname);
return;
}
if (!(dirmenu = Z_Realloc(dirmenu, sizedirmenu*sizeof(char *), PU_STATIC, NULL)))
I_Error("searchfilemenu(): could not reallocate dirmenu.");
sizedirmenu = 0;
for (i = first; i < sizecoredirmenu; i++)
{
if (filemenucmp(coredirmenu[i]+DIR_STRING, localmenusearch))
{
if (tempname && !strcmp(coredirmenu[i]+DIR_STRING, tempname))
{
dir_on[menudepthleft] = sizedirmenu;
Z_Free(tempname);
tempname = NULL;
}
dirmenu[sizedirmenu++] = coredirmenu[i]; // pointer reuse
}
}
if (tempname)
{
dir_on[menudepthleft] = 0; //first; -- can't be first, causes problems
Z_Free(tempname);
}
}
boolean preparefilemenu(boolean samedepth)
{
DIR *dirhandle;
struct dirent *dent;
struct stat fsstat;
size_t pos = 0, folderpos = 0, numfolders = 0;
char *tempname = NULL;
if (samedepth)
{
if (dirmenu && dirmenu[dir_on[menudepthleft]])
tempname = Z_StrDup(dirmenu[dir_on[menudepthleft]]+DIR_STRING); // don't need to I_Error if can't make - not important, just QoL
}
else
menusearch[0] = menusearch[1] = 0; // clear search
if (!(dirhandle = opendir(menupath))) // get directory
{
closefilemenu(true);
return false;
}
for (; sizecoredirmenu > 0; sizecoredirmenu--) // clear out existing items
{
Z_Free(coredirmenu[sizecoredirmenu-1]);
coredirmenu[sizecoredirmenu-1] = NULL;
}
while (true)
{
menupath[menupathindex[menudepthleft]] = 0;
dent = readdir(dirhandle);
if (!dent)
break;
2021-03-23 02:56:55 +00:00
else if (isuptree(dent->d_name))
continue; // we don't want to scan uptree
strcpy(&menupath[menupathindex[menudepthleft]],dent->d_name);
if (stat(menupath,&fsstat) < 0) // do we want to follow symlinks? if not: change it to lstat
; // was the file (re)moved? can't stat it
else // is a file or directory
{
if (!S_ISDIR(fsstat.st_mode)) // file
{
if (!cv_addons_showall.value)
{
size_t len = strlen(dent->d_name)+1;
UINT8 ext;
for (ext = 0; ext < NUM_EXT_TABLE; ext++)
if (!strcasecmp(exttable[ext]+1, dent->d_name+len-(exttable[ext][0]))) break; // extension comparison
if (ext == NUM_EXT_TABLE) continue; // not an addfile-able (or exec-able) file
}
}
else // directory
numfolders++;
sizecoredirmenu++;
}
}
if (!sizecoredirmenu)
{
closedir(dirhandle);
closefilemenu(false);
if (tempname)
Z_Free(tempname);
return false;
}
if (menudepthleft != menudepth-1) // Make room for UP...
{
sizecoredirmenu++;
numfolders++;
folderpos++;
}
if (dirmenu && dirmenu == coredirmenu)
dirmenu = NULL;
if (!(coredirmenu = Z_Realloc(coredirmenu, sizecoredirmenu*sizeof(char *), PU_STATIC, NULL)))
{
closedir(dirhandle); // just in case
I_Error("preparefilemenu(): could not reallocate coredirmenu.");
}
rewinddir(dirhandle);
while ((pos+folderpos) < sizecoredirmenu)
{
menupath[menupathindex[menudepthleft]] = 0;
dent = readdir(dirhandle);
if (!dent)
break;
2021-03-23 02:56:55 +00:00
else if (isuptree(dent->d_name))
continue; // we don't want to scan uptree
strcpy(&menupath[menupathindex[menudepthleft]],dent->d_name);
if (stat(menupath,&fsstat) < 0) // do we want to follow symlinks? if not: change it to lstat
; // was the file (re)moved? can't stat it
else // is a file or directory
{
char *temp;
size_t len = strlen(dent->d_name)+1;
UINT8 ext = EXT_FOLDER;
UINT8 folder;
if (!S_ISDIR(fsstat.st_mode)) // file
{
if (!((numfolders+pos) < sizecoredirmenu)) continue; // crash prevention
for (; ext < NUM_EXT_TABLE; ext++)
if (!strcasecmp(exttable[ext]+1, dent->d_name+len-(exttable[ext][0]))) break; // extension comparison
if (ext == NUM_EXT_TABLE && !cv_addons_showall.value) continue; // not an addfile-able (or exec-able) file
ext += EXT_START; // moving to be appropriate position
if (ext >= EXT_LOADSTART)
{
size_t i;
2021-12-02 22:50:44 +00:00
if (filenamebuf == NULL)
filenamebuf = calloc(sizeof(char) * MAX_WADPATH, numwadfiles);
for (i = 0; i < numwadfiles; i++)
{
if (!filenamebuf[i][0])
{
strncpy(filenamebuf[i], wadfiles[i]->filename, MAX_WADPATH);
filenamebuf[i][MAX_WADPATH - 1] = '\0';
nameonly(filenamebuf[i]);
}
if (strcmp(dent->d_name, filenamebuf[i]))
continue;
if (cv_addons_md5.value && !checkfilemd5(menupath, wadfiles[i]->md5sum))
continue;
ext |= EXT_LOADED;
}
}
else if (ext == EXT_TXT)
{
2019-09-20 16:43:41 +00:00
if (!strncmp(dent->d_name, "log-", 4) || !strcmp(dent->d_name, "errorlog.txt"))
ext |= EXT_LOADED;
}
2017-05-09 16:05:39 +00:00
if (!strcmp(dent->d_name, configfile))
ext |= EXT_LOADED;
folder = 0;
}
else // directory
len += (folder = 1);
if (len > 255)
len = 255;
if (!(temp = Z_Malloc((len+DIR_STRING+folder) * sizeof (char), PU_STATIC, NULL)))
I_Error("preparefilemenu(): could not create file entry.");
temp[DIR_TYPE] = ext;
temp[DIR_LEN] = (UINT8)(len);
strlcpy(temp+DIR_STRING, dent->d_name, len);
if (folder)
{
strcpy(temp+len, PATHSEP);
coredirmenu[folderpos++] = temp;
}
else
coredirmenu[numfolders + pos++] = temp;
}
}
2021-12-02 22:50:44 +00:00
if (filenamebuf)
{
free(filenamebuf);
filenamebuf = NULL;
}
closedir(dirhandle);
if ((menudepthleft != menudepth-1) // now for UP... entry
&& !(coredirmenu[0] = Z_StrDup(va("%c\5UP...", EXT_UP))))
I_Error("preparefilemenu(): could not create \"UP...\".");
menupath[menupathindex[menudepthleft]] = 0;
sizecoredirmenu = (numfolders+pos); // just in case things shrink between opening and rewind
if (!sizecoredirmenu)
{
dir_on[menudepthleft] = 0;
closefilemenu(false);
return false;
}
searchfilemenu(tempname);
return true;
}