2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
file.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Mon Nov 15 12:24:34 JST 1993
|
|
|
|
|
2003-01-16 10:34:03 +03:00
|
|
|
Copyright (C) 1993-2003 Yukihiro Matsumoto
|
2000-05-01 13:42:38 +04:00
|
|
|
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
2000-05-09 08:53:16 +04:00
|
|
|
Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03: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-15 06:18:08 +03:00
|
|
|
#ifdef _WIN32
|
1999-01-20 07:59:39 +03:00
|
|
|
#include "missing/file.h"
|
|
|
|
#endif
|
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
#include "ruby/ruby.h"
|
|
|
|
#include "ruby/io.h"
|
|
|
|
#include "ruby/signal.h"
|
|
|
|
#include "ruby/util.h"
|
2000-01-05 07:41:21 +03:00
|
|
|
#include "dln.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2000-05-12 13:07:57 +04:00
|
|
|
#ifdef HAVE_SYS_FILE_H
|
|
|
|
# include <sys/file.h>
|
|
|
|
#else
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 10:32:32 +04:00
|
|
|
int flock(int, int);
|
2000-05-12 13:07:57 +04:00
|
|
|
#endif
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
# include <sys/param.h>
|
2002-11-22 12:14:24 +03:00
|
|
|
#endif
|
|
|
|
#ifndef MAXPATHLEN
|
1998-01-16 15:13:05 +03:00
|
|
|
# define MAXPATHLEN 1024
|
|
|
|
#endif
|
|
|
|
|
2006-09-10 04:41:44 +04:00
|
|
|
#include <ctype.h>
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#include <time.h>
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 10:32:32 +04:00
|
|
|
VALUE rb_time_new(time_t, time_t);
|
1999-08-13 09:45:20 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef HAVE_UTIME_H
|
|
|
|
#include <utime.h>
|
* 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-15 06:18:08 +03:00
|
|
|
#elif defined HAVE_SYS_UTIME_H
|
|
|
|
#include <sys/utime.h>
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_PWD_H
|
|
|
|
#include <pwd.h>
|
|
|
|
#endif
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
#include <sys/types.h>
|
1998-01-16 15:13:05 +03:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2002-01-29 12:15:59 +03:00
|
|
|
#ifdef HAVE_SYS_MKDEV_H
|
|
|
|
#include <sys/mkdev.h>
|
|
|
|
#endif
|
|
|
|
|
2005-04-11 17:30:10 +04:00
|
|
|
#if !defined HAVE_LSTAT && !defined lstat
|
|
|
|
#define lstat stat
|
1999-08-13 09:45:20 +04:00
|
|
|
#endif
|
2001-07-16 08:22:46 +04:00
|
|
|
|
2005-11-11 01:43:38 +03:00
|
|
|
#ifdef __BEOS__ /* should not change ID if -1 */
|
|
|
|
static int
|
|
|
|
be_chown(const char *path, uid_t owner, gid_t group)
|
|
|
|
{
|
|
|
|
if (owner == -1 || group == -1) {
|
|
|
|
struct stat st;
|
|
|
|
if (stat(path, &st) < 0) return -1;
|
|
|
|
if (owner == -1) owner = st.st_uid;
|
|
|
|
if (group == -1) group = st.st_gid;
|
|
|
|
}
|
|
|
|
return chown(path, owner, group);
|
|
|
|
}
|
|
|
|
#define chown be_chown
|
|
|
|
static int
|
|
|
|
be_fchown(int fd, uid_t owner, gid_t group)
|
|
|
|
{
|
|
|
|
if (owner == -1 || group == -1) {
|
|
|
|
struct stat st;
|
|
|
|
if (fstat(fd, &st) < 0) return -1;
|
|
|
|
if (owner == -1) owner = st.st_uid;
|
|
|
|
if (group == -1) group = st.st_gid;
|
|
|
|
}
|
|
|
|
return fchown(fd, owner, group);
|
|
|
|
}
|
|
|
|
#define fchown be_fchown
|
|
|
|
#endif /* __BEOS__ */
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_cFile;
|
|
|
|
VALUE rb_mFileTest;
|
2006-07-20 21:36:36 +04:00
|
|
|
VALUE rb_cStat;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_get_path(VALUE obj)
|
2004-04-07 06:51:05 +04:00
|
|
|
{
|
|
|
|
VALUE tmp;
|
|
|
|
static ID to_path;
|
|
|
|
|
|
|
|
rb_check_safe_obj(obj);
|
|
|
|
tmp = rb_check_string_type(obj);
|
|
|
|
if (!NIL_P(tmp)) goto exit;
|
|
|
|
|
|
|
|
if (!to_path) {
|
|
|
|
to_path = rb_intern("to_path");
|
|
|
|
}
|
|
|
|
if (rb_respond_to(obj, to_path)) {
|
2006-09-25 09:57:37 +04:00
|
|
|
tmp = rb_funcall(obj, to_path, 0, 0);
|
2004-04-07 06:51:05 +04:00
|
|
|
}
|
|
|
|
exit:
|
2006-09-25 09:57:37 +04:00
|
|
|
StringValueCStr(tmp);
|
2004-04-07 06:51:05 +04:00
|
|
|
if (obj != tmp) {
|
|
|
|
rb_check_safe_obj(tmp);
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2002-08-28 12:05:23 +04:00
|
|
|
static long
|
2005-09-12 19:02:46 +04:00
|
|
|
apply2files(void (*func)(const char *, void *), VALUE vargs, void *arg)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-08-21 19:47:54 +04:00
|
|
|
long i;
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE path;
|
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(4);
|
2006-09-02 18:42:08 +04:00
|
|
|
for (i=0; i<RARRAY_LEN(vargs); i++) {
|
|
|
|
path = rb_get_path(RARRAY_PTR(vargs)[i]);
|
2003-07-20 21:17:52 +04:00
|
|
|
(*func)(StringValueCStr(path), arg);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2006-09-02 18:42:08 +04:00
|
|
|
return RARRAY_LEN(vargs);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2005-03-02 15:38:23 +03:00
|
|
|
* file.path -> filename
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
|
|
|
* Returns the pathname used to create <i>file</i> as a string. Does
|
|
|
|
* not normalize the name.
|
|
|
|
*
|
|
|
|
* File.new("testfile").path #=> "testfile"
|
|
|
|
* File.new("/tmp/../tmp/xxx", "w").path #=> "/tmp/../tmp/xxx"
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_path(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-10-24 18:31:14 +04:00
|
|
|
fptr = RFILE(rb_io_taint_check(obj))->fptr;
|
2004-10-29 16:28:32 +04:00
|
|
|
rb_io_check_initialized(fptr);
|
1999-12-14 09:50:43 +03:00
|
|
|
if (!fptr->path) return Qnil;
|
2003-11-04 12:13:57 +03:00
|
|
|
return rb_tainted_str_new2(fptr->path);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
stat_new_0(VALUE klass, struct stat *st)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2001-10-03 11:19:19 +04:00
|
|
|
struct stat *nst = 0;
|
1999-12-01 12:24:48 +03:00
|
|
|
|
2001-10-03 11:19:19 +04:00
|
|
|
if (st) {
|
|
|
|
nst = ALLOC(struct stat);
|
|
|
|
*nst = *st;
|
|
|
|
}
|
2001-05-02 08:22:21 +04:00
|
|
|
return Data_Wrap_Struct(klass, NULL, free, nst);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
stat_new(struct stat *st)
|
2001-05-02 08:22:21 +04:00
|
|
|
{
|
|
|
|
return stat_new_0(rb_cStat, st);
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct stat*
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
get_stat(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
|
|
|
struct stat* st;
|
|
|
|
Data_Get_Struct(self, struct stat, st);
|
2001-10-03 11:19:19 +04:00
|
|
|
if (!st) rb_raise(rb_eTypeError, "uninitialized File::Stat");
|
1999-12-01 12:24:48 +03:00
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat <=> other_stat => -1, 0, 1
|
|
|
|
*
|
|
|
|
* Compares <code>File::Stat</code> objects by comparing their
|
|
|
|
* respective modification times.
|
|
|
|
*
|
|
|
|
* f1 = File.new("f1", "w")
|
|
|
|
* sleep 1
|
|
|
|
* f2 = File.new("f2", "w")
|
|
|
|
* f1.stat <=> f2.stat #=> -1
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_cmp(VALUE self, VALUE other)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
2001-10-29 08:07:26 +03:00
|
|
|
if (rb_obj_is_kind_of(other, rb_obj_class(self))) {
|
|
|
|
time_t t1 = get_stat(self)->st_mtime;
|
|
|
|
time_t t2 = get_stat(other)->st_mtime;
|
|
|
|
if (t1 == t2)
|
|
|
|
return INT2FIX(0);
|
|
|
|
else if (t1 < t2)
|
|
|
|
return INT2FIX(-1);
|
|
|
|
else
|
|
|
|
return INT2FIX(1);
|
|
|
|
}
|
2002-11-22 12:14:24 +03:00
|
|
|
return Qnil;
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.dev => fixnum
|
|
|
|
*
|
|
|
|
* Returns an integer representing the device on which <i>stat</i>
|
|
|
|
* resides.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").dev #=> 774
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_dev(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
2001-05-02 08:22:21 +04:00
|
|
|
return INT2NUM(get_stat(self)->st_dev);
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 06:23:52 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.dev_major => fixnum
|
|
|
|
*
|
|
|
|
* Returns the major part of <code>File_Stat#dev</code> or
|
|
|
|
* <code>nil</code>.
|
|
|
|
*
|
|
|
|
* File.stat("/dev/fd1").dev_major #=> 2
|
|
|
|
* File.stat("/dev/tty").dev_major #=> 5
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_dev_major(VALUE self)
|
2004-07-17 06:23:52 +04:00
|
|
|
{
|
|
|
|
#if defined(major)
|
|
|
|
long dev = get_stat(self)->st_dev;
|
|
|
|
return ULONG2NUM(major(dev));
|
|
|
|
#else
|
|
|
|
return Qnil;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.dev_minor => fixnum
|
|
|
|
*
|
|
|
|
* Returns the minor part of <code>File_Stat#dev</code> or
|
|
|
|
* <code>nil</code>.
|
|
|
|
*
|
|
|
|
* File.stat("/dev/fd1").dev_minor #=> 1
|
|
|
|
* File.stat("/dev/tty").dev_minor #=> 0
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_dev_minor(VALUE self)
|
2004-07-17 06:23:52 +04:00
|
|
|
{
|
|
|
|
#if defined(minor)
|
|
|
|
long dev = get_stat(self)->st_dev;
|
|
|
|
return ULONG2NUM(minor(dev));
|
|
|
|
#else
|
|
|
|
return Qnil;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.ino => fixnum
|
|
|
|
*
|
|
|
|
* Returns the inode number for <i>stat</i>.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").ino #=> 1083669
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_ino(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
2003-08-15 07:01:52 +04:00
|
|
|
#ifdef HUGE_ST_INO
|
|
|
|
return ULL2NUM(get_stat(self)->st_ino);
|
|
|
|
#else
|
2001-05-02 08:22:21 +04:00
|
|
|
return ULONG2NUM(get_stat(self)->st_ino);
|
2003-08-15 07:01:52 +04:00
|
|
|
#endif
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.mode => fixnum
|
|
|
|
*
|
|
|
|
* Returns an integer representing the permission bits of
|
|
|
|
* <i>stat</i>. The meaning of the bits is platform dependent; on
|
|
|
|
* Unix systems, see <code>stat(2)</code>.
|
|
|
|
*
|
|
|
|
* File.chmod(0644, "testfile") #=> 1
|
|
|
|
* s = File.stat("testfile")
|
|
|
|
* sprintf("%o", s.mode) #=> "100644"
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_mode(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
2004-02-04 16:39:49 +03:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
return UINT2NUM((unsigned short)(get_stat(self)->st_mode));
|
|
|
|
#else
|
2003-08-15 07:01:52 +04:00
|
|
|
return UINT2NUM(get_stat(self)->st_mode);
|
2004-02-04 16:39:49 +03:00
|
|
|
#endif
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.nlink => fixnum
|
|
|
|
*
|
|
|
|
* Returns the number of hard links to <i>stat</i>.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").nlink #=> 1
|
|
|
|
* File.link("testfile", "testfile.bak") #=> 0
|
|
|
|
* File.stat("testfile").nlink #=> 2
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_nlink(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
2001-05-02 08:22:21 +04:00
|
|
|
return UINT2NUM(get_stat(self)->st_nlink);
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.uid => fixnum
|
|
|
|
*
|
|
|
|
* Returns the numeric user id of the owner of <i>stat</i>.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").uid #=> 501
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_uid(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
2007-03-04 17:41:16 +03:00
|
|
|
return UIDT2NUM(get_stat(self)->st_uid);
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.gid => fixnum
|
|
|
|
*
|
|
|
|
* Returns the numeric group id of the owner of <i>stat</i>.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").gid #=> 500
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_gid(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
2007-03-04 17:41:16 +03:00
|
|
|
return GIDT2NUM(get_stat(self)->st_gid);
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.rdev => fixnum or nil
|
|
|
|
*
|
|
|
|
* Returns an integer representing the device type on which
|
|
|
|
* <i>stat</i> resides. Returns <code>nil</code> if the operating
|
|
|
|
* system doesn't support this feature.
|
|
|
|
*
|
|
|
|
* File.stat("/dev/fd1").rdev #=> 513
|
|
|
|
* File.stat("/dev/tty").rdev #=> 1280
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_rdev(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef HAVE_ST_RDEV
|
2001-05-02 08:22:21 +04:00
|
|
|
return ULONG2NUM(get_stat(self)->st_rdev);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
2002-08-12 11:39:12 +04:00
|
|
|
return Qnil;
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.rdev_major => fixnum
|
|
|
|
*
|
|
|
|
* Returns the major part of <code>File_Stat#rdev</code> or
|
|
|
|
* <code>nil</code>.
|
|
|
|
*
|
|
|
|
* File.stat("/dev/fd1").rdev_major #=> 2
|
|
|
|
* File.stat("/dev/tty").rdev_major #=> 5
|
|
|
|
*/
|
|
|
|
|
2002-01-29 10:16:09 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_rdev_major(VALUE self)
|
2002-01-29 10:16:09 +03:00
|
|
|
{
|
|
|
|
#if defined(HAVE_ST_RDEV) && defined(major)
|
|
|
|
long rdev = get_stat(self)->st_rdev;
|
|
|
|
return ULONG2NUM(major(rdev));
|
|
|
|
#else
|
2002-08-12 11:39:12 +04:00
|
|
|
return Qnil;
|
2002-01-29 10:16:09 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.rdev_minor => fixnum
|
|
|
|
*
|
|
|
|
* Returns the minor part of <code>File_Stat#rdev</code> or
|
|
|
|
* <code>nil</code>.
|
|
|
|
*
|
|
|
|
* File.stat("/dev/fd1").rdev_minor #=> 1
|
|
|
|
* File.stat("/dev/tty").rdev_minor #=> 0
|
|
|
|
*/
|
|
|
|
|
2002-01-29 10:16:09 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_rdev_minor(VALUE self)
|
2002-01-29 10:16:09 +03:00
|
|
|
{
|
|
|
|
#if defined(HAVE_ST_RDEV) && defined(minor)
|
|
|
|
long rdev = get_stat(self)->st_rdev;
|
|
|
|
return ULONG2NUM(minor(rdev));
|
|
|
|
#else
|
2002-08-12 11:39:12 +04:00
|
|
|
return Qnil;
|
2002-01-29 10:16:09 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.size => fixnum
|
|
|
|
*
|
|
|
|
* Returns the size of <i>stat</i> in bytes.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").size #=> 66
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_size(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
2002-03-14 09:23:46 +03:00
|
|
|
return OFFT2NUM(get_stat(self)->st_size);
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.blksize => integer or nil
|
|
|
|
*
|
|
|
|
* Returns the native file system's block size. Will return <code>nil</code>
|
|
|
|
* on platforms that don't support this information.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").blksize #=> 4096
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_blksize(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef HAVE_ST_BLKSIZE
|
2001-05-02 08:22:21 +04:00
|
|
|
return ULONG2NUM(get_stat(self)->st_blksize);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
2002-08-12 11:39:12 +04:00
|
|
|
return Qnil;
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.blocks => integer or nil
|
|
|
|
*
|
|
|
|
* Returns the number of native file system blocks allocated for this
|
|
|
|
* file, or <code>nil</code> if the operating system doesn't
|
|
|
|
* support this feature.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").blocks #=> 2
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_blocks(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef HAVE_ST_BLOCKS
|
2001-05-02 08:22:21 +04:00
|
|
|
return ULONG2NUM(get_stat(self)->st_blocks);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
2002-08-12 11:39:12 +04:00
|
|
|
return Qnil;
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
1999-12-01 12:24:48 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.atime => time
|
|
|
|
*
|
|
|
|
* Returns the last access time for this file as an object of class
|
|
|
|
* <code>Time</code>.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").atime #=> Wed Dec 31 18:00:00 CST 1969
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_atime(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
|
|
|
return rb_time_new(get_stat(self)->st_atime, 0);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.mtime -> aTime
|
|
|
|
*
|
|
|
|
* Returns the modification time of <i>stat</i>.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").mtime #=> Wed Apr 09 08:53:14 CDT 2003
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_mtime(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
|
|
|
return rb_time_new(get_stat(self)->st_mtime, 0);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.ctime -> aTime
|
|
|
|
*
|
|
|
|
* Returns the change time for <i>stat</i> (that is, the time
|
|
|
|
* directory information about the file was changed, not the file
|
|
|
|
* itself).
|
|
|
|
*
|
|
|
|
* File.stat("testfile").ctime #=> Wed Apr 09 08:53:14 CDT 2003
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_ctime(VALUE self)
|
1999-12-01 12:24:48 +03:00
|
|
|
{
|
|
|
|
return rb_time_new(get_stat(self)->st_ctime, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.inspect => string
|
|
|
|
*
|
* array.c, enum.c, eval.c, file.c, io.c, numeric.c, object.c, prec.c,
process.c, re.c, string.c: typos in RDoc comments. [ruby-core:02783]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-14 08:06:52 +04:00
|
|
|
* Produce a nicely formatted description of <i>stat</i>.
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
|
|
|
* File.stat("/etc/passwd").inspect
|
|
|
|
* #=> "#<File::Stat dev=0xe000005, ino=1078078, mode=0100644,
|
|
|
|
* nlink=1, uid=0, gid=0, rdev=0x0, size=1374, blksize=4096,
|
|
|
|
* blocks=8, atime=Wed Dec 10 10:16:12 CST 2003,
|
|
|
|
* mtime=Fri Sep 12 15:41:41 CDT 2003,
|
|
|
|
* ctime=Mon Oct 27 11:20:27 CST 2003>"
|
|
|
|
*/
|
|
|
|
|
2000-06-19 12:38:11 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_inspect(VALUE self)
|
2000-06-19 12:38:11 +04:00
|
|
|
{
|
|
|
|
VALUE str;
|
|
|
|
int i;
|
2005-09-28 18:40:25 +04:00
|
|
|
static const struct {
|
|
|
|
const char *name;
|
2005-09-20 17:25:59 +04:00
|
|
|
VALUE (*func)(VALUE);
|
2000-06-19 12:38:11 +04:00
|
|
|
} member[] = {
|
2005-09-20 17:25:59 +04:00
|
|
|
{"dev", rb_stat_dev},
|
|
|
|
{"ino", rb_stat_ino},
|
|
|
|
{"mode", rb_stat_mode},
|
|
|
|
{"nlink", rb_stat_nlink},
|
|
|
|
{"uid", rb_stat_uid},
|
|
|
|
{"gid", rb_stat_gid},
|
|
|
|
{"rdev", rb_stat_rdev},
|
|
|
|
{"size", rb_stat_size},
|
|
|
|
{"blksize", rb_stat_blksize},
|
|
|
|
{"blocks", rb_stat_blocks},
|
|
|
|
{"atime", rb_stat_atime},
|
|
|
|
{"mtime", rb_stat_mtime},
|
|
|
|
{"ctime", rb_stat_ctime},
|
2000-06-19 12:38:11 +04:00
|
|
|
};
|
|
|
|
|
2001-05-30 13:12:34 +04:00
|
|
|
str = rb_str_buf_new2("#<");
|
2003-01-31 07:00:17 +03:00
|
|
|
rb_str_buf_cat2(str, rb_obj_classname(self));
|
2001-05-30 13:12:34 +04:00
|
|
|
rb_str_buf_cat2(str, " ");
|
2000-06-19 12:38:11 +04:00
|
|
|
|
|
|
|
for (i = 0; i < sizeof(member)/sizeof(member[0]); i++) {
|
2002-01-29 10:16:09 +03:00
|
|
|
VALUE v;
|
2000-06-19 12:38:11 +04:00
|
|
|
|
|
|
|
if (i > 0) {
|
2001-05-30 13:12:34 +04:00
|
|
|
rb_str_buf_cat2(str, ", ");
|
2000-06-19 12:38:11 +04:00
|
|
|
}
|
2001-05-30 13:12:34 +04:00
|
|
|
rb_str_buf_cat2(str, member[i].name);
|
|
|
|
rb_str_buf_cat2(str, "=");
|
2002-01-29 10:16:09 +03:00
|
|
|
v = (*member[i].func)(self);
|
|
|
|
if (i == 2) { /* mode */
|
|
|
|
char buf[32];
|
|
|
|
|
2003-12-11 05:39:59 +03:00
|
|
|
sprintf(buf, "0%lo", NUM2ULONG(v));
|
2002-01-29 10:16:09 +03:00
|
|
|
rb_str_buf_cat2(str, buf);
|
|
|
|
}
|
2002-02-01 09:03:03 +03:00
|
|
|
else if (i == 0 || i == 6) { /* dev/rdev */
|
|
|
|
char buf[32];
|
|
|
|
|
2002-05-29 09:20:39 +04:00
|
|
|
sprintf(buf, "0x%lx", NUM2ULONG(v));
|
2002-02-01 09:03:03 +03:00
|
|
|
rb_str_buf_cat2(str, buf);
|
|
|
|
}
|
2002-01-29 10:16:09 +03:00
|
|
|
else {
|
|
|
|
rb_str_append(str, rb_inspect(v));
|
|
|
|
}
|
2000-06-19 12:38:11 +04:00
|
|
|
}
|
2001-05-30 13:12:34 +04:00
|
|
|
rb_str_buf_cat2(str, ">");
|
2000-06-19 12:38:11 +04:00
|
|
|
OBJ_INFECT(str, self);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat(VALUE file, struct stat *st)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2003-04-14 13:04:43 +04:00
|
|
|
VALUE tmp;
|
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2003-04-14 13:04:43 +04:00
|
|
|
tmp = rb_check_convert_type(file, T_FILE, "IO", "to_io");
|
|
|
|
if (!NIL_P(tmp)) {
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2003-04-14 13:04:43 +04:00
|
|
|
GetOpenFile(tmp, fptr);
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
return fstat(fptr->fd, st);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(file);
|
2003-07-20 21:17:52 +04:00
|
|
|
return stat(StringValueCStr(file), st);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2005-11-22 19:26:39 +03:00
|
|
|
#ifdef _WIN32
|
2005-12-21 10:53:55 +03:00
|
|
|
static HANDLE
|
2005-11-22 19:26:39 +03:00
|
|
|
w32_io_info(VALUE *file, BY_HANDLE_FILE_INFORMATION *st)
|
|
|
|
{
|
|
|
|
VALUE tmp;
|
2005-12-21 10:53:55 +03:00
|
|
|
HANDLE f, ret = 0;
|
2005-11-22 19:26:39 +03:00
|
|
|
|
|
|
|
tmp = rb_check_convert_type(*file, T_FILE, "IO", "to_io");
|
|
|
|
if (!NIL_P(tmp)) {
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
2005-11-22 19:26:39 +03:00
|
|
|
|
|
|
|
GetOpenFile(tmp, fptr);
|
|
|
|
f = (HANDLE)rb_w32_get_osfhandle(fptr->fd);
|
2005-12-21 10:53:55 +03:00
|
|
|
if (f == (HANDLE)-1) return INVALID_HANDLE_VALUE;
|
2005-11-22 19:26:39 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
FilePathValue(*file);
|
2005-11-23 19:32:47 +03:00
|
|
|
f = CreateFile(StringValueCStr(*file), 0,
|
|
|
|
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
|
2005-11-23 12:56:23 +03:00
|
|
|
rb_w32_iswin95() ? 0 : FILE_FLAG_BACKUP_SEMANTICS, NULL);
|
2005-12-21 10:53:55 +03:00
|
|
|
if (f == INVALID_HANDLE_VALUE) return f;
|
|
|
|
ret = f;
|
2005-11-22 19:26:39 +03:00
|
|
|
}
|
2005-11-23 12:56:23 +03:00
|
|
|
if (GetFileType(f) == FILE_TYPE_DISK) {
|
|
|
|
ZeroMemory(st, sizeof(*st));
|
2005-12-21 10:53:55 +03:00
|
|
|
if (GetFileInformationByHandle(f, st)) return ret;
|
2005-11-23 12:56:23 +03:00
|
|
|
}
|
2005-12-21 10:53:55 +03:00
|
|
|
if (ret) CloseHandle(ret);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
2005-11-22 19:26:39 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.stat(file_name) => stat
|
|
|
|
*
|
|
|
|
* Returns a <code>File::Stat</code> object for the named file (see
|
|
|
|
* <code>File::Stat</code>).
|
|
|
|
*
|
|
|
|
* File.stat("testfile").mtime #=> Tue Apr 08 12:58:04 CDT 2003
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_stat(VALUE klass, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(4);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-04-11 09:49:34 +04:00
|
|
|
if (rb_stat(fname, &st) < 0) {
|
2003-07-20 21:17:52 +04:00
|
|
|
rb_sys_fail(StringValueCStr(fname));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
return stat_new(&st);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ios.stat => stat
|
|
|
|
*
|
|
|
|
* Returns status information for <em>ios</em> as an object of type
|
|
|
|
* <code>File::Stat</code>.
|
|
|
|
*
|
|
|
|
* f = File.new("testfile")
|
|
|
|
* s = f.stat
|
|
|
|
* "%o" % s.mode #=> "100644"
|
|
|
|
* s.blksize #=> 4096
|
|
|
|
* s.atime #=> Wed Apr 09 08:53:54 CDT 2003
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_io_stat(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
1998-01-16 15:13:05 +03:00
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
GetOpenFile(obj, fptr);
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
if (fstat(fptr->fd, &st) == -1) {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
}
|
|
|
|
return stat_new(&st);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.lstat(file_name) => stat
|
|
|
|
*
|
|
|
|
* Same as <code>File::stat</code>, but does not follow the last symbolic
|
|
|
|
* link. Instead, reports on the link itself.
|
|
|
|
*
|
|
|
|
* File.symlink("testfile", "link2test") #=> 0
|
|
|
|
* File.stat("testfile").size #=> 66
|
|
|
|
* File.lstat("link2test").size #=> 8
|
|
|
|
* File.stat("link2test").size #=> 66
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_lstat(VALUE klass, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2000-09-21 13:31:00 +04:00
|
|
|
#ifdef HAVE_LSTAT
|
1998-01-16 15:13:05 +03:00
|
|
|
struct stat st;
|
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (lstat(StringValueCStr(fname), &st) == -1) {
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(fname));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
return stat_new(&st);
|
|
|
|
#else
|
2001-05-02 08:22:21 +04:00
|
|
|
return rb_file_s_stat(klass, fname);
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* file.lstat => stat
|
|
|
|
*
|
|
|
|
* Same as <code>IO#stat</code>, but does not follow the last symbolic
|
|
|
|
* link. Instead, reports on the link itself.
|
|
|
|
*
|
|
|
|
* File.symlink("testfile", "link2test") #=> 0
|
|
|
|
* File.stat("testfile").size #=> 66
|
|
|
|
* f = File.new("link2test")
|
|
|
|
* f.lstat.size #=> 8
|
|
|
|
* f.stat.size #=> 66
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_lstat(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2000-09-21 13:31:00 +04:00
|
|
|
#ifdef HAVE_LSTAT
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
1998-01-16 15:13:05 +03:00
|
|
|
struct stat st;
|
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
GetOpenFile(obj, fptr);
|
1999-12-14 09:50:43 +03:00
|
|
|
if (!fptr->path) return Qnil;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (lstat(fptr->path, &st) == -1) {
|
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
}
|
|
|
|
return stat_new(&st);
|
|
|
|
#else
|
2000-09-21 13:31:00 +04:00
|
|
|
return rb_io_stat(obj);
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
group_member(GETGROUPS_T gid)
|
1998-01-16 15:13:05 +03: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-15 06:18:08 +03:00
|
|
|
#ifndef _WIN32
|
2006-11-22 11:37:11 +03:00
|
|
|
if (getgid() == gid || getegid() == gid)
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
# ifdef HAVE_GETGROUPS
|
|
|
|
# ifndef NGROUPS
|
2001-10-10 12:21:13 +04:00
|
|
|
# ifdef NGROUPS_MAX
|
|
|
|
# define NGROUPS NGROUPS_MAX
|
|
|
|
# else
|
1998-01-16 15:13:05 +03:00
|
|
|
# define NGROUPS 32
|
2001-10-10 12:21:13 +04:00
|
|
|
# endif
|
1998-01-16 15:13:05 +03:00
|
|
|
# endif
|
|
|
|
{
|
|
|
|
GETGROUPS_T gary[NGROUPS];
|
|
|
|
int anum;
|
|
|
|
|
|
|
|
anum = getgroups(NGROUPS, gary);
|
|
|
|
while (--anum >= 0)
|
|
|
|
if (gary[anum] == gid)
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef S_IXUGO
|
|
|
|
# define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
|
|
|
|
#endif
|
|
|
|
|
2006-08-17 14:15:55 +04:00
|
|
|
#if defined(S_IXGRP) && !defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
#define USE_GETEUID 1
|
|
|
|
#endif
|
|
|
|
|
2006-01-25 16:30:11 +03:00
|
|
|
#ifndef HAVE_EACCESS
|
1998-01-16 15:13:05 +03:00
|
|
|
int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
eaccess(const char *path, int mode)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-08-17 14:15:55 +04:00
|
|
|
#ifdef USE_GETEUID
|
2001-08-23 10:02:15 +04:00
|
|
|
struct stat st;
|
2007-03-04 17:41:16 +03:00
|
|
|
rb_uid_t euid;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-08-23 10:02:15 +04:00
|
|
|
if (stat(path, &st) < 0) return -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-08-23 10:02:15 +04:00
|
|
|
euid = geteuid();
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-08-23 10:02:15 +04:00
|
|
|
if (euid == 0) {
|
|
|
|
/* Root can read or write any file. */
|
|
|
|
if (!(mode & X_OK))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Root can execute any file that has any one of the execute
|
|
|
|
bits set. */
|
|
|
|
if (st.st_mode & S_IXUGO)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2001-08-23 10:02:15 +04:00
|
|
|
if (st.st_uid == euid) /* owner */
|
|
|
|
mode <<= 6;
|
2006-11-22 11:37:11 +03:00
|
|
|
else if (group_member(st.st_gid))
|
2001-08-23 10:02:15 +04:00
|
|
|
mode <<= 3;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-08-23 10:02:15 +04:00
|
|
|
if ((st.st_mode & mode) == mode) return 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-08-23 10:02:15 +04:00
|
|
|
return -1;
|
2001-05-30 13:12:34 +04:00
|
|
|
#else
|
2005-03-04 20:42:55 +03:00
|
|
|
# if _MSC_VER >= 1400
|
|
|
|
mode &= 6;
|
|
|
|
# endif
|
2001-08-23 10:02:15 +04:00
|
|
|
return access(path, mode);
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
}
|
2006-01-25 16:30:11 +03:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Document-class: FileTest
|
|
|
|
*
|
|
|
|
* <code>FileTest</code> implements file test operations similar to
|
|
|
|
* those used in <code>File::Stat</code>. It exists as a standalone
|
|
|
|
* module, and its methods are also insinuated into the <code>File</code>
|
|
|
|
* class. (Note that this is not done by inclusion: the interpreter cheats).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2006-12-07 18:18:14 +03:00
|
|
|
* File.directory?(file_name) => true or false
|
|
|
|
* File.directory?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is a directory,
|
|
|
|
* <code>false</code> otherwise.
|
|
|
|
*
|
|
|
|
* File.directory?(".")
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Document-method: exist?
|
|
|
|
*
|
|
|
|
* call-seq:
|
|
|
|
* Dir.exist?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is a directory,
|
|
|
|
* <code>false</code> otherwise.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Document-method: directory?
|
|
|
|
*
|
2003-12-21 10:28:54 +03:00
|
|
|
* call-seq:
|
|
|
|
* File.directory?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is a directory,
|
|
|
|
* <code>false</code> otherwise.
|
|
|
|
*
|
|
|
|
* File.directory?(".")
|
|
|
|
*/
|
|
|
|
|
2006-12-07 18:18:14 +03:00
|
|
|
VALUE
|
|
|
|
rb_file_directory_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#ifndef S_ISDIR
|
|
|
|
# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
if (S_ISDIR(st.st_mode)) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2006-12-07 18:18:14 +03:00
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.pipe?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is a pipe.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_pipe_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#ifdef S_IFIFO
|
|
|
|
# ifndef S_ISFIFO
|
|
|
|
# define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
|
|
|
|
# endif
|
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
if (S_ISFIFO(st.st_mode)) return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2004-02-03 20:20:08 +03:00
|
|
|
* File.symlink?(file_name) => true or false
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is a symbolic link.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_symlink_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#ifndef S_ISLNK
|
|
|
|
# ifdef _S_ISLNK
|
|
|
|
# define S_ISLNK(m) _S_ISLNK(m)
|
|
|
|
# else
|
|
|
|
# ifdef _S_IFLNK
|
|
|
|
# define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
|
|
|
|
# else
|
|
|
|
# ifdef S_IFLNK
|
|
|
|
# define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef S_ISLNK
|
|
|
|
struct stat st;
|
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (lstat(StringValueCStr(fname), &st) < 0) return Qfalse;
|
1999-01-20 07:59:39 +03:00
|
|
|
if (S_ISLNK(st.st_mode)) return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
1999-12-14 09:50:43 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2004-02-03 20:20:08 +03:00
|
|
|
* File.socket?(file_name) => true or false
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is a socket.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_socket_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#ifndef S_ISSOCK
|
|
|
|
# ifdef _S_ISSOCK
|
|
|
|
# define S_ISSOCK(m) _S_ISSOCK(m)
|
|
|
|
# else
|
|
|
|
# ifdef _S_IFSOCK
|
|
|
|
# define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
|
|
|
|
# else
|
|
|
|
# ifdef S_IFSOCK
|
|
|
|
# define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef S_ISSOCK
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
if (S_ISSOCK(st.st_mode)) return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2004-02-03 20:20:08 +03:00
|
|
|
* File.blockdev?(file_name) => true or false
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is a block device.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_blockdev_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#ifndef S_ISBLK
|
|
|
|
# ifdef S_IFBLK
|
|
|
|
# define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
|
|
|
|
# else
|
|
|
|
# define S_ISBLK(m) (0) /* anytime false */
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef S_ISBLK
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
if (S_ISBLK(st.st_mode)) return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2004-02-03 20:20:08 +03:00
|
|
|
* File.chardev?(file_name) => true or false
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is a character device.
|
|
|
|
*/
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_chardev_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#ifndef S_ISCHR
|
|
|
|
# define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
2000-02-01 06:12:21 +03:00
|
|
|
if (S_ISCHR(st.st_mode)) return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.exist?(file_name) => true or false
|
|
|
|
* File.exists?(file_name) => true or false (obsolete)
|
|
|
|
*
|
|
|
|
* Return <code>true</code> if the named file exists.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_exist_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.readable?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is readable by the effective
|
|
|
|
* user id of this process.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_readable_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (eaccess(StringValueCStr(fname), R_OK) < 0) return Qfalse;
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.readable_real?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is readable by the real
|
|
|
|
* user id of this process.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_readable_real_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (access(StringValueCStr(fname), R_OK) < 0) return Qfalse;
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-12 19:26:05 +03:00
|
|
|
#ifndef S_IRUGO
|
|
|
|
# define S_IRUGO (S_IRUSR | S_IRGRP | S_IROTH)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef S_IWUGO
|
|
|
|
# define S_IWUGO (S_IWUSR | S_IWGRP | S_IWOTH)
|
|
|
|
#endif
|
|
|
|
|
2004-01-12 16:34:26 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.world_readable?(file_name) => fixnum or nil
|
|
|
|
*
|
|
|
|
* If <i>file_name</i> is readable by others, returns an integer
|
|
|
|
* representing the file permission bits of <i>file_name</i>. Returns
|
|
|
|
* <code>nil</code> otherwise. The meaning of the bits is platform
|
|
|
|
* dependent; on Unix systems, see <code>stat(2)</code>.
|
|
|
|
*
|
|
|
|
* File.world_readable?("/etc/passwd") # => 420
|
|
|
|
* m = File.world_readable?("/etc/passwd")
|
|
|
|
* sprintf("%o", m) # => "644"
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_world_readable_p(VALUE obj, VALUE fname)
|
2004-01-12 16:34:26 +03:00
|
|
|
{
|
|
|
|
#ifdef S_IROTH
|
|
|
|
struct stat st;
|
|
|
|
|
2004-01-12 19:26:05 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qnil;
|
2004-01-12 16:34:26 +03:00
|
|
|
if ((st.st_mode & (S_IROTH)) == S_IROTH) {
|
2004-01-19 15:28:14 +03:00
|
|
|
return UINT2NUM(st.st_mode & (S_IRUGO|S_IWUGO|S_IXUGO));
|
2004-01-12 16:34:26 +03:00
|
|
|
}
|
|
|
|
#endif
|
2004-01-12 19:26:05 +03:00
|
|
|
return Qnil;
|
2004-01-12 16:34:26 +03:00
|
|
|
}
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.writable?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is writable by the effective
|
|
|
|
* user id of this process.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_writable_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (eaccess(StringValueCStr(fname), W_OK) < 0) return Qfalse;
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.writable_real?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is writable by the real
|
|
|
|
* user id of this process.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_writable_real_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (access(StringValueCStr(fname), W_OK) < 0) return Qfalse;
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-12 16:34:26 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.world_writable?(file_name) => fixnum or nil
|
|
|
|
*
|
|
|
|
* If <i>file_name</i> is writable by others, returns an integer
|
|
|
|
* representing the file permission bits of <i>file_name</i>. Returns
|
|
|
|
* <code>nil</code> otherwise. The meaning of the bits is platform
|
|
|
|
* dependent; on Unix systems, see <code>stat(2)</code>.
|
|
|
|
*
|
|
|
|
* File.world_writable?("/tmp") #=> 511
|
|
|
|
* m = File.world_writable?("/tmp")
|
|
|
|
* sprintf("%o", m) #=> "777"
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_world_writable_p(VALUE obj, VALUE fname)
|
2004-01-12 16:34:26 +03:00
|
|
|
{
|
|
|
|
#ifdef S_IWOTH
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
if ((st.st_mode & (S_IWOTH)) == S_IWOTH) {
|
2004-01-19 15:28:14 +03:00
|
|
|
return UINT2NUM(st.st_mode & (S_IRUGO|S_IWUGO|S_IXUGO));
|
2004-01-12 16:34:26 +03:00
|
|
|
}
|
|
|
|
#endif
|
2004-01-12 19:26:05 +03:00
|
|
|
return Qnil;
|
2004-01-12 16:34:26 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.executable?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is executable by the effective
|
|
|
|
* user id of this process.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_executable_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (eaccess(StringValueCStr(fname), X_OK) < 0) return Qfalse;
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.executable_real?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file is executable by the real
|
|
|
|
* user id of this process.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_executable_real_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (access(StringValueCStr(fname), X_OK) < 0) return Qfalse;
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef S_ISREG
|
|
|
|
# define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
|
|
|
|
#endif
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.file?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file exists and is a
|
|
|
|
* regular file.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_file_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
if (S_ISREG(st.st_mode)) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.zero?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file exists and has
|
|
|
|
* a zero size.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_zero_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
if (st.st_size == 0) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2006-08-28 02:25:08 +04:00
|
|
|
* File.size?(file_name) => Integer or nil
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
2006-08-28 02:25:08 +04:00
|
|
|
* Returns +nil+ if +file_name+ doesn't exist or has zero size, the size of the
|
|
|
|
* file otherwise.
|
2003-12-21 10:28:54 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_size_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qnil;
|
|
|
|
if (st.st_size == 0) return Qnil;
|
2002-03-14 09:23:46 +03:00
|
|
|
return OFFT2NUM(st.st_size);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.owned?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file exists and the
|
|
|
|
* effective used id of the calling process is the owner of
|
|
|
|
* the file.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_owned_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
if (st.st_uid == geteuid()) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_rowned_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
|
|
|
if (st.st_uid == getuid()) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.grpowned?(file_name) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named file exists and the
|
|
|
|
* effective group id of the calling process is the owner of
|
|
|
|
* the file. Returns <code>false</code> on Windows.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_grpowned_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03: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-15 06:18:08 +03:00
|
|
|
#ifndef _WIN32
|
1998-01-16 15:13:05 +03:00
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0) return Qfalse;
|
2006-11-22 11:37:11 +03:00
|
|
|
if (group_member(st.st_gid)) return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(S_ISUID) || defined(S_ISGID) || defined(S_ISVTX)
|
|
|
|
static VALUE
|
2005-09-12 19:02:46 +04:00
|
|
|
check3rdbyte(VALUE fname, int mode)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (stat(StringValueCStr(fname), &st) < 0) return Qfalse;
|
1999-01-20 07:59:39 +03:00
|
|
|
if (st.st_mode & mode) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2004-02-03 20:20:08 +03:00
|
|
|
* File.setuid?(file_name) => true or false
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
2005-11-22 19:26:39 +03:00
|
|
|
* Returns <code>true</code> if the named file has the setuid bit set.
|
2003-12-21 10:28:54 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_suid_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#ifdef S_ISUID
|
2001-05-02 08:22:21 +04:00
|
|
|
return check3rdbyte(fname, S_ISUID);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2004-02-03 20:20:08 +03:00
|
|
|
* File.setgid?(file_name) => true or false
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
2005-11-22 19:26:39 +03:00
|
|
|
* Returns <code>true</code> if the named file has the setgid bit set.
|
2003-12-21 10:28:54 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_sgid_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2000-05-13 20:13:31 +04:00
|
|
|
#ifdef S_ISGID
|
2001-05-02 08:22:21 +04:00
|
|
|
return check3rdbyte(fname, S_ISGID);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2004-02-03 20:20:08 +03:00
|
|
|
* File.sticky?(file_name) => true or false
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
2005-11-22 19:26:39 +03:00
|
|
|
* Returns <code>true</code> if the named file has the sticky bit set.
|
2003-12-21 10:28:54 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_sticky_p(VALUE obj, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#ifdef S_ISVTX
|
2001-05-02 08:22:21 +04:00
|
|
|
return check3rdbyte(fname, S_ISVTX);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-08-13 09:45:20 +04:00
|
|
|
return Qnil;
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-11-22 19:26:39 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.identical?(file_1, file_2) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the named files are identical.
|
2005-12-21 12:20:15 +03:00
|
|
|
*
|
|
|
|
* open("a", "w") {}
|
|
|
|
* p File.identical?("a", "a") #=> true
|
|
|
|
* p File.identical?("a", "./a") #=> true
|
|
|
|
* File.link("a", "b")
|
|
|
|
* p File.identical?("a", "b") #=> true
|
|
|
|
* File.symlink("a", "c")
|
|
|
|
* p File.identical?("a", "c") #=> true
|
|
|
|
* open("d", "w") {}
|
|
|
|
* p File.identical?("a", "d") #=> false
|
2005-11-22 19:26:39 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2006-12-07 18:18:14 +03:00
|
|
|
rb_file_identical_p(VALUE obj, VALUE fname1, VALUE fname2)
|
2005-11-22 19:26:39 +03:00
|
|
|
{
|
|
|
|
#ifndef DOSISH
|
|
|
|
struct stat st1, st2;
|
|
|
|
|
|
|
|
if (rb_stat(fname1, &st1) < 0) return Qfalse;
|
|
|
|
if (rb_stat(fname2, &st2) < 0) return Qfalse;
|
|
|
|
if (st1.st_dev != st2.st_dev) return Qfalse;
|
|
|
|
if (st1.st_ino != st2.st_ino) return Qfalse;
|
|
|
|
#else
|
|
|
|
#ifdef _WIN32
|
|
|
|
BY_HANDLE_FILE_INFORMATION st1, st2;
|
2005-12-21 10:53:55 +03:00
|
|
|
HANDLE f1 = 0, f2 = 0;
|
2005-11-22 19:26:39 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
rb_secure(2);
|
|
|
|
#ifdef _WIN32
|
2005-12-21 10:53:55 +03:00
|
|
|
f1 = w32_io_info(&fname1, &st1);
|
|
|
|
if (f1 == INVALID_HANDLE_VALUE) return Qfalse;
|
|
|
|
f2 = w32_io_info(&fname2, &st2);
|
|
|
|
if (f1) CloseHandle(f1);
|
|
|
|
if (f2 == INVALID_HANDLE_VALUE) return Qfalse;
|
|
|
|
if (f2) CloseHandle(f2);
|
2005-11-22 19:26:39 +03:00
|
|
|
|
|
|
|
if (st1.dwVolumeSerialNumber == st2.dwVolumeSerialNumber &&
|
|
|
|
st1.nFileIndexHigh == st2.nFileIndexHigh &&
|
|
|
|
st1.nFileIndexLow == st2.nFileIndexLow)
|
|
|
|
return Qtrue;
|
2005-12-21 10:53:55 +03:00
|
|
|
if (!f1 || !f2) return Qfalse;
|
2005-11-22 19:26:39 +03:00
|
|
|
if (rb_w32_iswin95()) return Qfalse;
|
|
|
|
#else
|
|
|
|
FilePathValue(fname1);
|
|
|
|
fname1 = rb_str_new4(fname1);
|
|
|
|
FilePathValue(fname2);
|
2006-08-31 15:24:44 +04:00
|
|
|
if (access(RSTRING_PTR(fname1), 0)) return Qfalse;
|
|
|
|
if (access(RSTRING_PTR(fname2), 0)) return Qfalse;
|
2005-11-22 19:26:39 +03:00
|
|
|
#endif
|
|
|
|
fname1 = rb_file_expand_path(fname1, Qnil);
|
|
|
|
fname2 = rb_file_expand_path(fname2, Qnil);
|
2006-08-31 15:24:44 +04:00
|
|
|
if (RSTRING_LEN(fname1) != RSTRING_LEN(fname2)) return Qfalse;
|
|
|
|
if (rb_memcicmp(RSTRING_PTR(fname1), RSTRING_PTR(fname2), RSTRING_LEN(fname1)))
|
2005-11-22 19:26:39 +03:00
|
|
|
return Qfalse;
|
|
|
|
#endif
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.size(file_name) => integer
|
|
|
|
*
|
|
|
|
* Returns the size of <code>file_name</code>.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_size(VALUE klass, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0)
|
2003-07-20 21:17:52 +04:00
|
|
|
rb_sys_fail(StringValueCStr(fname));
|
2002-08-28 12:05:23 +04:00
|
|
|
return OFFT2NUM(st.st_size);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-12 19:02:46 +04:00
|
|
|
rb_file_ftype(const struct stat *st)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-06-20 22:02:17 +04:00
|
|
|
const char *t;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-12-07 12:25:55 +03:00
|
|
|
if (S_ISREG(st->st_mode)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
t = "file";
|
2001-05-02 08:22:21 +04:00
|
|
|
}
|
|
|
|
else if (S_ISDIR(st->st_mode)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
t = "directory";
|
2001-05-02 08:22:21 +04:00
|
|
|
}
|
|
|
|
else if (S_ISCHR(st->st_mode)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
t = "characterSpecial";
|
|
|
|
}
|
|
|
|
#ifdef S_ISBLK
|
1999-12-07 12:25:55 +03:00
|
|
|
else if (S_ISBLK(st->st_mode)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
t = "blockSpecial";
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef S_ISFIFO
|
1999-12-07 12:25:55 +03:00
|
|
|
else if (S_ISFIFO(st->st_mode)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
t = "fifo";
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef S_ISLNK
|
1999-12-07 12:25:55 +03:00
|
|
|
else if (S_ISLNK(st->st_mode)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
t = "link";
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef S_ISSOCK
|
1999-12-07 12:25:55 +03:00
|
|
|
else if (S_ISSOCK(st->st_mode)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
t = "socket";
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else {
|
|
|
|
t = "unknown";
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_str_new2(t);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.ftype(file_name) => string
|
|
|
|
*
|
|
|
|
* Identifies the type of the named file; the return string is one of
|
|
|
|
* ``<code>file</code>'', ``<code>directory</code>'',
|
|
|
|
* ``<code>characterSpecial</code>'', ``<code>blockSpecial</code>'',
|
|
|
|
* ``<code>fifo</code>'', ``<code>link</code>'',
|
|
|
|
* ``<code>socket</code>'', or ``<code>unknown</code>''.
|
|
|
|
*
|
|
|
|
* File.ftype("testfile") #=> "file"
|
|
|
|
* File.ftype("/dev/tty") #=> "characterSpecial"
|
|
|
|
* File.ftype("/tmp/.X11-unix/X0") #=> "socket"
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_ftype(VALUE klass, VALUE fname)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (lstat(StringValueCStr(fname), &st) == -1) {
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(fname));
|
1999-11-25 12:03:08 +03:00
|
|
|
}
|
|
|
|
|
1999-12-07 12:25:55 +03:00
|
|
|
return rb_file_ftype(&st);
|
1999-11-25 12:03:08 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.atime(file_name) => time
|
|
|
|
*
|
|
|
|
* Returns the last access time for the named file as a Time object).
|
|
|
|
*
|
|
|
|
* File.atime("testfile") #=> Wed Apr 09 08:51:48 CDT 2003
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_atime(VALUE klass, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0)
|
2003-07-20 21:17:52 +04:00
|
|
|
rb_sys_fail(StringValueCStr(fname));
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_time_new(st.st_atime, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* file.atime => time
|
|
|
|
*
|
|
|
|
* Returns the last access time (a <code>Time</code> object)
|
|
|
|
* for <i>file</i>, or epoch if <i>file</i> has not been accessed.
|
|
|
|
*
|
|
|
|
* File.new("testfile").atime #=> Wed Dec 31 18:00:00 CST 1969
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_atime(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
1998-01-16 15:13:05 +03:00
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
GetOpenFile(obj, fptr);
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
if (fstat(fptr->fd, &st) == -1) {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_time_new(st.st_atime, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.mtime(file_name) => time
|
|
|
|
*
|
|
|
|
* Returns the modification time for the named file as a Time object.
|
|
|
|
*
|
|
|
|
* File.mtime("testfile") #=> Tue Apr 08 12:58:04 CDT 2003
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_mtime(VALUE klass, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0)
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(fname));
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_time_new(st.st_mtime, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* file.mtime -> time
|
|
|
|
*
|
|
|
|
* Returns the modification time for <i>file</i>.
|
|
|
|
*
|
|
|
|
* File.new("testfile").mtime #=> Wed Apr 09 08:53:14 CDT 2003
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_mtime(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
1998-01-16 15:13:05 +03:00
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
GetOpenFile(obj, fptr);
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
if (fstat(fptr->fd, &st) == -1) {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_time_new(st.st_mtime, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.ctime(file_name) => time
|
|
|
|
*
|
|
|
|
* Returns the change time for the named file (the time at which
|
|
|
|
* directory information about the file was changed, not the file
|
|
|
|
* itself).
|
|
|
|
*
|
|
|
|
* File.ctime("testfile") #=> Wed Apr 09 08:53:13 CDT 2003
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_ctime(VALUE klass, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(fname, &st) < 0)
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(fname));
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_time_new(st.st_ctime, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* file.ctime -> time
|
|
|
|
*
|
|
|
|
* Returns the change time for <i>file</i> (that is, the time directory
|
|
|
|
* information about the file was changed, not the file itself).
|
|
|
|
*
|
|
|
|
* File.new("testfile").ctime #=> Wed Apr 09 08:53:14 CDT 2003
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_ctime(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
1998-01-16 15:13:05 +03:00
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
GetOpenFile(obj, fptr);
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
if (fstat(fptr->fd, &st) == -1) {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_time_new(st.st_ctime, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-12 19:02:46 +04:00
|
|
|
chmod_internal(const char *path, void *mode)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-01-13 21:44:34 +03:00
|
|
|
if (chmod(path, *(int *)mode) < 0)
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(path);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.chmod(mode_int, file_name, ... ) -> integer
|
|
|
|
*
|
|
|
|
* Changes permission bits on the named file(s) to the bit pattern
|
|
|
|
* represented by <i>mode_int</i>. Actual effects are operating system
|
|
|
|
* dependent (see the beginning of this section). On Unix systems, see
|
|
|
|
* <code>chmod(2)</code> for details. Returns the number of files
|
|
|
|
* processed.
|
|
|
|
*
|
|
|
|
* File.chmod(0644, "testfile", "out") #=> 2
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_chmod(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
VALUE vmode;
|
|
|
|
VALUE rest;
|
2002-08-28 12:05:23 +04:00
|
|
|
int mode;
|
|
|
|
long n;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-12 13:07:57 +04:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_scan_args(argc, argv, "1*", &vmode, &rest);
|
|
|
|
mode = NUM2INT(vmode);
|
|
|
|
|
2006-01-13 21:44:34 +03:00
|
|
|
n = apply2files(chmod_internal, rest, &mode);
|
2002-08-28 12:05:23 +04:00
|
|
|
return LONG2FIX(n);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* file.chmod(mode_int) => 0
|
|
|
|
*
|
|
|
|
* Changes permission bits on <i>file</i> to the bit pattern
|
|
|
|
* represented by <i>mode_int</i>. Actual effects are platform
|
|
|
|
* dependent; on Unix systems, see <code>chmod(2)</code> for details.
|
|
|
|
* Follows symbolic links. Also see <code>File#lchmod</code>.
|
|
|
|
*
|
|
|
|
* f = File.new("out", "w");
|
|
|
|
* f.chmod(0644) #=> 0
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_chmod(VALUE obj, VALUE vmode)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
1998-01-16 15:13:05 +03:00
|
|
|
int mode;
|
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
mode = NUM2INT(vmode);
|
|
|
|
|
|
|
|
GetOpenFile(obj, fptr);
|
2000-11-13 08:39:35 +03:00
|
|
|
#ifdef HAVE_FCHMOD
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
if (fchmod(fptr->fd, mode) == -1)
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
#else
|
2000-11-13 08:39:35 +03:00
|
|
|
if (!fptr->path) return Qnil;
|
|
|
|
if (chmod(fptr->path, mode) == -1)
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return INT2FIX(0);
|
|
|
|
}
|
|
|
|
|
2001-02-16 10:53:21 +03:00
|
|
|
#if defined(HAVE_LCHMOD)
|
|
|
|
static void
|
2005-09-12 19:02:46 +04:00
|
|
|
lchmod_internal(const char *path, void *mode)
|
2001-02-16 10:53:21 +03:00
|
|
|
{
|
2005-09-12 19:02:46 +04:00
|
|
|
if (lchmod(path, (int)mode) < 0)
|
2001-02-16 10:53:21 +03:00
|
|
|
rb_sys_fail(path);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.lchmod(mode_int, file_name, ...) => integer
|
|
|
|
*
|
|
|
|
* Equivalent to <code>File::chmod</code>, but does not follow symbolic
|
|
|
|
* links (so it will change the permissions associated with the link,
|
|
|
|
* not the file referenced by the link). Often not available.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2001-02-16 10:53:21 +03:00
|
|
|
static VALUE
|
2005-09-12 19:02:46 +04:00
|
|
|
rb_file_s_lchmod(int argc, VALUE *argv)
|
2001-02-16 10:53:21 +03:00
|
|
|
{
|
|
|
|
VALUE vmode;
|
|
|
|
VALUE rest;
|
2004-10-01 19:56:05 +04:00
|
|
|
long mode, n;
|
2001-02-16 10:53:21 +03:00
|
|
|
|
|
|
|
rb_secure(2);
|
|
|
|
rb_scan_args(argc, argv, "1*", &vmode, &rest);
|
|
|
|
mode = NUM2INT(vmode);
|
|
|
|
|
2003-01-03 19:52:56 +03:00
|
|
|
n = apply2files(lchmod_internal, rest, (void *)(long)mode);
|
2002-08-28 12:05:23 +04:00
|
|
|
return LONG2FIX(n);
|
2001-02-16 10:53:21 +03:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_lchmod(int argc, VALUE *argv)
|
2001-02-16 10:53:21 +03:00
|
|
|
{
|
|
|
|
rb_notimplement();
|
2003-07-25 09:36:55 +04:00
|
|
|
return Qnil; /* not reached */
|
2001-02-16 10:53:21 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
struct chown_args {
|
|
|
|
int owner, group;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2005-09-12 19:02:46 +04:00
|
|
|
chown_internal(const char *path, void *arg)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2005-09-12 19:02:46 +04:00
|
|
|
struct chown_args *args = arg;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (chown(path, args->owner, args->group) < 0)
|
|
|
|
rb_sys_fail(path);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.chown(owner_int, group_int, file_name,... ) -> integer
|
|
|
|
*
|
|
|
|
* Changes the owner and group of the named file(s) to the given
|
|
|
|
* numeric owner and group id's. Only a process with superuser
|
|
|
|
* privileges may change the owner of a file. The current owner of a
|
|
|
|
* file may change the file's group to any group to which the owner
|
|
|
|
* belongs. A <code>nil</code> or -1 owner or group id is ignored.
|
|
|
|
* Returns the number of files processed.
|
|
|
|
*
|
|
|
|
* File.chown(nil, 100, "testfile")
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_chown(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
VALUE o, g, rest;
|
|
|
|
struct chown_args arg;
|
2002-08-28 12:05:23 +04:00
|
|
|
long n;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-12 13:07:57 +04:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_scan_args(argc, argv, "2*", &o, &g, &rest);
|
|
|
|
if (NIL_P(o)) {
|
|
|
|
arg.owner = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
arg.owner = NUM2INT(o);
|
|
|
|
}
|
|
|
|
if (NIL_P(g)) {
|
|
|
|
arg.group = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
arg.group = NUM2INT(g);
|
|
|
|
}
|
|
|
|
|
|
|
|
n = apply2files(chown_internal, rest, &arg);
|
2002-08-28 12:05:23 +04:00
|
|
|
return LONG2FIX(n);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* file.chown(owner_int, group_int ) => 0
|
|
|
|
*
|
|
|
|
* Changes the owner and group of <i>file</i> to the given numeric
|
|
|
|
* owner and group id's. Only a process with superuser privileges may
|
|
|
|
* change the owner of a file. The current owner of a file may change
|
|
|
|
* the file's group to any group to which the owner belongs. A
|
|
|
|
* <code>nil</code> or -1 owner or group id is ignored. Follows
|
|
|
|
* symbolic links. See also <code>File#lchown</code>.
|
|
|
|
*
|
|
|
|
* File.new("testfile").chown(502, 1000)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_chown(VALUE obj, VALUE owner, VALUE group)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
2004-11-22 18:26:02 +03:00
|
|
|
int o, g;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
2005-09-19 13:58:52 +04:00
|
|
|
o = NIL_P(owner) ? -1 : NUM2INT(owner);
|
|
|
|
g = NIL_P(group) ? -1 : NUM2INT(group);
|
2004-11-22 20:02:45 +03:00
|
|
|
GetOpenFile(obj, fptr);
|
* 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-15 06:18:08 +03:00
|
|
|
#if defined(DJGPP) || defined(__CYGWIN32__) || defined(_WIN32) || defined(__EMX__)
|
1999-12-14 09:50:43 +03:00
|
|
|
if (!fptr->path) return Qnil;
|
2004-11-22 18:26:02 +03:00
|
|
|
if (chown(fptr->path, o, g) == -1)
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
#else
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
if (fchown(fptr->fd, o, g) == -1)
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return INT2FIX(0);
|
|
|
|
}
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
#if defined(HAVE_LCHOWN) && !defined(__CHECKER__)
|
2001-02-16 10:53:21 +03:00
|
|
|
static void
|
2005-09-12 19:02:46 +04:00
|
|
|
lchown_internal(const char *path, void *arg)
|
2001-02-16 10:53:21 +03:00
|
|
|
{
|
2005-09-12 19:02:46 +04:00
|
|
|
struct chown_args *args = arg;
|
2001-02-16 10:53:21 +03:00
|
|
|
if (lchown(path, args->owner, args->group) < 0)
|
|
|
|
rb_sys_fail(path);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* file.lchown(owner_int, group_int, file_name,..) => integer
|
|
|
|
*
|
|
|
|
* Equivalent to <code>File::chown</code>, but does not follow symbolic
|
|
|
|
* links (so it will change the owner associated with the link, not the
|
|
|
|
* file referenced by the link). Often not available. Returns number
|
|
|
|
* of files in the argument list.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2001-02-16 10:53:21 +03:00
|
|
|
static VALUE
|
2005-09-12 19:02:46 +04:00
|
|
|
rb_file_s_lchown(int argc, VALUE *argv)
|
2001-02-16 10:53:21 +03:00
|
|
|
{
|
|
|
|
VALUE o, g, rest;
|
|
|
|
struct chown_args arg;
|
2002-08-28 12:05:23 +04:00
|
|
|
long n;
|
2001-02-16 10:53:21 +03:00
|
|
|
|
|
|
|
rb_secure(2);
|
|
|
|
rb_scan_args(argc, argv, "2*", &o, &g, &rest);
|
|
|
|
if (NIL_P(o)) {
|
|
|
|
arg.owner = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
arg.owner = NUM2INT(o);
|
|
|
|
}
|
|
|
|
if (NIL_P(g)) {
|
|
|
|
arg.group = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
arg.group = NUM2INT(g);
|
|
|
|
}
|
|
|
|
|
|
|
|
n = apply2files(lchown_internal, rest, &arg);
|
2002-08-28 12:05:23 +04:00
|
|
|
return LONG2FIX(n);
|
2001-02-16 10:53:21 +03:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_lchown(int argc, VALUE *argv)
|
2001-02-16 10:53:21 +03:00
|
|
|
{
|
|
|
|
rb_notimplement();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
struct timeval rb_time_timeval(VALUE time);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-08-07 09:05:04 +04:00
|
|
|
#if defined(HAVE_UTIMES) && !defined(__CHECKER__)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
static void
|
2005-09-12 19:02:46 +04:00
|
|
|
utime_internal(const char *path, void *arg)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2005-09-12 19:02:46 +04:00
|
|
|
struct timeval *tvp = arg;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (utimes(path, tvp) < 0)
|
|
|
|
rb_sys_fail(path);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.utime(atime, mtime, file_name,...) => integer
|
|
|
|
*
|
|
|
|
* Sets the access and modification times of each
|
|
|
|
* named file to the first two arguments. Returns
|
|
|
|
* the number of file names in the argument list.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2005-09-12 19:02:46 +04:00
|
|
|
rb_file_s_utime(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
VALUE atime, mtime, rest;
|
2007-03-03 16:37:02 +03:00
|
|
|
struct timeval tvs[2], *tvp = NULL;
|
2002-08-28 12:05:23 +04:00
|
|
|
long n;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "2*", &atime, &mtime, &rest);
|
|
|
|
|
2007-03-03 16:37:02 +03:00
|
|
|
if (!NIL_P(atime) || !NIL_P(mtime)) {
|
|
|
|
tvp = tvs;
|
|
|
|
tvp[0] = rb_time_timeval(atime);
|
|
|
|
tvp[1] = rb_time_timeval(mtime);
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
n = apply2files(utime_internal, rest, tvp);
|
2002-08-28 12:05:23 +04:00
|
|
|
return LONG2FIX(n);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
* 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-15 06:18:08 +03:00
|
|
|
#if !defined HAVE_UTIME_H && !defined HAVE_SYS_UTIME_H
|
1998-01-16 15:13:05 +03:00
|
|
|
struct utimbuf {
|
|
|
|
long actime;
|
|
|
|
long modtime;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
2005-09-12 19:02:46 +04:00
|
|
|
utime_internal(const char *path, void *arg)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2005-09-12 19:02:46 +04:00
|
|
|
struct utimbuf *utp = arg;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (utime(path, utp) < 0)
|
|
|
|
rb_sys_fail(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_utime(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
VALUE atime, mtime, rest;
|
2002-08-28 12:05:23 +04:00
|
|
|
long n;
|
1998-01-16 15:13:05 +03:00
|
|
|
struct timeval tv;
|
2007-03-03 16:37:02 +03:00
|
|
|
struct utimbuf utbuf, *utp = NULL;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "2*", &atime, &mtime, &rest);
|
|
|
|
|
2007-03-04 17:38:02 +03:00
|
|
|
if (!NIL_P(atime) || !NIL_P(mtime)) {
|
|
|
|
utp = &utbuf;
|
|
|
|
tv = rb_time_timeval(atime);
|
|
|
|
utp->actime = tv.tv_sec;
|
|
|
|
tv = rb_time_timeval(mtime);
|
|
|
|
utp->modtime = tv.tv_sec;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2007-03-04 17:38:02 +03:00
|
|
|
n = apply2files(utime_internal, rest, utp);
|
2002-08-28 12:05:23 +04:00
|
|
|
return LONG2FIX(n);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 10:32:32 +04:00
|
|
|
NORETURN(static void sys_fail2(VALUE,VALUE));
|
2003-07-20 21:17:52 +04:00
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
sys_fail2(VALUE s1, VALUE s2)
|
2003-07-20 21:17:52 +04:00
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
int len;
|
|
|
|
|
2006-08-31 14:47:44 +04:00
|
|
|
len = RSTRING_LEN(s1) + RSTRING_LEN(s2) + 5;
|
2003-07-20 21:17:52 +04:00
|
|
|
buf = ALLOCA_N(char, len);
|
2006-08-31 14:47:44 +04:00
|
|
|
snprintf(buf, len, "(%s, %s)", RSTRING_PTR(s1), RSTRING_PTR(s2));
|
2003-07-20 21:17:52 +04:00
|
|
|
rb_sys_fail(buf);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.link(old_name, new_name) => 0
|
|
|
|
*
|
|
|
|
* Creates a new name for an existing file using a hard link. Will not
|
|
|
|
* overwrite <i>new_name</i> if it already exists (raising a subclass
|
|
|
|
* of <code>SystemCallError</code>). Not available on all platforms.
|
|
|
|
*
|
|
|
|
* File.link("testfile", ".testfile") #=> 0
|
|
|
|
* IO.readlines(".testfile")[0] #=> "This is line one\n"
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_link(VALUE klass, VALUE from, VALUE to)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-01-21 19:09:40 +03:00
|
|
|
#ifdef HAVE_LINK
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(from);
|
|
|
|
FilePathValue(to);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-07-20 21:17:52 +04:00
|
|
|
if (link(StringValueCStr(from), StringValueCStr(to)) < 0) {
|
|
|
|
sys_fail2(from, to);
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
return INT2FIX(0);
|
2004-01-21 19:09:40 +03:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
return Qnil; /* not reached */
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.symlink(old_name, new_name) => 0
|
|
|
|
*
|
|
|
|
* Creates a symbolic link called <i>new_name</i> for the existing file
|
|
|
|
* <i>old_name</i>. Raises a <code>NotImplemented</code> exception on
|
|
|
|
* platforms that do not support symbolic links.
|
|
|
|
*
|
|
|
|
* File.symlink("testfile", "link2test") #=> 0
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_symlink(VALUE klass, VALUE from, VALUE to)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2000-09-21 13:31:00 +04:00
|
|
|
#ifdef HAVE_SYMLINK
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(from);
|
|
|
|
FilePathValue(to);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-07-20 21:17:52 +04:00
|
|
|
if (symlink(StringValueCStr(from), StringValueCStr(to)) < 0) {
|
|
|
|
sys_fail2(from, to);
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return INT2FIX(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_notimplement();
|
|
|
|
return Qnil; /* not reached */
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.readlink(link_name) -> file_name
|
|
|
|
*
|
|
|
|
* Returns the name of the file referenced by the given link.
|
|
|
|
* Not available on all platforms.
|
|
|
|
*
|
|
|
|
* File.symlink("testfile", "link2test") #=> 0
|
|
|
|
* File.readlink("link2test") #=> "testfile"
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_readlink(VALUE klass, VALUE path)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2000-09-22 07:37:27 +04:00
|
|
|
#ifdef HAVE_READLINK
|
2001-11-08 09:43:14 +03:00
|
|
|
char *buf;
|
|
|
|
int size = 100;
|
|
|
|
int rv;
|
|
|
|
VALUE v;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(path);
|
2001-11-08 09:43:14 +03:00
|
|
|
buf = xmalloc(size);
|
2006-08-31 14:47:44 +04:00
|
|
|
while ((rv = readlink(RSTRING_PTR(path), buf, size)) == size
|
2005-11-14 17:52:55 +03:00
|
|
|
#ifdef _AIX
|
|
|
|
|| (rv < 0 && errno == ERANGE) /* quirky behavior of GPFS */
|
2005-11-06 14:18:57 +03:00
|
|
|
#endif
|
2005-11-14 17:52:55 +03:00
|
|
|
) {
|
2001-11-08 09:43:14 +03:00
|
|
|
size *= 2;
|
|
|
|
buf = xrealloc(buf, size);
|
|
|
|
}
|
2002-09-02 12:02:56 +04:00
|
|
|
if (rv < 0) {
|
|
|
|
free(buf);
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(path));
|
2002-09-02 12:02:56 +04:00
|
|
|
}
|
2001-11-08 09:43:14 +03:00
|
|
|
v = rb_tainted_str_new(buf, rv);
|
|
|
|
free(buf);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-11-08 09:43:14 +03:00
|
|
|
return v;
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qnil; /* not reached */
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-12 19:02:46 +04:00
|
|
|
unlink_internal(const char *path, void *arg)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
if (unlink(path) < 0)
|
|
|
|
rb_sys_fail(path);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.delete(file_name, ...) => integer
|
|
|
|
* File.unlink(file_name, ...) => integer
|
|
|
|
*
|
|
|
|
* Deletes the named files, returning the number of names
|
|
|
|
* passed as arguments. Raises an exception on any error.
|
|
|
|
* See also <code>Dir::rmdir</code>.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_unlink(VALUE klass, VALUE args)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-08-28 12:05:23 +04:00
|
|
|
long n;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-06-01 10:47:32 +04:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
n = apply2files(unlink_internal, args, 0);
|
2002-08-28 12:05:23 +04:00
|
|
|
return LONG2FIX(n);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.rename(old_name, new_name) => 0
|
|
|
|
*
|
|
|
|
* Renames the given file to the new name. Raises a
|
|
|
|
* <code>SystemCallError</code> if the file cannot be renamed.
|
|
|
|
*
|
|
|
|
* File.rename("afile", "afile.bak") #=> 0
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_rename(VALUE klass, VALUE from, VALUE to)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2003-07-30 04:32:03 +04:00
|
|
|
const char *src, *dst;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(from);
|
|
|
|
FilePathValue(to);
|
2003-07-30 04:32:03 +04:00
|
|
|
src = StringValueCStr(from);
|
|
|
|
dst = StringValueCStr(to);
|
2006-08-19 06:29:18 +04:00
|
|
|
#if defined __CYGWIN__
|
|
|
|
errno = 0;
|
|
|
|
#endif
|
2003-07-30 04:32:03 +04:00
|
|
|
if (rename(src, dst) < 0) {
|
2007-07-22 09:33:54 +04:00
|
|
|
#if defined DOSISH && !defined _WIN32
|
|
|
|
switch (errno) {
|
|
|
|
case EEXIST:
|
2003-07-30 04:32:03 +04:00
|
|
|
#if defined (__EMX__)
|
2007-07-22 09:33:54 +04:00
|
|
|
case EACCES:
|
2003-07-30 04:32:03 +04:00
|
|
|
#endif
|
|
|
|
if (chmod(dst, 0666) == 0 &&
|
|
|
|
unlink(dst) == 0 &&
|
|
|
|
rename(src, dst) == 0)
|
|
|
|
return INT2FIX(0);
|
|
|
|
}
|
2001-02-24 20:51:02 +03:00
|
|
|
#endif
|
2003-07-20 21:17:52 +04:00
|
|
|
sys_fail2(from, to);
|
2001-02-24 20:51:02 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
return INT2FIX(0);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.umask() => integer
|
|
|
|
* File.umask(integer) => integer
|
|
|
|
*
|
|
|
|
* Returns the current umask value for this process. If the optional
|
|
|
|
* argument is given, set the umask to that value and return the
|
|
|
|
* previous value. Umask values are <em>subtracted</em> from the
|
|
|
|
* default permissions, so a umask of <code>0222</code> would make a
|
|
|
|
* file read-only for everyone.
|
|
|
|
*
|
|
|
|
* File.umask(0006) #=> 18
|
|
|
|
* File.umask #=> 6
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_umask(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int omask = 0;
|
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
if (argc == 0) {
|
1999-01-20 07:59:39 +03:00
|
|
|
omask = umask(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
umask(omask);
|
|
|
|
}
|
|
|
|
else if (argc == 1) {
|
|
|
|
omask = umask(NUM2INT(argv[0]));
|
|
|
|
}
|
|
|
|
else {
|
2004-03-29 11:54:38 +04:00
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
return INT2FIX(omask);
|
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#if defined DOSISH
|
2003-02-12 17:56:45 +03:00
|
|
|
#define DOSISH_UNC
|
1999-08-13 09:45:20 +04:00
|
|
|
#define isdirsep(x) ((x) == '/' || (x) == '\\')
|
|
|
|
#else
|
|
|
|
#define isdirsep(x) ((x) == '/')
|
|
|
|
#endif
|
2001-07-24 19:11:02 +04:00
|
|
|
#ifndef CharNext /* defined as CharNext[AW] on Windows. */
|
|
|
|
# if defined(DJGPP)
|
2004-01-21 18:26:11 +03:00
|
|
|
# define CharNext(p) ((p) + mblen(p, RUBY_MBCHAR_MAXSIZE))
|
2001-07-24 19:11:02 +04:00
|
|
|
# else
|
|
|
|
# define CharNext(p) ((p) + 1)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2003-02-12 17:56:45 +03:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
#undef DOSISH
|
|
|
|
#define DOSISH_UNC
|
|
|
|
#define DOSISH_DRIVE_LETTER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DOSISH_DRIVE_LETTER
|
2003-01-06 12:44:15 +03:00
|
|
|
static inline int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
has_drive_letter(const char *buf)
|
2003-01-06 12:44:15 +03:00
|
|
|
{
|
|
|
|
if (ISALPHA(buf[0]) && buf[1] == ':') {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
* 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-22 07:00:03 +03:00
|
|
|
static char*
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
getcwdofdrv(int drv)
|
2003-01-06 12:44:15 +03:00
|
|
|
{
|
|
|
|
char drive[4];
|
* 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-22 07:00:03 +03:00
|
|
|
char *drvcwd, *oldcwd;
|
2003-01-06 12:44:15 +03:00
|
|
|
|
|
|
|
drive[0] = drv;
|
|
|
|
drive[1] = ':';
|
|
|
|
drive[2] = '\0';
|
|
|
|
|
|
|
|
/* the only way that I know to get the current directory
|
|
|
|
of a particular drive is to change chdir() to that drive,
|
|
|
|
so save the old cwd before chdir()
|
|
|
|
*/
|
* 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-22 07:00:03 +03:00
|
|
|
oldcwd = my_getcwd();
|
2003-01-06 12:44:15 +03:00
|
|
|
if (chdir(drive) == 0) {
|
* 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-22 07:00:03 +03:00
|
|
|
drvcwd = my_getcwd();
|
2003-01-06 12:44:15 +03:00
|
|
|
chdir(oldcwd);
|
* 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-22 07:00:03 +03:00
|
|
|
free(oldcwd);
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* perhaps the drive is not exist. we return only drive letter */
|
* 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-22 07:00:03 +03:00
|
|
|
drvcwd = strdup(drive);
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
* 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-22 07:00:03 +03:00
|
|
|
return drvcwd;
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-02-12 17:56:45 +03:00
|
|
|
static inline char *
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
skiproot(const char *path)
|
2003-02-12 17:56:45 +03:00
|
|
|
{
|
|
|
|
#ifdef DOSISH_DRIVE_LETTER
|
|
|
|
if (has_drive_letter(path)) path += 2;
|
|
|
|
#endif
|
|
|
|
while (isdirsep(*path)) path++;
|
|
|
|
return (char *)path;
|
|
|
|
}
|
|
|
|
|
2003-12-15 07:07:03 +03:00
|
|
|
#define nextdirsep rb_path_next
|
|
|
|
char *
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_path_next(const char *s)
|
2003-02-16 13:22:36 +03:00
|
|
|
{
|
|
|
|
while (*s && !isdirsep(*s)) {
|
|
|
|
s = CharNext(s);
|
|
|
|
}
|
|
|
|
return (char *)s;
|
|
|
|
}
|
|
|
|
|
2005-11-21 16:21:47 +03:00
|
|
|
#if defined(DOSISH_UNC) || defined(DOSISH_DRIVE_LETTER)
|
2003-12-15 07:07:03 +03:00
|
|
|
#define skipprefix rb_path_skip_prefix
|
2005-11-21 16:21:47 +03:00
|
|
|
#else
|
|
|
|
#define skipprefix(path) (path)
|
|
|
|
#endif
|
2003-12-15 07:07:03 +03:00
|
|
|
char *
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_path_skip_prefix(const char *path)
|
2003-02-20 12:11:05 +03:00
|
|
|
{
|
2003-12-15 07:07:03 +03:00
|
|
|
#if defined(DOSISH_UNC) || defined(DOSISH_DRIVE_LETTER)
|
2003-02-20 12:11:05 +03:00
|
|
|
#ifdef DOSISH_UNC
|
|
|
|
if (isdirsep(path[0]) && isdirsep(path[1])) {
|
2005-11-22 08:39:50 +03:00
|
|
|
path += 2;
|
|
|
|
while (isdirsep(*path)) path++;
|
|
|
|
if (*(path = nextdirsep(path)) && path[1] && !isdirsep(path[1]))
|
2003-02-20 12:11:05 +03:00
|
|
|
path = nextdirsep(path + 1);
|
|
|
|
return (char *)path;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef DOSISH_DRIVE_LETTER
|
|
|
|
if (has_drive_letter(path))
|
|
|
|
return (char *)(path + 2);
|
2003-12-15 07:07:03 +03:00
|
|
|
#endif
|
2003-02-20 12:11:05 +03:00
|
|
|
#endif
|
|
|
|
return (char *)path;
|
|
|
|
}
|
|
|
|
|
2003-12-15 07:07:03 +03:00
|
|
|
#define strrdirsep rb_path_last_separator
|
|
|
|
char *
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_path_last_separator(const char *path)
|
2001-07-24 19:11:02 +04:00
|
|
|
{
|
|
|
|
char *last = NULL;
|
|
|
|
while (*path) {
|
|
|
|
if (isdirsep(*path)) {
|
2003-02-12 17:56:45 +03:00
|
|
|
const char *tmp = path++;
|
|
|
|
while (isdirsep(*path)) path++;
|
|
|
|
if (!*path) break;
|
|
|
|
last = (char *)tmp;
|
2001-07-24 19:11:02 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
path = CharNext(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return last;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2006-09-25 16:25:29 +04:00
|
|
|
static char *
|
|
|
|
chompdirsep(const char *path)
|
2003-02-12 17:56:45 +03:00
|
|
|
{
|
|
|
|
while (*path) {
|
|
|
|
if (isdirsep(*path)) {
|
|
|
|
const char *last = path++;
|
|
|
|
while (isdirsep(*path)) path++;
|
|
|
|
if (!*path) return (char *)last;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
path = CharNext(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (char *)path;
|
|
|
|
}
|
|
|
|
|
2006-09-25 16:25:29 +04:00
|
|
|
char *
|
|
|
|
rb_path_end(const char *path)
|
|
|
|
{
|
|
|
|
if (isdirsep(*path)) path++;
|
|
|
|
return chompdirsep(path);
|
|
|
|
}
|
|
|
|
|
2003-08-23 19:44:05 +04:00
|
|
|
#define BUFCHECK(cond) do {\
|
2002-02-04 11:09:14 +03:00
|
|
|
long bdiff = p - buf;\
|
2003-08-23 19:44:05 +04:00
|
|
|
while (cond) {\
|
|
|
|
buflen *= 2;\
|
|
|
|
}\
|
2002-02-04 11:09:14 +03:00
|
|
|
rb_str_resize(result, buflen);\
|
2006-08-31 14:47:44 +04:00
|
|
|
buf = RSTRING_PTR(result);\
|
2002-02-04 11:09:14 +03:00
|
|
|
p = buf + bdiff;\
|
|
|
|
pend = buf + buflen;\
|
2003-08-23 19:44:05 +04:00
|
|
|
} while (0)
|
2002-02-04 11:09:14 +03:00
|
|
|
|
2003-02-16 13:22:36 +03:00
|
|
|
#define BUFINIT() (\
|
2006-08-31 14:47:44 +04:00
|
|
|
p = buf = RSTRING_PTR(result),\
|
|
|
|
buflen = RSTRING_LEN(result),\
|
2003-02-16 13:22:36 +03:00
|
|
|
pend = p + buflen)
|
|
|
|
|
2003-01-06 12:44:15 +03:00
|
|
|
#if !defined(TOLOWER)
|
|
|
|
#define TOLOWER(c) (ISUPPER(c) ? tolower(c) : (c))
|
|
|
|
#endif
|
|
|
|
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 10:32:32 +04:00
|
|
|
static int is_absolute_path(const char*);
|
2003-01-06 12:44:15 +03:00
|
|
|
|
2003-02-12 17:56:45 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
file_expand_path(VALUE fname, VALUE dname, VALUE result)
|
2003-02-12 17:56:45 +03:00
|
|
|
{
|
2003-02-20 12:11:05 +03:00
|
|
|
char *s, *buf, *b, *p, *pend, *root;
|
2003-08-23 19:44:05 +04:00
|
|
|
long buflen, dirlen;
|
2000-01-05 07:41:21 +03:00
|
|
|
int tainted;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-09-19 20:01:06 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-23 10:48:52 +04:00
|
|
|
s = StringValuePtr(fname);
|
2003-02-16 13:22:36 +03:00
|
|
|
BUFINIT();
|
2002-02-04 11:09:14 +03:00
|
|
|
tainted = OBJ_TAINTED(fname);
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
if (s[0] == '~') {
|
1999-08-13 09:45:20 +04:00
|
|
|
if (isdirsep(s[1]) || s[1] == '\0') {
|
1998-01-16 15:13:05 +03:00
|
|
|
char *dir = getenv("HOME");
|
|
|
|
|
|
|
|
if (!dir) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "couldn't find HOME environment -- expanding `%s'", s);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-08-23 19:44:05 +04:00
|
|
|
dirlen = strlen(dir);
|
|
|
|
BUFCHECK(dirlen > buflen);
|
1998-01-16 15:13:05 +03:00
|
|
|
strcpy(buf, dir);
|
2003-07-23 18:09:52 +04:00
|
|
|
#if defined DOSISH || defined __CYGWIN__
|
2003-01-30 02:28:47 +03:00
|
|
|
for (p = buf; *p; p = CharNext(p)) {
|
|
|
|
if (*p == '\\') {
|
2003-01-06 12:44:15 +03:00
|
|
|
*p = '/';
|
|
|
|
}
|
|
|
|
}
|
2003-01-30 02:28:47 +03:00
|
|
|
#else
|
2002-02-04 11:09:14 +03:00
|
|
|
p = buf + strlen(dir);
|
2003-01-30 02:28:47 +03:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
s++;
|
1999-12-07 12:25:55 +03:00
|
|
|
tainted = 1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
#ifdef HAVE_PWD_H
|
|
|
|
struct passwd *pwPtr;
|
|
|
|
s++;
|
|
|
|
#endif
|
2003-02-16 13:22:36 +03:00
|
|
|
s = nextdirsep(b = s);
|
2003-08-23 20:06:25 +04:00
|
|
|
BUFCHECK(bdiff + (s-b) >= buflen);
|
2001-07-27 13:12:12 +04:00
|
|
|
memcpy(p, b, s-b);
|
|
|
|
p += s-b;
|
1998-01-16 15:13:05 +03:00
|
|
|
*p = '\0';
|
|
|
|
#ifdef HAVE_PWD_H
|
|
|
|
pwPtr = getpwnam(buf);
|
|
|
|
if (!pwPtr) {
|
|
|
|
endpwent();
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "user %s doesn't exist", buf);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-08-23 19:44:05 +04:00
|
|
|
dirlen = strlen(pwPtr->pw_dir);
|
|
|
|
BUFCHECK(dirlen > buflen);
|
1998-01-16 15:13:05 +03:00
|
|
|
strcpy(buf, pwPtr->pw_dir);
|
2002-02-04 11:09:14 +03:00
|
|
|
p = buf + strlen(pwPtr->pw_dir);
|
1998-01-16 15:13:05 +03:00
|
|
|
endpwent();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
2003-02-12 17:56:45 +03:00
|
|
|
#ifdef DOSISH_DRIVE_LETTER
|
1999-08-13 09:45:20 +04:00
|
|
|
/* skip drive letter */
|
2003-01-06 12:44:15 +03:00
|
|
|
else if (has_drive_letter(s)) {
|
|
|
|
if (isdirsep(s[2])) {
|
|
|
|
/* specified drive letter, and full path */
|
|
|
|
/* skip drive letter */
|
2003-08-23 20:06:25 +04:00
|
|
|
BUFCHECK(bdiff + 2 >= buflen);
|
2003-02-16 13:22:36 +03:00
|
|
|
memcpy(p, s, 2);
|
|
|
|
p += 2;
|
|
|
|
s += 2;
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* specified drive, but not full path */
|
|
|
|
int same = 0;
|
|
|
|
if (!NIL_P(dname)) {
|
2003-02-16 13:22:36 +03:00
|
|
|
file_expand_path(dname, Qnil, result);
|
|
|
|
BUFINIT();
|
|
|
|
if (has_drive_letter(p) && TOLOWER(p[0]) == TOLOWER(s[0])) {
|
2003-01-06 12:44:15 +03:00
|
|
|
/* ok, same drive */
|
|
|
|
same = 1;
|
|
|
|
}
|
|
|
|
}
|
2003-02-12 17:56:45 +03:00
|
|
|
if (!same) {
|
* 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-22 07:00:03 +03:00
|
|
|
char *dir = getcwdofdrv(*s);
|
|
|
|
|
2003-01-06 12:44:15 +03:00
|
|
|
tainted = 1;
|
* 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-22 07:00:03 +03:00
|
|
|
dirlen = strlen(dir);
|
|
|
|
BUFCHECK(dirlen > buflen);
|
|
|
|
strcpy(buf, dir);
|
|
|
|
free(dir);
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
2003-02-12 17:56:45 +03:00
|
|
|
p = chompdirsep(skiproot(buf));
|
|
|
|
s += 2;
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
#endif
|
2003-01-06 12:44:15 +03:00
|
|
|
else if (!is_absolute_path(s)) {
|
2000-10-13 13:01:58 +04:00
|
|
|
if (!NIL_P(dname)) {
|
2003-02-12 17:56:45 +03:00
|
|
|
file_expand_path(dname, Qnil, result);
|
2003-02-16 13:22:36 +03:00
|
|
|
BUFINIT();
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
else {
|
2002-02-04 11:09:14 +03:00
|
|
|
char *dir = my_getcwd();
|
|
|
|
|
1999-12-06 12:04:03 +03:00
|
|
|
tainted = 1;
|
2003-08-23 19:44:05 +04:00
|
|
|
dirlen = strlen(dir);
|
|
|
|
BUFCHECK(dirlen > buflen);
|
2002-02-04 11:09:14 +03:00
|
|
|
strcpy(buf, dir);
|
2002-03-20 12:43:15 +03:00
|
|
|
free(dir);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2003-07-23 18:09:52 +04:00
|
|
|
#if defined DOSISH || defined __CYGWIN__
|
2003-02-16 13:22:36 +03:00
|
|
|
if (isdirsep(*s)) {
|
|
|
|
/* specified full path, but not drive letter nor UNC */
|
2003-02-20 12:11:05 +03:00
|
|
|
/* we need to get the drive letter or UNC share name */
|
|
|
|
p = skipprefix(buf);
|
2003-02-16 13:22:36 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2003-02-17 07:27:45 +03:00
|
|
|
p = chompdirsep(skiproot(buf));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-01-17 11:37:53 +03:00
|
|
|
else {
|
2003-02-14 19:09:07 +03:00
|
|
|
b = s;
|
|
|
|
do s++; while (isdirsep(*s));
|
2003-02-17 07:27:45 +03:00
|
|
|
p = buf + (s - b);
|
2003-08-23 20:06:25 +04:00
|
|
|
BUFCHECK(bdiff >= buflen);
|
2003-02-14 19:09:07 +03:00
|
|
|
memset(buf, '/', p - buf);
|
1999-09-16 13:40:33 +04:00
|
|
|
}
|
2003-02-17 07:27:45 +03:00
|
|
|
if (p > buf && p[-1] == '/')
|
|
|
|
--p;
|
|
|
|
else
|
|
|
|
*p = '/';
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-02-20 12:11:05 +03:00
|
|
|
p[1] = 0;
|
|
|
|
root = skipprefix(buf);
|
|
|
|
|
2001-07-31 02:41:59 +04:00
|
|
|
b = s;
|
2001-07-27 13:12:12 +04:00
|
|
|
while (*s) {
|
1998-01-16 15:13:05 +03:00
|
|
|
switch (*s) {
|
|
|
|
case '.':
|
2001-07-31 02:41:59 +04:00
|
|
|
if (b == s++) { /* beginning of path element */
|
|
|
|
switch (*s) {
|
|
|
|
case '\0':
|
|
|
|
b = s;
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
case '.':
|
2001-07-16 08:22:46 +04:00
|
|
|
if (*(s+1) == '\0' || isdirsep(*(s+1))) {
|
1998-01-16 15:13:05 +03:00
|
|
|
/* We must go back to the parent */
|
2001-07-31 02:41:59 +04:00
|
|
|
*p = '\0';
|
2003-02-20 12:11:05 +03:00
|
|
|
if (!(b = strrdirsep(root))) {
|
2001-07-31 02:41:59 +04:00
|
|
|
*p = '/';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
p = b;
|
|
|
|
}
|
|
|
|
b = ++s;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '/':
|
2003-07-23 18:09:52 +04:00
|
|
|
#if defined DOSISH || defined __CYGWIN__
|
1999-08-13 09:45:20 +04:00
|
|
|
case '\\':
|
|
|
|
#endif
|
2001-07-31 02:41:59 +04:00
|
|
|
b = ++s;
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
default:
|
2001-07-31 02:41:59 +04:00
|
|
|
/* ordinary path element, beginning don't move */
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '/':
|
2003-07-23 18:09:52 +04:00
|
|
|
#if defined DOSISH || defined __CYGWIN__
|
1999-08-13 09:45:20 +04:00
|
|
|
case '\\':
|
|
|
|
#endif
|
2001-07-31 02:41:59 +04:00
|
|
|
if (s > b) {
|
2003-04-14 14:46:00 +04:00
|
|
|
long rootdiff = root - buf;
|
2003-08-23 20:06:25 +04:00
|
|
|
BUFCHECK(bdiff + (s-b+1) >= buflen);
|
2003-04-14 14:46:00 +04:00
|
|
|
root = buf + rootdiff;
|
2001-07-31 02:41:59 +04:00
|
|
|
memcpy(++p, b, s-b);
|
|
|
|
p += s-b;
|
|
|
|
*p = '/';
|
|
|
|
}
|
|
|
|
b = ++s;
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
default:
|
2001-07-27 13:12:12 +04:00
|
|
|
s = CharNext(s);
|
2001-07-31 02:41:59 +04:00
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
2001-07-16 08:22:46 +04:00
|
|
|
|
2001-07-31 02:41:59 +04:00
|
|
|
if (s > b) {
|
2003-08-23 20:06:25 +04:00
|
|
|
BUFCHECK(bdiff + (s-b) >= buflen);
|
2001-07-31 02:41:59 +04:00
|
|
|
memcpy(++p, b, s-b);
|
|
|
|
p += s-b;
|
|
|
|
}
|
2003-02-14 19:09:07 +03:00
|
|
|
if (p == skiproot(buf) - 1) p++;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-02-04 11:09:14 +03:00
|
|
|
if (tainted) OBJ_TAINT(result);
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_str_set_len(result, p - buf);
|
2002-02-04 11:09:14 +03:00
|
|
|
return result;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-02-20 12:11:05 +03:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_expand_path(VALUE fname, VALUE dname)
|
2003-02-20 12:11:05 +03:00
|
|
|
{
|
|
|
|
return file_expand_path(fname, dname, rb_str_new(0, MAXPATHLEN + 2));
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.expand_path(file_name [, dir_string] ) -> abs_file_name
|
|
|
|
*
|
|
|
|
* Converts a pathname to an absolute pathname. Relative paths are
|
|
|
|
* referenced from the current working directory of the process unless
|
|
|
|
* <i>dir_string</i> is given, in which case it will be used as the
|
|
|
|
* starting point. The given pathname may start with a
|
|
|
|
* ``<code>~</code>'', which expands to the process owner's home
|
|
|
|
* directory (the environment variable <code>HOME</code> must be set
|
|
|
|
* correctly). ``<code>~</code><i>user</i>'' expands to the named
|
|
|
|
* user's home directory.
|
|
|
|
*
|
|
|
|
* File.expand_path("~oracle/bin") #=> "/home/oracle/bin"
|
|
|
|
* File.expand_path("../../bin", "/tmp/x") #=> "/bin"
|
|
|
|
*/
|
|
|
|
|
2003-02-12 17:56:45 +03:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_expand_path(int argc, VALUE *argv)
|
2003-02-12 17:56:45 +03:00
|
|
|
{
|
|
|
|
VALUE fname, dname;
|
2003-08-23 21:06:55 +04:00
|
|
|
|
|
|
|
if (argc == 1) {
|
|
|
|
return rb_file_expand_path(argv[0], Qnil);
|
|
|
|
}
|
2003-02-12 17:56:45 +03:00
|
|
|
rb_scan_args(argc, argv, "11", &fname, &dname);
|
|
|
|
|
2003-02-20 12:11:05 +03:00
|
|
|
return rb_file_expand_path(fname, dname);
|
2003-02-12 17:56:45 +03:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rmext(const char *p, const char *e)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int l1, l2;
|
|
|
|
|
|
|
|
if (!e) return 0;
|
|
|
|
|
2003-02-12 17:56:45 +03:00
|
|
|
l1 = chompdirsep(p) - p;
|
1998-01-16 15:13:05 +03:00
|
|
|
l2 = strlen(e);
|
1998-01-16 15:19:22 +03:00
|
|
|
if (l2 == 2 && e[1] == '*') {
|
|
|
|
e = strrchr(p, *e);
|
|
|
|
if (!e) return 0;
|
|
|
|
return e - p;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
if (l1 < l2) return l1;
|
|
|
|
|
2003-02-12 17:56:45 +03:00
|
|
|
if (strncmp(p+l1-l2, e, l2) == 0) {
|
1998-01-16 15:13:05 +03:00
|
|
|
return l1-l2;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.basename(file_name [, suffix] ) -> base_name
|
|
|
|
*
|
|
|
|
* Returns the last component of the filename given in <i>file_name</i>,
|
|
|
|
* which must be formed using forward slashes (``<code>/</code>'')
|
|
|
|
* regardless of the separator used on the local file system. If
|
|
|
|
* <i>suffix</i> is given and present at the end of <i>file_name</i>,
|
|
|
|
* it is removed.
|
|
|
|
*
|
|
|
|
* File.basename("/home/gumby/work/ruby.rb") #=> "ruby.rb"
|
|
|
|
* File.basename("/home/gumby/work/ruby.rb", ".rb") #=> "ruby"
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_basename(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-12-01 12:24:48 +03:00
|
|
|
VALUE fname, fext, basename;
|
2004-10-01 19:56:05 +04:00
|
|
|
char *name, *p;
|
2005-11-21 19:47:13 +03:00
|
|
|
#if defined DOSISH_DRIVE_LETTER || defined DOSISH_UNC
|
2005-11-21 16:21:47 +03:00
|
|
|
char *root;
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
int f;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_scan_args(argc, argv, "11", &fname, &fext) == 2) {
|
2004-10-01 19:56:05 +04:00
|
|
|
StringValue(fext);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2003-02-12 17:56:45 +03:00
|
|
|
StringValue(fname);
|
2006-08-31 14:47:44 +04:00
|
|
|
if (RSTRING_LEN(fname) == 0 || !*(name = RSTRING_PTR(fname)))
|
2003-02-12 17:56:45 +03:00
|
|
|
return fname;
|
2005-11-21 16:21:47 +03:00
|
|
|
name = skipprefix(name);
|
2005-11-21 19:47:13 +03:00
|
|
|
#if defined DOSISH_DRIVE_LETTER || defined DOSISH_UNC
|
2005-11-21 16:21:47 +03:00
|
|
|
root = name;
|
|
|
|
#endif
|
|
|
|
while (isdirsep(*name))
|
|
|
|
name++;
|
|
|
|
if (!*name) {
|
2003-02-12 17:56:45 +03:00
|
|
|
p = name - 1;
|
|
|
|
f = 1;
|
2005-11-21 19:47:13 +03:00
|
|
|
#if defined DOSISH_DRIVE_LETTER || defined DOSISH_UNC
|
2005-11-21 16:21:47 +03:00
|
|
|
if (name != root) {
|
|
|
|
/* has slashes */
|
|
|
|
}
|
2003-02-12 17:56:45 +03:00
|
|
|
#ifdef DOSISH_DRIVE_LETTER
|
2005-11-21 16:21:47 +03:00
|
|
|
else if (*p == ':') {
|
2003-02-12 17:56:45 +03:00
|
|
|
p++;
|
|
|
|
f = 0;
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
2005-11-21 16:21:47 +03:00
|
|
|
#endif
|
|
|
|
#ifdef DOSISH_UNC
|
|
|
|
else {
|
|
|
|
p = "/";
|
|
|
|
}
|
|
|
|
#endif
|
2003-01-06 12:44:15 +03:00
|
|
|
#endif
|
2003-02-12 17:56:45 +03:00
|
|
|
}
|
|
|
|
else if (!(p = strrdirsep(name))) {
|
2004-10-01 19:56:05 +04:00
|
|
|
if (NIL_P(fext) || !(f = rmext(name, StringValueCStr(fext)))) {
|
2003-02-12 17:56:45 +03:00
|
|
|
f = chompdirsep(name) - name;
|
2006-08-31 14:47:44 +04:00
|
|
|
if (f == RSTRING_LEN(fname)) return fname;
|
2003-02-12 17:56:45 +03:00
|
|
|
}
|
|
|
|
p = name;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-05-30 08:24:17 +04:00
|
|
|
else {
|
2003-02-12 17:56:45 +03:00
|
|
|
while (isdirsep(*p)) p++; /* skip last / */
|
2004-10-01 19:56:05 +04:00
|
|
|
if (NIL_P(fext) || !(f = rmext(p, StringValueCStr(fext)))) {
|
2003-02-12 17:56:45 +03:00
|
|
|
f = chompdirsep(p) - p;
|
2000-05-30 08:24:17 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-02-12 17:56:45 +03:00
|
|
|
basename = rb_str_new(p, f);
|
2000-05-30 08:24:17 +04:00
|
|
|
OBJ_INFECT(basename, fname);
|
1999-12-01 12:24:48 +03:00
|
|
|
return basename;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.dirname(file_name ) -> dir_name
|
|
|
|
*
|
|
|
|
* Returns all components of the filename given in <i>file_name</i>
|
|
|
|
* except the last one. The filename must be formed using forward
|
|
|
|
* slashes (``<code>/</code>'') regardless of the separator used on the
|
|
|
|
* local file system.
|
|
|
|
*
|
|
|
|
* File.dirname("/home/gumby/work/ruby.rb") #=> "/home/gumby/work"
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_dirname(VALUE klass, VALUE fname)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-09-25 16:25:29 +04:00
|
|
|
const char *name, *root, *p;
|
1999-12-01 12:24:48 +03:00
|
|
|
VALUE dirname;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-07-20 21:17:52 +04:00
|
|
|
name = StringValueCStr(fname);
|
2003-02-12 17:56:45 +03:00
|
|
|
root = skiproot(name);
|
|
|
|
#ifdef DOSISH_UNC
|
2005-11-18 12:09:25 +03:00
|
|
|
if (root > name + 1 && isdirsep(*name))
|
|
|
|
root = skipprefix(name = root - 2);
|
2003-02-12 17:56:45 +03:00
|
|
|
#else
|
|
|
|
if (root > name + 1)
|
|
|
|
name = root - 1;
|
2003-01-06 12:44:15 +03:00
|
|
|
#endif
|
2003-02-12 17:56:45 +03:00
|
|
|
p = strrdirsep(root);
|
|
|
|
if (!p) {
|
|
|
|
p = root;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
if (p == name)
|
2003-02-12 17:56:45 +03:00
|
|
|
return rb_str_new2(".");
|
2005-11-18 10:51:19 +03:00
|
|
|
#ifdef DOSISH_DRIVE_LETTER
|
|
|
|
if (has_drive_letter(name) && isdirsep(*(name + 2))) {
|
2006-09-25 16:25:29 +04:00
|
|
|
const char *top = skiproot(name + 2);
|
2005-11-18 10:51:19 +03:00
|
|
|
dirname = rb_str_new(name, 3);
|
2006-09-25 16:25:29 +04:00
|
|
|
rb_str_cat(dirname, top, p - top);
|
2005-11-18 10:51:19 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
1999-12-01 12:24:48 +03:00
|
|
|
dirname = rb_str_new(name, p - name);
|
2003-02-12 18:10:51 +03:00
|
|
|
#ifdef DOSISH_DRIVE_LETTER
|
2005-11-18 10:51:19 +03:00
|
|
|
if (has_drive_letter(name) && root == name + 2 && p - name == 2)
|
2003-02-12 18:10:51 +03:00
|
|
|
rb_str_cat(dirname, ".", 1);
|
|
|
|
#endif
|
2002-04-10 12:45:26 +04:00
|
|
|
OBJ_INFECT(dirname, fname);
|
1999-12-01 12:24:48 +03:00
|
|
|
return dirname;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.extname(path) -> string
|
|
|
|
*
|
|
|
|
* Returns the extension (the portion of file name in <i>path</i>
|
|
|
|
* after the period).
|
|
|
|
*
|
|
|
|
* File.extname("test.rb") #=> ".rb"
|
|
|
|
* File.extname("a/b/d/test.rb") #=> ".rb"
|
|
|
|
* File.extname("test") #=> ""
|
|
|
|
* File.extname(".profile") #=> ""
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-04-10 12:45:26 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_extname(VALUE klass, VALUE fname)
|
2002-04-10 12:45:26 +04:00
|
|
|
{
|
|
|
|
char *name, *p, *e;
|
|
|
|
VALUE extname;
|
|
|
|
|
2003-07-20 21:17:52 +04:00
|
|
|
name = StringValueCStr(fname);
|
2002-04-10 12:45:26 +04:00
|
|
|
p = strrdirsep(name); /* get the last path component */
|
|
|
|
if (!p)
|
|
|
|
p = name;
|
|
|
|
else
|
|
|
|
p++;
|
|
|
|
|
2005-09-20 17:25:59 +04:00
|
|
|
e = strrchr(p, '.'); /* get the last dot of the last component */
|
|
|
|
if (!e || e == p || !e[1]) /* no dot, or the only dot is first or end? */
|
|
|
|
return rb_str_new2("");
|
|
|
|
extname = rb_str_new(e, chompdirsep(e) - e); /* keep the dot, too! */
|
|
|
|
OBJ_INFECT(extname, fname);
|
|
|
|
return extname;
|
2002-04-10 12:45:26 +04:00
|
|
|
}
|
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.path(path) -> string
|
|
|
|
*
|
|
|
|
* Returns the string representation of the path
|
|
|
|
*
|
|
|
|
* File.path("/dev/null") #=> "/dev/null"
|
|
|
|
* File.path(Pathname.new("/tmp")) #=> "/tmp"
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_path(VALUE klass, VALUE fname)
|
2004-04-07 06:51:05 +04:00
|
|
|
{
|
|
|
|
return rb_get_path(fname);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.split(file_name) => array
|
|
|
|
*
|
|
|
|
* Splits the given string into a directory and a file component and
|
|
|
|
* returns them in a two-element array. See also
|
|
|
|
* <code>File::dirname</code> and <code>File::basename</code>.
|
|
|
|
*
|
|
|
|
* File.split("/home/gumby/.profile") #=> ["/home/gumby", ".profile"]
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_split(VALUE klass, VALUE path)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2003-02-12 17:56:45 +03:00
|
|
|
StringValue(path); /* get rid of converting twice */
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_assoc_new(rb_file_s_dirname(Qnil, path), rb_file_s_basename(1,&path));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE separator;
|
|
|
|
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 10:32:32 +04:00
|
|
|
static VALUE rb_file_join(VALUE ary, VALUE sep);
|
2003-01-06 12:44:15 +03:00
|
|
|
|
|
|
|
static VALUE
|
2005-10-11 16:30:48 +04:00
|
|
|
file_inspect_join(VALUE ary, VALUE argp, int recur)
|
2003-01-06 12:44:15 +03:00
|
|
|
{
|
2005-10-11 16:30:48 +04:00
|
|
|
VALUE *arg = (VALUE *)argp;
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
if (recur) return rb_str_new2("[...]");
|
2003-01-06 12:44:15 +03:00
|
|
|
return rb_file_join(arg[0], arg[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_join(VALUE ary, VALUE sep)
|
2003-01-06 12:44:15 +03:00
|
|
|
{
|
|
|
|
long len, i;
|
|
|
|
VALUE result, tmp;
|
2005-09-16 17:42:17 +04:00
|
|
|
char *name, *tail;
|
2003-01-06 12:44:15 +03:00
|
|
|
|
2006-09-02 18:42:08 +04:00
|
|
|
if (RARRAY_LEN(ary) == 0) return rb_str_new(0, 0);
|
2003-01-06 12:44:15 +03:00
|
|
|
|
|
|
|
len = 1;
|
2006-09-02 18:42:08 +04:00
|
|
|
for (i=0; i<RARRAY_LEN(ary); i++) {
|
|
|
|
if (TYPE(RARRAY_PTR(ary)[i]) == T_STRING) {
|
|
|
|
len += RSTRING_LEN(RARRAY_PTR(ary)[i]);
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
len += 10;
|
|
|
|
}
|
|
|
|
}
|
2006-06-17 18:50:04 +04:00
|
|
|
if (!NIL_P(sep)) {
|
|
|
|
StringValue(sep);
|
2006-09-02 18:42:08 +04:00
|
|
|
len += RSTRING_LEN(sep) * RARRAY_LEN(ary) - 1;
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
|
|
|
result = rb_str_buf_new(len);
|
2005-09-17 20:10:53 +04:00
|
|
|
OBJ_INFECT(result, ary);
|
2006-09-02 18:42:08 +04:00
|
|
|
for (i=0; i<RARRAY_LEN(ary); i++) {
|
|
|
|
tmp = RARRAY_PTR(ary)[i];
|
2003-01-06 12:44:15 +03:00
|
|
|
switch (TYPE(tmp)) {
|
|
|
|
case T_STRING:
|
|
|
|
break;
|
|
|
|
case T_ARRAY:
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
{
|
2003-01-06 12:44:15 +03:00
|
|
|
VALUE args[2];
|
|
|
|
|
|
|
|
args[0] = tmp;
|
|
|
|
args[1] = sep;
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
tmp = rb_exec_recursive(file_inspect_join, ary, (VALUE)args);
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2005-09-19 20:01:06 +04:00
|
|
|
FilePathValue(tmp);
|
2003-01-06 12:44:15 +03:00
|
|
|
}
|
2003-07-20 21:17:52 +04:00
|
|
|
name = StringValueCStr(result);
|
2005-09-16 17:42:17 +04:00
|
|
|
if (i > 0 && !NIL_P(sep)) {
|
|
|
|
tail = chompdirsep(name);
|
2006-08-31 14:47:44 +04:00
|
|
|
if (RSTRING_PTR(tmp) && isdirsep(RSTRING_PTR(tmp)[0])) {
|
|
|
|
rb_str_set_len(result, tail - name);
|
2005-09-16 17:42:17 +04:00
|
|
|
}
|
|
|
|
else if (!*tail) {
|
|
|
|
rb_str_buf_append(result, sep);
|
|
|
|
}
|
|
|
|
}
|
2003-01-06 12:44:15 +03:00
|
|
|
rb_str_buf_append(result, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.join(string, ...) -> path
|
|
|
|
*
|
|
|
|
* Returns a new string formed by joining the strings using
|
|
|
|
* <code>File::SEPARATOR</code>.
|
|
|
|
*
|
|
|
|
* File.join("usr", "mail", "gumby") #=> "usr/mail/gumby"
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_join(VALUE klass, VALUE args)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2003-01-06 12:44:15 +03:00
|
|
|
return rb_file_join(args, separator);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* File.truncate(file_name, integer) => 0
|
|
|
|
*
|
|
|
|
* Truncates the file <i>file_name</i> to be at most <i>integer</i>
|
|
|
|
* bytes long. Not available on all platforms.
|
|
|
|
*
|
|
|
|
* f = File.new("out", "w")
|
|
|
|
* f.write("1234567890") #=> 10
|
|
|
|
* f.close #=> nil
|
|
|
|
* File.truncate("out", 5) #=> 0
|
|
|
|
* File.size("out") #=> 5
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_s_truncate(VALUE klass, VALUE path, VALUE len)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-11-22 18:26:02 +03:00
|
|
|
off_t pos;
|
|
|
|
|
2000-05-12 13:07:57 +04:00
|
|
|
rb_secure(2);
|
2004-11-22 18:26:02 +03:00
|
|
|
pos = NUM2OFFT(len);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(path);
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef HAVE_TRUNCATE
|
2004-11-22 18:26:02 +03:00
|
|
|
if (truncate(StringValueCStr(path), pos) < 0)
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(path));
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
# ifdef HAVE_CHSIZE
|
|
|
|
{
|
|
|
|
int tmpfd;
|
|
|
|
|
* 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-15 06:18:08 +03:00
|
|
|
# ifdef _WIN32
|
2003-07-20 21:17:52 +04:00
|
|
|
if ((tmpfd = open(StringValueCStr(path), O_RDWR)) < 0) {
|
2006-08-31 15:24:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(path));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
# else
|
2003-07-20 21:17:52 +04:00
|
|
|
if ((tmpfd = open(StringValueCStr(path), 0)) < 0) {
|
2006-08-31 15:24:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(path));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
# endif
|
2004-11-22 18:26:02 +03:00
|
|
|
if (chsize(tmpfd, pos) < 0) {
|
1998-01-16 15:13:05 +03:00
|
|
|
close(tmpfd);
|
2006-08-31 15:24:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(path));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
close(tmpfd);
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
rb_notimplement();
|
|
|
|
# endif
|
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
return INT2FIX(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* file.truncate(integer) => 0
|
|
|
|
*
|
|
|
|
* Truncates <i>file</i> to at most <i>integer</i> bytes. The file
|
|
|
|
* must be opened for writing. Not available on all platforms.
|
|
|
|
*
|
|
|
|
* f = File.new("out", "w")
|
|
|
|
* f.syswrite("1234567890") #=> 10
|
|
|
|
* f.truncate(5) #=> 0
|
|
|
|
* f.close() #=> nil
|
|
|
|
* File.size("out") #=> 5
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_truncate(VALUE obj, VALUE len)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
2004-11-22 18:26:02 +03:00
|
|
|
off_t pos;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
2004-11-22 18:26:02 +03:00
|
|
|
pos = NUM2OFFT(len);
|
1998-01-16 15:13:05 +03:00
|
|
|
GetOpenFile(obj, fptr);
|
|
|
|
if (!(fptr->mode & FMODE_WRITABLE)) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eIOError, "not opened for writing");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
rb_io_flush(obj);
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef HAVE_TRUNCATE
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
if (ftruncate(fptr->fd, pos) < 0)
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_CHSIZE
|
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-06 11:40:30 +03:00
|
|
|
if (chsize(fptr->fd, pos) < 0)
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(fptr->path);
|
|
|
|
# else
|
|
|
|
rb_notimplement();
|
|
|
|
# endif
|
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
return INT2FIX(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# ifndef LOCK_SH
|
|
|
|
# define LOCK_SH 1
|
|
|
|
# endif
|
|
|
|
# ifndef LOCK_EX
|
|
|
|
# define LOCK_EX 2
|
|
|
|
# endif
|
|
|
|
# ifndef LOCK_NB
|
|
|
|
# define LOCK_NB 4
|
|
|
|
# endif
|
|
|
|
# ifndef LOCK_UN
|
|
|
|
# define LOCK_UN 8
|
|
|
|
# endif
|
|
|
|
|
2006-02-06 10:06:22 +03:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
#include <winerror.h>
|
2007-07-22 09:33:54 +04:00
|
|
|
extern unsigned long __attribute__((stdcall)) GetLastError(void);
|
2007-02-24 12:45:41 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
rb_thread_flock(rb_thread_t *th, void *data)
|
2006-02-06 10:06:22 +03:00
|
|
|
{
|
2007-02-24 12:45:41 +03:00
|
|
|
#ifdef __CYGWIN__
|
2006-02-06 10:13:53 +03:00
|
|
|
int old_errno = errno;
|
2007-02-24 12:45:41 +03:00
|
|
|
#endif
|
|
|
|
int *op = data, ret = flock(op[0], op[1]);
|
|
|
|
|
|
|
|
#ifdef __CYGWIN__
|
2006-02-06 10:13:53 +03:00
|
|
|
if (GetLastError() == ERROR_NOT_LOCKED) {
|
2006-02-06 10:06:22 +03:00
|
|
|
ret = 0;
|
2006-02-06 10:13:53 +03:00
|
|
|
errno = old_errno;
|
|
|
|
}
|
2001-03-26 12:57:16 +04:00
|
|
|
#endif
|
2007-02-24 12:45:41 +03:00
|
|
|
return (VALUE)ret;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* file.flock (locking_constant ) => 0 or false
|
|
|
|
*
|
|
|
|
* Locks or unlocks a file according to <i>locking_constant</i> (a
|
|
|
|
* logical <em>or</em> of the values in the table below).
|
|
|
|
* Returns <code>false</code> if <code>File::LOCK_NB</code> is
|
|
|
|
* specified and the operation would otherwise have blocked. Not
|
|
|
|
* available on all platforms.
|
|
|
|
*
|
|
|
|
* Locking constants (in class File):
|
|
|
|
*
|
|
|
|
* LOCK_EX | Exclusive lock. Only one process may hold an
|
|
|
|
* | exclusive lock for a given file at a time.
|
|
|
|
* ----------+------------------------------------------------
|
|
|
|
* LOCK_NB | Don't block when locking. May be combined
|
|
|
|
* | with other lock options using logical or.
|
|
|
|
* ----------+------------------------------------------------
|
|
|
|
* LOCK_SH | Shared lock. Multiple processes may each hold a
|
|
|
|
* | shared lock for a given file at the same time.
|
|
|
|
* ----------+------------------------------------------------
|
|
|
|
* LOCK_UN | Unlock.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* File.new("testfile").flock(File::LOCK_UN) #=> 0
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_flock(VALUE obj, VALUE operation)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2000-08-07 09:05:04 +04:00
|
|
|
#ifndef __CHECKER__
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
rb_io_t *fptr;
|
2007-02-24 12:45:41 +03:00
|
|
|
int op[2];
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
2007-02-24 12:45:41 +03:00
|
|
|
op[1] = NUM2INT(operation);
|
1998-01-16 15:13:05 +03:00
|
|
|
GetOpenFile(obj, fptr);
|
2007-02-24 12:45:41 +03:00
|
|
|
op[0] = fptr->fd;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-01-08 08:00:25 +03:00
|
|
|
if (fptr->mode & FMODE_WRITABLE) {
|
2005-09-20 17:25:59 +04:00
|
|
|
rb_io_flush(obj);
|
2000-01-08 08:00:25 +03:00
|
|
|
}
|
2007-02-24 12:45:41 +03:00
|
|
|
while ((int)rb_thread_blocking_region(rb_thread_flock, op, RB_UBF_DFL) < 0) {
|
2005-09-20 17:25:59 +04:00
|
|
|
switch (errno) {
|
|
|
|
case EAGAIN:
|
|
|
|
case EACCES:
|
2001-03-26 12:57:16 +04:00
|
|
|
#if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
|
2005-09-20 17:25:59 +04:00
|
|
|
case EWOULDBLOCK:
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
2007-02-24 12:45:41 +03:00
|
|
|
rb_thread_polling();
|
|
|
|
rb_io_check_closed(fptr);
|
|
|
|
continue;
|
|
|
|
|
2003-05-01 04:00:37 +04:00
|
|
|
case EINTR:
|
|
|
|
#if defined(ERESTART)
|
|
|
|
case ERESTART:
|
|
|
|
#endif
|
2007-02-24 12:45:41 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
rb_sys_fail(fptr->path);
|
2005-09-20 17:25:59 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-08-07 09:05:04 +04:00
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
return INT2FIX(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
#undef flock
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
test_check(int n, int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
n+=1;
|
2004-03-29 11:54:38 +04:00
|
|
|
if (n != argc) rb_raise(rb_eArgError, "wrong number of arguments (%d for %d)", argc, n);
|
1998-01-16 15:13:05 +03:00
|
|
|
for (i=1; i<n; i++) {
|
1999-01-20 07:59:39 +03:00
|
|
|
switch (TYPE(argv[i])) {
|
|
|
|
case T_STRING:
|
2002-12-19 12:20:20 +03:00
|
|
|
default:
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(argv[i]);
|
2005-09-20 17:25:59 +04:00
|
|
|
break;
|
1999-01-20 07:59:39 +03:00
|
|
|
case T_FILE:
|
|
|
|
break;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CHECK(n) test_check((n), argc, argv)
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* test(int_cmd, file1 [, file2] ) => obj
|
|
|
|
*
|
|
|
|
* Uses the integer <i>aCmd</i> to perform various tests on
|
|
|
|
* <i>file1</i> (first table below) or on <i>file1</i> and
|
|
|
|
* <i>file2</i> (second table).
|
|
|
|
*
|
|
|
|
* File tests on a single file:
|
|
|
|
*
|
|
|
|
* Test Returns Meaning
|
|
|
|
* ?A | Time | Last access time for file1
|
|
|
|
* ?b | boolean | True if file1 is a block device
|
|
|
|
* ?c | boolean | True if file1 is a character device
|
|
|
|
* ?C | Time | Last change time for file1
|
|
|
|
* ?d | boolean | True if file1 exists and is a directory
|
|
|
|
* ?e | boolean | True if file1 exists
|
|
|
|
* ?f | boolean | True if file1 exists and is a regular file
|
2005-10-12 06:14:50 +04:00
|
|
|
* ?g | boolean | True if file1 has the \CF{setgid} bit
|
2003-12-21 10:28:54 +03:00
|
|
|
* | | set (false under NT)
|
|
|
|
* ?G | boolean | True if file1 exists and has a group
|
|
|
|
* | | ownership equal to the caller's group
|
|
|
|
* ?k | boolean | True if file1 exists and has the sticky bit set
|
2005-10-12 06:26:52 +04:00
|
|
|
* ?l | boolean | True if file1 exists and is a symbolic link
|
2003-12-21 10:28:54 +03:00
|
|
|
* ?M | Time | Last modification time for file1
|
2005-10-12 06:26:52 +04:00
|
|
|
* ?o | boolean | True if file1 exists and is owned by
|
2003-12-21 10:28:54 +03:00
|
|
|
* | | the caller's effective uid
|
|
|
|
* ?O | boolean | True if file1 exists and is owned by
|
|
|
|
* | | the caller's real uid
|
|
|
|
* ?p | boolean | True if file1 exists and is a fifo
|
|
|
|
* ?r | boolean | True if file1 is readable by the effective
|
|
|
|
* | | uid/gid of the caller
|
|
|
|
* ?R | boolean | True if file is readable by the real
|
|
|
|
* | | uid/gid of the caller
|
2005-10-12 06:26:52 +04:00
|
|
|
* ?s | int/nil | If file1 has nonzero size, return the size,
|
2003-12-21 10:28:54 +03:00
|
|
|
* | | otherwise return nil
|
|
|
|
* ?S | boolean | True if file1 exists and is a socket
|
|
|
|
* ?u | boolean | True if file1 has the setuid bit set
|
|
|
|
* ?w | boolean | True if file1 exists and is writable by
|
|
|
|
* | | the effective uid/gid
|
|
|
|
* ?W | boolean | True if file1 exists and is writable by
|
|
|
|
* | | the real uid/gid
|
|
|
|
* ?x | boolean | True if file1 exists and is executable by
|
|
|
|
* | | the effective uid/gid
|
|
|
|
* ?X | boolean | True if file1 exists and is executable by
|
|
|
|
* | | the real uid/gid
|
|
|
|
* ?z | boolean | True if file1 exists and has a zero length
|
|
|
|
*
|
|
|
|
* Tests that take two files:
|
|
|
|
*
|
2005-12-21 12:20:15 +03:00
|
|
|
* ?- | boolean | True if file1 and file2 are identical
|
2003-12-21 10:28:54 +03:00
|
|
|
* ?= | boolean | True if the modification times of file1
|
|
|
|
* | | and file2 are equal
|
|
|
|
* ?< | boolean | True if the modification time of file1
|
|
|
|
* | | is prior to that of file2
|
|
|
|
* ?> | boolean | True if the modification time of file1
|
|
|
|
* | | is after that of file2
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_f_test(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int cmd;
|
|
|
|
|
2001-11-19 08:03:03 +03:00
|
|
|
if (argc == 0) rb_raise(rb_eArgError, "wrong number of arguments");
|
1999-01-20 07:59:39 +03:00
|
|
|
cmd = NUM2CHR(argv[0]);
|
2006-09-09 20:19:33 +04:00
|
|
|
if (cmd == 0) goto unknown;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (strchr("bcdefgGkloOprRsSuwWxXz", cmd)) {
|
|
|
|
CHECK(1);
|
|
|
|
switch (cmd) {
|
|
|
|
case 'b':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_blockdev_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'c':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_chardev_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'd':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_directory_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'a':
|
|
|
|
case 'e':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_exist_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'f':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_file_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'g':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_sgid_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'G':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_grpowned_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'k':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_sticky_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'l':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_symlink_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'o':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_owned_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'O':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_rowned_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'p':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_pipe_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'r':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_readable_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'R':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_readable_real_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 's':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_size_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'S':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_socket_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'u':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_suid_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'w':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_writable_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'W':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_world_writable_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'x':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_executable_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'X':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_executable_real_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'z':
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_zero_p(0, argv[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strchr("MAC", cmd)) {
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
CHECK(1);
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(argv[1], &st) == -1) {
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(argv[1]));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case 'A':
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_time_new(st.st_atime, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
case 'M':
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_time_new(st.st_mtime, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
case 'C':
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_time_new(st.st_ctime, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-22 19:26:39 +03:00
|
|
|
if (cmd == '-') {
|
|
|
|
CHECK(2);
|
2006-12-07 18:18:14 +03:00
|
|
|
return rb_file_identical_p(0, argv[1], argv[2]);
|
2005-11-22 19:26:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strchr("=<>", cmd)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
struct stat st1, st2;
|
|
|
|
|
|
|
|
CHECK(2);
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_stat(argv[1], &st1) < 0) return Qfalse;
|
|
|
|
if (rb_stat(argv[2], &st2) < 0) return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case '=':
|
1999-01-20 07:59:39 +03:00
|
|
|
if (st1.st_mtime == st2.st_mtime) return Qtrue;
|
1999-10-12 08:53:36 +04:00
|
|
|
return Qfalse;
|
2001-07-16 08:22:46 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case '>':
|
1999-01-20 07:59:39 +03:00
|
|
|
if (st1.st_mtime > st2.st_mtime) return Qtrue;
|
1999-10-12 08:53:36 +04:00
|
|
|
return Qfalse;
|
2001-07-16 08:22:46 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case '<':
|
1999-01-20 07:59:39 +03:00
|
|
|
if (st1.st_mtime < st2.st_mtime) return Qtrue;
|
1999-10-12 08:53:36 +04:00
|
|
|
return Qfalse;
|
2005-09-20 17:25:59 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-09-09 20:19:33 +04:00
|
|
|
unknown:
|
1999-01-20 07:59:39 +03:00
|
|
|
/* unknown command */
|
2006-09-09 20:19:33 +04:00
|
|
|
if (ISPRINT(cmd)) {
|
|
|
|
rb_raise(rb_eArgError, "unknown command ?%c", cmd);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eArgError, "unknown command ?\\%03o", cmd);
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qnil; /* not reached */
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Document-class: File::Stat
|
|
|
|
*
|
|
|
|
* Objects of class <code>File::Stat</code> encapsulate common status
|
|
|
|
* information for <code>File</code> objects. The information is
|
|
|
|
* recorded at the moment the <code>File::Stat</code> object is
|
|
|
|
* created; changes made to the file after that point will not be
|
|
|
|
* reflected. <code>File::Stat</code> objects are returned by
|
|
|
|
* <code>IO#stat</code>, <code>File::stat</code>,
|
|
|
|
* <code>File#lstat</code>, and <code>File::lstat</code>. Many of these
|
|
|
|
* methods return platform-specific values, and not all values are
|
|
|
|
* meaningful on all systems. See also <code>Kernel#test</code>.
|
|
|
|
*/
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_s_alloc(VALUE klass)
|
2001-05-02 08:22:21 +04:00
|
|
|
{
|
2001-10-03 11:19:19 +04:00
|
|
|
return stat_new_0(klass, 0);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
*
|
|
|
|
* File::Stat.new(file_name) => stat
|
|
|
|
*
|
|
|
|
* Create a File::Stat object for the given file name (raising an
|
|
|
|
* exception if the file doesn't exist).
|
|
|
|
*/
|
|
|
|
|
2001-10-03 11:19:19 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_init(VALUE obj, VALUE fname)
|
2001-10-03 11:19:19 +04:00
|
|
|
{
|
|
|
|
struct stat st, *nst;
|
2001-05-02 08:22:21 +04:00
|
|
|
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_secure(2);
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (stat(StringValueCStr(fname), &st) == -1) {
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_sys_fail(RSTRING_PTR(fname));
|
2001-05-02 08:22:21 +04:00
|
|
|
}
|
2002-08-28 13:25:07 +04:00
|
|
|
if (DATA_PTR(obj)) {
|
|
|
|
free(DATA_PTR(obj));
|
|
|
|
DATA_PTR(obj) = NULL;
|
|
|
|
}
|
2001-10-03 11:19:19 +04:00
|
|
|
nst = ALLOC(struct stat);
|
|
|
|
*nst = st;
|
|
|
|
DATA_PTR(obj) = nst;
|
2001-05-02 08:22:21 +04:00
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2004-01-18 17:16:47 +03:00
|
|
|
/* :nodoc: */
|
2001-10-10 12:21:13 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_init_copy(VALUE copy, VALUE orig)
|
2001-10-10 12:21:13 +04:00
|
|
|
{
|
2002-04-24 08:54:16 +04:00
|
|
|
struct stat *nst;
|
2001-10-10 12:21:13 +04:00
|
|
|
|
2002-09-03 09:20:14 +04:00
|
|
|
if (copy == orig) return orig;
|
|
|
|
rb_check_frozen(copy);
|
2002-08-27 12:31:08 +04:00
|
|
|
/* need better argument type check */
|
2002-09-03 09:20:14 +04:00
|
|
|
if (!rb_obj_is_instance_of(orig, rb_obj_class(copy))) {
|
2002-08-29 13:08:18 +04:00
|
|
|
rb_raise(rb_eTypeError, "wrong argument class");
|
|
|
|
}
|
2002-09-03 09:20:14 +04:00
|
|
|
if (DATA_PTR(copy)) {
|
|
|
|
free(DATA_PTR(copy));
|
|
|
|
DATA_PTR(copy) = 0;
|
2002-08-27 12:31:08 +04:00
|
|
|
}
|
|
|
|
if (DATA_PTR(orig)) {
|
2001-10-10 12:21:13 +04:00
|
|
|
nst = ALLOC(struct stat);
|
2002-08-27 12:31:08 +04:00
|
|
|
*nst = *(struct stat*)DATA_PTR(orig);
|
2002-09-03 09:20:14 +04:00
|
|
|
DATA_PTR(copy) = nst;
|
2001-10-10 12:21:13 +04:00
|
|
|
}
|
|
|
|
|
2002-09-03 09:20:14 +04:00
|
|
|
return copy;
|
2001-10-10 12:21:13 +04:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.ftype => string
|
|
|
|
*
|
|
|
|
* Identifies the type of <i>stat</i>. The return string is one of:
|
|
|
|
* ``<code>file</code>'', ``<code>directory</code>'',
|
|
|
|
* ``<code>characterSpecial</code>'', ``<code>blockSpecial</code>'',
|
|
|
|
* ``<code>fifo</code>'', ``<code>link</code>'',
|
|
|
|
* ``<code>socket</code>'', or ``<code>unknown</code>''.
|
|
|
|
*
|
|
|
|
* File.stat("/dev/tty").ftype #=> "characterSpecial"
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_ftype(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-07 12:25:55 +03:00
|
|
|
return rb_file_ftype(get_stat(obj));
|
1999-11-25 12:03:08 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.directory? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is a directory,
|
|
|
|
* <code>false</code> otherwise.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").directory? #=> false
|
|
|
|
* File.stat(".").directory? #=> true
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_d(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-01 12:24:48 +03:00
|
|
|
if (S_ISDIR(get_stat(obj)->st_mode)) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.pipe? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the operating system supports pipes and
|
|
|
|
* <i>stat</i> is a pipe; <code>false</code> otherwise.
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_p(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
|
|
|
#ifdef S_IFIFO
|
1999-12-01 12:24:48 +03:00
|
|
|
if (S_ISFIFO(get_stat(obj)->st_mode)) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
|
|
|
|
#endif
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.symlink? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is a symbolic link,
|
|
|
|
* <code>false</code> if it isn't or if the operating system doesn't
|
|
|
|
* support this feature. As <code>File::stat</code> automatically
|
|
|
|
* follows symbolic links, <code>symlink?</code> will always be
|
|
|
|
* <code>false</code> for an object returned by
|
|
|
|
* <code>File::stat</code>.
|
|
|
|
*
|
|
|
|
* File.symlink("testfile", "alink") #=> 0
|
|
|
|
* File.stat("alink").symlink? #=> false
|
|
|
|
* File.lstat("alink").symlink? #=> true
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_l(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
|
|
|
#ifdef S_ISLNK
|
1999-12-01 12:24:48 +03:00
|
|
|
if (S_ISLNK(get_stat(obj)->st_mode)) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.socket? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is a socket,
|
|
|
|
* <code>false</code> if it isn't or if the operating system doesn't
|
|
|
|
* support this feature.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").socket? #=> false
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_S(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
|
|
|
#ifdef S_ISSOCK
|
1999-12-01 12:24:48 +03:00
|
|
|
if (S_ISSOCK(get_stat(obj)->st_mode)) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
|
|
|
|
#endif
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.blockdev? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the file is a block device,
|
|
|
|
* <code>false</code> if it isn't or if the operating system doesn't
|
|
|
|
* support this feature.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").blockdev? #=> false
|
|
|
|
* File.stat("/dev/hda1").blockdev? #=> true
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_b(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
|
|
|
#ifdef S_ISBLK
|
1999-12-01 12:24:48 +03:00
|
|
|
if (S_ISBLK(get_stat(obj)->st_mode)) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
|
|
|
|
#endif
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.chardev? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the file is a character device,
|
|
|
|
* <code>false</code> if it isn't or if the operating system doesn't
|
|
|
|
* support this feature.
|
|
|
|
*
|
|
|
|
* File.stat("/dev/tty").chardev? #=> true
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_c(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
2000-02-01 06:12:21 +03:00
|
|
|
if (S_ISCHR(get_stat(obj)->st_mode)) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.owned? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if the effective user id of the process is
|
|
|
|
* the same as the owner of <i>stat</i>.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").owned? #=> true
|
|
|
|
* File.stat("/etc/passwd").owned? #=> false
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_owned(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-01 12:24:48 +03:00
|
|
|
if (get_stat(obj)->st_uid == geteuid()) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_rowned(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-01 12:24:48 +03:00
|
|
|
if (get_stat(obj)->st_uid == getuid()) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.grpowned? => true or false
|
|
|
|
*
|
|
|
|
* Returns true if the effective group id of the process is the same as
|
|
|
|
* the group id of <i>stat</i>. On Windows NT, returns <code>false</code>.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").grpowned? #=> true
|
|
|
|
* File.stat("/etc/passwd").grpowned? #=> false
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_grpowned(VALUE obj)
|
1999-11-25 12:03:08 +03: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-15 06:18:08 +03:00
|
|
|
#ifndef _WIN32
|
2006-11-22 11:37:11 +03:00
|
|
|
if (group_member(get_stat(obj)->st_gid)) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.readable? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is readable by the
|
|
|
|
* effective user id of this process.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").readable? #=> true
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_r(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-06 12:04:03 +03:00
|
|
|
struct stat *st = get_stat(obj);
|
1999-11-25 12:03:08 +03:00
|
|
|
|
2006-08-17 14:15:55 +04:00
|
|
|
#ifdef USE_GETEUID
|
|
|
|
if (geteuid() == 0) return Qtrue;
|
|
|
|
#endif
|
1999-11-25 12:03:08 +03:00
|
|
|
#ifdef S_IRUSR
|
|
|
|
if (rb_stat_owned(obj))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IRUSR ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
#ifdef S_IRGRP
|
|
|
|
if (rb_stat_grpowned(obj))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IRGRP ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
#ifdef S_IROTH
|
1999-12-06 12:04:03 +03:00
|
|
|
if (!(st->st_mode & S_IROTH)) return Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.readable_real? -> true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is readable by the real
|
|
|
|
* user id of this process.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").readable_real? #=> true
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_R(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-06 12:04:03 +03:00
|
|
|
struct stat *st = get_stat(obj);
|
1999-11-25 12:03:08 +03:00
|
|
|
|
2006-08-17 14:15:55 +04:00
|
|
|
#ifdef USE_GETEUID
|
|
|
|
if (getuid() == 0) return Qtrue;
|
|
|
|
#endif
|
1999-11-25 12:03:08 +03:00
|
|
|
#ifdef S_IRUSR
|
|
|
|
if (rb_stat_rowned(obj))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IRUSR ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
#ifdef S_IRGRP
|
1999-12-01 12:24:48 +03:00
|
|
|
if (group_member(get_stat(obj)->st_gid))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IRGRP ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
#ifdef S_IROTH
|
1999-12-06 12:04:03 +03:00
|
|
|
if (!(st->st_mode & S_IROTH)) return Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2004-01-19 12:19:31 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.world_readable? => fixnum or nil
|
|
|
|
*
|
|
|
|
* If <i>stat</i> is readable by others, returns an integer
|
|
|
|
* representing the file permission bits of <i>stat</i>. Returns
|
|
|
|
* <code>nil</code> otherwise. The meaning of the bits is platform
|
|
|
|
* dependent; on Unix systems, see <code>stat(2)</code>.
|
|
|
|
*
|
|
|
|
* m = File.stat("/etc/passwd").world_readable? # => 420
|
|
|
|
* sprintf("%o", m) # => "644"
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_wr(VALUE obj)
|
2004-01-19 12:19:31 +03:00
|
|
|
{
|
|
|
|
#ifdef S_IROTH
|
|
|
|
if ((get_stat(obj)->st_mode & (S_IROTH)) == S_IROTH) {
|
|
|
|
return UINT2NUM(get_stat(obj)->st_mode & (S_IRUGO|S_IWUGO|S_IXUGO));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.writable? -> true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is writable by the
|
|
|
|
* effective user id of this process.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").writable? #=> true
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_w(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-06 12:04:03 +03:00
|
|
|
struct stat *st = get_stat(obj);
|
1999-11-25 12:03:08 +03:00
|
|
|
|
2006-08-17 14:15:55 +04:00
|
|
|
#ifdef USE_GETEUID
|
|
|
|
if (geteuid() == 0) return Qtrue;
|
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IWUSR
|
1999-11-25 12:03:08 +03:00
|
|
|
if (rb_stat_owned(obj))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IWUSR ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IWGRP
|
1999-11-25 12:03:08 +03:00
|
|
|
if (rb_stat_grpowned(obj))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IWGRP ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IWOTH
|
|
|
|
if (!(st->st_mode & S_IWOTH)) return Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.writable_real? -> true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is writable by the real
|
|
|
|
* user id of this process.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").writable_real? #=> true
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_W(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-06 12:04:03 +03:00
|
|
|
struct stat *st = get_stat(obj);
|
1999-11-25 12:03:08 +03:00
|
|
|
|
2006-08-17 14:15:55 +04:00
|
|
|
#ifdef USE_GETEUID
|
|
|
|
if (getuid() == 0) return Qtrue;
|
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IWUSR
|
1999-11-25 12:03:08 +03:00
|
|
|
if (rb_stat_rowned(obj))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IWUSR ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IWGRP
|
1999-12-01 12:24:48 +03:00
|
|
|
if (group_member(get_stat(obj)->st_gid))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IWGRP ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IWOTH
|
|
|
|
if (!(st->st_mode & S_IWOTH)) return Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2004-01-19 12:19:31 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.world_writable? => fixnum or nil
|
|
|
|
*
|
|
|
|
* If <i>stat</i> is writable by others, returns an integer
|
|
|
|
* representing the file permission bits of <i>stat</i>. Returns
|
|
|
|
* <code>nil</code> otherwise. The meaning of the bits is platform
|
|
|
|
* dependent; on Unix systems, see <code>stat(2)</code>.
|
|
|
|
*
|
|
|
|
* m = File.stat("/tmp").world_writable? # => 511
|
|
|
|
* sprintf("%o", m) # => "777"
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_ww(VALUE obj)
|
2004-01-19 12:19:31 +03:00
|
|
|
{
|
|
|
|
#ifdef S_IROTH
|
|
|
|
if ((get_stat(obj)->st_mode & (S_IWOTH)) == S_IWOTH) {
|
|
|
|
return UINT2NUM(get_stat(obj)->st_mode & (S_IRUGO|S_IWUGO|S_IXUGO));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.executable? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is executable or if the
|
|
|
|
* operating system doesn't distinguish executable files from
|
|
|
|
* nonexecutable files. The tests are made using the effective owner of
|
|
|
|
* the process.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").executable? #=> false
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_x(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-06 12:04:03 +03:00
|
|
|
struct stat *st = get_stat(obj);
|
1999-11-25 12:03:08 +03:00
|
|
|
|
2006-08-17 14:15:55 +04:00
|
|
|
#ifdef USE_GETEUID
|
|
|
|
if (geteuid() == 0) {
|
|
|
|
return st->st_mode & S_IXUGO ? Qtrue : Qfalse;
|
|
|
|
}
|
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IXUSR
|
1999-11-25 12:03:08 +03:00
|
|
|
if (rb_stat_owned(obj))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IXUSR ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IXGRP
|
1999-11-25 12:03:08 +03:00
|
|
|
if (rb_stat_grpowned(obj))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IXGRP ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IXOTH
|
|
|
|
if (!(st->st_mode & S_IXOTH)) return Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.executable_real? => true or false
|
|
|
|
*
|
|
|
|
* Same as <code>executable?</code>, but tests using the real owner of
|
|
|
|
* the process.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_X(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-06 12:04:03 +03:00
|
|
|
struct stat *st = get_stat(obj);
|
1999-11-25 12:03:08 +03:00
|
|
|
|
2006-08-17 14:15:55 +04:00
|
|
|
#ifdef USE_GETEUID
|
|
|
|
if (getuid() == 0) {
|
|
|
|
return st->st_mode & S_IXUGO ? Qtrue : Qfalse;
|
|
|
|
}
|
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IXUSR
|
1999-11-25 12:03:08 +03:00
|
|
|
if (rb_stat_rowned(obj))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IXUSR ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IXGRP
|
1999-12-01 12:24:48 +03:00
|
|
|
if (group_member(get_stat(obj)->st_gid))
|
1999-12-06 12:04:03 +03:00
|
|
|
return st->st_mode & S_IXGRP ? Qtrue : Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
1999-12-06 12:04:03 +03:00
|
|
|
#ifdef S_IXOTH
|
|
|
|
if (!(st->st_mode & S_IXOTH)) return Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.file? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is a regular file (not
|
|
|
|
* a device file, pipe, socket, etc.).
|
|
|
|
*
|
|
|
|
* File.stat("testfile").file? #=> true
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_f(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-01 12:24:48 +03:00
|
|
|
if (S_ISREG(get_stat(obj)->st_mode)) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.zero? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> is a zero-length file;
|
|
|
|
* <code>false</code> otherwise.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").zero? #=> false
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_z(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
1999-12-01 12:24:48 +03:00
|
|
|
if (get_stat(obj)->st_size == 0) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* state.size => integer
|
|
|
|
*
|
|
|
|
* Returns the size of <i>stat</i> in bytes.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").size #=> 66
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_s(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
2002-08-28 12:05:23 +04:00
|
|
|
off_t size = get_stat(obj)->st_size;
|
1999-11-25 12:03:08 +03:00
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
if (size == 0) return Qnil;
|
2002-08-28 12:05:23 +04:00
|
|
|
return OFFT2NUM(size);
|
1999-11-25 12:03:08 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.setuid? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> has the set-user-id
|
|
|
|
* permission bit set, <code>false</code> if it doesn't or if the
|
|
|
|
* operating system doesn't support this feature.
|
|
|
|
*
|
|
|
|
* File.stat("/bin/su").setuid? #=> true
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_suid(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
|
|
|
#ifdef S_ISUID
|
1999-12-01 12:24:48 +03:00
|
|
|
if (get_stat(obj)->st_mode & S_ISUID) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.setgid? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> has the set-group-id
|
|
|
|
* permission bit set, <code>false</code> if it doesn't or if the
|
|
|
|
* operating system doesn't support this feature.
|
|
|
|
*
|
|
|
|
* File.stat("/usr/sbin/lpc").setgid? #=> true
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_sgid(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
2000-05-13 20:13:31 +04:00
|
|
|
#ifdef S_ISGID
|
1999-12-01 12:24:48 +03:00
|
|
|
if (get_stat(obj)->st_mode & S_ISGID) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stat.sticky? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>stat</i> has its sticky bit set,
|
|
|
|
* <code>false</code> if it doesn't or if the operating system doesn't
|
|
|
|
* support this feature.
|
|
|
|
*
|
|
|
|
* File.stat("testfile").sticky? #=> false
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_stat_sticky(VALUE obj)
|
1999-11-25 12:03:08 +03:00
|
|
|
{
|
|
|
|
#ifdef S_ISVTX
|
1999-12-01 12:24:48 +03:00
|
|
|
if (get_stat(obj)->st_mode & S_ISVTX) return Qtrue;
|
1999-11-25 12:03:08 +03:00
|
|
|
#endif
|
2000-06-12 11:48:31 +04:00
|
|
|
return Qfalse;
|
1999-11-25 12:03:08 +03:00
|
|
|
}
|
|
|
|
|
2006-07-20 21:36:36 +04:00
|
|
|
VALUE rb_mFConst;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_file_const(const char *name, VALUE value)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2000-09-25 13:15:08 +04:00
|
|
|
rb_define_const(rb_mFConst, name, value);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
static int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
is_absolute_path(const char *path)
|
2000-01-05 07:41:21 +03:00
|
|
|
{
|
2003-02-12 17:56:45 +03:00
|
|
|
#ifdef DOSISH_DRIVE_LETTER
|
2003-02-16 13:22:36 +03:00
|
|
|
if (has_drive_letter(path) && isdirsep(path[2])) return 1;
|
* 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-15 06:18:08 +03:00
|
|
|
#endif
|
2003-02-12 17:56:45 +03:00
|
|
|
#ifdef DOSISH_UNC
|
2001-07-24 19:11:02 +04:00
|
|
|
if (isdirsep(path[0]) && isdirsep(path[1])) return 1;
|
2002-08-20 14:42:57 +04:00
|
|
|
#endif
|
|
|
|
#ifndef DOSISH
|
2000-01-05 07:41:21 +03:00
|
|
|
if (path[0] == '/') return 1;
|
2001-07-24 19:11:02 +04:00
|
|
|
#endif
|
2000-01-05 07:41:21 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-07 18:28:36 +04:00
|
|
|
#ifndef ENABLE_PATH_CHECK
|
|
|
|
# if defined DOSISH || defined __CYGWIN__
|
|
|
|
# define ENABLE_PATH_CHECK 0
|
|
|
|
# else
|
|
|
|
# define ENABLE_PATH_CHECK 1
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLE_PATH_CHECK
|
2000-01-05 07:41:21 +03:00
|
|
|
static int
|
2006-09-05 00:50:13 +04:00
|
|
|
path_check_0(VALUE path, int execpath)
|
2000-01-05 07:41:21 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
2003-07-20 21:17:52 +04:00
|
|
|
char *p0 = StringValueCStr(path);
|
2001-11-08 12:21:59 +03:00
|
|
|
char *p = 0, *s;
|
2001-11-08 09:43:14 +03:00
|
|
|
|
|
|
|
if (!is_absolute_path(p0)) {
|
|
|
|
char *buf = my_getcwd();
|
|
|
|
VALUE newpath;
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2001-11-08 09:43:14 +03:00
|
|
|
newpath = rb_str_new2(buf);
|
|
|
|
free(buf);
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2001-11-08 09:43:14 +03:00
|
|
|
rb_str_cat2(newpath, "/");
|
|
|
|
rb_str_cat2(newpath, p0);
|
2006-09-05 00:50:13 +04:00
|
|
|
p0 = RSTRING_PTR(path = newpath);
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
|
|
|
for (;;) {
|
2002-02-19 09:43:58 +03:00
|
|
|
#ifndef S_IWOTH
|
|
|
|
# define S_IWOTH 002
|
|
|
|
#endif
|
2002-02-19 11:13:26 +03:00
|
|
|
if (stat(p0, &st) == 0 && S_ISDIR(st.st_mode) && (st.st_mode & S_IWOTH)
|
2002-02-19 09:43:58 +03:00
|
|
|
#ifdef S_ISVTX
|
2006-09-05 00:50:13 +04:00
|
|
|
&& !(p && execpath && (st.st_mode & S_ISVTX))
|
2002-02-19 09:43:58 +03:00
|
|
|
#endif
|
2004-06-04 13:56:25 +04:00
|
|
|
&& !access(p0, W_OK)) {
|
2006-09-05 00:50:13 +04:00
|
|
|
rb_warn("Insecure world writable dir %s in %sPATH, mode 0%o",
|
|
|
|
p0, (execpath ? "" : "LOAD_"), st.st_mode);
|
2001-07-24 19:11:02 +04:00
|
|
|
if (p) *p = '/';
|
2000-01-05 07:41:21 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2001-11-08 09:43:14 +03:00
|
|
|
s = strrdirsep(p0);
|
2000-01-05 07:41:21 +03:00
|
|
|
if (p) *p = '/';
|
2001-11-08 09:43:14 +03:00
|
|
|
if (!s || s == p0) return 1;
|
2000-01-05 07:41:21 +03:00
|
|
|
p = s;
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
}
|
2002-09-06 00:53:31 +04:00
|
|
|
#endif
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2005-10-05 20:15:16 +04:00
|
|
|
static int
|
2005-10-20 06:22:50 +04:00
|
|
|
fpath_check(const char *path)
|
2005-10-05 20:15:16 +04:00
|
|
|
{
|
2006-09-07 18:28:36 +04:00
|
|
|
#if ENABLE_PATH_CHECK
|
2005-10-05 20:15:16 +04:00
|
|
|
return path_check_0(rb_str_new2(path), Qfalse);
|
|
|
|
#else
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
int
|
2005-09-12 19:02:46 +04:00
|
|
|
rb_path_check(const char *path)
|
2000-01-05 07:41:21 +03:00
|
|
|
{
|
2006-09-07 18:28:36 +04:00
|
|
|
#if ENABLE_PATH_CHECK
|
2005-09-12 19:02:46 +04:00
|
|
|
const char *p0, *p, *pend;
|
2000-01-05 07:41:21 +03:00
|
|
|
const char sep = PATH_SEP_CHAR;
|
|
|
|
|
|
|
|
if (!path) return 1;
|
|
|
|
|
2001-11-08 09:43:14 +03:00
|
|
|
pend = path + strlen(path);
|
|
|
|
p0 = path;
|
|
|
|
p = strchr(path, sep);
|
|
|
|
if (!p) p = pend;
|
2001-07-16 08:22:46 +04:00
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
for (;;) {
|
2005-10-05 20:15:16 +04:00
|
|
|
if (!path_check_0(rb_str_new(p0, p - p0), Qtrue)) {
|
2001-11-08 09:43:14 +03:00
|
|
|
return 0; /* not safe */
|
|
|
|
}
|
|
|
|
p0 = p + 1;
|
2001-11-08 12:21:59 +03:00
|
|
|
if (p0 > pend) break;
|
2001-11-08 09:43:14 +03:00
|
|
|
p = strchr(p0, sep);
|
|
|
|
if (!p) p = pend;
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
2002-09-06 00:53:31 +04:00
|
|
|
#endif
|
2000-01-05 07:41:21 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2000-02-17 10:11:22 +03:00
|
|
|
#if defined(__MACOS__) || defined(riscos)
|
2000-01-05 07:41:21 +03:00
|
|
|
static int
|
2005-09-12 19:02:46 +04:00
|
|
|
is_macos_native_path(const char *path)
|
2000-01-05 07:41:21 +03:00
|
|
|
{
|
|
|
|
if (strchr(path, ':')) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-07-14 19:17:19 +04:00
|
|
|
static int
|
2005-11-15 10:16:46 +03:00
|
|
|
file_load_ok(const char *path)
|
2001-06-19 08:35:17 +04:00
|
|
|
{
|
2005-11-15 17:55:16 +03:00
|
|
|
return eaccess(path, R_OK) == 0;
|
2001-06-19 08:35:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
extern VALUE rb_load_path;
|
|
|
|
|
|
|
|
int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_find_file_ext(VALUE *filep, const char *const *ext)
|
2001-06-19 08:35:17 +04:00
|
|
|
{
|
2002-04-24 08:54:16 +04:00
|
|
|
char *path, *found;
|
2006-08-31 14:47:44 +04:00
|
|
|
char *f = RSTRING_PTR(*filep);
|
2001-06-19 08:35:17 +04:00
|
|
|
VALUE fname;
|
2002-08-21 19:47:54 +04:00
|
|
|
long i, j;
|
2001-06-19 08:35:17 +04:00
|
|
|
|
2001-07-14 19:17:19 +04:00
|
|
|
if (f[0] == '~') {
|
2003-02-20 12:11:05 +03:00
|
|
|
fname = rb_file_expand_path(*filep, Qnil);
|
2001-07-14 19:17:19 +04:00
|
|
|
if (rb_safe_level() >= 2 && OBJ_TAINTED(fname)) {
|
|
|
|
rb_raise(rb_eSecurityError, "loading from unsafe file %s", f);
|
|
|
|
}
|
2004-10-23 19:41:17 +04:00
|
|
|
OBJ_FREEZE(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
f = StringValueCStr(fname);
|
2001-07-26 07:54:48 +04:00
|
|
|
*filep = fname;
|
2001-06-19 08:35:17 +04:00
|
|
|
}
|
|
|
|
|
2001-07-14 19:17:19 +04:00
|
|
|
if (is_absolute_path(f)) {
|
2001-06-19 08:35:17 +04:00
|
|
|
for (i=0; ext[i]; i++) {
|
2001-07-14 19:17:19 +04:00
|
|
|
fname = rb_str_dup(*filep);
|
|
|
|
rb_str_cat2(fname, ext[i]);
|
2004-10-23 19:41:17 +04:00
|
|
|
OBJ_FREEZE(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
if (file_load_ok(StringValueCStr(fname))) {
|
2001-07-14 19:17:19 +04:00
|
|
|
*filep = fname;
|
|
|
|
return i+1;
|
|
|
|
}
|
2001-06-19 08:35:17 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rb_load_path) return 0;
|
|
|
|
|
|
|
|
Check_Type(rb_load_path, T_ARRAY);
|
2006-09-02 18:42:08 +04:00
|
|
|
for (i=0;i<RARRAY_LEN(rb_load_path);i++) {
|
|
|
|
VALUE str = RARRAY_PTR(rb_load_path)[i];
|
2001-06-19 08:35:17 +04:00
|
|
|
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(str);
|
2006-08-31 14:47:44 +04:00
|
|
|
if (RSTRING_LEN(str) == 0) continue;
|
|
|
|
path = RSTRING_PTR(str);
|
2001-06-19 08:35:17 +04:00
|
|
|
for (j=0; ext[j]; j++) {
|
2001-07-14 19:17:19 +04:00
|
|
|
fname = rb_str_dup(*filep);
|
|
|
|
rb_str_cat2(fname, ext[j]);
|
2004-10-23 19:41:17 +04:00
|
|
|
OBJ_FREEZE(fname);
|
2003-07-20 21:17:52 +04:00
|
|
|
found = dln_find_file(StringValueCStr(fname), path);
|
2001-07-14 19:17:19 +04:00
|
|
|
if (found && file_load_ok(found)) {
|
2005-04-18 19:01:21 +04:00
|
|
|
*filep = rb_str_new2(found);
|
2001-07-14 19:17:19 +04:00
|
|
|
return j+1;
|
|
|
|
}
|
2001-06-19 08:35:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-07-14 19:17:19 +04:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_find_file(VALUE path)
|
2000-01-05 07:41:21 +03:00
|
|
|
{
|
2002-04-24 08:54:16 +04:00
|
|
|
VALUE tmp;
|
2003-07-20 21:17:52 +04:00
|
|
|
char *f = StringValueCStr(path);
|
2001-07-14 19:17:19 +04:00
|
|
|
char *lpath;
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2001-07-14 19:17:19 +04:00
|
|
|
if (f[0] == '~') {
|
2003-02-20 12:11:05 +03:00
|
|
|
path = rb_file_expand_path(path, Qnil);
|
2003-03-10 18:05:18 +03:00
|
|
|
if (rb_safe_level() >= 1 && OBJ_TAINTED(path)) {
|
|
|
|
rb_raise(rb_eSecurityError, "loading from unsafe path %s", f);
|
2001-06-19 08:35:17 +04:00
|
|
|
}
|
2004-10-23 19:41:17 +04:00
|
|
|
OBJ_FREEZE(path);
|
2003-07-20 21:17:52 +04:00
|
|
|
f = StringValueCStr(path);
|
2001-06-19 08:35:17 +04:00
|
|
|
}
|
|
|
|
|
2000-02-17 10:11:22 +03:00
|
|
|
#if defined(__MACOS__) || defined(riscos)
|
2001-07-14 19:17:19 +04:00
|
|
|
if (is_macos_native_path(f)) {
|
2005-10-05 20:15:16 +04:00
|
|
|
if (rb_safe_level() >= 1 && !fpath_check(f)) {
|
2001-07-14 19:17:19 +04:00
|
|
|
rb_raise(rb_eSecurityError, "loading from unsafe file %s", f);
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
2001-07-14 19:17:19 +04:00
|
|
|
if (file_load_ok(f)) return path;
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-07-14 19:17:19 +04:00
|
|
|
if (is_absolute_path(f)) {
|
2005-10-05 20:15:16 +04:00
|
|
|
if (rb_safe_level() >= 1 && !fpath_check(f)) {
|
2001-07-14 19:17:19 +04:00
|
|
|
rb_raise(rb_eSecurityError, "loading from unsafe file %s", f);
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
2001-07-14 19:17:19 +04:00
|
|
|
if (file_load_ok(f)) return path;
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
|
|
|
|
2002-05-01 13:41:50 +04:00
|
|
|
if (rb_safe_level() >= 4) {
|
|
|
|
rb_raise(rb_eSecurityError, "loading from non-absolute path %s", f);
|
|
|
|
}
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
if (rb_load_path) {
|
2002-08-21 19:47:54 +04:00
|
|
|
long i;
|
2000-01-05 07:41:21 +03:00
|
|
|
|
|
|
|
Check_Type(rb_load_path, T_ARRAY);
|
2001-07-14 19:17:19 +04:00
|
|
|
tmp = rb_ary_new();
|
2006-09-02 18:42:08 +04:00
|
|
|
for (i=0;i<RARRAY_LEN(rb_load_path);i++) {
|
|
|
|
VALUE str = RARRAY_PTR(rb_load_path)[i];
|
2004-04-07 10:30:15 +04:00
|
|
|
FilePathValue(str);
|
2006-08-31 14:47:44 +04:00
|
|
|
if (RSTRING_LEN(str) > 0) {
|
2001-07-14 19:17:19 +04:00
|
|
|
rb_ary_push(tmp, str);
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
|
|
|
}
|
2001-07-14 19:17:19 +04:00
|
|
|
tmp = rb_ary_join(tmp, rb_str_new2(PATH_SEP));
|
2006-08-31 14:47:44 +04:00
|
|
|
if (RSTRING_LEN(tmp) == 0) {
|
2002-08-27 12:31:08 +04:00
|
|
|
lpath = 0;
|
|
|
|
}
|
|
|
|
else {
|
2006-08-31 14:47:44 +04:00
|
|
|
lpath = RSTRING_PTR(tmp);
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2001-07-14 19:17:19 +04:00
|
|
|
lpath = 0;
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
|
|
|
|
2002-08-27 12:31:08 +04:00
|
|
|
if (!lpath) {
|
|
|
|
return 0; /* no path, no load */
|
|
|
|
}
|
2007-01-09 11:50:04 +03:00
|
|
|
if (!(f = dln_find_file(f, lpath))) {
|
|
|
|
return 0;
|
|
|
|
}
|
2005-10-05 20:15:16 +04:00
|
|
|
if (rb_safe_level() >= 1 && !fpath_check(f)) {
|
2003-03-10 18:05:18 +03:00
|
|
|
rb_raise(rb_eSecurityError, "loading from unsafe file %s", f);
|
|
|
|
}
|
2001-07-14 19:17:19 +04:00
|
|
|
if (file_load_ok(f)) {
|
2004-10-23 19:41:17 +04:00
|
|
|
tmp = rb_str_new2(f);
|
|
|
|
OBJ_FREEZE(tmp);
|
|
|
|
return tmp;
|
2001-07-14 19:17:19 +04:00
|
|
|
}
|
2001-07-24 13:07:33 +04:00
|
|
|
return 0;
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
|
|
|
|
2000-09-18 12:47:10 +04:00
|
|
|
static void
|
2005-09-20 17:25:59 +04:00
|
|
|
define_filetest_function(const char *name, VALUE (*func)(ANYARGS), int argc)
|
2000-09-18 12:47:10 +04:00
|
|
|
{
|
|
|
|
rb_define_module_function(rb_mFileTest, name, func, argc);
|
|
|
|
rb_define_singleton_method(rb_cFile, name, func, argc);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A <code>File</code> is an abstraction of any file object accessible
|
|
|
|
* by the program and is closely associated with class <code>IO</code>
|
|
|
|
* <code>File</code> includes the methods of module
|
|
|
|
* <code>FileTest</code> as class methods, allowing you to write (for
|
|
|
|
* example) <code>File.exist?("foo")</code>.
|
|
|
|
*
|
|
|
|
* In the description of File methods,
|
|
|
|
* <em>permission bits</em> are a platform-specific
|
|
|
|
* set of bits that indicate permissions of a file. On Unix-based
|
|
|
|
* systems, permissions are viewed as a set of three octets, for the
|
|
|
|
* owner, the group, and the rest of the world. For each of these
|
|
|
|
* entities, permissions may be set to read, write, or execute the
|
|
|
|
* file:
|
|
|
|
*
|
|
|
|
* The permission bits <code>0644</code> (in octal) would thus be
|
|
|
|
* interpreted as read/write for owner, and read-only for group and
|
|
|
|
* other. Higher-order bits may also be used to indicate the type of
|
|
|
|
* file (plain, directory, pipe, socket, and so on) and various other
|
|
|
|
* special features. If the permissions are for a directory, the
|
|
|
|
* meaning of the execute bit changes; when set the directory can be
|
|
|
|
* searched.
|
|
|
|
*
|
|
|
|
* On non-Posix operating systems, there may be only the ability to
|
|
|
|
* make a file read-only or read-write. In this case, the remaining
|
|
|
|
* permission bits will be synthesized to resemble typical values. For
|
|
|
|
* instance, on Windows NT the default permission bits are
|
|
|
|
* <code>0644</code>, which means read/write for owner, read-only for
|
|
|
|
* all others. The only change that can be made is to make the file
|
|
|
|
* read-only, which is reported as <code>0444</code>.
|
|
|
|
*/
|
|
|
|
|
2001-01-10 10:52:46 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_File(void)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_mFileTest = rb_define_module("FileTest");
|
|
|
|
rb_cFile = rb_define_class("File", rb_cIO);
|
2000-09-18 12:47:10 +04:00
|
|
|
|
2006-12-07 18:18:14 +03:00
|
|
|
define_filetest_function("directory?", rb_file_directory_p, 1);
|
|
|
|
define_filetest_function("exist?", rb_file_exist_p, 1);
|
|
|
|
define_filetest_function("readable?", rb_file_readable_p, 1);
|
|
|
|
define_filetest_function("readable_real?", rb_file_readable_real_p, 1);
|
2007-05-18 20:04:22 +04:00
|
|
|
define_filetest_function("world_readable?", rb_file_world_readable_p, 1);
|
2006-12-07 18:18:14 +03:00
|
|
|
define_filetest_function("writable?", rb_file_writable_p, 1);
|
2007-05-18 20:04:22 +04:00
|
|
|
define_filetest_function("writable_real?", rb_file_writable_real_p, 1);
|
2006-12-07 18:18:14 +03:00
|
|
|
define_filetest_function("world_writable?", rb_file_world_writable_p, 1);
|
|
|
|
define_filetest_function("executable?", rb_file_executable_p, 1);
|
|
|
|
define_filetest_function("executable_real?", rb_file_executable_real_p, 1);
|
|
|
|
define_filetest_function("file?", rb_file_file_p, 1);
|
|
|
|
define_filetest_function("zero?", rb_file_zero_p, 1);
|
|
|
|
define_filetest_function("size?", rb_file_size_p, 1);
|
2000-10-10 11:03:36 +04:00
|
|
|
define_filetest_function("size", rb_file_s_size, 1);
|
2006-12-07 18:18:14 +03:00
|
|
|
define_filetest_function("owned?", rb_file_owned_p, 1);
|
|
|
|
define_filetest_function("grpowned?", rb_file_grpowned_p, 1);
|
2000-09-18 12:47:10 +04:00
|
|
|
|
2006-12-07 18:18:14 +03:00
|
|
|
define_filetest_function("pipe?", rb_file_pipe_p, 1);
|
|
|
|
define_filetest_function("symlink?", rb_file_symlink_p, 1);
|
|
|
|
define_filetest_function("socket?", rb_file_socket_p, 1);
|
2000-09-18 12:47:10 +04:00
|
|
|
|
2006-12-07 18:18:14 +03:00
|
|
|
define_filetest_function("blockdev?", rb_file_blockdev_p, 1);
|
|
|
|
define_filetest_function("chardev?", rb_file_chardev_p, 1);
|
2000-09-18 12:47:10 +04:00
|
|
|
|
2006-12-07 18:18:14 +03:00
|
|
|
define_filetest_function("setuid?", rb_file_suid_p, 1);
|
|
|
|
define_filetest_function("setgid?", rb_file_sgid_p, 1);
|
|
|
|
define_filetest_function("sticky?", rb_file_sticky_p, 1);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2006-12-07 18:18:14 +03:00
|
|
|
define_filetest_function("identical?", rb_file_identical_p, 2);
|
2005-11-22 19:26:39 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_singleton_method(rb_cFile, "stat", rb_file_s_stat, 1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "lstat", rb_file_s_lstat, 1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "ftype", rb_file_s_ftype, 1);
|
|
|
|
|
|
|
|
rb_define_singleton_method(rb_cFile, "atime", rb_file_s_atime, 1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "mtime", rb_file_s_mtime, 1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "ctime", rb_file_s_ctime, 1);
|
|
|
|
|
|
|
|
rb_define_singleton_method(rb_cFile, "utime", rb_file_s_utime, -1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "chmod", rb_file_s_chmod, -1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "chown", rb_file_s_chown, -1);
|
2001-02-16 10:53:21 +03:00
|
|
|
rb_define_singleton_method(rb_cFile, "lchmod", rb_file_s_lchmod, -1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "lchown", rb_file_s_lchown, -1);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
rb_define_singleton_method(rb_cFile, "link", rb_file_s_link, 2);
|
|
|
|
rb_define_singleton_method(rb_cFile, "symlink", rb_file_s_symlink, 2);
|
|
|
|
rb_define_singleton_method(rb_cFile, "readlink", rb_file_s_readlink, 1);
|
|
|
|
|
|
|
|
rb_define_singleton_method(rb_cFile, "unlink", rb_file_s_unlink, -2);
|
|
|
|
rb_define_singleton_method(rb_cFile, "delete", rb_file_s_unlink, -2);
|
|
|
|
rb_define_singleton_method(rb_cFile, "rename", rb_file_s_rename, 2);
|
|
|
|
rb_define_singleton_method(rb_cFile, "umask", rb_file_s_umask, -1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "truncate", rb_file_s_truncate, 2);
|
|
|
|
rb_define_singleton_method(rb_cFile, "expand_path", rb_file_s_expand_path, -1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "basename", rb_file_s_basename, -1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "dirname", rb_file_s_dirname, 1);
|
2002-04-10 12:45:26 +04:00
|
|
|
rb_define_singleton_method(rb_cFile, "extname", rb_file_s_extname, 1);
|
2004-04-07 06:51:05 +04:00
|
|
|
rb_define_singleton_method(rb_cFile, "path", rb_file_s_path, 1);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2001-10-29 08:07:26 +03:00
|
|
|
separator = rb_obj_freeze(rb_str_new2("/"));
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_const(rb_cFile, "Separator", separator);
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_define_const(rb_cFile, "SEPARATOR", separator);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_singleton_method(rb_cFile, "split", rb_file_s_split, 1);
|
|
|
|
rb_define_singleton_method(rb_cFile, "join", rb_file_s_join, -2);
|
|
|
|
|
2003-02-12 17:56:45 +03:00
|
|
|
#ifdef DOSISH
|
2001-10-29 08:07:26 +03:00
|
|
|
rb_define_const(rb_cFile, "ALT_SEPARATOR", rb_obj_freeze(rb_str_new2("\\")));
|
1999-08-13 09:45:20 +04:00
|
|
|
#else
|
|
|
|
rb_define_const(rb_cFile, "ALT_SEPARATOR", Qnil);
|
|
|
|
#endif
|
2001-10-29 08:07:26 +03:00
|
|
|
rb_define_const(rb_cFile, "PATH_SEPARATOR", rb_obj_freeze(rb_str_new2(PATH_SEP)));
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
rb_define_method(rb_cIO, "stat", rb_io_stat, 0); /* this is IO's method */
|
|
|
|
rb_define_method(rb_cFile, "lstat", rb_file_lstat, 0);
|
|
|
|
|
|
|
|
rb_define_method(rb_cFile, "atime", rb_file_atime, 0);
|
|
|
|
rb_define_method(rb_cFile, "mtime", rb_file_mtime, 0);
|
|
|
|
rb_define_method(rb_cFile, "ctime", rb_file_ctime, 0);
|
|
|
|
|
|
|
|
rb_define_method(rb_cFile, "chmod", rb_file_chmod, 1);
|
|
|
|
rb_define_method(rb_cFile, "chown", rb_file_chown, 2);
|
|
|
|
rb_define_method(rb_cFile, "truncate", rb_file_truncate, 1);
|
|
|
|
|
|
|
|
rb_define_method(rb_cFile, "flock", rb_file_flock, 1);
|
|
|
|
|
2000-09-25 13:15:08 +04:00
|
|
|
rb_mFConst = rb_define_module_under(rb_cFile, "Constants");
|
2003-07-28 18:23:12 +04:00
|
|
|
rb_include_module(rb_cIO, rb_mFConst);
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_file_const("LOCK_SH", INT2FIX(LOCK_SH));
|
|
|
|
rb_file_const("LOCK_EX", INT2FIX(LOCK_EX));
|
|
|
|
rb_file_const("LOCK_UN", INT2FIX(LOCK_UN));
|
|
|
|
rb_file_const("LOCK_NB", INT2FIX(LOCK_NB));
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
rb_define_method(rb_cFile, "path", rb_file_path, 0);
|
2007-05-18 11:57:51 +04:00
|
|
|
rb_define_method(rb_cFile, "to_path", rb_file_path, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_global_function("test", rb_f_test, -1);
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
rb_cStat = rb_define_class_under(rb_cFile, "Stat", rb_cObject);
|
2002-12-20 11:33:17 +03:00
|
|
|
rb_define_alloc_func(rb_cStat, rb_stat_s_alloc);
|
2001-05-02 08:22:21 +04:00
|
|
|
rb_define_method(rb_cStat, "initialize", rb_stat_init, 1);
|
2003-05-19 09:41:08 +04:00
|
|
|
rb_define_method(rb_cStat, "initialize_copy", rb_stat_init_copy, 1);
|
1999-12-01 12:24:48 +03:00
|
|
|
|
|
|
|
rb_include_module(rb_cStat, rb_mComparable);
|
|
|
|
|
|
|
|
rb_define_method(rb_cStat, "<=>", rb_stat_cmp, 1);
|
|
|
|
|
|
|
|
rb_define_method(rb_cStat, "dev", rb_stat_dev, 0);
|
2004-07-17 06:23:52 +04:00
|
|
|
rb_define_method(rb_cStat, "dev_major", rb_stat_dev_major, 0);
|
|
|
|
rb_define_method(rb_cStat, "dev_minor", rb_stat_dev_minor, 0);
|
1999-12-01 12:24:48 +03:00
|
|
|
rb_define_method(rb_cStat, "ino", rb_stat_ino, 0);
|
|
|
|
rb_define_method(rb_cStat, "mode", rb_stat_mode, 0);
|
|
|
|
rb_define_method(rb_cStat, "nlink", rb_stat_nlink, 0);
|
|
|
|
rb_define_method(rb_cStat, "uid", rb_stat_uid, 0);
|
|
|
|
rb_define_method(rb_cStat, "gid", rb_stat_gid, 0);
|
|
|
|
rb_define_method(rb_cStat, "rdev", rb_stat_rdev, 0);
|
2002-01-29 10:16:09 +03:00
|
|
|
rb_define_method(rb_cStat, "rdev_major", rb_stat_rdev_major, 0);
|
|
|
|
rb_define_method(rb_cStat, "rdev_minor", rb_stat_rdev_minor, 0);
|
1999-12-01 12:24:48 +03:00
|
|
|
rb_define_method(rb_cStat, "size", rb_stat_size, 0);
|
|
|
|
rb_define_method(rb_cStat, "blksize", rb_stat_blksize, 0);
|
|
|
|
rb_define_method(rb_cStat, "blocks", rb_stat_blocks, 0);
|
|
|
|
rb_define_method(rb_cStat, "atime", rb_stat_atime, 0);
|
|
|
|
rb_define_method(rb_cStat, "mtime", rb_stat_mtime, 0);
|
|
|
|
rb_define_method(rb_cStat, "ctime", rb_stat_ctime, 0);
|
|
|
|
|
2000-06-19 12:38:11 +04:00
|
|
|
rb_define_method(rb_cStat, "inspect", rb_stat_inspect, 0);
|
|
|
|
|
1999-12-01 12:24:48 +03:00
|
|
|
rb_define_method(rb_cStat, "ftype", rb_stat_ftype, 0);
|
|
|
|
|
|
|
|
rb_define_method(rb_cStat, "directory?", rb_stat_d, 0);
|
|
|
|
rb_define_method(rb_cStat, "readable?", rb_stat_r, 0);
|
|
|
|
rb_define_method(rb_cStat, "readable_real?", rb_stat_R, 0);
|
2004-01-19 12:19:31 +03:00
|
|
|
rb_define_method(rb_cStat, "world_readable?", rb_stat_wr, 0);
|
1999-12-01 12:24:48 +03:00
|
|
|
rb_define_method(rb_cStat, "writable?", rb_stat_w, 0);
|
|
|
|
rb_define_method(rb_cStat, "writable_real?", rb_stat_W, 0);
|
2004-01-19 12:19:31 +03:00
|
|
|
rb_define_method(rb_cStat, "world_writable?", rb_stat_ww, 0);
|
1999-12-01 12:24:48 +03:00
|
|
|
rb_define_method(rb_cStat, "executable?", rb_stat_x, 0);
|
|
|
|
rb_define_method(rb_cStat, "executable_real?", rb_stat_X, 0);
|
|
|
|
rb_define_method(rb_cStat, "file?", rb_stat_f, 0);
|
|
|
|
rb_define_method(rb_cStat, "zero?", rb_stat_z, 0);
|
|
|
|
rb_define_method(rb_cStat, "size?", rb_stat_s, 0);
|
|
|
|
rb_define_method(rb_cStat, "owned?", rb_stat_owned, 0);
|
|
|
|
rb_define_method(rb_cStat, "grpowned?", rb_stat_grpowned, 0);
|
|
|
|
|
|
|
|
rb_define_method(rb_cStat, "pipe?", rb_stat_p, 0);
|
|
|
|
rb_define_method(rb_cStat, "symlink?", rb_stat_l, 0);
|
|
|
|
rb_define_method(rb_cStat, "socket?", rb_stat_S, 0);
|
|
|
|
|
|
|
|
rb_define_method(rb_cStat, "blockdev?", rb_stat_b, 0);
|
|
|
|
rb_define_method(rb_cStat, "chardev?", rb_stat_c, 0);
|
|
|
|
|
|
|
|
rb_define_method(rb_cStat, "setuid?", rb_stat_suid, 0);
|
|
|
|
rb_define_method(rb_cStat, "setgid?", rb_stat_sgid, 0);
|
|
|
|
rb_define_method(rb_cStat, "sticky?", rb_stat_sticky, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|