1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* dir.c (dir_s_mkdir): win32 special processing doesn't need any

longer. (backported from CVS HEAD)

* win32/win32.[ch] (rb_w32_mkdir): new function. POSIX.1 compatible
  interface. (backported from CVS HEAD)

* win32/win32.[ch] (rb_w32_rmdir): new function. (backported from CVS
  HEAD)


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7727 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2005-01-05 01:50:06 +00:00
parent 1d91fd6c44
commit 525c8f80b2
4 changed files with 56 additions and 5 deletions

View file

@ -1,3 +1,14 @@
Wed Jan 5 10:48:16 2005 NAKAMURA Usaku <usa@ruby-lang.org>
* dir.c (dir_s_mkdir): win32 special processing doesn't need any
longer. (backported from CVS HEAD)
* win32/win32.[ch] (rb_w32_mkdir): new function. POSIX.1 compatible
interface. (backported from CVS HEAD)
* win32/win32.[ch] (rb_w32_rmdir): new function. (backported from CVS
HEAD)
Wed Jan 5 02:30:11 2005 Tanaka Akira <akr@m17n.org>
* random.c (init_by_array): imported from mt19937ar-cok.tgz.

5
dir.c
View file

@ -761,13 +761,8 @@ dir_s_mkdir(argc, argv, obj)
}
check_dirname(&path);
#ifndef _WIN32
if (mkdir(RSTRING(path)->ptr, mode) == -1)
rb_sys_fail(RSTRING(path)->ptr);
#else
if (mkdir(RSTRING(path)->ptr) == -1)
rb_sys_fail(RSTRING(path)->ptr);
#endif
return INT2FIX(0);
}

View file

@ -3324,6 +3324,45 @@ rb_w32_snprintf(char *buf, size_t size, const char *format, ...)
return ret;
}
#undef mkdir
#undef rmdir
int
rb_w32_mkdir(const char *path, int mode)
{
int ret = -1;
RUBY_CRITICAL(do {
if (mkdir(path) == -1)
break;
if (chmod(path, mode) == -1) {
int save_errno = errno;
rmdir(path);
errno = save_errno;
break;
}
ret = 0;
} while (0));
return ret;
}
int
rb_w32_rmdir(const char *path)
{
DWORD attr;
int ret;
RUBY_CRITICAL({
attr = GetFileAttributes(path);
if (attr != (DWORD)-1 && (attr & FILE_ATTRIBUTE_READONLY)) {
attr &= ~FILE_ATTRIBUTE_READONLY;
SetFileAttributes(path, attr);
}
ret = rmdir(path);
if (ret < 0 && attr != (DWORD)-1) {
SetFileAttributes(path, attr);
}
});
return ret;
}
#if !defined(__BORLANDC__) && !defined(_WIN32_WCE)
int
rb_w32_isatty(int fd)

View file

@ -127,6 +127,10 @@ extern "C++" {
#undef isatty
#define isatty(h) rb_w32_isatty(h)
#endif
#undef mkdir
#define mkdir(p, m) rb_w32_mkdir(p, m)
#undef rmdir
#define rmdir(p) rb_w32_rmdir(p)
#ifdef __MINGW32__
struct timezone {
@ -187,6 +191,8 @@ extern pid_t rb_w32_getpid(void);
#if !defined(__BORLANDC__) && !defined(_WIN32_WCE)
extern int rb_w32_isatty(int);
#endif
extern int rb_w32_mkdir(const char *, int);
extern int rb_w32_rmdir(const char *);
#ifdef __BORLANDC__
extern FILE *rb_w32_fopen(const char *, const char *);