summaryrefslogtreecommitdiff
path: root/apt-inst/dirstream.h
blob: 53ac24ba5c8c5d02b8220c85edf24d6d57115269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// -*- mode: cpp; mode: fold -*-
// Description								/*{{{*/
// $Id: dirstream.h,v 1.2 2001/02/20 07:03:16 jgg Exp $
/* ######################################################################

   Directory Stream 

   When unpacking the contents of the archive are passed into a directory
   stream class for analysis and processing. The class controls all aspects
   of actually writing the directory stream from disk. The low level
   archive handlers are only responsible for decoding the archive format
   and sending events (via method calls) to the specified directory
   stream.
   
   When unpacking a real file the archive handler is passed back a file 
   handle to write the data to, this is to support strange 
   archives+unpacking methods. If that fd is -1 then the file data is 
   simply ignored.
   
   The provided defaults do the 'Right Thing' for a normal unpacking
   process (ie 'tar')
   
   ##################################################################### */
									/*}}}*/
#ifndef PKGLIB_DIRSTREAM_H
#define PKGLIB_DIRSTREAM_H

#include <apt-pkg/macros.h>

class pkgDirStream
{ 
   public:

   // All possible information about a component
   struct Item
   {
      enum Type_t {File, HardLink, SymbolicLink, CharDevice, BlockDevice,
	           Directory, FIFO} Type;
      char *Name;
      char *LinkTarget;
#if APT_PKG_ABI >= 413
      unsigned long long Size;
#endif
      unsigned long Mode;
      unsigned long UID;
      unsigned long GID;
#if APT_PKG_ABI < 413
      unsigned long Size;
#endif
      unsigned long MTime;
      unsigned long Major;
      unsigned long Minor;
   };
   
   virtual bool DoItem(Item &Itm,int &Fd);
   virtual bool Fail(Item &Itm,int Fd);
   virtual bool FinishedFile(Item &Itm,int Fd);
#if APT_PKG_ABI >= 413
   virtual bool Process(Item &/*Itm*/,const unsigned char * /*Data*/,
			unsigned long long /*Size*/,unsigned long long /*Pos*/) {return true;};
#else
   virtual bool Process(Item &/*Itm*/,const unsigned char * /*Data*/,
			unsigned long /*Size*/,unsigned long /*Pos*/) {return true;};
#endif
   virtual ~pkgDirStream() {};   
};

#endif