This group discusses the functions to handle files and directories. More...
Data Structures | |
struct | _Eina_File_Direct_Info |
The structure to store information of a path. More... | |
struct | _Eina_Stat |
The structure to store some file statistics. More... | |
struct | _Eina_File_Line |
The structure to store information of a line. More... | |
struct | _Eina_File |
This is the underlying data structure that represents a file in Eina. More... | |
struct | _Eina_File_Map |
This represents a memory mapped region of a file. More... | |
struct | _Eina_Lines_Iterator |
This represents a line iterator a file. More... | |
Macros | |
#define | EINA_PATH_MAX 8192 |
Definition for the constant defined as the highest value for PATH_MAX. | |
#define | EINA_PATH_SEP_C '/' |
The constant defined the path separator as the character '\' on Windows and '/' otherwise. More... | |
#define | EINA_PATH_SEP_S "/" |
The constant defined the path separator as the string "\" on Windows
and "/" otherwise. More... | |
#define | EINA_FILE_DIR_LIST_CB(function) ((Eina_File_Dir_List_Cb)function) |
The macro to cast to an Eina_File_Dir_List_Cb. More... | |
#define | EINA_LOG_COLOR_DEFAULT EINA_COLOR_CYAN |
Set the color for Eina log entries. | |
#define | ERR(...) EINA_LOG_DOM_ERR(_eina_file_log_dom, __VA_ARGS__) |
Macro for logging Eina errors. | |
#define | WRN(...) EINA_LOG_DOM_WARN(_eina_file_log_dom, __VA_ARGS__) |
Macro for logging Eina warnings. | |
#define | INF(...) EINA_LOG_DOM_INFO(_eina_file_log_dom, __VA_ARGS__) |
Macro for logging Eina info messages. | |
#define | DBG(...) EINA_LOG_DOM_DBG(_eina_file_log_dom, __VA_ARGS__) |
Macro for logging Eina debug messages. | |
Typedefs | |
typedef struct _Eina_File_Direct_Info | Eina_File_Direct_Info |
A type for _Eina_File_Direct_Info. | |
typedef struct _Eina_Stat | Eina_Stat |
A type for _Eina_Stat. More... | |
typedef struct _Eina_File_Line | Eina_File_Line |
A type for _Eina_File_Line. | |
typedef void(* | Eina_File_Dir_List_Cb) (const char *name, const char *path, void *data) |
Type for a callback to be called when iterating over the files of a directory. More... | |
typedef struct _Eina_File | Eina_File |
A file handle. | |
typedef Eina_Bool(* | Eina_File_Copy_Progress) (void *data, unsigned long long done, unsigned long long total) |
Type for a callback to report file copy progress. More... | |
typedef unsigned int | Eina_Statgen |
Stat Generation count state with it being 0 when disabled or some other value that is comparable (== or !=) to a stored value and if it is not equal, then do the actual stat i/o work. More... | |
typedef struct _Eina_File_Map | Eina_File_Map |
Type definition for an Eina File Map. | |
typedef struct _Eina_Lines_Iterator | Eina_Lines_Iterator |
Type definition for an Eina Lines Iterator. | |
Enumerations | |
enum | Eina_File_Type { EINA_FILE_UNKNOWN , EINA_FILE_FIFO , EINA_FILE_CHR , EINA_FILE_DIR , EINA_FILE_BLK , EINA_FILE_REG , EINA_FILE_LNK , EINA_FILE_SOCK , EINA_FILE_WHT } |
Type for enumeration of a file type. More... | |
enum | Eina_File_Populate { EINA_FILE_RANDOM , EINA_FILE_SEQUENTIAL , EINA_FILE_WILLNEED , EINA_FILE_POPULATE , EINA_FILE_DONTNEED , EINA_FILE_REMOVE } |
Type for enumeration of a file access type. More... | |
enum | Eina_File_Copy_Flags { EINA_FILE_COPY_DATA = 0 , EINA_FILE_COPY_PERMISSION = (1 << 0) , EINA_FILE_COPY_XATTR = (1 << 1) } |
Enumeration for a flag what to copy from file. | |
Functions | |
EINA_API Eina_Bool | eina_file_dir_list (const char *dir, Eina_Bool recursive, Eina_File_Dir_List_Cb cb, void *data) |
Lists all the files on the directory by calling the function for every file found. More... | |
EINA_API Eina_Array * | eina_file_split (char *path) |
Splits a path according to the delimiter of the filesystem. More... | |
EINA_API Eina_Iterator * | eina_file_ls (const char *dir) |
Gets an iterator to list the content of a directory. More... | |
EINA_API Eina_Iterator * | eina_file_stat_ls (const char *dir) |
Gets an iterator to list the content of a directory, with direct information. More... | |
EINA_API int | eina_file_statat (void *container, Eina_File_Direct_Info *info, Eina_Stat *buf) |
Uses information provided by Eina_Iterator of eina_file_stat_ls() or eina_file_direct_ls() to call stat in the most efficient way on your system. More... | |
EINA_API void | eina_file_close_from (int fd, int *except_fd) |
Close all file descriptors that are open at or above the given fd. More... | |
EINA_API int | eina_file_mkstemp (const char *templatename, Eina_Tmpstr **path) |
Generates and creates a uniquely named temporary file from a template name. More... | |
EINA_API Eina_Bool | eina_file_mkdtemp (const char *templatename, Eina_Tmpstr **path) |
Generates and creates a uniquely named temporary directory from a template name. More... | |
EINA_API Eina_Iterator * | eina_file_direct_ls (const char *dir) |
Gets an iterator to list the content of a directory, with direct information. More... | |
EINA_API char * | eina_file_path_sanitize (const char *path) |
Sanitizes the file path. More... | |
EINA_API Eina_Bool | eina_file_copy (const char *src, const char *dst, Eina_File_Copy_Flags flags, Eina_File_Copy_Progress cb, const void *cb_data) |
Copies one file to another using the fastest possible way and report progress. More... | |
EINA_API Eina_File * | eina_file_open (const char *name, Eina_Bool shared) |
Gets a read-only handler to a file. More... | |
EINA_API Eina_File * | eina_file_virtualize (const char *virtual_name, const void *data, unsigned long long length, Eina_Bool copy) |
Creates a virtual file from a memory pointer. More... | |
EINA_API Eina_Bool | eina_file_virtual (Eina_File *file) |
Tells if a file is a real file or only exists in memory. More... | |
EINA_API Eina_Bool | eina_file_refresh (Eina_File *file) |
Refreshes file information. More... | |
EINA_API Eina_File * | eina_file_dup (const Eina_File *file) |
Duplicates a read-only handler of a previously open file. More... | |
EINA_API void | eina_file_close (Eina_File *file) |
Unrefs the file handler. More... | |
EINA_API size_t | eina_file_size_get (const Eina_File *file) |
Gets the file size at open time. More... | |
EINA_API time_t | eina_file_mtime_get (const Eina_File *file) |
Gets the last modification time of an open file. More... | |
EINA_API const char * | eina_file_filename_get (const Eina_File *file) |
Gets the filename of an open file. More... | |
EINA_API Eina_Iterator * | eina_file_xattr_get (Eina_File *file) |
Gets the extended attribute of an open file. More... | |
EINA_API Eina_Iterator * | eina_file_xattr_value_get (Eina_File *file) |
Gets the extended attribute of an open file. More... | |
EINA_API void * | eina_file_map_all (Eina_File *file, Eina_File_Populate rule) |
Maps all the files to a buffer. More... | |
EINA_API void * | eina_file_map_new (Eina_File *file, Eina_File_Populate rule, unsigned long int offset, unsigned long int length) |
Maps a part of the file. More... | |
EINA_API void | eina_file_map_free (Eina_File *file, void *map) |
Unrefs and unmaps memory if possible. More... | |
EINA_API void | eina_file_map_populate (Eina_File *file, Eina_File_Populate rule, const void *map, unsigned long int offset, unsigned long int length) |
Asks the OS to populate or otherwise pages of memory in file mapping. More... | |
EINA_API Eina_Iterator * | eina_file_map_lines (Eina_File *file) |
Maps line by line in the memory efficiently using an Eina_Iterator. More... | |
EINA_API Eina_Bool | eina_file_map_faulted (Eina_File *file, void *map) |
Tells whether there has been an IO error during the life of a mmaped file. More... | |
static size_t | eina_file_path_join_len (char *dst, size_t size, const char *a, size_t a_len, const char *b, size_t b_len) |
Joins two paths of known length. More... | |
static size_t | eina_file_path_join (char *dst, size_t size, const char *a, const char *b) |
Joins two paths of known length. More... | |
EINA_API Eina_Bool | eina_file_unlink (const char *pathname) |
Unlinks file. More... | |
EINA_API Eina_Bool | eina_file_close_on_exec (int fd, Eina_Bool on) |
Make sure a file descriptor will be closed on exec. More... | |
EINA_API void | eina_file_statgen_next (void) |
Force the stat generation counter to tick over so any following i/o does real i/o and stat calls. More... | |
EINA_API Eina_Statgen | eina_file_statgen_get (void) |
Get the current stat generation counter value. More... | |
EINA_API void | eina_file_statgen_enable (void) |
Enable stat generation count optimiziing to only stat/do file i/o between generation counts changing. More... | |
EINA_API void | eina_file_statgen_disable (void) |
Disable stat generation count optimiziing to only stat/do file i/o between generation counts changing. More... | |
Eina_Bool | eina_file_path_relative (const char *path) |
Determines if a path is relative or absolute. More... | |
Eina_Tmpstr * | eina_file_current_directory_get (const char *path, size_t len) |
Gets the current directory and optionally appends a path to it. More... | |
char * | eina_file_cleanup (Eina_Tmpstr *path) |
Cleans up Eina after a file is no longer needed. More... | |
void | eina_file_clean_close (Eina_File *file) |
Closes and cleans up after an Eina file. More... | |
void | eina_file_real_close (Eina_File *file) |
Closes a file from the OS perspective. More... | |
void | eina_file_flush (Eina_File *file, unsigned long int length) |
Resets the internal housekeeping structures after a file has changed. More... | |
void | eina_file_common_map_free (Eina_File *file, void *map, void(*free_func)(Eina_File_Map *map)) |
Removes a mapped region from the file and frees the resources. More... | |
void * | eina_file_virtual_map_all (Eina_File *file) |
Map the entire contents of a virtual file to a buffer. More... | |
void * | eina_file_virtual_map_new (Eina_File *file, unsigned long int offset, unsigned long int length) |
Map a part of a virtual file to a buffer. More... | |
void | eina_file_virtual_map_free (Eina_File *file, void *map) |
Unref and unmap memory if possible. More... | |
unsigned int | eina_file_map_key_length (const void *key) |
Get the length of a map key. More... | |
int | eina_file_map_key_cmp (const unsigned long long int *key1, int key1_length, const unsigned long long int *key2, int key2_length) |
Compares two map keys. More... | |
int | eina_file_map_key_hash (const unsigned long long int *key, int key_length) |
Creates a hash from a map key. More... | |
Variables | |
Eina_Hash * | _eina_file_cache |
A pointer to the global Eina file cache. | |
Eina_Lock | _eina_file_lock_cache |
The global file lock cache. | |
int | _eina_file_log_dom |
The global Eina log file domain. | |
This group discusses the functions to handle files and directories.
Functions to handle files and directories.
These functions make it easier to do a number of file and directory operations such as getting the list of files in a directory, splitting paths, and finding out file size and type.
See an example here.
This module performs internal housekeeping and utility tasks for Eina_File. It also provides the underlying data types for things like file handles, file maps and file iterators.
#define EINA_PATH_SEP_C '/' |
The constant defined the path separator as the character '\' on Windows and '/' otherwise.
#define EINA_PATH_SEP_S "/" |
The constant defined the path separator as the string "\" on Windows and "/" otherwise.
#define EINA_FILE_DIR_LIST_CB | ( | function | ) | ((Eina_File_Dir_List_Cb)function) |
The macro to cast to an Eina_File_Dir_List_Cb.
This macro casts function
to Eina_File_Dir_List_Cb.
[in] | function | The function to cast |
A type for _Eina_Stat.
Eina_File_Dir_List_Cb |
Type for a callback to be called when iterating over the files of a directory.
[in] | name | The file name EXCLUDING the path |
[in] | path | The path passed to eina_file_dir_list() |
[in] | data | The data passed to eina_file_dir_list() |
Eina_File_Copy_Progress |
Type for a callback to report file copy progress.
This function is used to report progress during eina_file_copy(), where done
is the bytes already copied and size
is the total file size.
Stat Generation count state with it being 0 when disabled or some other value that is comparable (== or !=) to a stored value and if it is not equal, then do the actual stat i/o work.
enum Eina_File_Type |
Type for enumeration of a file type.
This type is used in Eina_File_Direct_Info.
enum Eina_File_Populate |
Type for enumeration of a file access type.
This type is used in Eina_File_Direct_Info.
EINA_API Eina_Bool eina_file_dir_list | ( | const char * | dir, |
Eina_Bool | recursive, | ||
Eina_File_Dir_List_Cb | cb, | ||
void * | data | ||
) |
Lists all the files on the directory by calling the function for every file found.
This function calls cb
for each file that is in dir
. To have cb
called on the files that are in subdirectories of dir
, recursive
should be EINA_TRUE. In other words, if recursive
is EINA_FALSE, only direct children of dir
are operated on, if recursive
is EINA_TRUE the entire tree of files that is below dir
is operated on.
If cb
or dir
is NULL
or if dir
is a string of size 0, or if dir
cannot be opened, this function returns EINA_FALSE immediately. Otherwise, it returns EINA_TRUE.
[in] | dir | The directory name |
[in] | recursive | Iterate recursively in the directory |
[in] | cb | The callback to be called |
[in] | data | The data to pass to the callback |
References alloca(), EINA_FALSE, EINA_FILE_DIR, eina_file_dir_list(), eina_file_stat_ls(), EINA_ITERATOR_FOREACH, eina_iterator_free(), EINA_SAFETY_ON_NULL_RETURN_VAL, EINA_SAFETY_ON_TRUE_RETURN_VAL, EINA_TRUE, evil_wchar_to_char(), _Eina_File_Direct_Info::name_start, _Eina_File_Direct_Info::path, and _Eina_File_Direct_Info::type.
Referenced by eina_file_dir_list(), eina_module_arch_list_get(), and eina_module_list_get().
EINA_API Eina_Array * eina_file_split | ( | char * | path | ) |
Splits a path according to the delimiter of the filesystem.
This function splits path
according to the delimiter of the used filesystem. If path
is NULL
or if the array cannot be created, NULL
is returned, otherwise an array with each part of path
is returned.
[in] | path | The path to split |
References eina_array_new(), eina_array_push(), and EINA_SAFETY_ON_NULL_RETURN_VAL.
EINA_API Eina_Iterator * eina_file_ls | ( | const char * | dir | ) |
Gets an iterator to list the content of a directory.
This returns an iterator for shared strings, the name of each file in dir
is only fetched when advancing the iterator, which means there is very little cost associated with creating the list and stopping halfway through it.
[in] | dir | The name of the directory to list |
dir
. On failure, it returns NULL
.References EINA_MAGIC_SET, EINA_SAFETY_ON_NULL_RETURN_VAL, EINA_UNLIKELY, FUNC_ITERATOR_FREE, FUNC_ITERATOR_GET_CONTAINER, and FUNC_ITERATOR_NEXT.
EINA_API Eina_Iterator * eina_file_stat_ls | ( | const char * | dir | ) |
Gets an iterator to list the content of a directory, with direct information.
This returns an iterator for Eina_File_Direct_Info, the name of each file in dir
is only fetched when advancing the iterator, which means there is cost associated with creating the list and stopping halfway through it.
[in] | dir | The name of the directory to list |
dir
. On failure, it returns NULL
.References eina_file_direct_ls(), EINA_MAGIC_SET, EINA_PATH_MAX, EINA_SAFETY_ON_NULL_RETURN_VAL, EINA_UNLIKELY, FUNC_ITERATOR_FREE, FUNC_ITERATOR_GET_CONTAINER, and FUNC_ITERATOR_NEXT.
Referenced by eina_file_dir_list().
EINA_API int eina_file_statat | ( | void * | container, |
Eina_File_Direct_Info * | info, | ||
Eina_Stat * | buf | ||
) |
Uses information provided by Eina_Iterator of eina_file_stat_ls() or eina_file_direct_ls() to call stat in the most efficient way on your system.
This function calls fstatat or stat depending on what your system supports. This makes it efficient and simple to use on your side without complex detection already done inside Eina on what the system can do.
[in] | container | The container returned by Eina_Iterator using eina_iterator_container_get() |
[in] | info | The content of the current Eina_File_Direct_Info provided by Eina_Iterator |
[in] | buf | The location put the result of the stat |
0
is returned on success, otherwise -1
is returned on error and errno is set appropriatelyReferences _Eina_Stat::atime, _Eina_Stat::atimensec, _Eina_Stat::blksize, _Eina_Stat::blocks, _Eina_Stat::ctime, _Eina_Stat::ctimensec, _Eina_Stat::dev, EINA_FILE_BLK, EINA_FILE_CHR, EINA_FILE_DIR, EINA_FILE_FIFO, EINA_FILE_LNK, EINA_FILE_REG, EINA_FILE_SOCK, EINA_FILE_UNKNOWN, EINA_SAFETY_ON_NULL_RETURN_VAL, _Eina_Stat::gid, _Eina_Stat::ino, _Eina_Stat::mode, _Eina_Stat::mtime, _Eina_Stat::mtimensec, _Eina_File_Direct_Info::name_start, _Eina_Stat::nlink, _Eina_File_Direct_Info::path, _Eina_Stat::rdev, _Eina_Stat::size, _Eina_File_Direct_Info::type, and _Eina_Stat::uid.
EINA_API void eina_file_close_from | ( | int | fd, |
int * | except_fd | ||
) |
Close all file descriptors that are open at or above the given fd.
This closes all open file descriptors that are equal to or of higher value than the given inpit fd given. This is intended for niche use like closing all open files just before exec()ing a new process after calling fork(). The except_fd array can be NULL if no fd's are to be skipped, but if some fd's are to skip being closed then this will be an array of fd numbers being terminated by a fd value of -1.
[in] | fd | The fd value to begin closing at |
[in] | except_fd | An array of fd's not to close terminated by -1 as the last invalid fd |
References alloca(), EINA_FALSE, and EINA_TRUE.
EINA_API int eina_file_mkstemp | ( | const char * | templatename, |
Eina_Tmpstr ** | path | ||
) |
Generates and creates a uniquely named temporary file from a template name.
The generated file is opened with the open(2) O_EXCL
flag.
This function calls mkstemp(), generates a unique temporary filename from template, creates and opens the file, and returns an open file descriptor for the file.
[in] | templatename | This is a string. It must contain the six characters 'XXXXXX' at the end or directly followed by an extension as in 'prefixXXXXXX.ext'. |
[out] | path | The path to the created temporary file, or NULL in case of failure. It must be released by eina_tmpstr_del(). |
file
descriptor of the temporary file is returned, On error -1
is returned, in which case errno
is set appropriately.templatename
, then the new path
will also contain this extension (since 1.10).templatename
is a simple file name (no relative or absolute path to another directory), then a temporary file will be created inside the system temporary directory (templatename
contains a directory separator ('/', or '\' on Windows) then the file will be created inside this directory, which must exist and be writeable. Use ./filename.XXXXXX to create files in the current working directory. (since 1.17)Referenced by ecore_x_resource_db_flush().
EINA_API Eina_Bool eina_file_mkdtemp | ( | const char * | templatename, |
Eina_Tmpstr ** | path | ||
) |
Generates and creates a uniquely named temporary directory from a template name.
This function calls mkdtemp(). The directory is then created with permissions 0700.
[in] | templatename | This is a string. The last six characters of templatename must be XXXXXX. |
[out] | path | The path to the created temporary directory, or NULL in case of failure. It must be released by eina_tmpstr_del(). |
EINA_TRUE
is returned, On error EINA_FALSE
is returned, in which case errno
is set appropriately.templatename
is a simple directory name (no relative or absolute path to another directory), then a temporary directory will be created inside the system temporary directory (templatename
contains a directory separator ('/', or '\' on Windows) then the temporary directory will be created inside that other directory, which must exist and be writeable. (since 1.17)EINA_API Eina_Iterator * eina_file_direct_ls | ( | const char * | dir | ) |
Gets an iterator to list the content of a directory, with direct information.
This returns an iterator for Eina_File_Direct_Info, the name of each file in dir
is only fetched when advancing the iterator, which means there is cost associated with creating the list and stopping halfway through it.
[in] | dir | The name of the directory to list |
dir
. On failure, it returns NULL
.References EINA_MAGIC_SET, EINA_PATH_MAX, EINA_SAFETY_ON_NULL_RETURN_VAL, EINA_UNLIKELY, FUNC_ITERATOR_FREE, FUNC_ITERATOR_GET_CONTAINER, and FUNC_ITERATOR_NEXT.
Referenced by ecore_file_dir_is_empty(), ecore_file_ls(), ecore_file_recursive_rm(), edje_available_modules_get(), and eina_file_stat_ls().
EINA_API char * eina_file_path_sanitize | ( | const char * | path | ) |
Sanitizes the file path.
This function takes care of adding the current working directory if its a relative path and also removes all '..' and '//' references in the original path.
[in] | path | The path to sanitize |
References eina_file_current_directory_get(), eina_file_path_relative(), eina_tmpstr_del(), and eina_tmpstr_len().
Referenced by efl_quicklaunch_prepare(), efreet_desktop_new(), efreet_desktop_uncached_new(), efreet_icon_deprecated_user_dir_get(), efreet_icon_user_dir_get(), elua_state_dirs_set(), elua_state_include_path_add(), ethumb_file_set(), and ethumb_thumb_dir_path_set().
EINA_API Eina_Bool eina_file_copy | ( | const char * | src, |
const char * | dst, | ||
Eina_File_Copy_Flags | flags, | ||
Eina_File_Copy_Progress | cb, | ||
const void * | cb_data | ||
) |
Copies one file to another using the fastest possible way and report progress.
This function tries to splice if it is available. It is blocked until the whole file is copied or it fails.
[in] | src | The source file. |
[in] | dst | The destination file. |
[in] | flags | Controls what is copied (data is always copied). |
[in] | cb | If it is provided will be called with file copy progress information. |
[in] | cb_data | Context data to provide to cb during copy. |
dst
will be deleted)cb
with the progress summary. References EINA_FALSE, EINA_SAFETY_ON_FALSE_GOTO, EINA_SAFETY_ON_NULL_RETURN_VAL, EINA_SAFETY_ON_TRUE_GOTO, and EINA_SAFETY_ON_TRUE_RETURN_VAL.
Gets a read-only handler to a file.
This opens a file in the read-only mode. name
should be an absolute path. An Eina_File handle can be shared among multiple instances if shared
is EINA_TRUE, otherwise.
[in] | name | The filename to open |
[in] | shared | Requested a shm |
References _eina_file_cache, _eina_file_lock_cache, _Eina_File::delete_me, eina_file_close_on_exec(), eina_file_map_key_cmp(), eina_file_map_key_hash(), eina_file_map_key_length(), eina_file_statgen_get(), EINA_FREE_CB, eina_hash_del(), eina_hash_direct_add(), eina_hash_find(), eina_hash_new(), eina_hash_pointer_new(), EINA_KEY_CMP, EINA_KEY_HASH, EINA_KEY_LENGTH, eina_lock_new(), eina_lock_release(), eina_lock_take(), EINA_MAGIC_SET, EINA_SAFETY_ON_NULL_RETURN_VAL, eina_stringshare_del(), EINA_TRUE, _Eina_File::filename, INF, _Eina_File::length, MAP_FAILED, _Eina_File::mtime, _Eina_File::statgen, and WRN.
Referenced by edje_file_collection_list(), edje_file_color_class_used_list(), edje_file_data_get(), edje_file_group_exists(), eet_identity_open(), and eet_open().
EINA_API Eina_File * eina_file_virtualize | ( | const char * | virtual_name, |
const void * | data, | ||
unsigned long long | length, | ||
Eina_Bool | copy | ||
) |
Creates a virtual file from a memory pointer.
[in] | virtual_name | A virtual name for Eina_File, if NULL , a generated one will be given |
[in] | data | The memory pointer to take data from |
[in] | length | The length of the data in memory |
[in] | copy | EINA_TRUE if the data must be copied |
References _Eina_File::copied, eina_file_map_key_cmp(), eina_file_map_key_hash(), eina_file_map_key_length(), EINA_FREE_CB, eina_hash_new(), eina_hash_pointer_new(), EINA_KEY_CMP, EINA_KEY_HASH, EINA_KEY_LENGTH, eina_lock_recursive_new(), EINA_MAGIC_SET, EINA_SAFETY_ON_NULL_RETURN_VAL, eina_stringshare_add(), eina_stringshare_printf(), EINA_TRUE, _Eina_File::fd, _Eina_File::filename, _Eina_File::global_map, _Eina_File::length, _Eina_File::lock, _Eina_File::map, _Eina_File::mtime, _Eina_File::refcount, and _Eina_File::rmap.
Referenced by eina_file_dup(), and evas_object_image_memfile_set().
Tells if a file is a real file or only exists in memory.
[in] | file | The file to test |
References EINA_FALSE.
Refreshes file information.
All current map continue to exist. You need to manually delete and recreate them to have the new correct mapping.
[in,out] | file | The file to refresh |
References EINA_FALSE, eina_file_flush(), EINA_SAFETY_ON_NULL_RETURN_VAL, EINA_TRUE, _Eina_File::fd, _Eina_File::filename, _Eina_File::inode, _Eina_File::length, and _Eina_File::mtime.
Referenced by evas_object_image_reload().
Duplicates a read-only handler of a previously open file.
[in] | file | To duplicate a reference to |
References _Eina_File::copied, eina_file_virtualize(), eina_lock_release(), eina_lock_take(), EINA_TRUE, _Eina_File::filename, _Eina_File::global_map, _Eina_File::length, _Eina_File::lock, and _Eina_File::refcount.
Referenced by eet_mmap(), elm_theme_extension_mmap_add(), and elm_theme_overlay_mmap_add().
Unrefs the file handler.
This decrements the file's reference count and if it reaches zero it closes the file.
[in] | file | The file handler to unref |
References _eina_file_cache, _eina_file_lock_cache, EINA_FALSE, eina_file_clean_close(), eina_hash_del_by_key_hash(), eina_hash_find_by_hash(), eina_hash_superfast(), eina_lock_release(), eina_lock_take(), EINA_TRUE, _Eina_File::filename, _Eina_File::lock, and _Eina_File::refcount.
Referenced by edje_file_collection_list(), edje_file_color_class_used_list(), edje_file_data_get(), edje_file_group_exists(), eet_identity_open(), eet_open(), elm_theme_flush(), elm_theme_overlay_mmap_add(), elua_io_loadfile(), emile_image_close(), and evas_object_image_memfile_set().
Gets the file size at open time.
[in] | file | The file handler to request the size from |
References _Eina_File::length.
Referenced by eet_identity_open(), eet_mmap(), eet_open(), and elua_io_loadfile().
Gets the last modification time of an open file.
[in] | file | The file handler to request the modification time from |
References _Eina_File::mtime.
Gets the filename of an open file.
[in] | file | The file handler to request the name from |
References _Eina_File::filename.
Referenced by edje_mmap_group_exists(), eet_mmap(), elm_theme_extension_mmap_add(), elm_theme_group_path_find(), and elm_theme_overlay_mmap_add().
EINA_API Eina_Iterator * eina_file_xattr_get | ( | Eina_File * | file | ) |
Gets the extended attribute of an open file.
[in] | file | The file handler to request the extended attribute from |
References EINA_SAFETY_ON_NULL_RETURN_VAL, eina_xattr_fd_ls(), and _Eina_File::fd.
EINA_API Eina_Iterator * eina_file_xattr_value_get | ( | Eina_File * | file | ) |
Gets the extended attribute of an open file.
[in] | file | The file handler to request the extended attribute from |
References EINA_SAFETY_ON_NULL_RETURN_VAL, eina_xattr_value_fd_ls(), and _Eina_File::fd.
EINA_API void * eina_file_map_all | ( | Eina_File * | file, |
Eina_File_Populate | rule | ||
) |
Maps all the files to a buffer.
[in] | file | The file handler to map in the memory |
[in] | rule | The rule to apply to the mapped memory |
NULL
if it failsReferences EINA_FALSE, EINA_FILE_POPULATE, eina_file_virtual_map_all(), eina_lock_release(), eina_lock_take(), eina_mmap_safety_enabled_set(), EINA_SAFETY_ON_NULL_RETURN_VAL, EINA_TRUE, _Eina_File::fd, _Eina_File::global_hugetlb, _Eina_File::global_map, _Eina_File::global_refcount, _Eina_File::length, _Eina_File::lock, MAP_FAILED, MAP_SHARED, mmap(), and PROT_READ.
Referenced by eet_identity_open(), eet_mmap(), eet_open(), eina_file_map_lines(), eina_file_map_new(), and elua_io_loadfile().
EINA_API void * eina_file_map_new | ( | Eina_File * | file, |
Eina_File_Populate | rule, | ||
unsigned long int | offset, | ||
unsigned long int | length | ||
) |
Maps a part of the file.
[in] | file | The file handler to map in the memory |
[in] | rule | The rule to apply to the mapped memory |
[in] | offset | The offset inside the file |
[in] | length | The length of the memory to map |
length
valid bytes in it NULL
if not inside the file or anything else goes wrong.References EINA_FALSE, eina_file_map_all(), EINA_FILE_POPULATE, eina_file_virtual_map_new(), eina_hash_add(), eina_hash_direct_add(), eina_hash_find(), eina_lock_release(), eina_lock_take(), eina_mmap_safety_enabled_set(), EINA_SAFETY_ON_NULL_RETURN_VAL, EINA_TRUE, _Eina_File::fd, _Eina_File_Map::hugetlb, _Eina_File::length, _Eina_File_Map::length, _Eina_File::lock, _Eina_File::map, _Eina_File_Map::map, MAP_FAILED, MAP_SHARED, mmap(), _Eina_File_Map::offset, PROT_READ, _Eina_File_Map::refcount, and _Eina_File::rmap.
Unrefs and unmaps memory if possible.
[in] | file | The file handler to unmap memory from |
[in] | map | The memory map to unref and unmap |
References eina_file_common_map_free(), eina_file_virtual_map_free(), eina_lock_release(), eina_lock_take(), EINA_SAFETY_ON_NULL_RETURN, _Eina_File::global_map, _Eina_File::global_refcount, _Eina_File::length, _Eina_File::lock, MAP_FAILED, and munmap().
Referenced by eet_identity_open(), and elua_io_loadfile().
EINA_API void eina_file_map_populate | ( | Eina_File * | file, |
Eina_File_Populate | rule, | ||
const void * | map, | ||
unsigned long int | offset, | ||
unsigned long int | length | ||
) |
Asks the OS to populate or otherwise pages of memory in file mapping.
This advises the operating system as to what to do with the memory mapped to the given file
. This affects a specific range of memory and may not be honored if the system chooses to ignore the request.
[in] | file | The file handle from which the map comes |
[in] | rule | The rule to apply to the mapped memory |
[in] | map | Memory that was mapped inside of which the memory range is |
[in] | offset | The offset in bytes from the start of the map address |
[in] | length | The length in bytes of the memory region to populate |
References eina_hash_find(), eina_lock_release(), eina_lock_take(), EINA_SAFETY_ON_NULL_RETURN, _Eina_File::global_hugetlb, _Eina_File::global_map, _Eina_File_Map::hugetlb, _Eina_File::length, _Eina_File_Map::length, _Eina_File::lock, and _Eina_File::rmap.
EINA_API Eina_Iterator * eina_file_map_lines | ( | Eina_File * | file | ) |
Maps line by line in the memory efficiently using an Eina_Iterator.
This function returns an iterator that acts like fgets without useless memcpy. Be aware that once eina_iterator_next has been called, nothing can guarantee that the memory is still going to be mapped.
[in] | file | The file to run over |
References _Eina_Lines_Iterator::boundary, _Eina_Lines_Iterator::current, eina_file_map_all(), EINA_FILE_SEQUENTIAL, eina_lock_release(), eina_lock_take(), EINA_MAGIC_SET, _Eina_File_Line::end, _Eina_Lines_Iterator::end, _Eina_Lines_Iterator::fp, _Eina_Iterator::free, FUNC_ITERATOR_FREE, FUNC_ITERATOR_GET_CONTAINER, FUNC_ITERATOR_NEXT, _Eina_Iterator::get_container, _Eina_File_Line::index, _Eina_Lines_Iterator::iterator, _Eina_File_Line::length, _Eina_File::length, _Eina_File::lock, _Eina_Lines_Iterator::map, _Eina_Iterator::next, _Eina_File::refcount, _Eina_File_Line::start, and _Eina_Iterator::version.
Tells whether there has been an IO error during the life of a mmaped file.
[in] | file | The file handler to the mmaped file |
[in] | map | The memory map to check if an error occurred on it |
References _Eina_File::dead_map, EINA_FALSE, eina_hash_find(), EINA_LIST_FOREACH, eina_lock_release(), eina_lock_take(), EINA_SAFETY_ON_NULL_RETURN_VAL, _Eina_File_Map::faulty, _Eina_File::global_faulty, _Eina_File::global_map, _Eina_File::lock, _Eina_File_Map::map, and _Eina_File::rmap.
|
inlinestatic |
Joins two paths of known length.
This function is similar to eina_str_join_len(), but the separator is '\' on Windows and '/' otherwise.
[out] | dst | The buffer to store the result. |
[in] | size | Size (in byte) of the buffer. |
[in] | a | First path to use. |
[in] | a_len | length of a . |
[in] | b | Second path to use. |
[in] | b_len | length of b . |
|
inlinestatic |
Joins two paths of known length.
This function is similar to eina_file_path_join_len(), but will compute the length of a
and b
using strlen(). The path separator is '\' on Windows and '/' otherwise.
[out] | dst | The buffer to store the result. |
[in] | size | Size (in byte) of the buffer. |
[in] | a | First string to use. |
[in] | b | Second string to use. |
Referenced by eina_prefix_new().
Unlinks file.
This function is a wrapper around the unlink() system call. It removes a link to a file.
[in] | pathname | File name to unlink. |
References _eina_file_cache, EINA_FALSE, eina_hash_find(), eina_stringshare_del(), and EINA_TRUE.
Make sure a file descriptor will be closed on exec.
This function is a wrapper around the fnctl() system call. It makes sure that the fd will be closed whenever exec is called.
[in] | fd | File descriptor to enforce close on exec on. |
[in] | on | EINA_TRUE will turn close on exec on, EINA_FALSE will turn it off. |
References EINA_FALSE, EINA_TRUE, ERR, and fcntl().
Referenced by ecore_pipe_full_add(), eina_file_open(), and eina_mmap_safety_enabled_set().
EINA_API void eina_file_statgen_next | ( | void | ) |
Force the stat generation counter to tick over so any following i/o does real i/o and stat calls.
References eina_spinlock_release(), and eina_spinlock_take().
EINA_API Eina_Statgen eina_file_statgen_get | ( | void | ) |
Get the current stat generation counter value.
References eina_spinlock_release(), and eina_spinlock_take().
Referenced by eina_file_open().
EINA_API void eina_file_statgen_enable | ( | void | ) |
Enable stat generation count optimiziing to only stat/do file i/o between generation counts changing.
References eina_spinlock_release(), and eina_spinlock_take().
EINA_API void eina_file_statgen_disable | ( | void | ) |
Disable stat generation count optimiziing to only stat/do file i/o between generation counts changing.
References eina_spinlock_release(), and eina_spinlock_take().
Eina_Bool eina_file_path_relative | ( | const char * | path | ) |
Determines if a path is relative or absolute.
The implementation simply checks if the first char in the path is '/'. If it is not, the path is considered relative.
[in] | path | The path to check. |
References EINA_FALSE, EINA_TRUE, and evil_path_is_absolute().
Referenced by eina_file_path_sanitize().
Eina_Tmpstr * eina_file_current_directory_get | ( | const char * | path, |
size_t | len | ||
) |
Gets the current directory and optionally appends a path to it.
If a string was passed in via the path
parameter, it will be appended to the current working directory. Presumably, this will be a relative path.
[in] | path | The path to append to the current directory. |
[in] | len | The length of path . |
References alloca(), and eina_tmpstr_add_length().
Referenced by eina_file_path_sanitize().
char * eina_file_cleanup | ( | Eina_Tmpstr * | path | ) |
Cleans up Eina after a file is no longer needed.
[in,out] | path | The path of the file. |
path
string. If path
is NULL
, it will return and empty string. References eina_tmpstr_del().
void eina_file_clean_close | ( | Eina_File * | file | ) |
Closes and cleans up after an Eina file.
[in,out] | file | The path of the file. |
References eina_file_real_close(), eina_hash_free(), EINA_MAGIC_SET, eina_stringshare_del(), _Eina_File::filename, _Eina_File::map, and _Eina_File::rmap.
Referenced by eina_file_close().
void eina_file_real_close | ( | Eina_File * | file | ) |
Closes a file from the OS perspective.
[in,out] | file | The path of the file. |
Referenced by eina_file_clean_close().
void eina_file_flush | ( | Eina_File * | file, |
unsigned long int | length | ||
) |
Resets the internal housekeeping structures after a file has changed.
Despite the name, this routine does not write anything to disk. It invalidates the memory maps for the file. If the file has shrunk, it also adds any mapped regions past the end of the file to the dead_map.
[in,out] | file | The file. |
[in] | length | The current length of the file after the change. |
References _Eina_File::dead_map, eina_hash_del(), eina_hash_iterator_data_new(), EINA_ITERATOR_FOREACH, eina_iterator_free(), eina_list_append(), EINA_LIST_FOREACH, eina_list_merge(), eina_lock_release(), eina_lock_take(), _Eina_File::global_map, _Eina_File::global_refcount, _Eina_File::length, _Eina_File_Map::length, _Eina_File::lock, _Eina_File::map, _Eina_File_Map::map, MAP_FAILED, _Eina_File_Map::offset, _Eina_File::refcount, _Eina_File_Map::refcount, and _Eina_File::rmap.
Referenced by eina_file_refresh().
void eina_file_common_map_free | ( | Eina_File * | file, |
void * | map, | ||
void(*)(Eina_File_Map *map) | free_func | ||
) |
Removes a mapped region from the file and frees the resources.
This routine will remove a previously mapped region from the internal Eina File housekeeping and free the resources associated with it. In the case where the map is part of the dead_map, free_func
will be called to handle the actual deallocation.
[in,out] | file | The file. |
[in,out] | map | The memory mapped region that is to be freed. |
[in] | free_func | A pointer to a function that will be called to free up the resources used by the map. |
References _Eina_File::dead_map, EINA_FALSE, eina_hash_del(), eina_hash_find(), EINA_LIST_FOREACH, eina_list_remove_list(), EINA_TRUE, _Eina_File_Map::length, _Eina_File::map, _Eina_File_Map::map, _Eina_File_Map::offset, _Eina_File_Map::refcount, and _Eina_File::rmap.
Referenced by eina_file_map_free().
void * eina_file_virtual_map_all | ( | Eina_File * | file | ) |
Map the entire contents of a virtual file to a buffer.
[in] | file | The virtual file to map in memory |
References eina_lock_release(), eina_lock_take(), _Eina_File::global_map, _Eina_File::global_refcount, and _Eina_File::lock.
Referenced by eina_file_map_all().
void * eina_file_virtual_map_new | ( | Eina_File * | file, |
unsigned long int | offset, | ||
unsigned long int | length | ||
) |
Map a part of a virtual file to a buffer.
[in,out] | file | The virtual file to map in memory |
[in] | offset | The offset inside the file to start mapping |
[in] | length | The length of the region to map |
References eina_hash_add(), eina_hash_direct_add(), eina_hash_find(), eina_lock_release(), eina_lock_take(), _Eina_File::global_map, _Eina_File_Map::length, _Eina_File::lock, _Eina_File::map, _Eina_File_Map::map, _Eina_File_Map::offset, _Eina_File_Map::refcount, and _Eina_File::rmap.
Referenced by eina_file_map_new().
void eina_file_virtual_map_free | ( | Eina_File * | file, |
void * | map | ||
) |
Unref and unmap memory if possible.
[in,out] | file | The file handler to unmap memory from. |
[in,out] | map | Memory map to unref and unmap. |
References eina_hash_del(), eina_hash_find(), eina_lock_release(), eina_lock_take(), _Eina_File::global_map, _Eina_File::global_refcount, _Eina_File_Map::length, _Eina_File::lock, _Eina_File::map, _Eina_File_Map::offset, _Eina_File_Map::refcount, and _Eina_File::rmap.
Referenced by eina_file_map_free().
unsigned int eina_file_map_key_length | ( | const void * | key | ) |
Get the length of a map key.
[in] | key | The key for which length will be calculated. |
Referenced by eina_file_open(), and eina_file_virtualize().
int eina_file_map_key_cmp | ( | const unsigned long long int * | key1, |
int | key1_length, | ||
const unsigned long long int * | key2, | ||
int | key2_length | ||
) |
Compares two map keys.
The implementation assumes that key1
and key2
are both pointers to an array with 2 elements, as is the case with the Eina file map keys.
[in] | key1 | The first key. |
[in] | key1_length | The length of the first key. |
[in] | key2 | The second key. |
[in] | key2_length | The length of the second key. |
Referenced by eina_file_open(), and eina_file_virtualize().
int eina_file_map_key_hash | ( | const unsigned long long int * | key, |
int | key_length | ||
) |
Creates a hash from a map key.
[in] | key | A pointer to the key. |
[in] | key_length | The length of the key. |
References eina_hash_int64().
Referenced by eina_file_open(), and eina_file_virtualize().