]> git.saurik.com Git - apt.git/blame - methods/gzip.cc
move apts cmdline helper type into -private
[apt.git] / methods / gzip.cc
CommitLineData
92173b19
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
b3d44315 3// $Id: gzip.cc,v 1.17.2.1 2004/01/16 18:58:50 mdz Exp $
92173b19
AL
4/* ######################################################################
5
6 GZip method - Take a file URI in and decompress it into the target
7 file.
8
9 ##################################################################### */
10 /*}}}*/
11// Include Files /*{{{*/
ea542140
DK
12#include <config.h>
13
0ec6b98b 14#include <apt-pkg/configuration.h>
93bf083d 15#include <apt-pkg/acquire-method.h>
453b82a3
DK
16#include <apt-pkg/error.h>
17#include <apt-pkg/fileutl.h>
63b1700f 18#include <apt-pkg/hashes.h>
453b82a3
DK
19#include <apt-pkg/strutl.h>
20#include <apt-pkg/aptconfiguration.h>
92173b19 21
453b82a3 22#include <string.h>
92173b19 23#include <sys/stat.h>
246bbb61 24#include <sys/time.h>
453b82a3
DK
25#include <string>
26#include <vector>
27
d77559ac 28#include <apti18n.h>
92173b19
AL
29 /*}}}*/
30
d6bbcaad
DK
31const char *Prog;
32
93bf083d 33class GzipMethod : public pkgAcqMethod
92173b19 34{
3b302846
DK
35 virtual bool Fetch(FetchItem *Itm) APT_OVERRIDE;
36 virtual bool Configuration(std::string Message) APT_OVERRIDE;
92173b19 37
93bf083d
AL
38 public:
39
874ef47d 40 GzipMethod() : pkgAcqMethod("1.1",SingleInstance | SendConfig) {};
93bf083d 41};
92173b19 42
9983999d
MV
43bool GzipMethod::Configuration(std::string Message)
44{
45 if (pkgAcqMethod::Configuration(Message) == false)
46 return false;
47
48 DropPrivsOrDie();
49
50 return true;
51}
63b1700f 52
93bf083d
AL
53// GzipMethod::Fetch - Decompress the passed URI /*{{{*/
54// ---------------------------------------------------------------------
2204bd80 55/* */
be4401bf 56bool GzipMethod::Fetch(FetchItem *Itm)
92173b19 57{
be4401bf 58 URI Get = Itm->Uri;
8f3ba4e8 59 std::string Path = Get.Host + Get.Path; // To account for relative paths
4509574a 60
b98f2859
AL
61 FetchResult Res;
62 Res.Filename = Itm->DestFile;
63 URIStart(Res);
d6bbcaad
DK
64
65 std::vector<APT::Configuration::Compressor> const compressors = APT::Configuration::getCompressors();
66 std::vector<APT::Configuration::Compressor>::const_iterator compressor = compressors.begin();
67 for (; compressor != compressors.end(); ++compressor)
68 if (compressor->Name == Prog)
69 break;
70 if (compressor == compressors.end())
71 return _error->Error("Extraction of file %s requires unknown compressor %s", Path.c_str(), Prog);
72
63b1700f 73 // Open the source and destination files
af9e40c9 74 FileFd From;
0ec6b98b
DK
75 if (_config->FindB("Method::Compress", false) == false)
76 {
77 From.Open(Path, FileFd::ReadOnly, *compressor);
78 if(From.FileSize() == 0)
79 return _error->Error(_("Empty files can't be valid archives"));
0ec6b98b
DK
80 }
81 else
0ec6b98b 82 From.Open(Path, FileFd::ReadOnly);
af9e40c9
DK
83 if (From.IsOpen() == false || From.Failed() == true)
84 return false;
85
86 FileFd To;
87 if (Itm->DestFile != "/dev/null")
88 {
89 if (_config->FindB("Method::Compress", false) == false)
90 To.Open(Itm->DestFile, FileFd::WriteAtomic);
91 else
92 To.Open(Itm->DestFile, FileFd::WriteOnly | FileFd::Create | FileFd::Empty, *compressor);
93
94 if (To.IsOpen() == false || To.Failed() == true)
95 return false;
96 To.EraseOnFailure();
0ec6b98b 97 }
0ec6b98b 98
0ec6b98b 99
127e6df3 100 // Read data from source, generate checksums and write
9224ce3d 101 Hashes Hash(Itm->ExpectedHashes);
63b1700f 102 bool Failed = false;
af9e40c9 103 Res.Size = 0;
63b1700f
AL
104 while (1)
105 {
106 unsigned char Buffer[4*1024];
650faab0 107 unsigned long long Count = 0;
63b1700f 108
127e6df3 109 if (!From.Read(Buffer,sizeof(Buffer),&Count))
63b1700f 110 {
af9e40c9
DK
111 if (To.IsOpen())
112 To.OpFail();
127e6df3 113 return false;
63b1700f 114 }
63b1700f
AL
115 if (Count == 0)
116 break;
af9e40c9 117 Res.Size += Count;
127e6df3 118
63b1700f 119 Hash.Add(Buffer,Count);
af9e40c9 120 if (To.IsOpen() && To.Write(Buffer,Count) == false)
2204bd80 121 {
678bc33e
AL
122 Failed = true;
123 break;
2204bd80 124 }
63b1700f 125 }
93bf083d 126
127e6df3 127 From.Close();
246bbb61 128 To.Close();
9ce3cfc9 129
63b1700f
AL
130 if (Failed == true)
131 return false;
9ce3cfc9 132
93bf083d 133 // Transfer the modification times
af9e40c9
DK
134 if (Itm->DestFile != "/dev/null")
135 {
136 struct stat Buf;
137 if (stat(Path.c_str(),&Buf) != 0)
138 return _error->Errno("stat",_("Failed to stat"));
139
140 struct timeval times[2];
141 times[0].tv_sec = Buf.st_atime;
142 Res.LastModified = times[1].tv_sec = Buf.st_mtime;
143 times[0].tv_usec = times[1].tv_usec = 0;
144 if (utimes(Itm->DestFile.c_str(), times) != 0)
145 return _error->Errno("utimes",_("Failed to set modification time"));
146 }
9ce3cfc9 147
93bf083d 148 // Return a Done response
a7c835af 149 Res.TakeHashes(Hash);
63b1700f 150
93bf083d 151 URIDone(Res);
93bf083d
AL
152 return true;
153}
154 /*}}}*/
155
65512241 156int main(int, char *argv[])
93bf083d 157{
b25423f6
MZ
158 setlocale(LC_ALL, "");
159
d6bbcaad
DK
160 Prog = strrchr(argv[0],'/');
161 ++Prog;
162
93bf083d 163 GzipMethod Mth;
7b18d559 164
93bf083d 165 return Mth.Run();
92173b19 166}