1 // -*- mode: cpp; mode: fold -*-
3 // $Id: gzip.cc,v 1.17.2.1 2004/01/16 18:58:50 mdz Exp $
4 /* ######################################################################
6 GZip method - Take a file URI in and decompress it into the target
9 ##################################################################### */
11 // Include Files /*{{{*/
14 #include <apt-pkg/configuration.h>
15 #include <apt-pkg/acquire-method.h>
16 #include <apt-pkg/error.h>
17 #include <apt-pkg/fileutl.h>
18 #include <apt-pkg/hashes.h>
19 #include <apt-pkg/strutl.h>
20 #include <apt-pkg/aptconfiguration.h>
33 class GzipMethod
: public pkgAcqMethod
35 virtual bool Fetch(FetchItem
*Itm
);
39 GzipMethod() : pkgAcqMethod("1.1",SingleInstance
| SendConfig
) {};
43 // GzipMethod::Fetch - Decompress the passed URI /*{{{*/
44 // ---------------------------------------------------------------------
46 bool GzipMethod::Fetch(FetchItem
*Itm
)
49 std::string Path
= Get
.Host
+ Get
.Path
; // To account for relative paths
52 Res
.Filename
= Itm
->DestFile
;
55 std::vector
<APT::Configuration::Compressor
> const compressors
= APT::Configuration::getCompressors();
56 std::vector
<APT::Configuration::Compressor
>::const_iterator compressor
= compressors
.begin();
57 for (; compressor
!= compressors
.end(); ++compressor
)
58 if (compressor
->Name
== Prog
)
60 if (compressor
== compressors
.end())
61 return _error
->Error("Extraction of file %s requires unknown compressor %s", Path
.c_str(), Prog
);
63 // Open the source and destination files
65 if (_config
->FindB("Method::Compress", false) == false)
67 From
.Open(Path
, FileFd::ReadOnly
, *compressor
);
68 if(From
.FileSize() == 0)
69 return _error
->Error(_("Empty files can't be valid archives"));
70 To
.Open(Itm
->DestFile
, FileFd::WriteAtomic
);
74 From
.Open(Path
, FileFd::ReadOnly
);
75 To
.Open(Itm
->DestFile
, FileFd::WriteOnly
| FileFd::Create
| FileFd::Empty
, *compressor
);
79 if (From
.IsOpen() == false || From
.Failed() == true ||
80 To
.IsOpen() == false || To
.Failed() == true)
83 // Read data from source, generate checksums and write
88 unsigned char Buffer
[4*1024];
89 unsigned long long Count
= 0;
91 if (!From
.Read(Buffer
,sizeof(Buffer
),&Count
))
99 Hash
.Add(Buffer
,Count
);
100 if (To
.Write(Buffer
,Count
) == false)
108 Res
.Size
= To
.FileSize();
114 // Transfer the modification times
116 if (stat(Path
.c_str(),&Buf
) != 0)
117 return _error
->Errno("stat",_("Failed to stat"));
119 struct timeval times
[2];
120 times
[0].tv_sec
= Buf
.st_atime
;
121 Res
.LastModified
= times
[1].tv_sec
= Buf
.st_mtime
;
122 times
[0].tv_usec
= times
[1].tv_usec
= 0;
123 if (utimes(Itm
->DestFile
.c_str(), times
) != 0)
124 return _error
->Errno("utimes",_("Failed to set modification time"));
126 // Return a Done response
127 Res
.TakeHashes(Hash
);
134 int main(int, char *argv
[])
136 setlocale(LC_ALL
, "");
138 Prog
= strrchr(argv
[0],'/');
143 Mth
.DropPrivsOrDie();