// -*- mode: cpp; mode: fold -*- // Description /*{{{*/ // $Id: fileutl.cc,v 1.16 1998/11/27 04:20:52 jgg Exp $ /* ###################################################################### File Utilities CopyFile - Buffered copy of a single file GetLock - dpkg compatible lock file manipulation (fcntl) This source is placed in the Public Domain, do with it what you will It was originally written by Jason Gunthorpe. ##################################################################### */ /*}}}*/ // Include Files /*{{{*/ #ifdef __GNUG__ #pragma implementation "apt-pkg/fileutl.h" #endif #include #include #include #include #include #include /*}}}*/ // CopyFile - Buffered copy of a file /*{{{*/ // --------------------------------------------------------------------- /* The caller is expected to set things so that failure causes erasure */ bool CopyFile(FileFd &From,FileFd &To) { if (From.IsOpen() == false || To.IsOpen() == false) return false; // Buffered copy between fds unsigned char *Buf = new unsigned char[64000]; long Size; while ((Size = read(From.Fd(),Buf,64000)) > 0) { if (To.Write(Buf,Size) == false) { delete [] Buf; return false; } } delete [] Buf; return true; } /*}}}*/ // GetLock - Gets a lock file /*{{{*/ // --------------------------------------------------------------------- /* This will create an empty file of the given name and lock it. Once this is done all other calls to GetLock in any other process will fail with -1. The return result is the fd of the file, the call should call close at some time. */ int GetLock(string File,bool Errors) { int FD = open(File.c_str(),O_RDWR | O_CREAT | O_TRUNC,0640); if (FD < 0) { if (Errors == true) _error->Errno("open","Could not open lock file %s",File.c_str()); return -1; } // Aquire a write lock struct flock fl; fl.l_type= F_WRLCK; fl.l_whence= SEEK_SET; fl.l_start= 0; fl.l_len= 1; if (fcntl(FD,F_SETLK,&fl) == -1) { if (Errors == true) _error->Errno("open","Could not get lock %s",File.c_str()); close(FD); return -1; } return FD; } /*}}}*/ // FileExists - Check if a file exists /*{{{*/ // --------------------------------------------------------------------- /* */ bool FileExists(string File) { struct stat Buf; if (stat(File.c_str(),&Buf) != 0) return false; return true; } /*}}}*/ // SafeGetCWD - This is a safer getcwd that returns a dynamic string /*{{{*/ // --------------------------------------------------------------------- /* We return / on failure. */ string SafeGetCWD() { // Stash the current dir. char S[300]; S[0] = 0; if (getcwd(S,sizeof(S)) == 0) return "/"; return S; } /*}}}*/ // flNotDir - Strip the directory from the filename /*{{{*/ // --------------------------------------------------------------------- /* */ string flNotDir(string File) { string::size_type Res = File.rfind('/'); if (Res == string::npos) return File; Res++; return string(File,Res,Res - File.length()); } /*}}}*/ // flNotFile - Strip the file from the directory name /*{{{*/ // --------------------------------------------------------------------- /* */ string flNotFile(string File) { string::size_type Res = File.rfind('/'); if (Res == string::npos) return File; Res++; return string(File,0,Res); } /*}}}*/ // SetCloseExec - Set the close on exec flag /*{{{*/ // --------------------------------------------------------------------- /* */ void SetCloseExec(int Fd,bool Close) { if (fcntl(Fd,F_SETFD,(Close == false)?0:FD_CLOEXEC) != 0) { cerr << "FATAL -> Could not set close on exec " << strerror(errno) << endl; exit(100); } } /*}}}*/ // SetNonBlock - Set the nonblocking flag /*{{{*/ // --------------------------------------------------------------------- /* */ void SetNonBlock(int Fd,bool Block) { int Flags = fcntl(Fd,F_GETFL) & (~O_NONBLOCK); if (fcntl(Fd,F_SETFL,Flags | ((Block == false)?0:O_NONBLOCK)) != 0) { cerr << "FATAL -> Could not set non-blocking flag " << strerror(errno) << endl; exit(100); } } /*}}}*/ // WaitFd - Wait for a FD to become readable /*{{{*/ // --------------------------------------------------------------------- /* This waits for a FD to become readable using select. It is usefull for applications making use of non-blocking sockets. */ bool WaitFd(int Fd) { fd_set Set; FD_ZERO(&Set); FD_SET(Fd,&Set); if (select(Fd+1,&Set,0,0,0) <= 0) return false; return true; } /*}}}*/ // FileFd::FileFd - Open a file /*{{{*/ // --------------------------------------------------------------------- /* The most commonly used open mode combinations are given with Mode */ FileFd::FileFd(string FileName,OpenMode Mode, unsigned long Perms) { Flags = AutoClose; switch (Mode) { case ReadOnly: iFd = open(FileName.c_str(),O_RDONLY); break; case WriteEmpty: { struct stat Buf; if (stat(FileName.c_str(),&Buf) == 0 && S_ISLNK(Buf.st_mode)) unlink(FileName.c_str()); iFd = open(FileName.c_str(),O_RDWR | O_CREAT | O_TRUNC,Perms); break; } case WriteExists: iFd = open(FileName.c_str(),O_RDWR); break; case WriteAny: iFd = open(FileName.c_str(),O_RDWR | O_CREAT,Perms); break; } if (iFd < 0) _error->Errno("open","Could not open file %s",FileName.c_str()); else { this->FileName = FileName; SetCloseExec(iFd,true); } } /*}}}*/ // FileFd::~File - Closes the file /*{{{*/ // --------------------------------------------------------------------- /* If the proper modes are selected then we close the Fd and possibly unlink the file on error. */ FileFd::~FileFd() { Close(); } /*}}}*/ // FileFd::Read - Read a bit of the file /*{{{*/ // --------------------------------------------------------------------- /* */ bool FileFd::Read(void *To,unsigned long Size) { if (read(iFd,To,Size) != (signed)Size) { Flags |= Fail; return _error->Errno("read","Read error"); } return true; } /*}}}*/ // FileFd::Write - Write to the file /*{{{*/ // --------------------------------------------------------------------- /* */ bool FileFd::Write(const void *From,unsigned long Size) { if (write(iFd,From,Size) != (signed)Size) { Flags |= Fail; return _error->Errno("write","Write error"); } return true; } /*}}}*/ // FileFd::Seek - Seek in the file /*{{{*/ // --------------------------------------------------------------------- /* */ bool FileFd::Seek(unsigned long To) { if (lseek(iFd,To,SEEK_SET) != (signed)To) { Flags |= Fail; return _error->Error("Unable to seek to %u",To); } return true; } /*}}}*/ // FileFd::Size - Return the size of the file /*{{{*/ // --------------------------------------------------------------------- /* */ unsigned long FileFd::Size() { struct stat Buf; if (fstat(iFd,&Buf) != 0) return _error->Errno("fstat","Unable to determine the file size"); return Buf.st_size; } /*}}}*/ // FileFd::Close - Close the file if the close flag is set /*{{{*/ // --------------------------------------------------------------------- /* */ bool FileFd::Close() { bool Res = true; if ((Flags & AutoClose) == AutoClose) if (iFd >= 0 && close(iFd) != 0) Res &= _error->Errno("close","Problem closing the file"); iFd = -1; if ((Flags & Fail) == Fail && (Flags & DelOnFail) == DelOnFail && FileName.empty() == false) if (unlink(FileName.c_str()) != 0) Res &= _error->Warning("unlnk","Problem unlinking the file"); return Res; } /*}}}*/