OpenTTD Source  20241108-master-g80f628063a
fileio_func.h File Reference

Functions for Standard In/Out file operations. More...

#include "core/enum_type.hpp"
#include "fileio_type.h"

Go to the source code of this file.

Data Structures

class  FileScanner
 Helper for scanning for files with a given name. More...
 
class  TarScanner
 Helper for scanning for files with tar as extension. More...
 

Functions

std::optional< FileHandleFioFOpenFile (const std::string &filename, const char *mode, Subdirectory subdir, size_t *filesize=nullptr)
 Opens a OpenTTD file somewhere in a personal or global directory. More...
 
bool FioCheckFileExists (const std::string &filename, Subdirectory subdir)
 Check whether the given file 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)
 
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...
 
const char * FiosGetScreenshotDir ()
 Get the directory for screenshots. More...
 
void SanitizeFilename (std::string &filename)
 Sanitizes a filename, i.e. More...
 
void AppendPathSeparator (std::string &buf)
 Appends, if necessary, the path separator character to the end of the string. 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...
 
std::unique_ptr< char[]> ReadFileToMem (const std::string &filename, size_t &lenp, size_t maxsize)
 Load a file into memory. More...
 
bool FileExists (const std::string &filename)
 Test whether the given filename exists. 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...
 

Variables

std::string _personal_dir
 custom directory for personal settings, saves, newgrf, etc.
 
std::vector< Searchpath_valid_searchpaths
 

Detailed Description

Functions for Standard In/Out file operations.

Definition in file fileio_func.h.

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().

◆ 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().

◆ 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 
)

◆ 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().

◆ FiosGetScreenshotDir()

const char* FiosGetScreenshotDir ( )

Get the directory for screenshots.

Returns
path to screenshots

Definition at line 602 of file fios.cpp.

Referenced by NewGRFProfiler::GetOutputFilename().

◆ 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.