]>
Commit | Line | Data |
---|---|---|
578bfd0a AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
13d87e2e | 3 | // $Id: fileutl.h,v 1.19 1999/07/11 22:42:32 jgg Exp $ |
578bfd0a AL |
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 | /*}}}*/ | |
578bfd0a AL |
21 | #ifndef PKGLIB_FILEUTL_H |
22 | #define PKGLIB_FILEUTL_H | |
23 | ||
6c139d6e | 24 | #ifdef __GNUG__ |
094a497d | 25 | #pragma interface "apt-pkg/fileutl.h" |
6c139d6e AL |
26 | #endif |
27 | ||
578bfd0a AL |
28 | #include <string> |
29 | ||
8e06abb2 | 30 | class FileFd |
578bfd0a AL |
31 | { |
32 | protected: | |
33 | int iFd; | |
34 | ||
35 | enum LocalFlags {AutoClose = (1<<0),Fail = (1<<1),DelOnFail = (1<<2)}; | |
36 | unsigned long Flags; | |
37 | string FileName; | |
38 | ||
39 | public: | |
d38b7b3d | 40 | enum OpenMode {ReadOnly,WriteEmpty,WriteExists,WriteAny}; |
578bfd0a AL |
41 | |
42 | bool Read(void *To,unsigned long Size); | |
a05599f1 | 43 | bool Write(const void *From,unsigned long Size); |
578bfd0a | 44 | bool Seek(unsigned long To); |
6d5dd02a | 45 | bool Truncate(unsigned long To); |
7f25bdff | 46 | unsigned long Tell(); |
578bfd0a | 47 | unsigned long Size(); |
13d87e2e | 48 | bool Open(string FileName,OpenMode Mode,unsigned long Perms = 0666); |
578bfd0a AL |
49 | bool Close(); |
50 | ||
51 | // Simple manipulators | |
52 | inline int Fd() {return iFd;}; | |
869f717a | 53 | inline void Fd(int fd) {iFd = fd;}; |
578bfd0a AL |
54 | inline bool IsOpen() {return iFd >= 0;}; |
55 | inline bool Failed() {return (Flags & Fail) == Fail;}; | |
56 | inline void EraseOnFailure() {Flags |= DelOnFail;}; | |
57 | inline void OpFail() {Flags |= Fail;}; | |
c7b5ce1c AL |
58 | inline string &Name() {return FileName;}; |
59 | ||
13d87e2e AL |
60 | FileFd(string FileName,OpenMode Mode,unsigned long Perms = 0666) : iFd(-1), |
61 | Flags(0) | |
62 | { | |
63 | Open(FileName,Mode,Perms); | |
64 | }; | |
36375005 | 65 | FileFd(int Fd = -1) : iFd(Fd), Flags(AutoClose) {}; |
8e06abb2 AL |
66 | FileFd(int Fd,bool) : iFd(Fd), Flags(0) {}; |
67 | virtual ~FileFd(); | |
578bfd0a AL |
68 | }; |
69 | ||
8b89e57f | 70 | bool CopyFile(FileFd &From,FileFd &To); |
578bfd0a AL |
71 | int GetLock(string File,bool Errors = true); |
72 | bool FileExists(string File); | |
73 | string SafeGetCWD(); | |
3b5421b4 AL |
74 | void SetCloseExec(int Fd,bool Close); |
75 | void SetNonBlock(int Fd,bool Block); | |
1084d58a | 76 | bool WaitFd(int Fd,bool write = false,unsigned long timeout = 0); |
54676e1a | 77 | int ExecFork(); |
578bfd0a | 78 | |
8ce4327b AL |
79 | // File string manipulators |
80 | string flNotDir(string File); | |
d38b7b3d | 81 | string flNotFile(string File); |
8ce4327b | 82 | |
578bfd0a | 83 | #endif |