// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: file.cc,v 1.4 1998/10/30 07:53:52 jgg Exp $
+// $Id: file.cc,v 1.7 1999/01/18 06:20:08 jgg Exp $
/* ######################################################################
File URI method for APT
class FileMethod : public pkgAcqMethod
{
- virtual bool Fetch(string Message,URI Get);
+ virtual bool Fetch(FetchItem *Itm);
public:
- FileMethod() : pkgAcqMethod("1.0",SingleInstance) {};
+ FileMethod() : pkgAcqMethod("1.0",SingleInstance | LocalOnly) {};
};
// FileMethod::Fetch - Fetch a file /*{{{*/
// ---------------------------------------------------------------------
/* */
-bool FileMethod::Fetch(string Message,URI Get)
+bool FileMethod::Fetch(FetchItem *Itm)
{
+ URI Get = Itm->Uri;
string File = Get.Path;
FetchResult Res;
-
+ if (Get.Host.empty() == false)
+ return _error->Error("Invalid URI, local URIS must not start with //");
+
// See if the file exists
struct stat Buf;
if (stat(File.c_str(),&Buf) == 0)
Res.Filename = File;
Res.LastModified = Buf.st_mtime;
Res.IMSHit = false;
- if (LastModified == Buf.st_mtime)
+ if (Itm->LastModified == Buf.st_mtime)
Res.IMSHit = true;
}
AltRes.Filename = File;
AltRes.LastModified = Buf.st_mtime;
AltRes.IMSHit = false;
- if (LastModified == Buf.st_mtime)
+ if (Itm->LastModified == Buf.st_mtime)
AltRes.IMSHit = true;
URIDone(Res,&AltRes);