]>
git.saurik.com Git - apt.git/blob - methods/copy.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: copy.cc,v 1.7.2.1 2004/01/16 18:58:50 mdz Exp $
4 /* ######################################################################
6 Copy URI - This method takes a uri like a file: uri and copies it
7 to the destination file.
9 ##################################################################### */
11 // Include Files /*{{{*/
14 #include <apt-pkg/fileutl.h>
15 #include <apt-pkg/strutl.h>
16 #include <apt-pkg/acquire-method.h>
17 #include <apt-pkg/error.h>
18 #include <apt-pkg/hashes.h>
26 class CopyMethod
: public pkgAcqMethod
28 virtual bool Fetch(FetchItem
*Itm
);
32 CopyMethod() : pkgAcqMethod("1.0",SingleInstance
) {};
35 // CopyMethod::Fetch - Fetch a file /*{{{*/
36 // ---------------------------------------------------------------------
38 bool CopyMethod::Fetch(FetchItem
*Itm
)
41 std::string File
= Get
.Path
;
43 // Stat the file and send a start message
45 if (stat(File
.c_str(),&Buf
) != 0)
46 return _error
->Errno("stat",_("Failed to stat"));
48 // Forumulate a result and send a start message
50 Res
.Size
= Buf
.st_size
;
51 Res
.Filename
= Itm
->DestFile
;
52 Res
.LastModified
= Buf
.st_mtime
;
56 // See if the file exists
57 FileFd
From(File
,FileFd::ReadOnly
);
58 FileFd
To(Itm
->DestFile
,FileFd::WriteAtomic
);
60 if (_error
->PendingError() == true)
67 if (CopyFile(From
,To
) == false)
76 // Transfer the modification times
77 struct utimbuf TimeBuf
;
78 TimeBuf
.actime
= Buf
.st_atime
;
79 TimeBuf
.modtime
= Buf
.st_mtime
;
80 if (utime(Itm
->DestFile
.c_str(),&TimeBuf
) != 0)
83 return _error
->Errno("utime",_("Failed to set modification time"));
87 FileFd
Fd(Res
.Filename
, FileFd::ReadOnly
);
88 Hash
.AddFD(Fd
.Fd(), Fd
.Size());
98 setlocale(LC_ALL
, "");