OpenTTD Source  20240919-master-gdf0233f4c2
fileio.cpp File Reference
#include "stdafx.h"
#include "fileio_func.h"
#include "spriteloader/spriteloader.hpp"
#include "debug.h"
#include "fios.h"
#include "string_func.h"
#include "tar_type.h"
#include <unistd.h>
#include <pwd.h>
#include <charconv>
#include <sys/stat.h>
#include <sstream>
#include <filesystem>
#include "safeguards.h"

Go to the source code of this file.

Functions

static bool IsValidSearchPath (Searchpath sp)
 Checks whether the given search path is a valid search path. More...
 
static void FillValidSearchPaths (bool only_local_path)
 
bool FioCheckFileExists (const std::string &filename, Subdirectory subdir)
 Check whether the given file exists. More...
 
bool FileExists (const std::string &filename)
 Test whether the given filename exists. More...
 
std::string FioFindFullPath (Subdirectory subdir, const std::string &filename)
 Find a path to the filename in one of the search directories. More...
 
std::string FioGetDirectory (Searchpath sp, Subdirectory subdir)
 
std::string FioFindDirectory (Subdirectory subdir)
 
static std::optional< FileHandleFioFOpenFileSp (const std::string &filename, const char *mode, Searchpath sp, Subdirectory subdir, size_t *filesize)
 
static std::optional< FileHandleFioFOpenFileTar (const TarFileListEntry &entry, size_t *filesize)
 Opens a file from inside a tar archive. More...
 
std::optional< FileHandleFioFOpenFile (const std::string &filename, const char *mode, Subdirectory subdir, size_t *filesize)
 Opens a OpenTTD file somewhere in a personal or global directory. More...
 
void FioCreateDirectory (const std::string &name)
 Create a directory with the given name If the parent directory does not exist, it will try to create that as well. More...
 
bool FioRemove (const std::string &filename)
 Remove a file. More...
 
void AppendPathSeparator (std::string &buf)
 Appends, if necessary, the path separator character to the end of the string. More...
 
static void SimplifyFileName (std::string &name)
 Simplify filenames from tars. More...
 
static std::string ExtractString (std::span< char > buffer)
 Helper to extract a string for the tar header. More...
 
bool ExtractTar (const std::string &tar_filename, Subdirectory subdir)
 Extract the tar with the given filename in the directory where the tar resides. More...
 
static bool ChangeWorkingDirectoryToExecutable (const char *exe)
 Changes the working directory to the path of the give executable. More...
 
bool DoScanWorkingDirectory ()
 Whether we should scan the working directory. More...
 
static std::string GetHomeDir ()
 Gets the home directory of the user. More...
 
void DetermineBasePaths (const char *exe)
 Determine the base (personal dir and game data dir) paths. More...
 
void DeterminePaths (const char *exe, bool only_local_path)
 Acquire the base paths (personal dir and game data dir), fill all other paths (save dir, autosave dir etc) and make the save and scenario directories. More...
 
void SanitizeFilename (std::string &filename)
 Sanitizes a filename, i.e. More...
 
std::unique_ptr< char[]> ReadFileToMem (const std::string &filename, size_t &lenp, size_t maxsize)
 Load a file into memory. More...
 
static bool MatchesExtension (std::string_view extension, const std::string &filename)
 Helper to see whether a given filename matches the extension. More...
 
static uint ScanPath (FileScanner *fs, std::string_view extension, const std::filesystem::path &path, size_t basepath_length, bool recursive)
 Scan a single directory (and recursively its children) and add any graphics sets that are found. More...
 
static uint ScanTar (FileScanner *fs, std::string_view extension, const TarFileList::value_type &tar)
 Scan the given tar and add graphics sets when it finds one. More...
 

Variables

static bool _do_scan_working_directory = true
 Whether the working directory should be scanned.
 
std::string _config_file
 Configuration file of OpenTTD.
 
std::string _highscore_file
 The file to store the highscore data in.
 
static const char *const _subdirs []
 
std::array< std::string, NUM_SEARCHPATHS > _searchpaths
 The search paths OpenTTD could search through. More...
 
std::vector< Searchpath_valid_searchpaths
 
std::array< TarList, NUM_SUBDIRS_tar_list
 
TarFileList _tar_filelist [NUM_SUBDIRS]
 
std::string _personal_dir
 custom directory for personal settings, saves, newgrf, etc.
 

Detailed Description

Standard In/Out file operations

Definition in file fileio.cpp.

Function Documentation

◆ AppendPathSeparator()

void AppendPathSeparator ( std::string &  buf)

Appends, if necessary, the path separator character to the end of the string.

It does not add the path separator to zero-sized strings.

Parameters
bufstring to append the separator to
Returns
true iff the operation succeeded

Definition at line 346 of file fileio.cpp.

Referenced by FileScanner::Scan().

◆ ChangeWorkingDirectoryToExecutable()

static bool ChangeWorkingDirectoryToExecutable ( const char *  exe)
static

Changes the working directory to the path of the give executable.

For OSX application bundles '.app' is the required extension of the bundle, so when we crop the path to there, when can remove the name of the bundle in the same way we remove the name from the executable name.

Parameters
exethe path to the executable

Definition at line 672 of file fileio.cpp.

References StrEqualsIgnoreCase().

◆ DetermineBasePaths()

void DetermineBasePaths ( const char *  exe)

Determine the base (personal dir and game data dir) paths.

Parameters
exethe path to the executable

Definition at line 750 of file fileio.cpp.

References GetHomeDir().

Referenced by DeterminePaths().

◆ DeterminePaths()

void DeterminePaths ( const char *  exe,
bool  only_local_path 
)

Acquire the base paths (personal dir and game data dir), fill all other paths (save dir, autosave dir etc) and make the save and scenario directories.

Parameters
exethe path from the current path to the executable
only_local_pathWhether we shouldn't fill searchpaths with global folders.

Definition at line 878 of file fileio.cpp.

References DetermineBasePaths().

◆ DoScanWorkingDirectory()

bool DoScanWorkingDirectory ( )

Whether we should scan the working directory.

It should not be scanned if it's the root or the home directory as in both cases a big data directory can cause huge amounts of unrelated files scanned. Furthermore there are nearly no use cases for the home/root directory to have OpenTTD directories.

Returns
true if it should be scanned.

Definition at line 708 of file fileio.cpp.

References _searchpaths, and SP_WORKING_DIR.

◆ ExtractString()

static std::string ExtractString ( std::span< char >  buffer)
static

Helper to extract a string for the tar header.

We must assume that the tar header contains garbage and is malicious. So, we cannot rely on the string being properly terminated. As such, do not use strlen to determine the actual length (explicitly or implictly via the std::string constructor), but pass the buffer bounds explicitly.

Parameters
bufferThe buffer to read from.
Returns
The string data.

Definition at line 433 of file fileio.cpp.

References StrMakeValid().

◆ ExtractTar()

bool ExtractTar ( const std::string &  tar_filename,
Subdirectory  subdir 
)

Extract the tar with the given filename in the directory where the tar resides.

Parameters
tar_filenamethe name of the tar to extract.
subdirThe sub directory the tar is in.
Returns
false on failure.

Definition at line 590 of file fileio.cpp.

◆ FileExists()

bool FileExists ( const std::string &  filename)

Test whether the given filename exists.

Parameters
filenamethe file to test.
Returns
true if and only if the file exists.

Definition at line 132 of file fileio.cpp.

References OTTD2FS().

Referenced by NetworkHTTPInitialize().

◆ FioCheckFileExists()

bool FioCheckFileExists ( const std::string &  filename,
Subdirectory  subdir 
)

Check whether the given file exists.

Parameters
filenamethe file to try for existence.
subdirthe subdirectory to look in
Returns
true if and only if the file can be opened

Definition at line 121 of file fileio.cpp.

References FioFOpenFile().

Referenced by FillGRFDetails(), GetMusicCatEntryData(), GetMusicCatEntryName(), GRFLoadConfig(), and SaveLoadWindow::OnTimeout().

◆ FioCreateDirectory()

void FioCreateDirectory ( const std::string &  name)

Create a directory with the given name If the parent directory does not exist, it will try to create that as well.

Parameters
namethe new name of the directory

Definition at line 316 of file fileio.cpp.

References OTTD2FS().

◆ FioFindFullPath()

std::string FioFindFullPath ( Subdirectory  subdir,
const std::string &  filename 
)

Find a path to the filename in one of the search directories.

Parameters
subdirSubdirectory to try.
filenameFilename to look for.
Returns
String containing the path if the path was found, else an empty string.

Definition at line 144 of file fileio.cpp.

References NUM_SUBDIRS.

Referenced by GetDefaultTruetypeFontFile(), MidiFile::GetSMFFile(), DriverFactoryBase::MarkVideoDriverOperational(), and DriverFactoryBase::SelectDriverImpl().

◆ FioFOpenFile()

std::optional<FileHandle> FioFOpenFile ( const std::string &  filename,
const char *  mode,
Subdirectory  subdir,
size_t *  filesize 
)

◆ FioFOpenFileTar()

static std::optional<FileHandle> FioFOpenFileTar ( const TarFileListEntry entry,
size_t *  filesize 
)
static

Opens a file from inside a tar archive.

Parameters
entryThe entry to open.
[out]filesizeIf not nullptr, size of the opened file.
Returns
File handle of the opened file, or nullptr if the file is not available.
Note
The file is read from within the tar file, and may not return EOF after reading the whole file.

Definition at line 223 of file fileio.cpp.

References FileHandle::Open().

◆ FioRemove()

bool FioRemove ( const std::string &  filename)

Remove a file.

Parameters
filenameFilename to remove.
Returns
true iff the file was removed.

Definition at line 328 of file fileio.cpp.

References Debug, and OTTD2FS().

Referenced by ClientNetworkContentSocketHandler::AfterDownload(), FiosDelete(), DriverFactoryBase::MarkVideoDriverOperational(), and DriverFactoryBase::SelectDriverImpl().

◆ GetHomeDir()

static std::string GetHomeDir ( )
static

Gets the home directory of the user.

May return an empty string in the unlikely scenario that the home directory cannot be found.

Returns
User's home directory

Definition at line 730 of file fileio.cpp.

Referenced by DetermineBasePaths().

◆ IsValidSearchPath()

static bool IsValidSearchPath ( Searchpath  sp)
static

Checks whether the given search path is a valid search path.

Parameters
spthe search path to check
Returns
true if the search path is valid

Definition at line 75 of file fileio.cpp.

References _searchpaths.

◆ MatchesExtension()

static bool MatchesExtension ( std::string_view  extension,
const std::string &  filename 
)
static

Helper to see whether a given filename matches the extension.

Parameters
extensionThe extension to look for.
filenameThe filename to look in for the extension.
Returns
True iff the extension is nullptr, or the filename ends with it.

Definition at line 1050 of file fileio.cpp.

References StrCompareIgnoreCase().

Referenced by ScanPath(), and ScanTar().

◆ ReadFileToMem()

std::unique_ptr<char[]> ReadFileToMem ( const std::string &  filename,
size_t &  lenp,
size_t  maxsize 
)

Load a file into memory.

Parameters
filenameName of the file to load.
[out]lenpLength of loaded data.
maxsizeMaximum size to load.
Returns
Pointer to new memory containing the loaded data, or nullptr if loading failed.
Note
If maxsize less than the length of the file, loading fails.

Definition at line 1025 of file fileio.cpp.

References FileHandle::Open().

Referenced by ReadLanguagePack().

◆ SanitizeFilename()

void SanitizeFilename ( std::string &  filename)

Sanitizes a filename, i.e.

removes all illegal characters from it.

Parameters
filenamethe filename

Definition at line 1003 of file fileio.cpp.

◆ ScanPath()

static uint ScanPath ( FileScanner fs,
std::string_view  extension,
const std::filesystem::path &  path,
size_t  basepath_length,
bool  recursive 
)
static

Scan a single directory (and recursively its children) and add any graphics sets that are found.

Parameters
fsthe file scanner to add the files to
extensionthe extension of files to search for.
pathfull path we're currently at
basepath_lengthfrom where in the path are we 'based' on the search path
recursivewhether to recursively search the sub directories

Definition at line 1068 of file fileio.cpp.

References FileScanner::AddFile(), Debug, FS2OTTD(), and MatchesExtension().

Referenced by FileScanner::Scan().

◆ ScanTar()

static uint ScanTar ( FileScanner fs,
std::string_view  extension,
const TarFileList::value_type &  tar 
)
static

Scan the given tar and add graphics sets when it finds one.

Parameters
fsthe file scanner to scan for
extensionthe extension of files to search for.
tarthe tar to search in.

Definition at line 1096 of file fileio.cpp.

References FileScanner::AddFile(), and MatchesExtension().

◆ SimplifyFileName()

static void SimplifyFileName ( std::string &  name)
static

Simplify filenames from tars.

Replace '/' by #PATHSEPCHAR, and force 'name' to lowercase.

Parameters
nameFilename to process.

Definition at line 358 of file fileio.cpp.

Variable Documentation

◆ _searchpaths

std::array<std::string, NUM_SEARCHPATHS> _searchpaths

The search paths OpenTTD could search through.

At least one of the slots has to be filled with a path. An empty string tells that there is no such path for the current operating system.

Definition at line 57 of file fileio.cpp.

Referenced by DoScanWorkingDirectory(), and IsValidSearchPath().

◆ _subdirs

const char* const _subdirs[]
static
Initial value:
= {
"",
"save" PATHSEP,
"save" PATHSEP "autosave" PATHSEP,
"scenario" PATHSEP,
"scenario" PATHSEP "heightmap" PATHSEP,
"gm" PATHSEP,
"data" PATHSEP,
"baseset" PATHSEP,
"newgrf" PATHSEP,
"lang" PATHSEP,
"ai" PATHSEP,
"ai" PATHSEP "library" PATHSEP,
"game" PATHSEP,
"game" PATHSEP "library" PATHSEP,
"screenshot" PATHSEP,
"social_integration" PATHSEP,
}

Definition at line 39 of file fileio.cpp.