Ruby
2.5.0dev(2017-10-22revision60238)
|
#include "internal.h"
#include "encindex.h"
#include "ruby/thread.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <ctype.h>
#include "ruby/util.h"
Go to the source code of this file.
Data Structures | |
struct | dir_data |
struct | chdir_data |
struct | warning_args |
struct | ruby_glob_funcs_t |
struct | glob_pattern |
struct | glob_args |
struct | glob_error_args |
struct | brace_args |
struct | push_glob_args |
Macros | |
#define | USE_OPENDIR_AT 0 |
#define | AT_FDCWD -1 |
#define | dirent direct |
#define | NAMLEN(dirent) (dirent)->d_namlen |
#define | HAVE_DIRENT_NAMLEN 1 |
#define | IS_WIN32 0 |
#define | USE_NAME_ON_FS_REAL_BASENAME |
#define | USE_NAME_ON_FS_BY_FNMATCH |
#define | USE_NAME_ON_FS 0 |
#define | NORMALIZE_UTF8PATH 0 |
#define | IF_NORMALIZE_UTF8PATH(something) /* nothing */ |
#define | IFTODT(m) (((m) & S_IFMT) / ((~S_IFMT & S_IFMT-1) + 1)) |
#define | FNM_NOESCAPE 0x01 |
#define | FNM_PATHNAME 0x02 |
#define | FNM_DOTMATCH 0x04 |
#define | FNM_CASEFOLD 0x08 |
#define | FNM_EXTGLOB 0x10 |
#define | FNM_SYSCASE 0 |
#define | FNM_SHORTNAME 0 |
#define | FNM_NOMATCH 1 |
#define | FNM_ERROR 2 |
#define | Next(p, e, enc) ((p)+ rb_enc_mbclen((p), (e), (enc))) |
#define | Inc(p, e, enc) ((p) = Next((p), (e), (enc))) |
#define | UNESCAPE(p) (escape && *(p) == '\\' ? (p) + 1 : (p)) |
#define | ISEND(p) (!*(p) || (pathname && *(p) == '/')) |
#define | RETURN(val) return *pcur = p, *scur = s, (val); |
#define | GlobPathValue(str, safe) |
#define | check_safe_glob(str, safe) ((safe) ? rb_check_safe_obj(str) : (void)0) |
#define | check_glob_encoding(str) rb_enc_check((str), rb_enc_from_encoding(rb_usascii_encoding())) |
#define | GetDIR(obj, dirp) ((dirp) = dir_check(obj)) |
#define | dir_fileno rb_f_notimplement |
#define | READDIR(dir, enc) readdir((dir)) |
#define | dir_tell rb_f_notimplement |
#define | dir_seek rb_f_notimplement |
#define | dir_set_pos rb_f_notimplement |
#define | RUBY_UNTYPED_DATA_WARNING 0 |
#define | dir_s_chroot rb_f_notimplement |
#define | sys_enc_warning_in(func, mesg, enc) sys_enc_warning(mesg, enc) |
#define | GLOB_VERBOSE (1U << (sizeof(int) * CHAR_BIT - 1)) |
#define | sys_warning(val, enc) ((flags & GLOB_VERBOSE) ? sys_enc_warning_in(RUBY_FUNCTION_NAME_STRING, (val), (enc)) :(void)0) |
#define | GLOB_ALLOC(type) ((type *)malloc(sizeof(type))) |
#define | GLOB_ALLOC_N(type, n) ((type *)malloc(sizeof(type) * (n))) |
#define | GLOB_REALLOC(ptr, size) realloc((ptr), (size)) |
#define | GLOB_FREE(ptr) free(ptr) |
#define | GLOB_JUMP_TAG(status) (((status) == -1) ? rb_memerror() : rb_jump_tag(status)) |
#define | STAT(p, s) stat((p), (s)) |
#define | do_lstat do_stat |
#define | S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) |
#define | S_ISLNK(m) (0) |
#define | glob_call_func(func, path, arg, enc) (*(func))((path), (arg), (void *)(enc)) |
Typedefs | |
typedef int | ruby_glob_errfunc(const char *, VALUE, const void *, int) |
Enumerations | |
enum | rb_pathtype_t { path_exist, path_directory = IFTODT(S_IFDIR), path_regular = IFTODT(S_IFREG), path_symlink = IFTODT(S_IFLNK), path_noent = -1, path_unknown = -2 } |
enum | glob_pattern_type { PLAIN, ALPHA, MAGICAL, RECURSIVE, MATCH_ALL, MATCH_DIR } |
Functions | |
char * | getenv () |
char * | strchr (char *, char) |
VALUE | rb_dir_getwd_ospath (void) |
VALUE | rb_dir_getwd (void) |
ALWAYS_INLINE (static int to_be_ignored(int e)) | |
int | ruby_glob (const char *path, int flags, ruby_glob_func *func, VALUE arg) |
void | rb_glob (const char *path, void(*func)(const char *, VALUE, void *), VALUE arg) |
int | ruby_brace_glob_with_enc (const char *str, int flags, ruby_glob_func *func, VALUE arg, rb_encoding *enc) |
int | ruby_brace_glob (const char *str, int flags, ruby_glob_func *func, VALUE arg) |
void | Init_Dir (void) |
Variables | |
VALUE | rb_cDir |
#define check_glob_encoding | ( | str | ) | rb_enc_check((str), rb_enc_from_encoding(rb_usascii_encoding())) |
#define check_safe_glob | ( | str, | |
safe | |||
) | ((safe) ? rb_check_safe_obj(str) : (void)0) |
#define dir_fileno rb_f_notimplement |
#define dir_s_chroot rb_f_notimplement |
#define dir_seek rb_f_notimplement |
#define dir_set_pos rb_f_notimplement |
#define dir_tell rb_f_notimplement |
#define GLOB_ALLOC_N | ( | type, | |
n | |||
) | ((type *)malloc(sizeof(type) * (n))) |
#define glob_call_func | ( | func, | |
path, | |||
arg, | |||
enc | |||
) | (*(func))((path), (arg), (void *)(enc)) |
#define GLOB_JUMP_TAG | ( | status | ) | (((status) == -1) ? rb_memerror() : rb_jump_tag(status)) |
#define GLOB_VERBOSE (1U << (sizeof(int) * CHAR_BIT - 1)) |
Definition at line 1284 of file dir.c.
Referenced by ruby_brace_glob_with_enc().
#define GlobPathValue | ( | str, | |
safe | |||
) |
#define IFTODT | ( | m | ) | (((m) & S_IFMT) / ((~S_IFMT & S_IFMT-1) + 1)) |
#define Next | ( | p, | |
e, | |||
enc | |||
) | ((p)+ rb_enc_mbclen((p), (e), (enc))) |
#define RUBY_UNTYPED_DATA_WARNING 0 |
#define sys_enc_warning_in | ( | func, | |
mesg, | |||
enc | |||
) | sys_enc_warning(mesg, enc) |
#define sys_warning | ( | val, | |
enc | |||
) | ((flags & GLOB_VERBOSE) ? sys_enc_warning_in(RUBY_FUNCTION_NAME_STRING, (val), (enc)) :(void)0) |
#define UNESCAPE | ( | p | ) | (escape && *(p) == '\\' ? (p) + 1 : (p)) |
#define USE_NAME_ON_FS_BY_FNMATCH |
#define USE_NAME_ON_FS_REAL_BASENAME |
enum glob_pattern_type |
enum rb_pathtype_t |
ALWAYS_INLINE | ( | static int | to_be_ignoredint e | ) |
char* getenv | ( | ) |
void Init_Dir | ( | void | ) |
Definition at line 3087 of file dir.c.
References rb_cDir, rb_cObject, rb_define_alloc_func(), rb_define_class(), rb_include_module(), and rb_mEnumerable.
VALUE rb_dir_getwd | ( | void | ) |
Definition at line 1114 of file dir.c.
References ENCINDEX_ASCII, ENCINDEX_US_ASCII, NULL, rb_dir_getwd_ospath(), rb_enc_associate_index(), rb_enc_to_index(), rb_filesystem_encoding(), and rb_str_conv_enc().
VALUE rb_dir_getwd_ospath | ( | void | ) |
Definition at line 1089 of file dir.c.
Referenced by rb_dir_getwd().
Definition at line 2250 of file dir.c.
References glob_args::enc, glob_args::func, rb_ascii8bit_encoding(), and glob_args::value.
int ruby_brace_glob | ( | const char * | str, |
int | flags, | ||
ruby_glob_func * | func, | ||
VALUE | arg | ||
) |
Definition at line 2366 of file dir.c.
References rb_ascii8bit_encoding(), and ruby_brace_glob_with_enc().
int ruby_brace_glob_with_enc | ( | const char * | str, |
int | flags, | ||
ruby_glob_func * | func, | ||
VALUE | arg, | ||
rb_encoding * | enc | ||
) |
Definition at line 2353 of file dir.c.
References ruby_glob_funcs_t::error, brace_args::flags, brace_args::funcs, GLOB_VERBOSE, ruby_glob_funcs_t::match, NULL, and brace_args::value.
Referenced by ruby_brace_glob().
int ruby_glob | ( | const char * | path, |
int | flags, | ||
ruby_glob_func * | func, | ||
VALUE | arg | ||
) |
Definition at line 2225 of file dir.c.
References ruby_glob_funcs_t::error, ruby_glob_funcs_t::match, and NULL.
char* strchr | ( | char * | , |
char | |||
) |
Referenced by nl_langinfo_codeset(), rb_feature_provided(), rb_io_modestr_fmode(), rb_path_check(), ruby_scan_hex(), and ruby_strtod().
VALUE rb_cDir |
Definition at line 437 of file dir.c.
Referenced by Init_Dir().