Make Proxy-Auto-Detect check for each host
[ntk/apt.git] / methods / http.h
CommitLineData
be4401bf 1// -*- mode: cpp; mode: fold -*-
a305f593
AL
2// Description /*{{{*/// $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $
3// $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $
be4401bf
AL
4/* ######################################################################
5
1e3f4083 6 HTTP Acquire Method - This is the HTTP acquire method for APT.
be4401bf
AL
7
8 ##################################################################### */
9 /*}}}*/
10
11#ifndef APT_HTTP_H
12#define APT_HTTP_H
13
472ff00e 14#include <apt-pkg/strutl.h>
453b82a3 15#include <apt-pkg/acquire-method.h>
472ff00e
DK
16
17#include <string>
453b82a3
DK
18#include <sys/time.h>
19#include <iostream>
42195eb2 20
7330f4df
DK
21#include "server.h"
22
42195eb2
AL
23using std::cout;
24using std::endl;
25
453b82a3 26class FileFd;
be4401bf 27class HttpMethod;
472ff00e 28class Hashes;
be4401bf
AL
29
30class CircleBuf
31{
32 unsigned char *Buf;
650faab0
DK
33 unsigned long long Size;
34 unsigned long long InP;
35 unsigned long long OutP;
8f3ba4e8 36 std::string OutQueue;
650faab0
DK
37 unsigned long long StrPos;
38 unsigned long long MaxGet;
be4401bf 39 struct timeval Start;
7330f4df 40
650faab0
DK
41 static unsigned long long BwReadLimit;
42 static unsigned long long BwTickReadData;
7c6e2dc7
MV
43 static struct timeval BwReadTick;
44 static const unsigned int BW_HZ;
45
74b22002 46 unsigned long long LeftRead() const
be4401bf 47 {
650faab0 48 unsigned long long Sz = Size - (InP - OutP);
be4401bf
AL
49 if (Sz > Size - (InP%Size))
50 Sz = Size - (InP%Size);
51 return Sz;
52 }
74b22002 53 unsigned long long LeftWrite() const
be4401bf 54 {
650faab0 55 unsigned long long Sz = InP - OutP;
be4401bf
AL
56 if (InP > MaxGet)
57 Sz = MaxGet - OutP;
58 if (Sz > Size - (OutP%Size))
59 Sz = Size - (OutP%Size);
60 return Sz;
61 }
62 void FillOut();
7330f4df 63
be4401bf 64 public:
63b1700f 65 Hashes *Hash;
7330f4df 66
be4401bf
AL
67 // Read data in
68 bool Read(int Fd);
8f3ba4e8 69 bool Read(std::string Data);
7330f4df 70
be4401bf
AL
71 // Write data out
72 bool Write(int Fd);
8f3ba4e8 73 bool WriteTillEl(std::string &Data,bool Single = false);
7330f4df 74
be4401bf 75 // Control the write limit
7330f4df 76 void Limit(long long Max) {if (Max == -1) MaxGet = 0-1; else MaxGet = OutP + Max;}
f5a34606
DK
77 bool IsLimit() const {return MaxGet == OutP;};
78 void Print() const {cout << MaxGet << ',' << OutP << endl;};
be4401bf
AL
79
80 // Test for free space in the buffer
f5a34606
DK
81 bool ReadSpace() const {return Size - (InP - OutP) > 0;};
82 bool WriteSpace() const {return InP - OutP > 0;};
be4401bf
AL
83
84 // Dump everything
85 void Reset();
86 void Stats();
87
650faab0 88 CircleBuf(unsigned long long Size);
472ff00e 89 ~CircleBuf();
be4401bf
AL
90};
91
7330f4df 92struct HttpServerState: public ServerState
be4401bf 93{
be4401bf
AL
94 // This is the connection itself. Output is data FROM the server
95 CircleBuf In;
96 CircleBuf Out;
97 int ServerFd;
7330f4df
DK
98
99 protected:
100 virtual bool ReadHeaderLines(std::string &Data);
101 virtual bool LoadNextResponse(bool const ToFile, FileFd * const File);
102 virtual bool WriteResponse(std::string const &Data);
103
104 public:
105 virtual void Reset() { ServerState::Reset(); ServerFd = -1; };
106
107 virtual bool RunData(FileFd * const File);
108
109 virtual bool Open();
110 virtual bool IsOpen();
111 virtual bool Close();
112 virtual bool InitHashes(FileFd &File);
113 virtual Hashes * GetHashes();
114 virtual bool Die(FileFd &File);
115 virtual bool Flush(FileFd * const File);
116 virtual bool Go(bool ToFile, FileFd * const File);
117
118 HttpServerState(URI Srv, HttpMethod *Owner);
119 virtual ~HttpServerState() {Close();};
be4401bf
AL
120};
121
7330f4df 122class HttpMethod : public ServerMethod
be4401bf 123{
7330f4df
DK
124 public:
125 virtual void SendReq(FetchItem *Itm);
7273e494 126
8f3ba4e8 127 virtual bool Configuration(std::string Message);
7330f4df
DK
128
129 virtual ServerState * CreateServerState(URI uri);
fd46d305 130 virtual void RotateDNS();
5f6b130d
MV
131
132 protected:
8f3ba4e8 133 std::string AutoDetectProxyCmd;
7273e494 134
be4401bf 135 public:
7330f4df
DK
136 friend struct HttpServerState;
137
138 HttpMethod() : ServerMethod("1.2",Pipeline | SendConfig)
be4401bf 139 {
be4401bf 140 File = 0;
5cb5d8dc 141 Server = 0;
be4401bf
AL
142 };
143};
144
be4401bf 145#endif