|
Ruby
2.7.2p137(2020-10-01revision5445e0435260b449decf2ac16f9d09bae3cafe72)
|
#include "ruby/encoding.h"#include "ruby/thread.h"#include "internal.h"#include "id.h"#include "encindex.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 | mkdir_arg |
| struct | warning_args |
| struct | ruby_glob_funcs_t |
| struct | opendir_at_arg |
| struct | glob_pattern |
| struct | glob_args |
| struct | glob_error_args |
| struct | push_glob_args |
| struct | dirent_brace_args |
| struct | push_glob0_args |
| struct | brace_args |
Macros | |
| #define | O_CLOEXEC 0 |
| #define | USE_OPENDIR_AT 0 |
| #define | AT_FDCWD -1 |
| #define | dirent direct |
| #define | NAMLEN(dirent) (dirent)->d_namlen |
| #define | HAVE_DIRENT_NAMLEN 1 |
| #define | vm_initialized rb_cThread |
| #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 | 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 *)glob_alloc_n(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, BRACE, MAGICAL, RECURSIVE, MATCH_ALL, MATCH_DIR } |
Functions | |
| char * | getenv () |
| char * | strchr (char *, char) |
| NORETURN (static void dir_closed(void)) | |
| 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 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_JUMP_TAG | ( | status | ) | (((status) == -1) ? rb_memerror() : rb_jump_tag(status)) |
| #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 |
| #define vm_initialized rb_cThread |
| enum glob_pattern_type |
| enum rb_pathtype_t |
| ALWAYS_INLINE | ( | static int | to_be_ignoredint e | ) |
| char* getenv | ( | ) |
Definition at line 3393 of file dir.c.
References rb_cDir, rb_cObject, rb_define_alloc_func(), rb_define_class(), rb_include_module(), and rb_mEnumerable.
| NORETURN | ( | static void | dir_closedvoid | ) |
Definition at line 1141 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().
Definition at line 1117 of file dir.c.
Referenced by rb_dir_getwd().
| int ruby_brace_glob_with_enc | ( | const char * | str, |
| int | flags, | ||
| ruby_glob_func * | func, | ||
| VALUE | arg, | ||
| rb_encoding * | enc | ||
| ) |
Definition at line 2646 of file dir.c.
References arg, 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().
Referenced by nl_langinfo_codeset(), rb_feature_provided(), rb_io_modestr_fmode(), rb_path_check(), ruby_scan_hex(), and strtod().
| VALUE rb_cDir |
Definition at line 439 of file dir.c.
Referenced by Init_Dir().