]> git.saurik.com Git - apt.git/blame_incremental - apt-pkg/contrib/fileutl.h
modified WaitFd in fileutl to support passing a timeout
[apt.git] / apt-pkg / contrib / fileutl.h
... / ...
CommitLineData
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3// $Id: fileutl.h,v 1.13 1999/02/12 20:47:41 doogie 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
30class FileFd
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:
40 enum OpenMode {ReadOnly,WriteEmpty,WriteExists,WriteAny};
41
42 bool Read(void *To,unsigned long Size);
43 bool Write(const void *From,unsigned long Size);
44 bool Seek(unsigned long To);
45 unsigned long Tell();
46 unsigned long Size();
47 bool Close();
48
49 // Simple manipulators
50 inline int Fd() {return iFd;};
51 inline bool IsOpen() {return iFd >= 0;};
52 inline bool Failed() {return (Flags & Fail) == Fail;};
53 inline void EraseOnFailure() {Flags |= DelOnFail;};
54 inline void OpFail() {Flags |= Fail;};
55 inline string &Name() {return FileName;};
56
57 FileFd(string FileName,OpenMode Mode,unsigned long Perms = 0666);
58 FileFd(int Fd) : iFd(Fd), Flags(AutoClose) {};
59 FileFd(int Fd,bool) : iFd(Fd), Flags(0) {};
60 virtual ~FileFd();
61};
62
63bool CopyFile(FileFd &From,FileFd &To);
64int GetLock(string File,bool Errors = true);
65bool FileExists(string File);
66string SafeGetCWD();
67void SetCloseExec(int Fd,bool Close);
68void SetNonBlock(int Fd,bool Block);
69bool WaitFd(int Fd, bool write = false, long timeout = 0);
70
71// File string manipulators
72string flNotDir(string File);
73string flNotFile(string File);
74
75#endif