mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-31 15:46:16 +00:00
clean up
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4646 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c3a53defe8
commit
6facfcf446
@ -1,3 +1,8 @@
|
|||||||
|
|
||||||
|
2002-07-16 André Pönitz <poenitz@gmx.net>
|
||||||
|
|
||||||
|
* FileInfo.Ch: remove unneeded code
|
||||||
|
|
||||||
2002-06-20 Herbert Voss <voss@perce.de>
|
2002-06-20 Herbert Voss <voss@perce.de>
|
||||||
|
|
||||||
* filetools.[C]: (readExtFromContents) add support for
|
* filetools.[C]: (readExtFromContents) add support for
|
||||||
|
@ -87,26 +87,35 @@
|
|||||||
#define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
|
#define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Since major is a function on SVR4, we can't use `ifndef major'.
|
|
||||||
// might want to put MAJOR_IN_MKDEV for SYSV
|
|
||||||
#ifdef MAJOR_IN_MKDEV
|
|
||||||
#include <sys/mkdev.h>
|
|
||||||
#define HAVE_MAJOR
|
|
||||||
#endif
|
|
||||||
#ifdef MAJOR_IN_SYSMACROS
|
|
||||||
#include <sys/sysmacros.h>
|
|
||||||
#define HAVE_MAJOR
|
|
||||||
#endif
|
|
||||||
#ifdef major
|
|
||||||
#define HAVE_MAJOR
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef HAVE_MAJOR
|
namespace {
|
||||||
#define major(dev) (((dev) >> 8) & 0xff)
|
|
||||||
#define minor(dev) ((dev) & 0xff)
|
/// builds 'rwx' string describing file access rights
|
||||||
#define makedev(maj, min) (((maj) << 8) | (min))
|
void flagRWX(mode_t i, char * str)
|
||||||
|
{
|
||||||
|
str[0] = (i & S_IRUSR) ? 'r' : '-';
|
||||||
|
str[1] = (i & S_IWUSR) ? 'w' : '-';
|
||||||
|
str[2] = (i & S_IXUSR) ? 'x' : '-';
|
||||||
|
}
|
||||||
|
|
||||||
|
/// updates mode string to match suid/sgid/sticky bits
|
||||||
|
void setSticky(mode_t i, char * str)
|
||||||
|
{
|
||||||
|
#ifdef S_ISUID
|
||||||
|
if (i & S_ISUID)
|
||||||
|
str[3] = (str[3] == 'x') ? 's' : 'S';
|
||||||
#endif
|
#endif
|
||||||
#undef HAVE_MAJOR
|
#ifdef S_ISGID
|
||||||
|
if (i & S_ISGID)
|
||||||
|
str[6] = (str[6] == 'x') ? 's' : 'S';
|
||||||
|
#endif
|
||||||
|
#ifdef S_ISVTX
|
||||||
|
if (i & S_ISVTX)
|
||||||
|
str[9] = (str[9] == 'x') ? 's' : 'S';
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace anon
|
||||||
|
|
||||||
|
|
||||||
FileInfo::FileInfo()
|
FileInfo::FileInfo()
|
||||||
@ -116,7 +125,7 @@ FileInfo::FileInfo()
|
|||||||
|
|
||||||
|
|
||||||
FileInfo::FileInfo(string const & path, bool link)
|
FileInfo::FileInfo(string const & path, bool link)
|
||||||
: fname(path)
|
: fname_(path)
|
||||||
{
|
{
|
||||||
init();
|
init();
|
||||||
dostat(link);
|
dostat(link);
|
||||||
@ -126,48 +135,47 @@ FileInfo::FileInfo(string const & path, bool link)
|
|||||||
FileInfo::FileInfo(int fildes)
|
FileInfo::FileInfo(int fildes)
|
||||||
{
|
{
|
||||||
init();
|
init();
|
||||||
status = fstat(fildes, &buf);
|
status_ = fstat(fildes, &buf_);
|
||||||
if (status) err = errno;
|
if (status_)
|
||||||
|
err_ = errno;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void FileInfo::init()
|
void FileInfo::init()
|
||||||
{
|
{
|
||||||
status = 0;
|
status_ = 0;
|
||||||
err = NoErr;
|
err_ = NoErr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void FileInfo::dostat(bool link)
|
void FileInfo::dostat(bool link)
|
||||||
{
|
{
|
||||||
if (link) {
|
if (link)
|
||||||
status = ::lstat(fname.c_str(), &buf);
|
status_ = ::lstat(fname_.c_str(), &buf_);
|
||||||
} else {
|
else
|
||||||
status = ::stat(fname.c_str(), &buf);
|
status_ = ::stat(fname_.c_str(), &buf_);
|
||||||
}
|
if (status_)
|
||||||
if (status) err = errno;
|
err_ = errno;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
FileInfo & FileInfo::newFile(string const & path, bool link)
|
FileInfo & FileInfo::newFile(string const & path, bool link)
|
||||||
{
|
{
|
||||||
fname = path;
|
fname_ = path;
|
||||||
|
status_ = 0;
|
||||||
status = 0;
|
err_ = NoErr;
|
||||||
err = NoErr;
|
|
||||||
|
|
||||||
dostat(link);
|
dostat(link);
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
FileInfo & FileInfo::newFile(int fildes)
|
FileInfo & FileInfo::newFile(int fildes)
|
||||||
{
|
{
|
||||||
status = 0;
|
status_ = 0;
|
||||||
err = NoErr;
|
err_ = NoErr;
|
||||||
status = fstat(fildes, &buf);
|
status_ = fstat(fildes, &buf_);
|
||||||
if (status) err = errno;
|
if (status_)
|
||||||
|
err_ = errno;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -176,19 +184,22 @@ FileInfo & FileInfo::newFile(int fildes)
|
|||||||
char const * FileInfo::typeIndicator() const
|
char const * FileInfo::typeIndicator() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
|
if (S_ISDIR(buf_.st_mode))
|
||||||
if (S_ISDIR(buf.st_mode)) return ("/");
|
return "/";
|
||||||
#ifdef S_ISLNK
|
#ifdef S_ISLNK
|
||||||
if (S_ISLNK(buf.st_mode)) return ("@");
|
if (S_ISLNK(buf_.st_mode))
|
||||||
|
return "@";
|
||||||
#endif
|
#endif
|
||||||
#ifdef S_ISFIFO
|
#ifdef S_ISFIFO
|
||||||
if (S_ISFIFO(buf.st_mode)) return ("|");
|
if (S_ISFIFO(buf_.st_mode))
|
||||||
|
return "|";
|
||||||
#endif
|
#endif
|
||||||
#ifdef S_ISSOCK
|
#ifdef S_ISSOCK
|
||||||
if (S_ISSOCK(buf.st_mode)) return ("=");
|
if (S_ISSOCK(buf_.st_mode))
|
||||||
|
return "=";
|
||||||
#endif
|
#endif
|
||||||
if (S_ISREG(buf.st_mode) && (buf.st_mode & (S_IEXEC | S_IXGRP | S_IXOTH)))
|
if (S_ISREG(buf_.st_mode) && (buf_.st_mode & (S_IEXEC | S_IXGRP | S_IXOTH)))
|
||||||
return ("*");
|
return "*";
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -196,20 +207,20 @@ char const * FileInfo::typeIndicator() const
|
|||||||
mode_t FileInfo::getMode() const
|
mode_t FileInfo::getMode() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
|
return buf_.st_mode;
|
||||||
return buf.st_mode;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// should not be in FileInfo
|
// should not be in FileInfo
|
||||||
void FileInfo::modeString(char * szString) const
|
void FileInfo::modeString(char * str) const
|
||||||
{
|
{
|
||||||
szString[0] = typeLetter();
|
str[0] = typeLetter();
|
||||||
flagRWX((buf.st_mode & 0700) << 0, &szString[1]);
|
flagRWX((buf_.st_mode & 0700) << 0, &str[1]);
|
||||||
flagRWX((buf.st_mode & 0070) << 3, &szString[4]);
|
flagRWX((buf_.st_mode & 0070) << 3, &str[4]);
|
||||||
flagRWX((buf.st_mode & 0007) << 6, &szString[7]);
|
flagRWX((buf_.st_mode & 0007) << 6, &str[7]);
|
||||||
setSticky(szString);
|
lyx::Assert(isOK());
|
||||||
szString[10] = 0;
|
setSticky(buf_.st_mode, str);
|
||||||
|
str[10] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -219,168 +230,131 @@ char FileInfo::typeLetter() const
|
|||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
|
|
||||||
#ifdef S_ISBLK
|
#ifdef S_ISBLK
|
||||||
if (S_ISBLK(buf.st_mode)) return 'b';
|
if (S_ISBLK(buf_.st_mode)) return 'b';
|
||||||
#endif
|
#endif
|
||||||
if (S_ISCHR(buf.st_mode)) return 'c';
|
if (S_ISCHR(buf_.st_mode)) return 'c';
|
||||||
if (S_ISDIR(buf.st_mode)) return 'd';
|
if (S_ISDIR(buf_.st_mode)) return 'd';
|
||||||
if (S_ISREG(buf.st_mode)) return '-';
|
if (S_ISREG(buf_.st_mode)) return '-';
|
||||||
#ifdef S_ISFIFO
|
#ifdef S_ISFIFO
|
||||||
if (S_ISFIFO(buf.st_mode)) return 'p';
|
if (S_ISFIFO(buf_.st_mode)) return 'p';
|
||||||
#endif
|
#endif
|
||||||
#ifdef S_ISLNK
|
#ifdef S_ISLNK
|
||||||
if (S_ISLNK(buf.st_mode)) return 'l';
|
if (S_ISLNK(buf_.st_mode)) return 'l';
|
||||||
#endif
|
#endif
|
||||||
#ifdef S_ISSOCK
|
#ifdef S_ISSOCK
|
||||||
if (S_ISSOCK(buf.st_mode)) return 's';
|
if (S_ISSOCK(buf_.st_mode)) return 's';
|
||||||
#endif
|
#endif
|
||||||
#ifdef S_ISMPC
|
#ifdef S_ISMPC
|
||||||
if (S_ISMPC(buf.st_mode)) return 'm';
|
if (S_ISMPC(buf_.st_mode)) return 'm';
|
||||||
#endif
|
#endif
|
||||||
#ifdef S_ISNWK
|
#ifdef S_ISNWK
|
||||||
if (S_ISNWK(buf.st_mode)) return 'n';
|
if (S_ISNWK(buf_.st_mode)) return 'n';
|
||||||
#endif
|
#endif
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// should not be in FileInfo
|
|
||||||
void FileInfo::flagRWX(mode_t i, char * szString) const
|
|
||||||
{
|
|
||||||
szString[0] = (i & S_IRUSR) ? 'r' : '-';
|
|
||||||
szString[1] = (i & S_IWUSR) ? 'w' : '-';
|
|
||||||
szString[2] = (i & S_IXUSR) ? 'x' : '-';
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// should not be in FileInfo
|
|
||||||
void FileInfo::setSticky(char * szString) const
|
|
||||||
{
|
|
||||||
lyx::Assert(isOK());
|
|
||||||
|
|
||||||
#ifdef S_ISUID
|
|
||||||
if (buf.st_mode & S_ISUID) {
|
|
||||||
if (szString[3] != 'x') szString[3] = 'S';
|
|
||||||
else szString[3] = 's';
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#ifdef S_ISGID
|
|
||||||
if (buf.st_mode & S_ISGID) {
|
|
||||||
if (szString[6] != 'x') szString[6] = 'S';
|
|
||||||
else szString[6] = 's';
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#ifdef S_ISVTX
|
|
||||||
if (buf.st_mode & S_ISVTX) {
|
|
||||||
if (szString[9] != 'x') szString[9] = 'T';
|
|
||||||
else szString[9] = 't';
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
time_t FileInfo::getModificationTime() const
|
time_t FileInfo::getModificationTime() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return buf.st_mtime;
|
return buf_.st_mtime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
time_t FileInfo::getAccessTime() const
|
time_t FileInfo::getAccessTime() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return buf.st_atime;
|
return buf_.st_atime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
time_t FileInfo::getStatusChangeTime() const
|
time_t FileInfo::getStatusChangeTime() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return buf.st_ctime;
|
return buf_.st_ctime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
nlink_t FileInfo::getNumberOfLinks() const
|
nlink_t FileInfo::getNumberOfLinks() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return buf.st_nlink;
|
return buf_.st_nlink;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
uid_t FileInfo::getUid() const
|
uid_t FileInfo::getUid() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return buf.st_uid;
|
return buf_.st_uid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
gid_t FileInfo::getGid() const
|
gid_t FileInfo::getGid() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return buf.st_gid;
|
return buf_.st_gid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
off_t FileInfo::getSize() const
|
off_t FileInfo::getSize() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return buf.st_size;
|
return buf_.st_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int FileInfo::getError() const
|
int FileInfo::getError() const
|
||||||
{
|
{
|
||||||
return err;
|
return err_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool FileInfo::isOK() const
|
bool FileInfo::isOK() const
|
||||||
{
|
{
|
||||||
// DEC cxx 6.0 chokes on this bizarre construct (compiler bug)
|
return status_ == 0;
|
||||||
// return (status) ? false : true;
|
|
||||||
// So I replaced it with a simpler one (JMarc)
|
|
||||||
return status == 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool FileInfo::isLink() const
|
bool FileInfo::isLink() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return S_ISLNK(buf.st_mode);
|
return S_ISLNK(buf_.st_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool FileInfo::isRegular() const
|
bool FileInfo::isRegular() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return S_ISREG(buf.st_mode);
|
return S_ISREG(buf_.st_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool FileInfo::isDir() const
|
bool FileInfo::isDir() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return S_ISDIR(buf.st_mode);
|
return S_ISDIR(buf_.st_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool FileInfo::isChar() const
|
bool FileInfo::isChar() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return S_ISCHR(buf.st_mode);
|
return S_ISCHR(buf_.st_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool FileInfo::isBlock() const
|
bool FileInfo::isBlock() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return S_ISBLK(buf.st_mode);
|
return S_ISBLK(buf_.st_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool FileInfo::isFifo() const
|
bool FileInfo::isFifo() const
|
||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
return S_ISFIFO(buf.st_mode);
|
return S_ISFIFO(buf_.st_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -388,7 +362,7 @@ bool FileInfo::isSocket() const
|
|||||||
{
|
{
|
||||||
lyx::Assert(isOK());
|
lyx::Assert(isOK());
|
||||||
#ifdef S_ISSOCK
|
#ifdef S_ISSOCK
|
||||||
return S_ISSOCK(buf.st_mode);
|
return S_ISSOCK(buf_.st_mode);
|
||||||
#else
|
#else
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
@ -399,13 +373,10 @@ bool FileInfo::isSocket() const
|
|||||||
bool FileInfo::access(int p) const
|
bool FileInfo::access(int p) const
|
||||||
{
|
{
|
||||||
// if we don't have a filename we fail
|
// if we don't have a filename we fail
|
||||||
if (fname.empty()) return false;
|
if (fname_.empty())
|
||||||
|
return false;
|
||||||
|
|
||||||
if (::access(fname.c_str(), p) == 0)
|
|
||||||
return true;
|
|
||||||
else {
|
|
||||||
// If we were really kind, we would also tell why
|
// If we were really kind, we would also tell why
|
||||||
// the file access failed.
|
// the file access failed.
|
||||||
return false;
|
return ::access(fname_.c_str(), p) == 0;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -57,17 +57,11 @@ public:
|
|||||||
mode_t getMode() const;
|
mode_t getMode() const;
|
||||||
|
|
||||||
/// Constructs standard mode string (ls style)
|
/// Constructs standard mode string (ls style)
|
||||||
void modeString(char * szString) const;
|
void modeString(char * str) const;
|
||||||
|
|
||||||
/// returns a letter describing a file type (ls style)
|
/// returns a letter describing a file type (ls style)
|
||||||
char typeLetter() const;
|
char typeLetter() const;
|
||||||
|
|
||||||
/// builds 'rwx' string describing file access rights
|
|
||||||
void flagRWX(mode_t i, char * szString) const;
|
|
||||||
|
|
||||||
/// updates mode string to match suid/sgid/sticky bits
|
|
||||||
void setSticky(char * szString) const;
|
|
||||||
|
|
||||||
///
|
///
|
||||||
time_t getModificationTime() const;
|
time_t getModificationTime() const;
|
||||||
|
|
||||||
@ -139,14 +133,15 @@ private:
|
|||||||
void init();
|
void init();
|
||||||
///
|
///
|
||||||
void dostat(bool);
|
void dostat(bool);
|
||||||
|
|
||||||
///
|
///
|
||||||
struct stat buf;
|
struct stat buf_;
|
||||||
///
|
///
|
||||||
int status;
|
int status_;
|
||||||
///
|
///
|
||||||
int err;
|
int err_;
|
||||||
///
|
///
|
||||||
string fname;
|
string fname_;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user