]>
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>
24 #include "aptmethod.h"
32 class FileMethod
: public aptMethod
34 virtual bool Fetch(FetchItem
*Itm
) APT_OVERRIDE
;
37 FileMethod() : aptMethod("file", "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 //"));
52 // deal with destination files which might linger around
53 if (lstat(Itm
->DestFile
.c_str(), &Buf
) == 0)
55 if ((Buf
.st_mode
& S_IFREG
) != 0)
57 if (Itm
->LastModified
== Buf
.st_mtime
&& Itm
->LastModified
!= 0)
59 HashStringList
const hsl
= Itm
->ExpectedHashes
;
60 if (Itm
->ExpectedHashes
.VerifyFile(File
))
62 Res
.Filename
= Itm
->DestFile
;
68 if (Res
.IMSHit
!= true)
69 RemoveFile("file", Itm
->DestFile
);
72 // See if the file exists
73 if (stat(File
.c_str(),&Buf
) == 0)
75 Res
.Size
= Buf
.st_size
;
77 Res
.LastModified
= Buf
.st_mtime
;
79 if (Itm
->LastModified
== Buf
.st_mtime
&& Itm
->LastModified
!= 0)
81 unsigned long long const filesize
= Itm
->ExpectedHashes
.FileSize();
82 if (filesize
!= 0 && filesize
== Res
.Size
)
86 CalculateHashes(Itm
, Res
);
90 if (Res
.IMSHit
== false)
93 // See if the uncompressed file exists and reuse it
95 AltRes
.Filename
.clear();
96 std::vector
<std::string
> extensions
= APT::Configuration::getCompressorExtensions();
97 for (std::vector
<std::string
>::const_iterator ext
= extensions
.begin(); ext
!= extensions
.end(); ++ext
)
99 if (APT::String::Endswith(File
, *ext
) == true)
101 std::string
const unfile
= File
.substr(0, File
.length() - ext
->length() - 1);
102 if (stat(unfile
.c_str(),&Buf
) == 0)
104 AltRes
.Size
= Buf
.st_size
;
105 AltRes
.Filename
= unfile
;
106 AltRes
.LastModified
= Buf
.st_mtime
;
107 AltRes
.IMSHit
= false;
108 if (Itm
->LastModified
== Buf
.st_mtime
&& Itm
->LastModified
!= 0)
109 AltRes
.IMSHit
= true;
112 // no break here as we could have situations similar to '.gz' vs '.tar.gz' here
116 if (AltRes
.Filename
.empty() == false)
117 URIDone(Res
,&AltRes
);
118 else if (Res
.Filename
.empty() == false)
123 return _error
->Errno(File
.c_str(), _("File not found"));
132 setlocale(LC_ALL
, "");