]>
git.saurik.com Git - apt.git/blob - methods/server.h
b974ec89a1b2f6604468e8f2cecd91794024fb83
1 // -*- mode: cpp; mode: fold -*-
3 /* ######################################################################
5 Classes dealing with the abstraction of talking to a end via a text
6 protocol like HTTP (which is used by the http and https methods)
8 ##################################################################### */
14 #include <apt-pkg/strutl.h>
15 #include <apt-pkg/acquire-method.h>
30 // This is the last parsed Header Line
36 // These are some statistics from the last parsed header lines
37 unsigned long long Size
; // size of the usable content (aka: the file)
38 unsigned long long JunkSize
; // size of junk content (aka: server error pages)
39 unsigned long long StartPos
;
42 enum {Chunked
,Stream
,Closes
} Encoding
;
43 enum {Header
, Data
} State
;
47 // This is a Persistent attribute of the server itself.
51 unsigned long TimeOut
;
53 unsigned long long MaximumSize
;
58 virtual bool ReadHeaderLines(std::string
&Data
) = 0;
59 virtual bool LoadNextResponse(bool const ToFile
, FileFd
* const File
) = 0;
62 bool HeaderLine(std::string Line
);
64 /** \brief Result of the header acquire */
65 enum RunHeadersResult
{
66 /** \brief Header ok */
68 /** \brief IO error while retrieving */
70 /** \brief Parse error after retrieving */
71 RUN_HEADERS_PARSE_ERROR
73 /** \brief Get the headers before the data */
74 RunHeadersResult
RunHeaders(FileFd
* const File
, const std::string
&Uri
);
76 bool Comp(URI Other
) const {return Other
.Host
== ServerName
.Host
&& Other
.Port
== ServerName
.Port
;};
77 virtual void Reset() {Major
= 0; Minor
= 0; Result
= 0; Code
[0] = '\0'; Size
= 0; JunkSize
= 0;
78 StartPos
= 0; Encoding
= Closes
; time(&Date
); HaveContent
= false;
79 State
= Header
; Persistent
= false; Pipeline
= true; MaximumSize
= 0;};
80 virtual bool WriteResponse(std::string
const &Data
) = 0;
82 /** \brief Transfer the data from the socket */
83 virtual bool RunData(FileFd
* const File
) = 0;
85 virtual bool Open() = 0;
86 virtual bool IsOpen() = 0;
87 virtual bool Close() = 0;
88 virtual bool InitHashes(FileFd
&File
) = 0;
89 virtual Hashes
* GetHashes() = 0;
90 virtual bool Die(FileFd
&File
) = 0;
91 virtual bool Flush(FileFd
* const File
) = 0;
92 virtual bool Go(bool ToFile
, FileFd
* const File
) = 0;
94 ServerState(URI Srv
, ServerMethod
*Owner
);
95 virtual ~ServerState() {};
98 class ServerMethod
: public pkgAcqMethod
101 virtual bool Fetch(FetchItem
*);
107 unsigned long PipelineDepth
;
110 // Find the biggest item in the fetch queue for the checking of the maximum
112 unsigned long long FindMaximumObjectSizeInQueue() const APT_PURE
;
117 /** \brief Result of the header parsing */
118 enum DealWithHeadersResult
{
119 /** \brief The file is open and ready */
121 /** \brief We got a IMS hit, the file has not changed */
123 /** \brief The server reported a unrecoverable error */
125 /** \brief The server reported a error with a error content page */
126 ERROR_WITH_CONTENT_PAGE
,
127 /** \brief An error on the client side */
128 ERROR_NOT_FROM_SERVER
,
129 /** \brief A redirect or retry request */
130 TRY_AGAIN_OR_REDIRECT
132 /** \brief Handle the retrieved header data */
133 DealWithHeadersResult
DealWithHeaders(FetchResult
&Res
);
135 // In the event of a fatal signal this file will be closed and timestamped.
136 static std::string FailFile
;
138 static time_t FailTime
;
139 static APT_NORETURN
void SigTerm(int);
141 virtual bool Configuration(std::string Message
);
142 virtual bool Flush() { return Server
->Flush(File
); };
146 virtual void SendReq(FetchItem
*Itm
) = 0;
147 virtual ServerState
* CreateServerState(URI uri
) = 0;
148 virtual void RotateDNS() = 0;
150 ServerMethod(const char *Ver
,unsigned long Flags
= 0) : pkgAcqMethod(Ver
, Flags
), Server(NULL
), File(NULL
), PipelineDepth(10), AllowRedirect(false), Debug(false) {};
151 virtual ~ServerMethod() {};