2000-05-01 05:42:38 -04:00
|
|
|
/**********************************************************************
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
dir.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Wed Jan 5 09:51:01 JST 1994
|
|
|
|
|
2003-01-16 02:34:03 -05:00
|
|
|
Copyright (C) 1993-2003 Yukihiro Matsumoto
|
2000-05-01 05:42:38 -04:00
|
|
|
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
2000-05-09 00:53:16 -04:00
|
|
|
Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2000-05-01 05:42:38 -04:00
|
|
|
**********************************************************************/
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
#include "ruby.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
1998-01-16 07:19:22 -05:00
|
|
|
#include <sys/stat.h>
|
1998-01-16 07:13:05 -05:00
|
|
|
|
1998-01-16 07:19:22 -05:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
1998-01-16 07:13:05 -05:00
|
|
|
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
#if defined HAVE_DIRENT_H && !defined _WIN32
|
1998-01-16 07:13:05 -05:00
|
|
|
# include <dirent.h>
|
|
|
|
# define NAMLEN(dirent) strlen((dirent)->d_name)
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
#elif defined HAVE_DIRECT_H && !defined _WIN32
|
1999-01-19 23:59:39 -05:00
|
|
|
# include <direct.h>
|
|
|
|
# define NAMLEN(dirent) strlen((dirent)->d_name)
|
1998-01-16 07:13:05 -05:00
|
|
|
#else
|
|
|
|
# define dirent direct
|
* gc.c (Init_stack): stack region is far smaller than usual if
pthread is used.
* marshal.c (w_extended): singleton methods should not be checked
when dumping via marshal_dump() or _dump(). [ruby-talk:85909]
* file.c (getcwdofdrv): avoid using getcwd() directly, use
my_getcwd() instead.
* merged NeXT, OpenStep, Rhapsody ports patch from Eric Sunshine
<sunshine@sunshineco.com>. [ruby-core:01596]
* marshal.c (w_object): LINK check earlier than anything else,
i.e. do not dump TYPE_IVAR for already dumped objects.
(ruby-bugs PR#1220)
* eval.c (rb_eval): call "inherited" only when a new class is
generated; not on reopening.
* eval.c (eval): prepend error position in evaluating string to
* configure.in: revived NextStep, OpenStep, and Rhapsody ports which
had become unbuildable; enhanced --enable-fat-binary option so that
it accepts a list of desired architectures (rather than assuming a
fixed list), or defaults to a platform-appropriate list if user does
not provide an explicit list; made the default list of architectures
for MAB (fat binary) more comprehensive; now uses -fno-common even
when building the interpreter (in addition to using it for
extensions), thus allowing the interpreter to be embedded into a
plugin module of an external project (in addition to allowing
embedding directly into an application); added checks for
<netinet/in_systm.h> (needed by `socket' extension) and getcwd(); now
ensures that -I/usr/local/include is employed when extensions'
extconf.rb scripts invoke have_header() since extension checks on
NextStep and OpenStep will fail without it if the desired resource
resides in the /usr/local tree; fixed formatting of --help message.
* Makefile.in: $(LIBRUBY_A) rule now deletes the archive before
invoking $(AR) since `ar' on Apple/NeXT can not "update" MAB archives
(see configure's --enable-fat-binary option); added rule for new
missing/getcwd.c.
* defines.h: fixed endian handling during MAB build (see configure's
--enable-fat-binary option) to ensure that all portions of the
project see the correct WORDS_BIGENDIAN value (some extension modules
were getting the wrong endian setting); added missing constants
GETPGRP_VOID, WNOHANG, WUNTRACED, X_OK, and type pid_t for NextStep
and OpenStep; removed unnecessary and problematic HAVE_SYS_WAIT_H
define in NeXT section.
* dir.c: do not allow NAMLEN() macro to trust dirent::d_namlen on
NextStep since, on some installations, this value always resolves
uselessly to zero.
* dln.c: added error reporting to NextStep extension loader since the
previous behavior of failing silently was not useful; now ensures
that NSLINKMODULE_OPTION_BINDNOW compatibility constant is defined
for OpenStep and Rhapsody; no longer includes <mach-o/dyld.h> twice
on Rhapsody since this header lacks multiple-include protection,
which resulted in "redefinition" compilation errors.
* main.c: also create hard reference to objc_msgSend() on NeXT
platforms (in addition to Apple platforms).
* lib/mkmf.rb: now exports XCFLAGS from configure script to extension
makefiles so that extensions can be built MAB (see configure's
--enable-fat-binary option); also utilize XCFLAGS in cc_command()
(but not cpp_command() because MAB flags are incompatible with
direct invocation of `cpp').
* ext/curses/extconf.rb: now additionally checks for presence of these
curses functions which are not present on NextStep or Openstep:
bkgd(), bkgdset(), color(), curs(), getbkgd(), init(), scrl(), set(),
setscrreg(), wattroff(), wattron(), wattrset(), wbkgd(), wbkgdset(),
wscrl(), wsetscrreg()
* ext/curses/curses.c: added appropriate #ifdef's for additional set of
curses functions now checked by extconf.rb; fixed curses_bkgd() and
window_bkgd() to correctly return boolean result rather than numeric
result; fixed window_getbkgd() to correctly signal an error by
returning nil rather than -1.
* ext/etc/etc.c: setup_passwd() and setup_group() now check for null
pointers before invoking rb_tainted_str_new2() upon fields extracted
from `struct passwd' and `struct group' since null pointers in some
fields are common on NextStep/OpenStep (especially so for the
`pw_comment' field) and rb_tainted_str_new2() throws an exception
when it receives a null pointer.
* ext/pty/pty.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
* ext/socket/getaddrinfo.c: cast first argument of getservbyname(),
gethostbyaddr(), and gethostbyname() from (const char*) to non-const
(char*) for older platforms such as NextStep and OpenStep.
* ext/socket/socket.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup(); include
<netinet/in_systm.h> if present for NextStep and OpenStep; cast first
argument of gethostbyaddr() and getservbyname() from (const char*) to
non-const (char*) for older platforms.
* ext/syslog/syslog.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-21 23:00:03 -05:00
|
|
|
# if !defined __NeXT__
|
|
|
|
# define NAMLEN(dirent) (dirent)->d_namlen
|
|
|
|
# else
|
|
|
|
# /* On some versions of NextStep, d_namlen is always zero, so avoid it. */
|
|
|
|
# define NAMLEN(dirent) strlen((dirent)->d_name)
|
|
|
|
# endif
|
1998-01-16 07:13:05 -05:00
|
|
|
# if HAVE_SYS_NDIR_H
|
|
|
|
# include <sys/ndir.h>
|
|
|
|
# endif
|
|
|
|
# if HAVE_SYS_DIR_H
|
|
|
|
# include <sys/dir.h>
|
|
|
|
# endif
|
|
|
|
# if HAVE_NDIR_H
|
|
|
|
# include <ndir.h>
|
|
|
|
# endif
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
# ifdef _WIN32
|
2001-03-18 22:20:24 -05:00
|
|
|
# include "win32/dir.h"
|
1998-01-16 07:13:05 -05:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
#ifndef HAVE_STDLIB_H
|
1998-01-16 07:13:05 -05:00
|
|
|
char *getenv();
|
|
|
|
#endif
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
#ifndef HAVE_STRING_H
|
|
|
|
char *strchr _((char*,char));
|
1999-01-19 23:59:39 -05:00
|
|
|
#endif
|
|
|
|
|
1999-10-21 03:52:15 -04:00
|
|
|
#include <ctype.h>
|
|
|
|
|
2001-11-08 01:43:14 -05:00
|
|
|
#include "util.h"
|
|
|
|
|
2001-02-13 09:15:55 -05:00
|
|
|
#ifndef HAVE_LSTAT
|
2001-03-20 22:51:23 -05:00
|
|
|
#define lstat(path,st) stat(path,st)
|
2001-02-13 09:15:55 -05:00
|
|
|
#endif
|
|
|
|
|
1999-10-21 03:52:15 -04:00
|
|
|
#define FNM_NOESCAPE 0x01
|
|
|
|
#define FNM_PATHNAME 0x02
|
2002-03-13 05:11:09 -05:00
|
|
|
#define FNM_DOTMATCH 0x04
|
2001-06-13 06:51:39 -04:00
|
|
|
#define FNM_CASEFOLD 0x08
|
1999-10-21 03:52:15 -04:00
|
|
|
|
|
|
|
#define FNM_NOMATCH 1
|
|
|
|
#define FNM_ERROR 2
|
|
|
|
|
2001-02-08 04:19:27 -05:00
|
|
|
#define downcase(c) (nocase && ISUPPER(c) ? tolower(c) : (c))
|
2004-01-02 11:21:26 -05:00
|
|
|
#define compare(c1, c2) (((unsigned char)(c1)) - ((unsigned char)(c2)))
|
|
|
|
|
|
|
|
/* caution: in case *p == '\0'
|
|
|
|
Next(p) == p + 1 in single byte environment
|
|
|
|
Next(p) == p in multi byte environment
|
|
|
|
*/
|
|
|
|
#if defined(CharNext)
|
|
|
|
# define Next(p) CharNext(p)
|
|
|
|
#elif defined(DJGPP)
|
2004-01-21 10:26:11 -05:00
|
|
|
# define Next(p) ((p) + mblen(p, RUBY_MBCHAR_MAXSIZE))
|
2004-01-02 11:21:26 -05:00
|
|
|
#elif defined(__EMX__)
|
|
|
|
# define Next(p) ((p) + emx_mblen(p))
|
|
|
|
static inline int
|
|
|
|
emx_mblen(p)
|
|
|
|
const char *p;
|
|
|
|
{
|
2004-01-21 10:26:11 -05:00
|
|
|
int n = mblen(p, RUBY_MBCHAR_MAXSIZE);
|
2004-01-02 11:21:26 -05:00
|
|
|
return (n < 0) ? 1 : n;
|
|
|
|
}
|
2001-09-08 10:17:53 -04:00
|
|
|
#endif
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
#ifndef Next /* single byte environment */
|
|
|
|
# define Next(p) ((p) + 1)
|
|
|
|
# define Inc(p) (++(p))
|
|
|
|
# define Compare(p1, p2) (compare(downcase(*(p1)), downcase(*(p2))))
|
|
|
|
#else /* multi byte environment */
|
|
|
|
# define Inc(p) ((p) = Next(p))
|
|
|
|
# define Compare(p1, p2) (CompareImpl(p1, p2, nocase))
|
|
|
|
static int
|
|
|
|
CompareImpl(p1, p2, nocase)
|
|
|
|
const char *p1;
|
|
|
|
const char *p2;
|
|
|
|
int nocase;
|
|
|
|
{
|
|
|
|
const int len1 = Next(p1) - p1;
|
|
|
|
const int len2 = Next(p2) - p2;
|
|
|
|
|
|
|
|
if (len1 == 0) return len2;
|
|
|
|
if (len2 == 0) return -len1;
|
|
|
|
|
|
|
|
if (len1 == 1)
|
|
|
|
if (len2 == 1)
|
|
|
|
return compare(downcase(*p1), downcase(*p2));
|
|
|
|
else {
|
|
|
|
const int ret = compare(downcase(*p1), *p2);
|
|
|
|
return ret ? ret : -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (len2 == 1) {
|
|
|
|
const int ret = compare(*p1, downcase(*p2));
|
|
|
|
return ret ? ret : 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const int ret = memcmp(p1, p2, len1 < len2 ? len1 : len2);
|
|
|
|
return ret ? ret : len1 - len2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* environment */
|
|
|
|
|
1999-10-21 03:52:15 -04:00
|
|
|
#if defined DOSISH
|
|
|
|
#define isdirsep(c) ((c) == '/' || (c) == '\\')
|
|
|
|
#else
|
|
|
|
#define isdirsep(c) ((c) == '/')
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static char *
|
|
|
|
range(pat, test, flags)
|
|
|
|
char *pat;
|
2004-01-02 11:21:26 -05:00
|
|
|
char *test;
|
1999-10-21 03:52:15 -04:00
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
int not, ok = 0;
|
2001-06-13 06:51:39 -04:00
|
|
|
int nocase = flags & FNM_CASEFOLD;
|
1999-10-21 03:52:15 -04:00
|
|
|
int escape = !(flags & FNM_NOESCAPE);
|
|
|
|
|
|
|
|
not = *pat == '!' || *pat == '^';
|
|
|
|
if (not)
|
|
|
|
pat++;
|
|
|
|
|
|
|
|
while (*pat) {
|
2004-01-02 11:21:26 -05:00
|
|
|
char *pstart, *pend;
|
|
|
|
pstart = pend = pat;
|
|
|
|
if (*pstart == ']')
|
|
|
|
return ok == not ? 0 : ++pat;
|
|
|
|
else if (escape && *pstart == '\\')
|
|
|
|
pstart = pend = ++pat;
|
2004-01-07 08:28:15 -05:00
|
|
|
Inc(pat);
|
1999-10-21 03:52:15 -04:00
|
|
|
if (*pat == '-' && pat[1] != ']') {
|
|
|
|
if (escape && pat[1] == '\\')
|
|
|
|
pat++;
|
2004-01-02 11:21:26 -05:00
|
|
|
pend = pat+1;
|
|
|
|
if (!*pend)
|
1999-10-21 03:52:15 -04:00
|
|
|
return 0;
|
2004-01-02 11:21:26 -05:00
|
|
|
pat = Next(pend);
|
1999-10-21 03:52:15 -04:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
if (Compare(pstart, test) <= 0 && Compare(test, pend) <= 0)
|
1999-10-21 03:52:15 -04:00
|
|
|
ok = 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-05-27 13:24:24 -04:00
|
|
|
#define ISDIRSEP(c) (pathname && isdirsep(c))
|
2004-01-02 11:21:26 -05:00
|
|
|
#define PERIOD_S() (period && *s == '.' && \
|
|
|
|
(!s_prev || ISDIRSEP(*s_prev)))
|
|
|
|
#define INC_S() (s = Next(s_prev = s))
|
1999-10-21 03:52:15 -04:00
|
|
|
static int
|
|
|
|
fnmatch(pat, string, flags)
|
2001-05-11 01:24:59 -04:00
|
|
|
const char *pat;
|
|
|
|
const char *string;
|
1999-10-21 03:52:15 -04:00
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
int c;
|
2004-01-02 11:21:26 -05:00
|
|
|
const char *test;
|
|
|
|
const char *s = string, *s_prev = 0;
|
1999-10-21 03:52:15 -04:00
|
|
|
int escape = !(flags & FNM_NOESCAPE);
|
|
|
|
int pathname = flags & FNM_PATHNAME;
|
2002-03-13 05:11:09 -05:00
|
|
|
int period = !(flags & FNM_DOTMATCH);
|
2001-06-13 06:51:39 -04:00
|
|
|
int nocase = flags & FNM_CASEFOLD;
|
1999-10-21 03:52:15 -04:00
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
while (c = *pat) {
|
1999-10-21 03:52:15 -04:00
|
|
|
switch (c) {
|
2004-01-07 08:28:15 -05:00
|
|
|
case '?':
|
2004-01-02 11:21:26 -05:00
|
|
|
if (!*s || ISDIRSEP(*s) || PERIOD_S())
|
1999-10-21 03:52:15 -04:00
|
|
|
return FNM_NOMATCH;
|
2004-01-02 11:21:26 -05:00
|
|
|
INC_S();
|
|
|
|
++pat;
|
1999-10-21 03:52:15 -04:00
|
|
|
break;
|
2004-01-07 08:28:15 -05:00
|
|
|
|
|
|
|
case '*':
|
2004-01-02 11:21:26 -05:00
|
|
|
while ((c = *++pat) == '*')
|
1999-10-21 03:52:15 -04:00
|
|
|
;
|
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
if (PERIOD_S())
|
1999-10-21 03:52:15 -04:00
|
|
|
return FNM_NOMATCH;
|
|
|
|
|
|
|
|
if (!c) {
|
2003-12-18 02:38:48 -05:00
|
|
|
if (pathname && *rb_path_next(s))
|
1999-10-21 03:52:15 -04:00
|
|
|
return FNM_NOMATCH;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2001-05-27 13:24:24 -04:00
|
|
|
else if (ISDIRSEP(c)) {
|
2003-12-18 02:38:48 -05:00
|
|
|
s = rb_path_next(s);
|
|
|
|
if (*s) {
|
2004-01-02 11:21:26 -05:00
|
|
|
INC_S();
|
1999-10-21 03:52:15 -04:00
|
|
|
break;
|
2002-03-25 01:18:07 -05:00
|
|
|
}
|
1999-10-21 03:52:15 -04:00
|
|
|
return FNM_NOMATCH;
|
|
|
|
}
|
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
test = escape && c == '\\' ? pat+1 : pat;
|
1999-10-21 03:52:15 -04:00
|
|
|
while (*s) {
|
2004-01-02 11:21:26 -05:00
|
|
|
if ((c == '[' || Compare(s, test) == 0) &&
|
2002-03-13 05:11:09 -05:00
|
|
|
!fnmatch(pat, s, flags | FNM_DOTMATCH))
|
1999-10-21 03:52:15 -04:00
|
|
|
return 0;
|
2001-05-27 13:24:24 -04:00
|
|
|
else if (ISDIRSEP(*s))
|
1999-10-21 03:52:15 -04:00
|
|
|
break;
|
2004-01-02 11:21:26 -05:00
|
|
|
INC_S();
|
1999-10-21 03:52:15 -04:00
|
|
|
}
|
|
|
|
return FNM_NOMATCH;
|
2004-01-05 05:01:54 -05:00
|
|
|
|
2004-01-07 08:28:15 -05:00
|
|
|
case '[':
|
2004-01-02 11:21:26 -05:00
|
|
|
if (!*s || ISDIRSEP(*s) || PERIOD_S())
|
1999-10-21 03:52:15 -04:00
|
|
|
return FNM_NOMATCH;
|
2004-01-02 11:21:26 -05:00
|
|
|
pat = range(pat+1, s, flags);
|
1999-10-21 03:52:15 -04:00
|
|
|
if (!pat)
|
|
|
|
return FNM_NOMATCH;
|
2004-01-02 11:21:26 -05:00
|
|
|
INC_S();
|
1999-10-21 03:52:15 -04:00
|
|
|
break;
|
|
|
|
|
2004-01-07 08:28:15 -05:00
|
|
|
case '\\':
|
2004-01-02 11:21:26 -05:00
|
|
|
if (escape && pat[1]
|
1999-10-21 03:52:15 -04:00
|
|
|
#if defined DOSISH
|
2004-01-02 11:21:26 -05:00
|
|
|
&& strchr("*?[\\", pat[1])
|
1999-10-21 03:52:15 -04:00
|
|
|
#endif
|
|
|
|
) {
|
2004-01-02 11:21:26 -05:00
|
|
|
c = *++pat;
|
1999-10-21 03:52:15 -04:00
|
|
|
}
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
2004-01-07 08:28:15 -05:00
|
|
|
default:
|
1999-10-21 03:52:15 -04:00
|
|
|
#if defined DOSISH
|
2001-05-27 13:24:24 -04:00
|
|
|
if (ISDIRSEP(c) && isdirsep(*s))
|
1999-10-21 03:52:15 -04:00
|
|
|
;
|
|
|
|
else
|
|
|
|
#endif
|
2004-01-07 08:28:15 -05:00
|
|
|
if (Compare(pat, s) != 0)
|
1999-10-21 03:52:15 -04:00
|
|
|
return FNM_NOMATCH;
|
2004-01-02 11:21:26 -05:00
|
|
|
INC_S();
|
|
|
|
Inc(pat);
|
1999-10-21 03:52:15 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return !*s ? 0 : FNM_NOMATCH;
|
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
VALUE rb_cDir;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data {
|
|
|
|
DIR *dir;
|
|
|
|
char *path;
|
|
|
|
};
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
static void
|
|
|
|
free_dir(dir)
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dir;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
2001-09-19 02:54:11 -04:00
|
|
|
if (dir && dir->dir) closedir(dir->dir);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
static VALUE dir_close _((VALUE));
|
|
|
|
|
* array.c (ary_alloc), dir.c (dir_s_alloc), eval.c (thgroup_s_alloc),
file.c (rb_stat_s_alloc), hash.c (hash_alloc), io.c (io_alloc),
object.c (rb_module_s_alloc, rb_class_allocate_instance),
re.c (match_alloc, rb_reg_s_alloc), string.c (str_alloc),
time.c (time_s_alloc), ext/digest/digest.c (rb_digest_base_alloc),
ext/tcltklib/tcltklib.c (ip_alloc),
ext/win32ole/win32ole.c (fole_s_allocate, fev_s_allocate)
: add prototype to get rid of VC++ warnings.
* ext/sdbm/init.c (fsdbm_alloc): allocator takes only one argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3197 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-21 13:02:01 -05:00
|
|
|
static VALUE dir_s_alloc _((VALUE));
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
2001-10-03 03:19:19 -04:00
|
|
|
dir_s_alloc(klass)
|
2000-02-29 03:05:32 -05:00
|
|
|
VALUE klass;
|
|
|
|
{
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dirp;
|
|
|
|
VALUE obj = Data_Make_Struct(klass, struct dir_data, 0, free_dir, dirp);
|
2000-02-29 03:05:32 -05:00
|
|
|
|
2001-09-19 02:54:11 -04:00
|
|
|
dirp->dir = NULL;
|
|
|
|
dirp->path = NULL;
|
2000-02-29 03:05:32 -05:00
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.new( string ) -> aDir
|
|
|
|
*
|
|
|
|
* Returns a new directory object for the named directory.
|
|
|
|
*/
|
2000-02-29 03:05:32 -05:00
|
|
|
static VALUE
|
|
|
|
dir_initialize(dir, dirname)
|
|
|
|
VALUE dir, dirname;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dp;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2001-05-02 00:22:21 -04:00
|
|
|
SafeStringValue(dirname);
|
2001-09-19 02:54:11 -04:00
|
|
|
Data_Get_Struct(dir, struct dir_data, dp);
|
|
|
|
if (dp->dir) closedir(dp->dir);
|
|
|
|
if (dp->path) free(dp->path);
|
|
|
|
dp->dir = NULL;
|
|
|
|
dp->path = NULL;
|
|
|
|
dp->dir = opendir(RSTRING(dirname)->ptr);
|
|
|
|
if (dp->dir == NULL) {
|
1998-01-16 07:13:05 -05:00
|
|
|
if (errno == EMFILE || errno == ENFILE) {
|
1999-01-19 23:59:39 -05:00
|
|
|
rb_gc();
|
2001-09-19 02:54:11 -04:00
|
|
|
dp->dir = opendir(RSTRING(dirname)->ptr);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
2001-09-19 02:54:11 -04:00
|
|
|
if (dp->dir == NULL) {
|
1998-01-16 07:19:22 -05:00
|
|
|
rb_sys_fail(RSTRING(dirname)->ptr);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
}
|
2001-09-19 02:54:11 -04:00
|
|
|
dp->path = strdup(RSTRING(dirname)->ptr);
|
2000-05-24 00:34:26 -04:00
|
|
|
|
2000-02-29 03:05:32 -05:00
|
|
|
return dir;
|
|
|
|
}
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.open( string ) => aDir
|
|
|
|
* Dir.open( string ) {| aDir | block } => anObject
|
|
|
|
*
|
|
|
|
* With no block, <code>open</code> is a synonym for
|
|
|
|
* <code>Dir::new</code>. If a block is present, it is passed
|
|
|
|
* <i>aDir</i> as a parameter. The directory is closed at the end of
|
|
|
|
* the block, and <code>Dir::open</code> returns the value of the
|
|
|
|
* block.
|
|
|
|
*/
|
2000-02-29 03:05:32 -05:00
|
|
|
static VALUE
|
|
|
|
dir_s_open(klass, dirname)
|
|
|
|
VALUE klass, dirname;
|
|
|
|
{
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dp;
|
|
|
|
VALUE dir = Data_Make_Struct(klass, struct dir_data, 0, free_dir, dp);
|
2000-05-25 01:55:12 -04:00
|
|
|
|
|
|
|
dir_initialize(dir, dirname);
|
2000-05-24 00:34:26 -04:00
|
|
|
if (rb_block_given_p()) {
|
2001-02-27 02:52:11 -05:00
|
|
|
return rb_ensure(rb_yield, dir, dir_close, dir);
|
2000-05-24 00:34:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return dir;
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dir_closed()
|
|
|
|
{
|
1999-01-19 23:59:39 -05:00
|
|
|
rb_raise(rb_eIOError, "closed directory");
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
2002-04-18 04:46:18 -04:00
|
|
|
#define GetDIR(obj, dirp) do {\
|
2001-09-19 02:54:11 -04:00
|
|
|
Data_Get_Struct(obj, struct dir_data, dirp);\
|
|
|
|
if (dirp->dir == NULL) dir_closed();\
|
2002-04-18 04:46:18 -04:00
|
|
|
} while (0)
|
2001-09-19 02:54:11 -04:00
|
|
|
|
2004-01-10 08:46:21 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dir.inspect => string
|
|
|
|
*
|
|
|
|
* Return a string describing this Dir object.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
dir_inspect(dir)
|
|
|
|
VALUE dir;
|
|
|
|
{
|
|
|
|
struct dir_data *dirp;
|
|
|
|
|
|
|
|
GetDIR(dir, dirp);
|
|
|
|
if (dirp->path) {
|
|
|
|
char *c = rb_obj_classname(dir);
|
|
|
|
int len = strlen(c) + strlen(dirp->path) + 4;
|
|
|
|
VALUE s = rb_str_new(0, len);
|
|
|
|
snprintf(RSTRING(s)->ptr, len+1, "#<%s:%s>", c, dirp->path);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
return rb_funcall(dir, rb_intern("to_s"), 0, 0);
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dir.path => string or nil
|
|
|
|
*
|
|
|
|
* Returns the path parameter passed to <em>dir</em>'s constructor.
|
|
|
|
*
|
|
|
|
* d = Dir.new("..")
|
|
|
|
* d.path #=> ".."
|
|
|
|
*/
|
2001-09-19 02:54:11 -04:00
|
|
|
static VALUE
|
|
|
|
dir_path(dir)
|
|
|
|
VALUE dir;
|
|
|
|
{
|
|
|
|
struct dir_data *dirp;
|
|
|
|
|
|
|
|
GetDIR(dir, dirp);
|
|
|
|
if (!dirp->path) return Qnil;
|
|
|
|
return rb_str_new2(dirp->path);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dir.read => string or nil
|
|
|
|
*
|
|
|
|
* Reads the next entry from <em>dir</em> and returns it as a string.
|
|
|
|
* Returns <code>nil</code> at the end of the stream.
|
|
|
|
*
|
|
|
|
* d = Dir.new("testdir")
|
|
|
|
* d.read #=> "."
|
|
|
|
* d.read #=> ".."
|
|
|
|
* d.read #=> "config.h"
|
|
|
|
*/
|
1999-01-19 23:59:39 -05:00
|
|
|
static VALUE
|
|
|
|
dir_read(dir)
|
|
|
|
VALUE dir;
|
|
|
|
{
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dirp;
|
1999-01-19 23:59:39 -05:00
|
|
|
struct dirent *dp;
|
|
|
|
|
|
|
|
GetDIR(dir, dirp);
|
|
|
|
errno = 0;
|
2001-09-19 02:54:11 -04:00
|
|
|
dp = readdir(dirp->dir);
|
|
|
|
if (dp) {
|
1999-01-19 23:59:39 -05:00
|
|
|
return rb_tainted_str_new(dp->d_name, NAMLEN(dp));
|
2001-09-19 02:54:11 -04:00
|
|
|
}
|
1999-01-19 23:59:39 -05:00
|
|
|
else if (errno == 0) { /* end of stream */
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
|
|
|
return Qnil; /* not reached */
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dir.each { |filename| block } => dir
|
|
|
|
*
|
|
|
|
* Calls the block once for each entry in this directory, passing the
|
|
|
|
* filename of each entry as a parameter to the block.
|
|
|
|
*
|
|
|
|
* d = Dir.new("testdir")
|
|
|
|
* d.each {|x| puts "Got #{x}" }
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* Got .
|
|
|
|
* Got ..
|
|
|
|
* Got config.h
|
|
|
|
* Got main.rb
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_each(dir)
|
|
|
|
VALUE dir;
|
|
|
|
{
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dirp;
|
1998-01-16 07:13:05 -05:00
|
|
|
struct dirent *dp;
|
|
|
|
|
|
|
|
GetDIR(dir, dirp);
|
2001-09-19 02:54:11 -04:00
|
|
|
for (dp = readdir(dirp->dir); dp != NULL; dp = readdir(dirp->dir)) {
|
2000-07-31 00:36:38 -04:00
|
|
|
rb_yield(rb_tainted_str_new(dp->d_name, NAMLEN(dp)));
|
2001-09-19 02:54:11 -04:00
|
|
|
if (dirp->dir == NULL) dir_closed();
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dir.pos => integer
|
|
|
|
* dir.tell => integer
|
|
|
|
*
|
|
|
|
* Returns the current position in <em>dir</em>. See also
|
|
|
|
* <code>Dir#seek</code>.
|
|
|
|
*
|
|
|
|
* d = Dir.new("testdir")
|
|
|
|
* d.tell #=> 0
|
|
|
|
* d.read #=> "."
|
|
|
|
* d.tell #=> 12
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_tell(dir)
|
|
|
|
VALUE dir;
|
|
|
|
{
|
2000-09-21 05:31:00 -04:00
|
|
|
#ifdef HAVE_TELLDIR
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dirp;
|
1999-08-13 01:45:20 -04:00
|
|
|
long pos;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
GetDIR(dir, dirp);
|
2001-09-19 02:54:11 -04:00
|
|
|
pos = telldir(dirp->dir);
|
1999-01-19 23:59:39 -05:00
|
|
|
return rb_int2inum(pos);
|
1998-01-16 07:13:05 -05:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dir.seek( integer ) => dir
|
|
|
|
*
|
|
|
|
* Seeks to a particular location in <em>dir</em>. <i>integer</i>
|
|
|
|
* must be a value returned by <code>Dir#tell</code>.
|
|
|
|
*
|
|
|
|
* d = Dir.new("testdir") #=> #<Dir:0x401b3c40>
|
|
|
|
* d.read #=> "."
|
|
|
|
* i = d.tell #=> 12
|
|
|
|
* d.read #=> ".."
|
|
|
|
* d.seek(i) #=> #<Dir:0x401b3c40>
|
|
|
|
* d.read #=> ".."
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_seek(dir, pos)
|
|
|
|
VALUE dir, pos;
|
|
|
|
{
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dirp;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2000-09-21 05:31:00 -04:00
|
|
|
#ifdef HAVE_SEEKDIR
|
1998-01-16 07:13:05 -05:00
|
|
|
GetDIR(dir, dirp);
|
2001-09-19 02:54:11 -04:00
|
|
|
seekdir(dirp->dir, NUM2INT(pos));
|
2002-01-21 02:44:06 -05:00
|
|
|
return dir;
|
1998-01-16 07:13:05 -05:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dir.pos( integer ) => integer
|
|
|
|
*
|
|
|
|
* Synonym for <code>Dir#seek</code>, but returns the position
|
|
|
|
* parameter.
|
|
|
|
*
|
|
|
|
* d = Dir.new("testdir") #=> #<Dir:0x401b3c40>
|
|
|
|
* d.read #=> "."
|
|
|
|
* i = d.pos #=> 12
|
|
|
|
* d.read #=> ".."
|
|
|
|
* d.pos = i #=> 12
|
|
|
|
* d.read #=> ".."
|
|
|
|
*/
|
2002-01-21 02:44:06 -05:00
|
|
|
static VALUE
|
|
|
|
dir_set_pos(dir, pos)
|
|
|
|
VALUE dir, pos;
|
|
|
|
{
|
|
|
|
dir_seek(dir, pos);
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dir.rewind => dir
|
|
|
|
*
|
|
|
|
* Repositions <em>dir</em> to the first entry.
|
|
|
|
*
|
|
|
|
* d = Dir.new("testdir")
|
|
|
|
* d.read #=> "."
|
|
|
|
* d.rewind #=> #<Dir:0x401b3fb0>
|
|
|
|
* d.read #=> "."
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_rewind(dir)
|
|
|
|
VALUE dir;
|
|
|
|
{
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dirp;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
GetDIR(dir, dirp);
|
2001-09-19 02:54:11 -04:00
|
|
|
rewinddir(dirp->dir);
|
1998-01-16 07:13:05 -05:00
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dir.close => nil
|
|
|
|
*
|
|
|
|
* Closes the directory stream. Any further attempts to access
|
|
|
|
* <em>dir</em> will raise an <code>IOError</code>.
|
|
|
|
*
|
|
|
|
* d = Dir.new("testdir")
|
|
|
|
* d.close #=> nil
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_close(dir)
|
|
|
|
VALUE dir;
|
|
|
|
{
|
2001-09-19 02:54:11 -04:00
|
|
|
struct dir_data *dirp;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2001-09-19 02:54:11 -04:00
|
|
|
GetDIR(dir, dirp);
|
|
|
|
closedir(dirp->dir);
|
|
|
|
dirp->dir = NULL;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2001-03-16 03:30:09 -05:00
|
|
|
static void
|
|
|
|
dir_chdir(path)
|
|
|
|
const char *path;
|
|
|
|
{
|
|
|
|
if (chdir(path) < 0)
|
|
|
|
rb_sys_fail(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int chdir_blocking = 0;
|
2001-07-14 11:17:19 -04:00
|
|
|
static VALUE chdir_thread = Qnil;
|
2001-03-16 03:30:09 -05:00
|
|
|
|
|
|
|
static VALUE
|
|
|
|
chdir_restore(path)
|
2001-11-08 01:43:14 -05:00
|
|
|
char *path;
|
2001-03-16 03:30:09 -05:00
|
|
|
{
|
|
|
|
chdir_blocking--;
|
2001-07-14 11:17:19 -04:00
|
|
|
if (chdir_blocking == 0)
|
|
|
|
chdir_thread = Qnil;
|
2001-03-16 03:30:09 -05:00
|
|
|
dir_chdir(path);
|
2001-11-08 01:43:14 -05:00
|
|
|
free(path);
|
2001-03-16 03:30:09 -05:00
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.chdir( [ string] ) => 0
|
|
|
|
* Dir.chdir( [ string] ) {| path | block } => anObject
|
|
|
|
*
|
|
|
|
* Changes the current working directory of the process to the given
|
|
|
|
* string. When called without an argument, changes the directory to
|
|
|
|
* the value of the environment variable <code>HOME</code>, or
|
|
|
|
* <code>LOGDIR</code>. <code>SystemCallError</code> (probably
|
|
|
|
* <code>Errno::ENOENT</code>) if the target directory does not exist.
|
|
|
|
*
|
|
|
|
* If a block is given, it is passed the name of the new current
|
|
|
|
* directory, and the block is executed with that as the current
|
|
|
|
* directory. The original working directory is restored when the block
|
|
|
|
* exits. The return value of <code>chdir</code> is the value of the
|
|
|
|
* block. <code>chdir</code> blocks can be nested, but in a
|
|
|
|
* multi-threaded program an error will be raised if a thread attempts
|
|
|
|
* to open a <code>chdir</code> block while another thread has one
|
|
|
|
* open.
|
|
|
|
*
|
|
|
|
* Dir.chdir("/var/spool/mail")
|
|
|
|
* puts Dir.pwd
|
|
|
|
* Dir.chdir("/tmp") do
|
|
|
|
* puts Dir.pwd
|
|
|
|
* Dir.chdir("/usr") do
|
|
|
|
* puts Dir.pwd
|
|
|
|
* end
|
|
|
|
* puts Dir.pwd
|
|
|
|
* end
|
|
|
|
* puts Dir.pwd
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* /var/spool/mail
|
|
|
|
* /tmp
|
|
|
|
* /usr
|
|
|
|
* /tmp
|
|
|
|
* /var/spool/mail
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_s_chdir(argc, argv, obj)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
VALUE obj;
|
|
|
|
{
|
2001-03-16 03:30:09 -05:00
|
|
|
VALUE path = Qnil;
|
1998-01-16 07:13:05 -05:00
|
|
|
char *dist = "";
|
|
|
|
|
|
|
|
rb_secure(2);
|
1999-01-19 23:59:39 -05:00
|
|
|
if (rb_scan_args(argc, argv, "01", &path) == 1) {
|
2001-05-02 00:22:21 -04:00
|
|
|
SafeStringValue(path);
|
1998-01-16 07:13:05 -05:00
|
|
|
dist = RSTRING(path)->ptr;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dist = getenv("HOME");
|
|
|
|
if (!dist) {
|
|
|
|
dist = getenv("LOGDIR");
|
2001-09-06 04:48:07 -04:00
|
|
|
if (!dist) rb_raise(rb_eArgError, "HOME/LOGDIR not set");
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-14 11:17:19 -04:00
|
|
|
if (chdir_blocking > 0) {
|
|
|
|
if (!rb_block_given_p() || rb_thread_current() != chdir_thread)
|
|
|
|
rb_warn("conflicting chdir during another chdir block");
|
|
|
|
}
|
2001-03-16 03:30:09 -05:00
|
|
|
|
|
|
|
if (rb_block_given_p()) {
|
2001-11-08 01:43:14 -05:00
|
|
|
char *cwd = my_getcwd();
|
2001-03-16 03:30:09 -05:00
|
|
|
chdir_blocking++;
|
2001-07-14 11:17:19 -04:00
|
|
|
if (chdir_thread == Qnil)
|
|
|
|
chdir_thread = rb_thread_current();
|
2001-03-16 03:30:09 -05:00
|
|
|
dir_chdir(dist);
|
|
|
|
return rb_ensure(rb_yield, path, chdir_restore, (VALUE)cwd);
|
|
|
|
}
|
|
|
|
dir_chdir(dist);
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
return INT2FIX(0);
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.getwd => string
|
|
|
|
* Dir.pwd => string
|
|
|
|
*
|
|
|
|
* Returns the path to the current working directory of this process as
|
|
|
|
* a string.
|
|
|
|
*
|
|
|
|
* Dir.chdir("/tmp") #=> 0
|
|
|
|
* Dir.getwd #=> "/tmp"
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_s_getwd(dir)
|
|
|
|
VALUE dir;
|
|
|
|
{
|
2003-03-24 22:11:27 -05:00
|
|
|
char *path;
|
|
|
|
VALUE cwd;
|
|
|
|
|
|
|
|
rb_secure(4);
|
|
|
|
path = my_getcwd();
|
|
|
|
cwd = rb_tainted_str_new2(path);
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2001-11-08 01:43:14 -05:00
|
|
|
free(path);
|
|
|
|
return cwd;
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
2003-12-14 23:07:03 -05:00
|
|
|
static void check_dirname _((volatile VALUE *));
|
|
|
|
static void
|
|
|
|
check_dirname(dir)
|
|
|
|
volatile VALUE *dir;
|
|
|
|
{
|
|
|
|
char *path, *pend;
|
|
|
|
|
|
|
|
SafeStringValue(*dir);
|
|
|
|
rb_secure(2);
|
|
|
|
path = RSTRING(*dir)->ptr;
|
2003-12-14 23:11:34 -05:00
|
|
|
if (path && *(pend = rb_path_end(rb_path_skip_prefix(path)))) {
|
2003-12-14 23:07:03 -05:00
|
|
|
*dir = rb_str_new(path, pend - path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.chroot( string ) => 0
|
|
|
|
*
|
|
|
|
* Changes this process's idea of the file system root. Only a
|
|
|
|
* privileged process may make this call. Not available on all
|
|
|
|
* platforms. On Unix systems, see <code>chroot(2)</code> for more
|
|
|
|
* information.
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_s_chroot(dir, path)
|
|
|
|
VALUE dir, path;
|
|
|
|
{
|
2000-08-07 01:05:04 -04:00
|
|
|
#if defined(HAVE_CHROOT) && !defined(__CHECKER__)
|
2003-12-14 23:07:03 -05:00
|
|
|
check_dirname(&path);
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
if (chroot(RSTRING(path)->ptr) == -1)
|
1999-01-19 23:59:39 -05:00
|
|
|
rb_sys_fail(RSTRING(path)->ptr);
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
return INT2FIX(0);
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
1999-01-19 23:59:39 -05:00
|
|
|
return Qnil; /* not reached */
|
1998-01-16 07:13:05 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.mkdir( string [, integer] ) => 0
|
|
|
|
*
|
|
|
|
* Makes a new directory named by <i>string</i>, with permissions
|
|
|
|
* specified by the optional parameter <i>anInteger</i>. The
|
|
|
|
* permissions may be modified by the value of
|
|
|
|
* <code>File::umask</code>, and are ignored on NT. Raises a
|
|
|
|
* <code>SystemCallError</code> if the directory cannot be created. See
|
|
|
|
* also the discussion of permissions in the class documentation for
|
|
|
|
* <code>File</code>.
|
|
|
|
*
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_s_mkdir(argc, argv, obj)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
VALUE path, vmode;
|
|
|
|
int mode;
|
|
|
|
|
|
|
|
if (rb_scan_args(argc, argv, "11", &path, &vmode) == 2) {
|
|
|
|
mode = NUM2INT(vmode);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mode = 0777;
|
|
|
|
}
|
|
|
|
|
2003-12-14 23:07:03 -05:00
|
|
|
check_dirname(&path);
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
#ifndef _WIN32
|
1998-01-16 07:13:05 -05:00
|
|
|
if (mkdir(RSTRING(path)->ptr, mode) == -1)
|
|
|
|
rb_sys_fail(RSTRING(path)->ptr);
|
|
|
|
#else
|
|
|
|
if (mkdir(RSTRING(path)->ptr) == -1)
|
|
|
|
rb_sys_fail(RSTRING(path)->ptr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return INT2FIX(0);
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.delete( string ) => 0
|
|
|
|
* Dir.rmdir( string ) => 0
|
|
|
|
* Dir.unlink( string ) => 0
|
|
|
|
*
|
|
|
|
* Deletes the named directory. Raises a subclass of
|
|
|
|
* <code>SystemCallError</code> if the directory isn't empty.
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_s_rmdir(obj, dir)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE obj, dir;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
2003-12-14 23:07:03 -05:00
|
|
|
check_dirname(&dir);
|
1998-01-16 07:19:22 -05:00
|
|
|
if (rmdir(RSTRING(dir)->ptr) < 0)
|
|
|
|
rb_sys_fail(RSTRING(dir)->ptr);
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2000-03-07 03:37:59 -05:00
|
|
|
return INT2FIX(0);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
/* Return nonzero if S has any special globbing chars in it. */
|
|
|
|
static int
|
2004-01-02 11:21:26 -05:00
|
|
|
has_magic(p, m, flags)
|
|
|
|
register char *p;
|
|
|
|
char **m;
|
2001-05-27 13:24:24 -04:00
|
|
|
int flags;
|
1999-08-13 01:45:20 -04:00
|
|
|
{
|
|
|
|
register char c;
|
|
|
|
int open = 0;
|
2001-05-27 13:24:24 -04:00
|
|
|
int escape = !(flags & FNM_NOESCAPE);
|
1999-08-13 01:45:20 -04:00
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
while (c = *p++, c != '\0' && c != '/') {
|
1999-08-13 01:45:20 -04:00
|
|
|
switch (c) {
|
|
|
|
case '?':
|
|
|
|
case '*':
|
2004-01-02 11:21:26 -05:00
|
|
|
goto found;
|
1999-08-13 01:45:20 -04:00
|
|
|
|
2001-07-02 04:46:28 -04:00
|
|
|
case '[': /* Only accept an open brace if there is a close */
|
|
|
|
open++; /* brace to match it. Bracket expressions must be */
|
1999-08-13 01:45:20 -04:00
|
|
|
continue; /* complete, according to Posix.2 */
|
|
|
|
case ']':
|
|
|
|
if (open)
|
2004-01-02 11:21:26 -05:00
|
|
|
goto found;
|
1999-08-13 01:45:20 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
case '\\':
|
2004-01-02 11:21:26 -05:00
|
|
|
if (escape && (c = *p++, c == '\0' || c == '/'))
|
|
|
|
goto miss;
|
|
|
|
continue;
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
p = Next(p-1);
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
|
|
|
|
miss:
|
|
|
|
*m = p-1;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
found:
|
|
|
|
while (*p != '\0' && *p != '/')
|
|
|
|
Inc(p);
|
|
|
|
*m = p;
|
|
|
|
return 1;
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
static int
|
|
|
|
remove_backslashes(p, pend)
|
|
|
|
char *p;
|
|
|
|
char *pend;
|
1999-08-13 01:45:20 -04:00
|
|
|
{
|
2004-01-02 11:21:26 -05:00
|
|
|
char *t = p;
|
|
|
|
char *s = p;
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
while (*p && p < pend) {
|
|
|
|
if (*p == '\\') {
|
|
|
|
if (t != s) {
|
|
|
|
memmove(t, s, p - s);
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
t += p - s;
|
|
|
|
s = ++p;
|
|
|
|
if (!(*p && p < pend)) break;
|
|
|
|
}
|
|
|
|
Inc(p);
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
|
|
|
|
while (*p++);
|
|
|
|
|
|
|
|
if (t != s) {
|
|
|
|
memmove(t, s, p - s); /* move '\0' too */
|
|
|
|
n++;
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
return n;
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
static int
|
|
|
|
do_fnmatch(p, pend, string, flags)
|
|
|
|
char *p;
|
1999-08-13 01:45:20 -04:00
|
|
|
char *pend;
|
2004-01-02 11:21:26 -05:00
|
|
|
const char *string;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char c;
|
|
|
|
|
|
|
|
c = *pend;
|
|
|
|
*pend = '\0'; /* should I allocate new string? */
|
|
|
|
ret = fnmatch(p, string, flags);
|
|
|
|
*pend = c;
|
|
|
|
return ret;
|
|
|
|
}
|
1999-08-13 01:45:20 -04:00
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
static int
|
|
|
|
do_stat(path, pst)
|
|
|
|
const char *path;
|
|
|
|
struct stat *pst;
|
|
|
|
{
|
|
|
|
int ret = stat(path, pst);
|
|
|
|
if (ret < 0 && errno != ENOENT)
|
|
|
|
rb_sys_warning(path);
|
|
|
|
return ret;
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
static int
|
|
|
|
do_lstat(path, pst)
|
|
|
|
const char *path;
|
|
|
|
struct stat *pst;
|
2001-02-14 00:52:06 -05:00
|
|
|
{
|
2004-01-02 11:21:26 -05:00
|
|
|
int ret = lstat(path, pst);
|
|
|
|
if (ret < 0 && errno != ENOENT)
|
|
|
|
rb_sys_warning(path);
|
|
|
|
return ret;
|
|
|
|
}
|
2001-02-14 00:52:06 -05:00
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
static DIR *
|
|
|
|
do_opendir(path)
|
|
|
|
const char *path;
|
|
|
|
{
|
|
|
|
DIR *dirp = opendir(path);
|
|
|
|
if (dirp == NULL && errno != ENOENT && errno != ENOTDIR)
|
|
|
|
rb_sys_warning(path);
|
|
|
|
return dirp;
|
2001-02-14 00:52:06 -05:00
|
|
|
}
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
#ifndef S_ISDIR
|
|
|
|
# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
|
|
|
|
#endif
|
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
#ifndef S_ISLNK
|
|
|
|
# ifndef S_IFLNK
|
|
|
|
# define S_ISLNK(m) (0)
|
|
|
|
# else
|
|
|
|
# define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2002-09-12 02:27:15 -04:00
|
|
|
struct glob_args {
|
|
|
|
void (*func) _((const char*, VALUE));
|
|
|
|
const char *c;
|
|
|
|
VALUE v;
|
|
|
|
};
|
|
|
|
|
2002-09-13 10:46:44 -04:00
|
|
|
static VALUE glob_func_caller _((VALUE));
|
|
|
|
|
2002-09-12 02:27:15 -04:00
|
|
|
static VALUE
|
2002-09-13 10:46:44 -04:00
|
|
|
glob_func_caller(val)
|
|
|
|
VALUE val;
|
2002-09-12 02:27:15 -04:00
|
|
|
{
|
2002-09-13 10:46:44 -04:00
|
|
|
struct glob_args *args = (struct glob_args *)val;
|
2002-09-12 02:27:15 -04:00
|
|
|
(*args->func)(args->c, args->v);
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
glob_call_func(func, path, arg)
|
|
|
|
void (*func) _((const char*, VALUE));
|
|
|
|
const char *path;
|
|
|
|
VALUE arg;
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
struct glob_args args;
|
|
|
|
|
|
|
|
args.func = func;
|
|
|
|
args.c = path;
|
|
|
|
args.v = arg;
|
|
|
|
|
|
|
|
rb_protect(glob_func_caller, (VALUE)&args, &status);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2004-01-02 11:21:26 -05:00
|
|
|
glob_helper(path, sub, separator, flags, func, arg) /* if separator p[-1] is removable '/' */
|
1999-08-13 01:45:20 -04:00
|
|
|
char *path;
|
2001-09-06 04:48:07 -04:00
|
|
|
char *sub;
|
2004-01-02 11:21:26 -05:00
|
|
|
int separator;
|
2001-05-27 13:24:24 -04:00
|
|
|
int flags;
|
2001-07-14 11:17:19 -04:00
|
|
|
void (*func) _((const char*, VALUE));
|
1999-08-13 01:45:20 -04:00
|
|
|
VALUE arg;
|
|
|
|
{
|
|
|
|
struct stat st;
|
2002-09-12 02:27:15 -04:00
|
|
|
int status = 0;
|
2004-01-02 11:21:26 -05:00
|
|
|
char *p = sub, *m, *buf;
|
|
|
|
DIR *dirp;
|
|
|
|
struct dirent *dp;
|
|
|
|
int recursive = 0;
|
|
|
|
int magical = 1;
|
|
|
|
|
|
|
|
struct d_link {
|
|
|
|
char *name;
|
|
|
|
struct d_link *next;
|
|
|
|
} *tmp, *link, **tail = &link;
|
|
|
|
|
|
|
|
while (*p && !has_magic(p, &m, flags)) {
|
|
|
|
if (*m == '/') {
|
|
|
|
separator = 1;
|
|
|
|
p = m + 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
separator = 0;
|
|
|
|
p = m;
|
|
|
|
}
|
|
|
|
}
|
1999-08-13 01:45:20 -04:00
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
if (!(flags & FNM_NOESCAPE)) {
|
|
|
|
int n = remove_backslashes(sub, p);
|
|
|
|
p -= n;
|
|
|
|
m -= n;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*p == '\0') { /* magic not found */
|
|
|
|
if (separator) {
|
|
|
|
p[-1] = '\0';
|
|
|
|
if (do_stat(path, &st) == 0 && S_ISDIR(st.st_mode)) {
|
|
|
|
p[-1] = '/';
|
|
|
|
return glob_call_func(func, path, arg);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
p[-1] = '/';
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
else {
|
|
|
|
if (do_lstat(path, &st) == 0)
|
|
|
|
return glob_call_func(func, path, arg);
|
2001-02-19 04:15:27 -05:00
|
|
|
}
|
2002-09-12 02:27:15 -04:00
|
|
|
return 0;
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
if (p[0] == '*' && p[1] == '*' && p[2] == '/') {
|
2004-01-05 05:01:54 -05:00
|
|
|
char *t = p + 3;
|
2004-01-02 11:21:26 -05:00
|
|
|
while (t[0] == '*' && t[1] == '*' && t[2] == '/') t += 3;
|
|
|
|
memmove(p, t, strlen(t)+1); /* move '\0' too */
|
|
|
|
magical = has_magic(p, &m, flags); /* next element */
|
|
|
|
recursive = 1;
|
|
|
|
}
|
2003-06-23 04:41:07 -04:00
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
if (path == p) {
|
|
|
|
dirp = do_opendir(".");
|
|
|
|
if (dirp == NULL) return 0;
|
|
|
|
}
|
|
|
|
else {
|
2004-01-05 05:01:54 -05:00
|
|
|
char *t = separator ? p - 1 : p;
|
2004-01-02 11:21:26 -05:00
|
|
|
char c = *t;
|
|
|
|
*t = '\0';
|
|
|
|
dirp = do_opendir(path);
|
|
|
|
*t = c;
|
|
|
|
if (dirp == NULL) return 0;
|
|
|
|
}
|
2000-01-31 22:12:21 -05:00
|
|
|
|
2004-01-02 11:21:26 -05:00
|
|
|
for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp)) {
|
|
|
|
const int n1 = p - path;
|
|
|
|
const int n2 = n1 + NAMLEN(dp);
|
|
|
|
const int ok = 0;
|
2004-01-05 05:01:54 -05:00
|
|
|
const int ln = 1;
|
|
|
|
const int no = 2;
|
2004-01-02 11:21:26 -05:00
|
|
|
int is_dir = -1; /* not checked yet */
|
2004-01-05 05:01:54 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
is_dir = dp->d_isdir ? (dp->d_isrep ? ln : ok) : no;
|
|
|
|
#endif
|
2004-01-02 11:21:26 -05:00
|
|
|
if (recursive && strcmp(".", dp->d_name) != 0 && strcmp("..", dp->d_name) != 0) {
|
|
|
|
buf = ALLOC_N(char, n2+4+strlen(p)+1);
|
|
|
|
memcpy(buf, path, n1);
|
|
|
|
strcpy(buf+n1, dp->d_name);
|
2004-01-05 05:01:54 -05:00
|
|
|
#ifndef _WIN32
|
2004-01-02 11:21:26 -05:00
|
|
|
is_dir = no;
|
|
|
|
if (do_lstat(buf, &st) == 0) {
|
2004-01-05 05:01:54 -05:00
|
|
|
if (S_ISDIR(st.st_mode))
|
|
|
|
is_dir = ok;
|
|
|
|
else if (S_ISLNK(st.st_mode) && do_stat(buf, &st) == 0 && S_ISDIR(st.st_mode))
|
|
|
|
is_dir = ln;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (is_dir == ok) {
|
|
|
|
strcpy(buf+n2, "/**/");
|
|
|
|
strcpy(buf+n2+4, p);
|
|
|
|
status = glob_helper(buf, buf+n2+1, 1, flags, func, arg);
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
free(buf);
|
|
|
|
if (status) break;
|
|
|
|
}
|
|
|
|
if (is_dir == no && *m == '/') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (magical && do_fnmatch(p, m, dp->d_name, flags) == 0) {
|
|
|
|
buf = ALLOC_N(char, n2+1+1);
|
|
|
|
memcpy(buf, path, n1);
|
|
|
|
strcpy(buf+n1, dp->d_name);
|
|
|
|
if (*m == '\0') {
|
|
|
|
status = glob_call_func(func, buf, arg);
|
|
|
|
}
|
2004-01-05 05:01:54 -05:00
|
|
|
else if (m[1] == '\0' && (is_dir == ok || is_dir == ln)) { /* *m == '/' */
|
2004-01-02 11:21:26 -05:00
|
|
|
strcpy(buf+n2, "/");
|
|
|
|
status = glob_call_func(func, buf, arg);
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
else {
|
|
|
|
tmp = ALLOC(struct d_link);
|
|
|
|
tmp->name = ALLOC_N(char, NAMLEN(dp)+1);
|
|
|
|
strcpy(tmp->name, dp->d_name);
|
|
|
|
*tail = tmp;
|
|
|
|
tail = &tmp->next;
|
|
|
|
}
|
|
|
|
free(buf);
|
|
|
|
if (status) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dirp);
|
|
|
|
*tail = 0;
|
|
|
|
while (link) {
|
|
|
|
if (status == 0) {
|
|
|
|
const int n1 = p - path;
|
|
|
|
const int n2 = n1 + strlen(link->name);
|
|
|
|
buf = ALLOC_N(char, n2+strlen(m)+1);
|
|
|
|
memcpy(buf, path, n1);
|
|
|
|
strcpy(buf+n1, link->name);
|
|
|
|
strcpy(buf+n2, m);
|
|
|
|
status = glob_helper(buf, buf+n2+1, 1, flags, func, arg);
|
2004-01-07 08:28:15 -05:00
|
|
|
free(buf);
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
tmp = link;
|
|
|
|
link = link->next;
|
|
|
|
free(tmp->name);
|
|
|
|
free(tmp);
|
|
|
|
}
|
|
|
|
|
2004-01-08 04:25:32 -05:00
|
|
|
if (status == 0 && !magical) {
|
2004-01-02 11:21:26 -05:00
|
|
|
status = glob_helper(path, p, separator, flags, func, arg);
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
|
2002-09-12 02:27:15 -04:00
|
|
|
return status;
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2002-03-13 05:11:09 -05:00
|
|
|
static void
|
|
|
|
rb_glob2(path, flags, func, arg)
|
|
|
|
char *path;
|
|
|
|
int flags;
|
|
|
|
void (*func) _((const char*, VALUE));
|
|
|
|
VALUE arg;
|
|
|
|
{
|
2004-01-02 11:21:26 -05:00
|
|
|
char *root = path;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
#if defined DOSISH
|
|
|
|
flags |= FNM_CASEFOLD;
|
|
|
|
root = rb_path_skip_prefix(root);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (*root == '/') root++;
|
|
|
|
|
|
|
|
status = glob_helper(path, root, 0, flags, func, arg);
|
2002-09-12 02:27:15 -04:00
|
|
|
if (status) rb_jump_tag(status);
|
2002-03-13 05:11:09 -05:00
|
|
|
}
|
|
|
|
|
2000-11-19 20:24:28 -05:00
|
|
|
void
|
|
|
|
rb_glob(path, func, arg)
|
|
|
|
char *path;
|
2001-05-06 11:06:00 -04:00
|
|
|
void (*func) _((const char*, VALUE));
|
2000-11-19 20:24:28 -05:00
|
|
|
VALUE arg;
|
|
|
|
{
|
2002-03-13 05:11:09 -05:00
|
|
|
rb_glob2(path, 0, func, arg);
|
2000-11-19 20:24:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-03-20 22:41:45 -05:00
|
|
|
rb_globi(path, func, arg)
|
2000-11-19 20:24:28 -05:00
|
|
|
char *path;
|
2001-07-14 11:17:19 -04:00
|
|
|
void (*func) _((const char*, VALUE));
|
2000-11-19 20:24:28 -05:00
|
|
|
VALUE arg;
|
|
|
|
{
|
2002-03-13 05:11:09 -05:00
|
|
|
rb_glob2(path, FNM_CASEFOLD, func, arg);
|
2000-11-19 20:24:28 -05:00
|
|
|
}
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
static void
|
|
|
|
push_pattern(path, ary)
|
2001-05-06 11:06:00 -04:00
|
|
|
const char *path;
|
1999-08-13 01:45:20 -04:00
|
|
|
VALUE ary;
|
|
|
|
{
|
2001-02-14 00:52:06 -05:00
|
|
|
VALUE str = rb_tainted_str_new2(path);
|
|
|
|
|
|
|
|
if (ary) {
|
|
|
|
rb_ary_push(ary, str);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_yield(str);
|
|
|
|
}
|
1999-08-13 01:45:20 -04:00
|
|
|
}
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
static void
|
2002-03-13 05:11:09 -05:00
|
|
|
push_globs(ary, s, flags)
|
1998-01-16 07:13:05 -05:00
|
|
|
VALUE ary;
|
|
|
|
char *s;
|
2002-03-13 05:11:09 -05:00
|
|
|
int flags;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
2002-03-13 05:11:09 -05:00
|
|
|
rb_glob2(s, flags, push_pattern, ary);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-03-13 05:11:09 -05:00
|
|
|
push_braces(ary, s, flags)
|
1998-01-16 07:13:05 -05:00
|
|
|
VALUE ary;
|
|
|
|
char *s;
|
2002-03-13 05:11:09 -05:00
|
|
|
int flags;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
2002-02-18 04:52:48 -05:00
|
|
|
char *buf;
|
1998-01-16 07:13:05 -05:00
|
|
|
char *p, *t, *b;
|
|
|
|
char *lbrace, *rbrace;
|
1999-08-13 01:45:20 -04:00
|
|
|
int nest = 0;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
p = s;
|
|
|
|
lbrace = rbrace = 0;
|
|
|
|
while (*p) {
|
|
|
|
if (*p == '{') {
|
|
|
|
lbrace = p;
|
|
|
|
break;
|
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
Inc(p);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
while (*p) {
|
1999-08-13 01:45:20 -04:00
|
|
|
if (*p == '{') nest++;
|
|
|
|
if (*p == '}' && --nest == 0) {
|
1998-01-16 07:13:05 -05:00
|
|
|
rbrace = p;
|
|
|
|
break;
|
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
Inc(p);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
2003-05-19 11:54:37 -04:00
|
|
|
if (lbrace && rbrace) {
|
1999-08-13 01:45:20 -04:00
|
|
|
int len = strlen(s);
|
2002-02-18 04:52:48 -05:00
|
|
|
buf = xmalloc(len + 1);
|
1998-01-16 07:13:05 -05:00
|
|
|
memcpy(buf, s, lbrace-s);
|
|
|
|
b = buf + (lbrace-s);
|
|
|
|
p = lbrace;
|
|
|
|
while (*p != '}') {
|
2004-01-02 11:21:26 -05:00
|
|
|
t = Next(p);
|
|
|
|
for (p = t; *p!='}' && *p!=','; Inc(p)) {
|
1998-01-16 07:13:05 -05:00
|
|
|
/* skip inner braces */
|
2004-01-02 11:21:26 -05:00
|
|
|
if (*p == '{') while (*p!='}') Inc(p);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
memcpy(b, t, p-t);
|
2004-01-02 11:21:26 -05:00
|
|
|
strcpy(b+(p-t), Next(rbrace));
|
2002-03-13 05:11:09 -05:00
|
|
|
push_braces(ary, buf, flags);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
2002-02-18 04:52:48 -05:00
|
|
|
free(buf);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
else {
|
2002-03-13 05:11:09 -05:00
|
|
|
push_globs(ary, s, flags);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-02 04:46:28 -04:00
|
|
|
#define isdelim(c) ((c)=='\0')
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
2002-03-13 05:11:09 -05:00
|
|
|
rb_push_glob(str, flags)
|
|
|
|
VALUE str;
|
|
|
|
int flags;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
char *p, *pend;
|
2002-02-18 04:52:48 -05:00
|
|
|
char *buf;
|
1999-08-13 01:45:20 -04:00
|
|
|
char *t;
|
2002-03-25 04:08:15 -05:00
|
|
|
int nest, maxnest;
|
2002-03-13 05:11:09 -05:00
|
|
|
int noescape = flags & FNM_NOESCAPE;
|
|
|
|
VALUE ary;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2002-03-13 05:11:09 -05:00
|
|
|
if (rb_block_given_p())
|
2002-03-13 18:59:41 -05:00
|
|
|
ary = 0;
|
2002-03-13 05:11:09 -05:00
|
|
|
else
|
2001-02-14 00:52:06 -05:00
|
|
|
ary = rb_ary_new();
|
2002-03-13 05:11:09 -05:00
|
|
|
|
|
|
|
SafeStringValue(str);
|
2002-02-18 04:52:48 -05:00
|
|
|
buf = xmalloc(RSTRING(str)->len + 1);
|
1998-01-16 07:13:05 -05:00
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
p = RSTRING(str)->ptr;
|
|
|
|
pend = p + RSTRING(str)->len;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
while (p < pend) {
|
2002-03-25 04:08:15 -05:00
|
|
|
nest = maxnest = 0;
|
1998-01-16 07:13:05 -05:00
|
|
|
while (p < pend && isdelim(*p)) p++;
|
2004-01-02 11:21:26 -05:00
|
|
|
t = p;
|
1998-01-16 07:13:05 -05:00
|
|
|
while (p < pend && !isdelim(*p)) {
|
2002-03-13 05:11:09 -05:00
|
|
|
if (*p == '{') nest++, maxnest++;
|
|
|
|
if (*p == '}') nest--;
|
|
|
|
if (!noescape && *p == '\\') {
|
2004-01-02 11:21:26 -05:00
|
|
|
p++;
|
|
|
|
if (p == pend || isdelim(*p)) break;
|
2001-02-14 00:52:06 -05:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
p = Next(p);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
2004-01-02 11:21:26 -05:00
|
|
|
memcpy(buf, t, p - t);
|
|
|
|
buf[p - t] = '\0';
|
2002-03-13 05:11:09 -05:00
|
|
|
if (maxnest == 0) {
|
|
|
|
push_globs(ary, buf, flags);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
2002-03-13 05:11:09 -05:00
|
|
|
else if (nest == 0) {
|
|
|
|
push_braces(ary, buf, flags);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
/* else unmatched braces */
|
|
|
|
}
|
2002-02-18 04:52:48 -05:00
|
|
|
free(buf);
|
2002-03-13 05:11:09 -05:00
|
|
|
|
|
|
|
return ary;
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir[ string ] => array
|
|
|
|
*
|
|
|
|
* Equivalent to calling
|
|
|
|
* <em>dir</em>.<code>glob(</code><i>string,</i><code>0)</code>.
|
|
|
|
*
|
|
|
|
*/
|
2002-03-13 05:11:09 -05:00
|
|
|
static VALUE
|
|
|
|
dir_s_aref(obj, str)
|
|
|
|
VALUE obj, str;
|
|
|
|
{
|
|
|
|
return rb_push_glob(str, 0);
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.glob( string, [flags] ) => array
|
|
|
|
* Dir.glob( string, [flags] ) {| filename | block } => false
|
|
|
|
*
|
|
|
|
* Returns the filenames found by expanding the pattern given in
|
|
|
|
* <i>string</i>, either as an <i>array</i> or as parameters to the
|
|
|
|
* block. Note that this pattern is not a regexp (it's closer to a
|
|
|
|
* shell glob). See <code>File::fnmatch</code> for
|
|
|
|
* details of file name matching and the meaning of the <i>flags</i>
|
|
|
|
* parameter.
|
|
|
|
*
|
|
|
|
* Dir["config.?"] #=> ["config.h"]
|
|
|
|
* Dir.glob("config.?") #=> ["config.h"]
|
|
|
|
* Dir.glob("*.[a-z][a-z]") #=> ["main.rb"]
|
|
|
|
* Dir.glob("*.[^r]*") #=> ["config.h"]
|
|
|
|
* Dir.glob("*.{rb,h}") #=> ["main.rb", "config.h"]
|
|
|
|
* Dir.glob("*") #=> ["config.h", "main.rb"]
|
|
|
|
* Dir.glob("*", File::FNM_DOTMATCH) #=> [".", "..", "config.h", "main.rb"]
|
|
|
|
*
|
|
|
|
*/
|
2002-03-13 05:11:09 -05:00
|
|
|
static VALUE
|
|
|
|
dir_s_glob(argc, argv, obj)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
VALUE str, rflags;
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
if (rb_scan_args(argc, argv, "11", &str, &rflags) == 2)
|
|
|
|
flags = NUM2INT(rflags);
|
|
|
|
else
|
|
|
|
flags = 0;
|
|
|
|
|
|
|
|
return rb_push_glob(str, flags);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.foreach( dirname ) {| filename | block } => nil
|
|
|
|
*
|
|
|
|
* Calls the block once for each entry in the named directory, passing
|
|
|
|
* the filename of each entry as a parameter to the block.
|
|
|
|
*
|
|
|
|
* Dir.foreach("testdir") {|x| puts "Got #{x}" }
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* Got .
|
|
|
|
* Got ..
|
|
|
|
* Got config.h
|
|
|
|
* Got main.rb
|
|
|
|
*
|
|
|
|
*/
|
1998-01-16 07:13:05 -05:00
|
|
|
static VALUE
|
|
|
|
dir_foreach(io, dirname)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE io, dirname;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
VALUE dir;
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
dir = rb_funcall(rb_cDir, rb_intern("open"), 1, dirname);
|
2000-06-12 03:48:31 -04:00
|
|
|
rb_ensure(dir_each, dir, dir_close, dir);
|
|
|
|
return Qnil;
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.entries( dirname ) => array
|
|
|
|
*
|
|
|
|
* Returns an array containing all of the filenames in the given
|
|
|
|
* directory. Will raise a <code>SystemCallError</code> if the named
|
|
|
|
* directory doesn't exist.
|
|
|
|
*
|
|
|
|
* Dir.entries("testdir") #=> [".", "..", "config.h", "main.rb"]
|
|
|
|
*
|
|
|
|
*/
|
1999-01-19 23:59:39 -05:00
|
|
|
static VALUE
|
|
|
|
dir_entries(io, dirname)
|
|
|
|
VALUE io, dirname;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
1999-01-19 23:59:39 -05:00
|
|
|
VALUE dir;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
dir = rb_funcall(rb_cDir, rb_intern("open"), 1, dirname);
|
|
|
|
return rb_ensure(rb_Array, dir, dir_close, dir);
|
|
|
|
}
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.fnmatch( pattern, path, [flags] ) => (true or false)
|
|
|
|
* File.fnmatch?( pattern, path, [flags] ) => (true or false)
|
|
|
|
*
|
|
|
|
* Returns true if <i>path</i> matches against <i>pattern</i> The
|
|
|
|
* pattern is not a regular expression; instead it follows rules
|
|
|
|
* similar to shell filename globbing. It may contain the following
|
|
|
|
* metacharacters:
|
|
|
|
*
|
|
|
|
* <i>flags</i> is a bitwise OR of the <code>FNM_xxx</code> parameters.
|
|
|
|
* The same glob pattern and flags are used by <code>Dir::glob</code>.
|
|
|
|
*
|
|
|
|
* File.fnmatch('cat', 'cat') #=> true
|
|
|
|
* File.fnmatch('cat', 'category') #=> false
|
|
|
|
* File.fnmatch('c{at,ub}s', 'cats') #=> false
|
|
|
|
* File.fnmatch('c{at,ub}s', 'cubs') #=> false
|
|
|
|
* File.fnmatch('c{at,ub}s', 'cat') #=> false
|
|
|
|
*
|
|
|
|
* File.fnmatch('c?t', 'cat') #=> true
|
|
|
|
* File.fnmatch('c\?t', 'cat') #=> false
|
|
|
|
* File.fnmatch('c??t', 'cat') #=> false
|
|
|
|
* File.fnmatch('c*', 'cats') #=> true
|
|
|
|
* File.fnmatch('c/ * FIXME * /t', 'c/a/b/c/t') #=> true
|
|
|
|
* File.fnmatch('c*t', 'cat') #=> true
|
|
|
|
* File.fnmatch('c\at', 'cat') #=> true
|
|
|
|
* File.fnmatch('c\at', 'cat', File::FNM_NOESCAPE) #=> false
|
|
|
|
* File.fnmatch('a?b', 'a/b') #=> true
|
|
|
|
* File.fnmatch('a?b', 'a/b', File::FNM_PATHNAME) #=> false
|
|
|
|
*
|
|
|
|
* File.fnmatch('*', '.profile') #=> false
|
|
|
|
* File.fnmatch('*', '.profile', File::FNM_DOTMATCH) #=> true
|
|
|
|
* File.fnmatch('*', 'dave/.profile') #=> true
|
|
|
|
* File.fnmatch('*', 'dave/.profile', File::FNM_DOTMATCH) #=> true
|
|
|
|
* File.fnmatch('*', 'dave/.profile', File::FNM_PATHNAME) #=> false
|
|
|
|
* File.fnmatch('* / FIXME *', 'dave/.profile', File::FNM_PATHNAME) #=> false
|
|
|
|
* STRICT = File::FNM_PATHNAME | File::FNM_DOTMATCH
|
|
|
|
* File.fnmatch('* / FIXME *', 'dave/.profile', STRICT) #=> true
|
|
|
|
*/
|
2001-06-13 06:51:39 -04:00
|
|
|
static VALUE
|
|
|
|
file_s_fnmatch(argc, argv, obj)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
VALUE pattern, path;
|
|
|
|
VALUE rflags;
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
if (rb_scan_args(argc, argv, "21", &pattern, &path, &rflags) == 3)
|
|
|
|
flags = NUM2INT(rflags);
|
|
|
|
else
|
|
|
|
flags = 0;
|
|
|
|
|
|
|
|
StringValue(pattern);
|
|
|
|
StringValue(path);
|
|
|
|
|
|
|
|
if (fnmatch(RSTRING(pattern)->ptr, RSTRING(path)->ptr, flags) == 0)
|
|
|
|
return Qtrue;
|
|
|
|
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-19 10:18:09 -05:00
|
|
|
/*
|
|
|
|
* Objects of class <code>Dir</code> are directory streams representing
|
|
|
|
* directories in the underlying file system. They provide a variety of
|
|
|
|
* ways to list directories and their contents. See also
|
|
|
|
* <code>File</code>.
|
|
|
|
*
|
|
|
|
* The directory used in these examples contains the two regular files
|
|
|
|
* (<code>config.h</code> and <code>main.rb</code>), the parent
|
|
|
|
* directory (<code>..</code>), and the directory itself
|
|
|
|
* (<code>.</code>).
|
|
|
|
*/
|
1999-01-19 23:59:39 -05:00
|
|
|
void
|
|
|
|
Init_Dir()
|
|
|
|
{
|
|
|
|
rb_cDir = rb_define_class("Dir", rb_cObject);
|
|
|
|
|
|
|
|
rb_include_module(rb_cDir, rb_mEnumerable);
|
|
|
|
|
2002-12-20 03:33:17 -05:00
|
|
|
rb_define_alloc_func(rb_cDir, dir_s_alloc);
|
1999-01-19 23:59:39 -05:00
|
|
|
rb_define_singleton_method(rb_cDir, "open", dir_s_open, 1);
|
|
|
|
rb_define_singleton_method(rb_cDir, "foreach", dir_foreach, 1);
|
|
|
|
rb_define_singleton_method(rb_cDir, "entries", dir_entries, 1);
|
|
|
|
|
2000-02-29 03:05:32 -05:00
|
|
|
rb_define_method(rb_cDir,"initialize", dir_initialize, 1);
|
2001-09-19 02:54:11 -04:00
|
|
|
rb_define_method(rb_cDir,"path", dir_path, 0);
|
2004-01-10 08:46:21 -05:00
|
|
|
rb_define_method(rb_cDir,"inspect", dir_inspect, 0);
|
1999-01-19 23:59:39 -05:00
|
|
|
rb_define_method(rb_cDir,"read", dir_read, 0);
|
|
|
|
rb_define_method(rb_cDir,"each", dir_each, 0);
|
|
|
|
rb_define_method(rb_cDir,"rewind", dir_rewind, 0);
|
|
|
|
rb_define_method(rb_cDir,"tell", dir_tell, 0);
|
|
|
|
rb_define_method(rb_cDir,"seek", dir_seek, 1);
|
2000-06-12 03:48:31 -04:00
|
|
|
rb_define_method(rb_cDir,"pos", dir_tell, 0);
|
2002-01-21 02:44:06 -05:00
|
|
|
rb_define_method(rb_cDir,"pos=", dir_set_pos, 1);
|
1999-01-19 23:59:39 -05:00
|
|
|
rb_define_method(rb_cDir,"close", dir_close, 0);
|
|
|
|
|
|
|
|
rb_define_singleton_method(rb_cDir,"chdir", dir_s_chdir, -1);
|
|
|
|
rb_define_singleton_method(rb_cDir,"getwd", dir_s_getwd, 0);
|
|
|
|
rb_define_singleton_method(rb_cDir,"pwd", dir_s_getwd, 0);
|
|
|
|
rb_define_singleton_method(rb_cDir,"chroot", dir_s_chroot, 1);
|
|
|
|
rb_define_singleton_method(rb_cDir,"mkdir", dir_s_mkdir, -1);
|
|
|
|
rb_define_singleton_method(rb_cDir,"rmdir", dir_s_rmdir, 1);
|
|
|
|
rb_define_singleton_method(rb_cDir,"delete", dir_s_rmdir, 1);
|
|
|
|
rb_define_singleton_method(rb_cDir,"unlink", dir_s_rmdir, 1);
|
|
|
|
|
2002-03-13 05:11:09 -05:00
|
|
|
rb_define_singleton_method(rb_cDir,"glob", dir_s_glob, -1);
|
|
|
|
rb_define_singleton_method(rb_cDir,"[]", dir_s_aref, 1);
|
2001-06-13 06:51:39 -04:00
|
|
|
|
|
|
|
rb_define_singleton_method(rb_cFile,"fnmatch", file_s_fnmatch, -1);
|
|
|
|
rb_define_singleton_method(rb_cFile,"fnmatch?", file_s_fnmatch, -1);
|
|
|
|
|
|
|
|
rb_file_const("FNM_NOESCAPE", INT2FIX(FNM_NOESCAPE));
|
|
|
|
rb_file_const("FNM_PATHNAME", INT2FIX(FNM_PATHNAME));
|
2002-03-13 05:11:09 -05:00
|
|
|
rb_file_const("FNM_DOTMATCH", INT2FIX(FNM_DOTMATCH));
|
2001-06-13 06:51:39 -04:00
|
|
|
rb_file_const("FNM_CASEFOLD", INT2FIX(FNM_CASEFOLD));
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|