2016-05-03 22:18:24 +00:00
|
|
|
// Prototypes for wide character equivalents of various standard unix functions.
|
2005-10-04 15:11:39 +00:00
|
|
|
#ifndef FISH_WUTIL_H
|
|
|
|
#define FISH_WUTIL_H
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
#include <dirent.h>
|
2016-05-03 22:18:24 +00:00
|
|
|
#include <stdio.h>
|
2005-10-05 22:37:08 +00:00
|
|
|
#include <sys/types.h>
|
2015-07-25 15:14:25 +00:00
|
|
|
#include <time.h>
|
2011-12-27 03:18:46 +00:00
|
|
|
#include <string>
|
2016-04-21 06:00:54 +00:00
|
|
|
|
2012-02-17 23:55:54 +00:00
|
|
|
#include "common.h"
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2012-02-18 17:11:22 +00:00
|
|
|
FILE *wfopen(const wcstring &path, const char *mode);
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-03-02 08:27:40 +00:00
|
|
|
bool set_cloexec(int fd);
|
|
|
|
|
|
|
|
int wopen_cloexec(const wcstring &pathname, int flags, mode_t mode = 0);
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2013-04-07 19:40:08 +00:00
|
|
|
int make_fd_nonblocking(int fd);
|
|
|
|
|
|
|
|
int make_fd_blocking(int fd);
|
|
|
|
|
2012-02-18 17:11:22 +00:00
|
|
|
DIR *wopendir(const wcstring &name);
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-02-18 17:11:22 +00:00
|
|
|
int wstat(const wcstring &file_name, struct stat *buf);
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-02-18 17:11:22 +00:00
|
|
|
int lwstat(const wcstring &file_name, struct stat *buf);
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-02-18 17:11:22 +00:00
|
|
|
int waccess(const wcstring &pathname, int mode);
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-02-18 17:11:22 +00:00
|
|
|
int wunlink(const wcstring &pathname);
|
2012-02-16 08:24:27 +00:00
|
|
|
|
2014-04-27 20:34:51 +00:00
|
|
|
void wperror(const wchar_t *s);
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2013-01-10 01:06:20 +00:00
|
|
|
void safe_perror(const char *message);
|
|
|
|
|
|
|
|
const char *safe_strerror(int err);
|
|
|
|
|
2016-03-11 02:17:39 +00:00
|
|
|
const wcstring wgetcwd();
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
int wchdir(const wcstring &dir);
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-02-18 17:11:22 +00:00
|
|
|
wchar_t *wrealpath(const wcstring &pathname, wchar_t *resolved_path);
|
2006-02-02 15:23:56 +00:00
|
|
|
|
2012-02-20 10:13:31 +00:00
|
|
|
bool wreaddir(DIR *dir, std::wstring &out_name);
|
2016-09-10 21:38:28 +00:00
|
|
|
|
2016-05-03 22:18:24 +00:00
|
|
|
bool wreaddir_resolving(DIR *dir, const std::wstring &dir_path, std::wstring &out_name,
|
|
|
|
bool *out_is_dir);
|
|
|
|
|
2015-08-08 21:52:04 +00:00
|
|
|
bool wreaddir_for_dirs(DIR *dir, wcstring *out_name);
|
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
std::wstring wdirname(const std::wstring &path);
|
2006-06-14 13:22:40 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
std::wstring wbasename(const std::wstring &path);
|
2006-06-14 13:22:40 +00:00
|
|
|
|
2016-06-02 05:03:27 +00:00
|
|
|
const wcstring &wgettext(const wchar_t *in);
|
2006-06-14 13:22:40 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
int wmkdir(const wcstring &dir, int mode);
|
2006-08-11 14:55:28 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
int wrename(const wcstring &oldName, const wcstring &newName);
|
2006-10-20 22:33:47 +00:00
|
|
|
|
2016-05-03 22:18:24 +00:00
|
|
|
/// Class for representing a file's inode. We use this to detect and avoid symlink loops, among
|
|
|
|
/// other things. While an inode / dev pair is sufficient to distinguish co-existing files, Linux
|
|
|
|
/// seems to aggressively re-use inodes, so it cannot determine if a file has been deleted (ABA
|
|
|
|
/// problem). Therefore we include richer information.
|
|
|
|
struct file_id_t {
|
2014-04-28 22:14:33 +00:00
|
|
|
dev_t device;
|
|
|
|
ino_t inode;
|
|
|
|
uint64_t size;
|
|
|
|
time_t change_seconds;
|
|
|
|
long change_nanoseconds;
|
Attempt to fix the sporadic uvar test failures on Linux
We identify when the universal variable file has changed out from under us by
comparing a bunch of fields from its stat: inode, device, size, high-precision
timestamp, generation. Linux aggressively reuses inodes, and the size may be
the same by coincidence (which is the case in the tests). Also, Linux
officially has nanosecond precision, but in practice it seems to only uses
millisecond precision for storing mtimes. Thus if there are three or more
updates within a millisecond, every field we check may be the same, and we are
vulnerable to the ABA problem. I believe this explains the occasional test
failures.
The solution is to manually set the nanosecond field of the mtime timestamp to
something unlikely to be duplicated, like a random number, or better yet, the
current time (with nanosecond precision). This is more in the spirit of the
timestamp, and it means we're around a million times less likely to collide.
This seems to fix the tests.
2015-11-09 07:48:32 +00:00
|
|
|
time_t mod_seconds;
|
|
|
|
long mod_nanoseconds;
|
2016-05-03 22:18:24 +00:00
|
|
|
|
2014-04-28 22:14:33 +00:00
|
|
|
bool operator==(const file_id_t &rhs) const;
|
|
|
|
bool operator!=(const file_id_t &rhs) const;
|
2016-05-03 22:18:24 +00:00
|
|
|
|
|
|
|
// Used to permit these as keys in std::map.
|
2014-04-28 22:14:33 +00:00
|
|
|
bool operator<(const file_id_t &rhs) const;
|
2016-05-03 22:18:24 +00:00
|
|
|
|
2014-04-28 22:14:33 +00:00
|
|
|
static file_id_t file_id_from_stat(const struct stat *buf);
|
2016-05-03 22:18:24 +00:00
|
|
|
|
|
|
|
private:
|
Attempt to fix the sporadic uvar test failures on Linux
We identify when the universal variable file has changed out from under us by
comparing a bunch of fields from its stat: inode, device, size, high-precision
timestamp, generation. Linux aggressively reuses inodes, and the size may be
the same by coincidence (which is the case in the tests). Also, Linux
officially has nanosecond precision, but in practice it seems to only uses
millisecond precision for storing mtimes. Thus if there are three or more
updates within a millisecond, every field we check may be the same, and we are
vulnerable to the ABA problem. I believe this explains the occasional test
failures.
The solution is to manually set the nanosecond field of the mtime timestamp to
something unlikely to be duplicated, like a random number, or better yet, the
current time (with nanosecond precision). This is more in the spirit of the
timestamp, and it means we're around a million times less likely to collide.
This seems to fix the tests.
2015-11-09 07:48:32 +00:00
|
|
|
int compare_file_id(const file_id_t &rhs) const;
|
2014-04-28 22:14:33 +00:00
|
|
|
};
|
2012-12-03 07:38:38 +00:00
|
|
|
|
2014-04-27 20:34:51 +00:00
|
|
|
file_id_t file_id_for_fd(int fd);
|
|
|
|
file_id_t file_id_for_path(const wcstring &path);
|
|
|
|
|
|
|
|
extern const file_id_t kInvalidFileID;
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
#endif
|