]>
git.saurik.com Git - apt.git/blob - methods/file.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: file.cc,v 1.9.2.1 2004/01/16 18:58:50 mdz Exp $
4 /* ######################################################################
6 File URI method for APT
8 This simply checks that the file specified exists, if so the relevant
9 information is returned. If a .gz filename is specified then the file
10 name with .gz removed will also be checked and information about it
11 will be returned in Alt-*
13 ##################################################################### */
15 // Include Files /*{{{*/
18 #include <apt-pkg/acquire-method.h>
19 #include <apt-pkg/aptconfiguration.h>
20 #include <apt-pkg/error.h>
21 #include <apt-pkg/hashes.h>
22 #include <apt-pkg/fileutl.h>
23 #include <apt-pkg/strutl.h>
31 class FileMethod
: public pkgAcqMethod
33 virtual bool Fetch(FetchItem
*Itm
);
37 FileMethod() : pkgAcqMethod("1.0",SingleInstance
| SendConfig
| LocalOnly
) {};
40 // FileMethod::Fetch - Fetch a file /*{{{*/
41 // ---------------------------------------------------------------------
43 bool FileMethod::Fetch(FetchItem
*Itm
)
46 std::string File
= Get
.Path
;
48 if (Get
.Host
.empty() == false)
49 return _error
->Error(_("Invalid URI, local URIS must not start with //"));
51 // See if the file exists
53 if (stat(File
.c_str(),&Buf
) == 0)
55 Res
.Size
= Buf
.st_size
;
57 Res
.LastModified
= Buf
.st_mtime
;
59 if (Itm
->LastModified
== Buf
.st_mtime
&& Itm
->LastModified
!= 0)
61 unsigned long long const filesize
= Itm
->ExpectedHashes
.FileSize();
62 if (filesize
!= 0 && filesize
== Res
.Size
)
67 // See if the uncompressed file exists and reuse it
68 std::vector
<std::string
> extensions
= APT::Configuration::getCompressorExtensions();
69 for (std::vector
<std::string
>::const_iterator ext
= extensions
.begin(); ext
!= extensions
.end(); ++ext
)
71 if (APT::String::Endswith(File
, *ext
) == true)
73 std::string
const unfile
= File
.substr(0, File
.length() - ext
->length() - 1);
74 if (stat(unfile
.c_str(),&Buf
) == 0)
77 AltRes
.Size
= Buf
.st_size
;
78 AltRes
.Filename
= unfile
;
79 AltRes
.LastModified
= Buf
.st_mtime
;
80 AltRes
.IMSHit
= false;
81 if (Itm
->LastModified
== Buf
.st_mtime
&& Itm
->LastModified
!= 0)
87 // no break here as we could have situations similar to '.gz' vs '.tar.gz' here
91 if (Res
.Filename
.empty() == true)
92 return _error
->Error(_("File not found"));
94 Hashes
Hash(Itm
->ExpectedHashes
);
95 FileFd
Fd(Res
.Filename
, FileFd::ReadOnly
);
105 setlocale(LC_ALL
, "");