Source record file list parsing
[ntk/apt.git] / apt-pkg / contrib / fileutl.h
CommitLineData
578bfd0a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
6d5dd02a 3// $Id: fileutl.h,v 1.15 1999/03/15 08:10:39 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 30class 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
AL
47 unsigned long Size();
48 bool Close();
49
50 // Simple manipulators
51 inline int Fd() {return iFd;};
52 inline bool IsOpen() {return iFd >= 0;};
53 inline bool Failed() {return (Flags & Fail) == Fail;};
54 inline void EraseOnFailure() {Flags |= DelOnFail;};
55 inline void OpFail() {Flags |= Fail;};
c7b5ce1c
AL
56 inline string &Name() {return FileName;};
57
8e06abb2
AL
58 FileFd(string FileName,OpenMode Mode,unsigned long Perms = 0666);
59 FileFd(int Fd) : iFd(Fd), Flags(AutoClose) {};
60 FileFd(int Fd,bool) : iFd(Fd), Flags(0) {};
61 virtual ~FileFd();
578bfd0a
AL
62};
63
8b89e57f 64bool CopyFile(FileFd &From,FileFd &To);
578bfd0a
AL
65int GetLock(string File,bool Errors = true);
66bool FileExists(string File);
67string SafeGetCWD();
3b5421b4
AL
68void SetCloseExec(int Fd,bool Close);
69void SetNonBlock(int Fd,bool Block);
1084d58a 70bool WaitFd(int Fd,bool write = false,unsigned long timeout = 0);
578bfd0a 71
8ce4327b
AL
72// File string manipulators
73string flNotDir(string File);
d38b7b3d 74string flNotFile(string File);
8ce4327b 75
578bfd0a 76#endif