]>
git.saurik.com Git - apt.git/blob - methods/gzip.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: gzip.cc,v 1.10 2000/03/18 07:39:33 jgg Exp $
4 /* ######################################################################
6 GZip method - Take a file URI in and decompress it into the target
9 ##################################################################### */
11 // Include Files /*{{{*/
12 #include <apt-pkg/fileutl.h>
13 #include <apt-pkg/error.h>
14 #include <apt-pkg/acquire-method.h>
15 #include <apt-pkg/strutl.h>
23 class GzipMethod
: public pkgAcqMethod
25 virtual bool Fetch(FetchItem
*Itm
);
29 GzipMethod() : pkgAcqMethod("1.0",SingleInstance
| SendConfig
) {};
32 // GzipMethod::Fetch - Decompress the passed URI /*{{{*/
33 // ---------------------------------------------------------------------
35 bool GzipMethod::Fetch(FetchItem
*Itm
)
38 string Path
= Get
.Host
+ Get
.Path
; // To account for relative paths
41 Res
.Filename
= Itm
->DestFile
;
44 // Open the source and destintation files
45 FileFd
From(Path
,FileFd::ReadOnly
);
46 FileFd
To(Itm
->DestFile
,FileFd::WriteEmpty
);
48 if (_error
->PendingError() == true)
54 return _error
->Errno("fork","Couldn't fork gzip");
59 dup2(From
.Fd(),STDIN_FILENO
);
60 dup2(To
.Fd(),STDOUT_FILENO
);
63 SetCloseExec(STDIN_FILENO
,false);
64 SetCloseExec(STDOUT_FILENO
,false);
67 Args
[0] = _config
->Find("Dir::bin::gzip","gzip").c_str();
70 execvp(Args
[0],(char **)Args
);
75 // Wait for gzip to finish
76 if (ExecWait(Process
,_config
->Find("Dir::bin::gzip","gzip").c_str(),false) == false)
84 // Transfer the modification times
86 if (stat(Path
.c_str(),&Buf
) != 0)
87 return _error
->Errno("stat","Failed to stat");
89 struct utimbuf TimeBuf
;
90 TimeBuf
.actime
= Buf
.st_atime
;
91 TimeBuf
.modtime
= Buf
.st_mtime
;
92 if (utime(Itm
->DestFile
.c_str(),&TimeBuf
) != 0)
93 return _error
->Errno("utime","Failed to set modification time");
95 if (stat(Itm
->DestFile
.c_str(),&Buf
) != 0)
96 return _error
->Errno("stat","Failed to stat");
98 // Return a Done response
99 Res
.LastModified
= Buf
.st_mtime
;
100 Res
.Size
= Buf
.st_size
;