]>
Commit | Line | Data |
---|---|---|
92173b19 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
4509574a | 3 | // $Id: gzip.cc,v 1.10 2000/03/18 07:39:33 jgg 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 /*{{{*/ | |
12 | #include <apt-pkg/fileutl.h> | |
13 | #include <apt-pkg/error.h> | |
93bf083d | 14 | #include <apt-pkg/acquire-method.h> |
cdcc6d34 | 15 | #include <apt-pkg/strutl.h> |
92173b19 AL |
16 | |
17 | #include <sys/stat.h> | |
18 | #include <unistd.h> | |
19 | #include <utime.h> | |
92173b19 AL |
20 | #include <stdio.h> |
21 | /*}}}*/ | |
22 | ||
93bf083d | 23 | class GzipMethod : public pkgAcqMethod |
92173b19 | 24 | { |
be4401bf | 25 | virtual bool Fetch(FetchItem *Itm); |
92173b19 | 26 | |
93bf083d AL |
27 | public: |
28 | ||
29 | GzipMethod() : pkgAcqMethod("1.0",SingleInstance | SendConfig) {}; | |
30 | }; | |
92173b19 | 31 | |
93bf083d AL |
32 | // GzipMethod::Fetch - Decompress the passed URI /*{{{*/ |
33 | // --------------------------------------------------------------------- | |
34 | /* */ | |
be4401bf | 35 | bool GzipMethod::Fetch(FetchItem *Itm) |
92173b19 | 36 | { |
be4401bf | 37 | URI Get = Itm->Uri; |
4509574a AL |
38 | string Path = Get.Host + Get.Path; // To account for relative paths |
39 | ||
b98f2859 AL |
40 | FetchResult Res; |
41 | Res.Filename = Itm->DestFile; | |
42 | URIStart(Res); | |
43 | ||
93bf083d | 44 | // Open the source and destintation files |
4509574a | 45 | FileFd From(Path,FileFd::ReadOnly); |
be4401bf | 46 | FileFd To(Itm->DestFile,FileFd::WriteEmpty); |
93bf083d AL |
47 | To.EraseOnFailure(); |
48 | if (_error->PendingError() == true) | |
49 | return false; | |
92173b19 | 50 | |
93bf083d AL |
51 | // Fork gzip |
52 | int Process = fork(); | |
53 | if (Process < 0) | |
54 | return _error->Errno("fork","Couldn't fork gzip"); | |
55 | ||
56 | // The child | |
57 | if (Process == 0) | |
92173b19 | 58 | { |
93bf083d AL |
59 | dup2(From.Fd(),STDIN_FILENO); |
60 | dup2(To.Fd(),STDOUT_FILENO); | |
61 | From.Close(); | |
62 | To.Close(); | |
63 | SetCloseExec(STDIN_FILENO,false); | |
64 | SetCloseExec(STDOUT_FILENO,false); | |
65 | ||
66 | const char *Args[3]; | |
67 | Args[0] = _config->Find("Dir::bin::gzip","gzip").c_str(); | |
68 | Args[1] = "-d"; | |
69 | Args[2] = 0; | |
70 | execvp(Args[0],(char **)Args); | |
71 | exit(100); | |
72 | } | |
73 | From.Close(); | |
74 | ||
75 | // Wait for gzip to finish | |
1ae93c94 | 76 | if (ExecWait(Process,_config->Find("Dir::bin::gzip","gzip").c_str(),false) == false) |
93bf083d AL |
77 | { |
78 | To.OpFail(); | |
1ae93c94 AL |
79 | return false; |
80 | } | |
81 | ||
93bf083d AL |
82 | To.Close(); |
83 | ||
84 | // Transfer the modification times | |
85 | struct stat Buf; | |
4509574a | 86 | if (stat(Path.c_str(),&Buf) != 0) |
93bf083d | 87 | return _error->Errno("stat","Failed to stat"); |
92173b19 | 88 | |
93bf083d AL |
89 | struct utimbuf TimeBuf; |
90 | TimeBuf.actime = Buf.st_atime; | |
91 | TimeBuf.modtime = Buf.st_mtime; | |
be4401bf | 92 | if (utime(Itm->DestFile.c_str(),&TimeBuf) != 0) |
93bf083d | 93 | return _error->Errno("utime","Failed to set modification time"); |
92173b19 | 94 | |
18ef0a78 AL |
95 | if (stat(Itm->DestFile.c_str(),&Buf) != 0) |
96 | return _error->Errno("stat","Failed to stat"); | |
97 | ||
93bf083d | 98 | // Return a Done response |
93bf083d | 99 | Res.LastModified = Buf.st_mtime; |
18ef0a78 | 100 | Res.Size = Buf.st_size; |
93bf083d | 101 | URIDone(Res); |
92173b19 | 102 | |
93bf083d AL |
103 | return true; |
104 | } | |
105 | /*}}}*/ | |
106 | ||
107 | int main() | |
108 | { | |
109 | GzipMethod Mth; | |
110 | return Mth.Run(); | |
92173b19 | 111 | } |