]>
Commit | Line | Data |
---|---|---|
561ab0db AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
b3d44315 | 3 | // $Id: copy.cc,v 1.7.2.1 2004/01/16 18:58:50 mdz Exp $ |
561ab0db AL |
4 | /* ###################################################################### |
5 | ||
6 | Copy URI - This method takes a uri like a file: uri and copies it | |
92173b19 | 7 | to the destination file. |
561ab0db AL |
8 | |
9 | ##################################################################### */ | |
10 | /*}}}*/ | |
11 | // Include Files /*{{{*/ | |
ea542140 DK |
12 | #include <config.h> |
13 | ||
561ab0db | 14 | #include <apt-pkg/fileutl.h> |
93bf083d | 15 | #include <apt-pkg/acquire-method.h> |
561ab0db | 16 | #include <apt-pkg/error.h> |
95f45727 | 17 | #include <apt-pkg/hashes.h> |
561ab0db AL |
18 | |
19 | #include <sys/stat.h> | |
92173b19 | 20 | #include <utime.h> |
561ab0db | 21 | #include <unistd.h> |
d77559ac | 22 | #include <apti18n.h> |
561ab0db AL |
23 | /*}}}*/ |
24 | ||
93bf083d AL |
25 | class CopyMethod : public pkgAcqMethod |
26 | { | |
be4401bf | 27 | virtual bool Fetch(FetchItem *Itm); |
93bf083d AL |
28 | |
29 | public: | |
30 | ||
31 | CopyMethod() : pkgAcqMethod("1.0",SingleInstance) {}; | |
32 | }; | |
33 | ||
34 | // CopyMethod::Fetch - Fetch a file /*{{{*/ | |
561ab0db AL |
35 | // --------------------------------------------------------------------- |
36 | /* */ | |
be4401bf | 37 | bool CopyMethod::Fetch(FetchItem *Itm) |
561ab0db | 38 | { |
be4401bf | 39 | URI Get = Itm->Uri; |
93bf083d AL |
40 | string File = Get.Path; |
41 | ||
91cb4c6b AL |
42 | // Stat the file and send a start message |
43 | struct stat Buf; | |
44 | if (stat(File.c_str(),&Buf) != 0) | |
dc738e7a | 45 | return _error->Errno("stat",_("Failed to stat")); |
91cb4c6b AL |
46 | |
47 | // Forumulate a result and send a start message | |
48 | FetchResult Res; | |
49 | Res.Size = Buf.st_size; | |
50 | Res.Filename = Itm->DestFile; | |
51 | Res.LastModified = Buf.st_mtime; | |
52 | Res.IMSHit = false; | |
53 | URIStart(Res); | |
54 | ||
93bf083d AL |
55 | // See if the file exists |
56 | FileFd From(File,FileFd::ReadOnly); | |
22041bd2 | 57 | FileFd To(Itm->DestFile,FileFd::WriteAtomic); |
93bf083d AL |
58 | To.EraseOnFailure(); |
59 | if (_error->PendingError() == true) | |
91cb4c6b AL |
60 | { |
61 | To.OpFail(); | |
93bf083d | 62 | return false; |
91cb4c6b | 63 | } |
561ab0db | 64 | |
93bf083d AL |
65 | // Copy the file |
66 | if (CopyFile(From,To) == false) | |
91cb4c6b AL |
67 | { |
68 | To.OpFail(); | |
93bf083d | 69 | return false; |
91cb4c6b | 70 | } |
561ab0db | 71 | |
93bf083d AL |
72 | From.Close(); |
73 | To.Close(); | |
561ab0db | 74 | |
93bf083d | 75 | // Transfer the modification times |
93bf083d AL |
76 | struct utimbuf TimeBuf; |
77 | TimeBuf.actime = Buf.st_atime; | |
78 | TimeBuf.modtime = Buf.st_mtime; | |
be4401bf | 79 | if (utime(Itm->DestFile.c_str(),&TimeBuf) != 0) |
93bf083d AL |
80 | { |
81 | To.OpFail(); | |
dc738e7a | 82 | return _error->Errno("utime",_("Failed to set modification time")); |
93bf083d AL |
83 | } |
84 | ||
95f45727 MV |
85 | Hashes Hash; |
86 | FileFd Fd(Res.Filename, FileFd::ReadOnly); | |
87 | Hash.AddFD(Fd.Fd(), Fd.Size()); | |
88 | Res.TakeHashes(Hash); | |
ac3dee0e | 89 | |
93bf083d AL |
90 | URIDone(Res); |
91 | return true; | |
92 | } | |
93 | /*}}}*/ | |
94 | ||
95 | int main() | |
96 | { | |
b25423f6 MZ |
97 | setlocale(LC_ALL, ""); |
98 | ||
93bf083d AL |
99 | CopyMethod Mth; |
100 | return Mth.Run(); | |
561ab0db | 101 | } |