| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // -*- mode: cpp; mode: fold -*-
- // Description /*{{{*/// $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $
- // $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $
- /* ######################################################################
- MIRROR Aquire Method - This is the MIRROR aquire method for APT.
- ##################################################################### */
- /*}}}*/
- #ifndef APT_MIRROR_H
- #define APT_MIRROR_H
- #include <iostream>
- using std::cout;
- using std::cerr;
- using std::endl;
- #include "http.h"
- class MirrorMethod : public HttpMethod
- {
- FetchResult Res;
- // we simply transform between BaseUri and Mirror
- string BaseUri; // the original mirror://... url
- string Mirror; // the selected mirror uri (http://...)
- vector<string> AllMirrors; // all available mirrors
- string MirrorFile; // the file that contains the list of mirrors
- bool DownloadedMirrorFile; // already downloaded this session
- bool Debug;
- protected:
- bool DownloadMirrorFile(string uri);
- bool RandomizeMirrorFile(string file);
- string GetMirrorFileName(string uri);
- bool InitMirrors();
- bool TryNextMirror();
- void CurrentQueueUriToMirror();
- bool Clean(string dir);
-
- // we need to overwrite those to transform the url back
- virtual void Fail(string Why, bool Transient = false);
- virtual void URIStart(FetchResult &Res);
- virtual void URIDone(FetchResult &Res,FetchResult *Alt = 0);
- virtual bool Configuration(string Message);
- public:
- MirrorMethod();
- virtual bool Fetch(FetchItem *Itm);
- };
- #endif
|