mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-17 12:41:05 +03:00
stat-macros.h is now for our own macros, whereas stat_h is for macros in the <sys/stat.h> name space. * lib/stat-macros.h: Remove copyright notice, as this file is now tiny. (STAT_MACROS_H): Remove. (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM): (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT): (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD): (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP): (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH): (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO): Move these macros to ... * lib/stat_.h: here. Don't include stat-macros.h. * lib/canonicalize.c: Don't include stat-macros.h. * lib/chown.c: Likewise. * lib/euidaccess.c: Likewise. * lib/file-type.c: Likewise. * lib/filemode.c: Likewise. * lib/glob.c: Likewise. * lib/isapipe.c: Likewise. * lib/lchown.c: Likewise. * lib/lstat.c: Likewise. * lib/mkdir-p.c: Likewise. * lib/rmdir.c: Likewise. * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS. * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h unless mkdir isn't declared, to speed up 'configure'. Always create sys/stat.h, since it's unlikely any real sys/stat.h would define all the S_* symbols. * modules/canonicalize (Depends-on): Depend on sys_stat, not stat-macros. * modules/chown: Likewise. * modules/euidaccess: Likewise. * modules/filemode: Likewise. * modules/file-type: Likewise. * modules/glob: Likewise. * modules/isapipe: Likewise. * modules/lchown: Likewise. * modules/lstat: Likewise. * modules/mkancesdirs: Likewise. * modules/rmdir: Likewise. * modules/mkdir-p (Depends-on): Also depend on sys_stat. * modules/modechange: Likewise. * modules/stat-macros (Files): Remove m4/stat-macros.m4. (configure.ac): Remove gl_STAT_MACROS. * modules/sys_stat (Depends-on): Remove stat-macros.
276 lines
5.5 KiB
C
276 lines
5.5 KiB
C
/* Provide a more complete sys/stat header file.
|
|
Copyright (C) 2006 Free Software Foundation, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
|
|
|
/* Written by Eric Blake, Paul Eggert, and Jim Meyering. */
|
|
|
|
#ifndef _gl_SYS_STAT_H
|
|
#define _gl_SYS_STAT_H
|
|
|
|
/* This file is supposed to be used on platforms where <sys/stat.h> is
|
|
incomplete. It is intended to provide definitions and prototypes
|
|
needed by an application. Start with what the system provides. */
|
|
#include @ABSOLUTE_SYS_STAT_H@
|
|
|
|
#ifndef S_IFMT
|
|
# define S_IFMT 0170000
|
|
#endif
|
|
|
|
#if STAT_MACROS_BROKEN
|
|
# undef S_ISBLK
|
|
# undef S_ISCHR
|
|
# undef S_ISDIR
|
|
# undef S_ISFIFO
|
|
# undef S_ISLNK
|
|
# undef S_ISNAM
|
|
# undef S_ISMPB
|
|
# undef S_ISMPC
|
|
# undef S_ISNWK
|
|
# undef S_ISREG
|
|
# undef S_ISSOCK
|
|
#endif
|
|
|
|
#ifndef S_ISBLK
|
|
# ifdef S_IFBLK
|
|
# define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
|
|
# else
|
|
# define S_ISBLK(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_ISCHR
|
|
# ifdef S_IFCHR
|
|
# define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
|
|
# else
|
|
# define S_ISCHR(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_ISDIR
|
|
# ifdef S_IFDIR
|
|
# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
|
# else
|
|
# define S_ISDIR(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_ISDOOR /* Solaris 2.5 and up */
|
|
# define S_ISDOOR(m) 0
|
|
#endif
|
|
|
|
#ifndef S_ISFIFO
|
|
# ifdef S_IFIFO
|
|
# define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
|
|
# else
|
|
# define S_ISFIFO(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_ISLNK
|
|
# ifdef S_IFLNK
|
|
# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
|
|
# else
|
|
# define S_ISLNK(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_ISMPB /* V7 */
|
|
# ifdef S_IFMPB
|
|
# define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
|
|
# define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
|
|
# else
|
|
# define S_ISMPB(m) 0
|
|
# define S_ISMPC(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_ISNAM /* Xenix */
|
|
# ifdef S_IFNAM
|
|
# define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM)
|
|
# else
|
|
# define S_ISNAM(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_ISNWK /* HP/UX */
|
|
# ifdef S_IFNWK
|
|
# define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
|
|
# else
|
|
# define S_ISNWK(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_ISPORT /* Solaris 10 and up */
|
|
# define S_ISPORT(m) 0
|
|
#endif
|
|
|
|
#ifndef S_ISREG
|
|
# ifdef S_IFREG
|
|
# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
|
# else
|
|
# define S_ISREG(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_ISSOCK
|
|
# ifdef S_IFSOCK
|
|
# define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
|
|
# else
|
|
# define S_ISSOCK(m) 0
|
|
# endif
|
|
#endif
|
|
|
|
|
|
#ifndef S_TYPEISMQ
|
|
# define S_TYPEISMQ(p) 0
|
|
#endif
|
|
|
|
#ifndef S_TYPEISTMO
|
|
# define S_TYPEISTMO(p) 0
|
|
#endif
|
|
|
|
|
|
#ifndef S_TYPEISSEM
|
|
# ifdef S_INSEM
|
|
# define S_TYPEISSEM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSEM)
|
|
# else
|
|
# define S_TYPEISSEM(p) 0
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef S_TYPEISSHM
|
|
# ifdef S_INSHD
|
|
# define S_TYPEISSHM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSHD)
|
|
# else
|
|
# define S_TYPEISSHM(p) 0
|
|
# endif
|
|
#endif
|
|
|
|
/* high performance ("contiguous data") */
|
|
#ifndef S_ISCTG
|
|
# define S_ISCTG(p) 0
|
|
#endif
|
|
|
|
/* Cray DMF (data migration facility): off line, with data */
|
|
#ifndef S_ISOFD
|
|
# define S_ISOFD(p) 0
|
|
#endif
|
|
|
|
/* Cray DMF (data migration facility): off line, with no data */
|
|
#ifndef S_ISOFL
|
|
# define S_ISOFL(p) 0
|
|
#endif
|
|
|
|
/* 4.4BSD whiteout */
|
|
#ifndef S_ISWHT
|
|
# define S_ISWHT(m) 0
|
|
#endif
|
|
|
|
/* If any of the following are undefined,
|
|
define them to their de facto standard values. */
|
|
#if !S_ISUID
|
|
# define S_ISUID 04000
|
|
#endif
|
|
#if !S_ISGID
|
|
# define S_ISGID 02000
|
|
#endif
|
|
|
|
/* S_ISVTX is a common extension to POSIX. */
|
|
#ifndef S_ISVTX
|
|
# define S_ISVTX 01000
|
|
#endif
|
|
|
|
#if !S_IRUSR && S_IREAD
|
|
# define S_IRUSR S_IREAD
|
|
#endif
|
|
#if !S_IRUSR
|
|
# define S_IRUSR 00400
|
|
#endif
|
|
#if !S_IRGRP
|
|
# define S_IRGRP (S_IRUSR >> 3)
|
|
#endif
|
|
#if !S_IROTH
|
|
# define S_IROTH (S_IRUSR >> 6)
|
|
#endif
|
|
|
|
#if !S_IWUSR && S_IWRITE
|
|
# define S_IWUSR S_IWRITE
|
|
#endif
|
|
#if !S_IWUSR
|
|
# define S_IWUSR 00200
|
|
#endif
|
|
#if !S_IWGRP
|
|
# define S_IWGRP (S_IWUSR >> 3)
|
|
#endif
|
|
#if !S_IWOTH
|
|
# define S_IWOTH (S_IWUSR >> 6)
|
|
#endif
|
|
|
|
#if !S_IXUSR && S_IEXEC
|
|
# define S_IXUSR S_IEXEC
|
|
#endif
|
|
#if !S_IXUSR
|
|
# define S_IXUSR 00100
|
|
#endif
|
|
#if !S_IXGRP
|
|
# define S_IXGRP (S_IXUSR >> 3)
|
|
#endif
|
|
#if !S_IXOTH
|
|
# define S_IXOTH (S_IXUSR >> 6)
|
|
#endif
|
|
|
|
#if !S_IRWXU
|
|
# define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
|
|
#endif
|
|
#if !S_IRWXG
|
|
# define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
|
|
#endif
|
|
#if !S_IRWXO
|
|
# define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
|
|
#endif
|
|
|
|
/* S_IXUGO is a common extension to POSIX. */
|
|
#if !S_IXUGO
|
|
# define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
|
|
#endif
|
|
|
|
#ifndef S_IRWXUGO
|
|
# define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
|
|
#endif
|
|
|
|
/* mingw does not support symlinks, therefore it does not have lstat. But
|
|
without links, stat does just fine. */
|
|
#if ! HAVE_LSTAT
|
|
# define lstat stat
|
|
#endif
|
|
|
|
/* mingw's _mkdir() function has 1 argument, but we pass 2 arguments.
|
|
Additionally, it declares _mkdir (and depending on compile flags, an
|
|
alias mkdir), only in the nonstandard io.h. */
|
|
#if ! HAVE_DECL_MKDIR && HAVE_IO_H
|
|
# include <io.h>
|
|
|
|
static inline int
|
|
rpl_mkdir (char const *name, mode_t mode)
|
|
{
|
|
return _mkdir (name);
|
|
}
|
|
|
|
# define mkdir rpl_mkdir
|
|
#endif
|
|
|
|
#endif /* _gl_SYS_STAT_H */
|