]>
git.saurik.com Git - apt.git/blob - ftparchive/multicompress.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: multicompress.h,v 1.2 2001/02/20 07:03:18 jgg Exp $
4 /* ######################################################################
8 Multiple output class. Takes a single FILE* and writes it simultaneously
9 to many compressed files. Then checks if the resulting output is
10 different from any previous output and overwrites the old files. Care is
11 taken to ensure that the new files are not generally readable while they
14 ##################################################################### */
16 #ifndef MULTICOMPRESS_H
17 #define MULTICOMPRESS_H
19 #include <apt-pkg/fileutl.h>
20 #include <apt-pkg/aptconfiguration.h>
24 #include <sys/types.h>
32 APT::Configuration::Compressor CompressProg
;
44 bool OpenCompress(APT::Configuration::Compressor
const &Prog
,
45 pid_t
&Pid
,int const &FileFd
, int &OutFd
,bool const &Comp
);
46 bool Child(int const &Fd
);
52 // The FD to write to for compression.
54 unsigned long UpdateMTime
;
56 bool Finalize(unsigned long long &OutSize
);
57 bool OpenOld(int &Fd
,pid_t
&Proc
);
58 bool CloseOld(int Fd
,pid_t Proc
);
59 static bool GetStat(std::string
const &Output
,std::string
const &Compress
,struct stat
&St
);
61 MultiCompress(std::string
const &Output
,std::string
const &Compress
,
62 mode_t
const &Permissions
, bool const &Write
= true);