]>
Commit | Line | Data |
---|---|---|
1 | // -*- mode: cpp; mode: fold -*- | |
2 | // Description /*{{{*/ | |
3 | // $Id: fileutl.h,v 1.22 1999/09/30 06:30:34 jgg Exp $ | |
4 | /* ###################################################################### | |
5 | ||
6 | File Utilities | |
7 | ||
8 | CopyFile - Buffered copy of a single file | |
9 | GetLock - dpkg compatible lock file manipulation (fcntl) | |
10 | FileExists - Returns true if the file exists | |
11 | SafeGetCWD - Returns the CWD in a string with overrun protection | |
12 | ||
13 | The file class is a handy abstraction for various functions+classes | |
14 | that need to accept filenames. | |
15 | ||
16 | This source is placed in the Public Domain, do with it what you will | |
17 | It was originally written by Jason Gunthorpe. | |
18 | ||
19 | ##################################################################### */ | |
20 | /*}}}*/ | |
21 | #ifndef PKGLIB_FILEUTL_H | |
22 | #define PKGLIB_FILEUTL_H | |
23 | ||
24 | #ifdef __GNUG__ | |
25 | #pragma interface "apt-pkg/fileutl.h" | |
26 | #endif | |
27 | ||
28 | #include <string> | |
29 | ||
30 | class FileFd | |
31 | { | |
32 | protected: | |
33 | int iFd; | |
34 | ||
35 | enum LocalFlags {AutoClose = (1<<0),Fail = (1<<1),DelOnFail = (1<<2), | |
36 | HitEof = (1<<3)}; | |
37 | unsigned long Flags; | |
38 | string FileName; | |
39 | ||
40 | public: | |
41 | enum OpenMode {ReadOnly,WriteEmpty,WriteExists,WriteAny}; | |
42 | ||
43 | bool Read(void *To,unsigned long Size,bool AllowEof = false); | |
44 | bool Write(const void *From,unsigned long Size); | |
45 | bool Seek(unsigned long To); | |
46 | bool Skip(unsigned long To); | |
47 | bool Truncate(unsigned long To); | |
48 | unsigned long Tell(); | |
49 | unsigned long Size(); | |
50 | bool Open(string FileName,OpenMode Mode,unsigned long Perms = 0666); | |
51 | bool Close(); | |
52 | ||
53 | // Simple manipulators | |
54 | inline int Fd() {return iFd;}; | |
55 | inline void Fd(int fd) {iFd = fd;}; | |
56 | inline bool IsOpen() {return iFd >= 0;}; | |
57 | inline bool Failed() {return (Flags & Fail) == Fail;}; | |
58 | inline void EraseOnFailure() {Flags |= DelOnFail;}; | |
59 | inline void OpFail() {Flags |= Fail;}; | |
60 | inline bool Eof() {return (Flags & HitEof) == HitEof;}; | |
61 | inline string &Name() {return FileName;}; | |
62 | ||
63 | FileFd(string FileName,OpenMode Mode,unsigned long Perms = 0666) : iFd(-1), | |
64 | Flags(0) | |
65 | { | |
66 | Open(FileName,Mode,Perms); | |
67 | }; | |
68 | FileFd(int Fd = -1) : iFd(Fd), Flags(AutoClose) {}; | |
69 | FileFd(int Fd,bool) : iFd(Fd), Flags(0) {}; | |
70 | virtual ~FileFd(); | |
71 | }; | |
72 | ||
73 | bool CopyFile(FileFd &From,FileFd &To); | |
74 | int GetLock(string File,bool Errors = true); | |
75 | bool FileExists(string File); | |
76 | string SafeGetCWD(); | |
77 | void SetCloseExec(int Fd,bool Close); | |
78 | void SetNonBlock(int Fd,bool Block); | |
79 | bool WaitFd(int Fd,bool write = false,unsigned long timeout = 0); | |
80 | int ExecFork(); | |
81 | bool ExecWait(int Pid,const char *Name,bool Reap = false); | |
82 | ||
83 | // File string manipulators | |
84 | string flNotDir(string File); | |
85 | string flNotFile(string File); | |
86 | string flNoLink(string File); | |
87 | ||
88 | #endif |