Small linker changes
[ntk/apt.git] / apt-pkg / contrib / fileutl.h
CommitLineData
578bfd0a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
c7b5ce1c 3// $Id: fileutl.h,v 1.11 1998/12/08 05:24:43 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 /*}}}*/
21// Header section: pkglib
22#ifndef PKGLIB_FILEUTL_H
23#define PKGLIB_FILEUTL_H
24
6c139d6e 25#ifdef __GNUG__
094a497d 26#pragma interface "apt-pkg/fileutl.h"
6c139d6e
AL
27#endif
28
578bfd0a
AL
29#include <string>
30
8e06abb2 31class FileFd
578bfd0a
AL
32{
33 protected:
34 int iFd;
35
36 enum LocalFlags {AutoClose = (1<<0),Fail = (1<<1),DelOnFail = (1<<2)};
37 unsigned long Flags;
38 string FileName;
39
40 public:
d38b7b3d 41 enum OpenMode {ReadOnly,WriteEmpty,WriteExists,WriteAny};
578bfd0a
AL
42
43 bool Read(void *To,unsigned long Size);
a05599f1 44 bool Write(const void *From,unsigned long Size);
578bfd0a
AL
45 bool Seek(unsigned long To);
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;};
c7b5ce1c
AL
55 inline string &Name() {return FileName;};
56
8e06abb2
AL
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();
578bfd0a
AL
61};
62
8b89e57f 63bool CopyFile(FileFd &From,FileFd &To);
578bfd0a
AL
64int GetLock(string File,bool Errors = true);
65bool FileExists(string File);
66string SafeGetCWD();
3b5421b4
AL
67void SetCloseExec(int Fd,bool Close);
68void SetNonBlock(int Fd,bool Block);
69bool WaitFd(int Fd);
578bfd0a 70
8ce4327b
AL
71// File string manipulators
72string flNotDir(string File);
d38b7b3d 73string flNotFile(string File);
8ce4327b 74
578bfd0a 75#endif