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>
19 #include <apt-pkg/configuration.h>
28 class CopyMethod
: public pkgAcqMethod
30 virtual bool Fetch(FetchItem
*Itm
);
31 void CalculateHashes(FetchItem
const * const Itm
, FetchResult
&Res
);
35 CopyMethod() : pkgAcqMethod("1.0",SingleInstance
| SendConfig
) {};
38 void CopyMethod::CalculateHashes(FetchItem
const * const Itm
, FetchResult
&Res
)
40 Hashes
Hash(Itm
->ExpectedHashes
);
41 FileFd::CompressMode CompressMode
= FileFd::None
;
42 if (_config
->FindB("Acquire::GzipIndexes", false) == true)
43 CompressMode
= FileFd::Extension
;
45 FileFd
Fd(Res
.Filename
, FileFd::ReadOnly
, CompressMode
);
50 // CopyMethod::Fetch - Fetch a file /*{{{*/
51 // ---------------------------------------------------------------------
53 bool CopyMethod::Fetch(FetchItem
*Itm
)
55 // this ensures that relative paths work in copy
56 std::string File
= Itm
->Uri
.substr(Itm
->Uri
.find(':')+1);
58 // Stat the file and send a start message
60 if (stat(File
.c_str(),&Buf
) != 0)
61 return _error
->Errno("stat",_("Failed to stat"));
63 // Forumulate a result and send a start message
65 Res
.Size
= Buf
.st_size
;
66 Res
.Filename
= Itm
->DestFile
;
67 Res
.LastModified
= Buf
.st_mtime
;
71 // just calc the hashes if the source and destination are identical
72 if (File
== Itm
->DestFile
)
74 CalculateHashes(Itm
, Res
);
79 // See if the file exists
80 FileFd
From(File
,FileFd::ReadOnly
);
81 FileFd
To(Itm
->DestFile
,FileFd::WriteAtomic
);
83 if (_error
->PendingError() == true)
90 if (CopyFile(From
,To
) == false)
99 // Transfer the modification times
100 struct timeval times
[2];
101 times
[0].tv_sec
= Buf
.st_atime
;
102 times
[1].tv_sec
= Buf
.st_mtime
;
103 times
[0].tv_usec
= times
[1].tv_usec
= 0;
104 if (utimes(Res
.Filename
.c_str(), times
) != 0)
105 return _error
->Errno("utimes",_("Failed to set modification time"));
107 CalculateHashes(Itm
, Res
);
116 setlocale(LC_ALL
, "");