* doc/examples/sources.list:
[ntk/apt.git] / apt-pkg / acquire-worker.h
CommitLineData
0118833a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
b2e465d6 3// $Id: acquire-worker.h,v 1.12 2001/02/20 07:03:17 jgg Exp $
0118833a
AL
4/* ######################################################################
5
6 Acquire Worker - Worker process manager
7
3b5421b4
AL
8 Each worker class is associated with exaclty one subprocess.
9
0118833a
AL
10 ##################################################################### */
11 /*}}}*/
3174e150
MV
12
13/** \addtogroup acquire
14 * @{
15 *
16 * \file acquire-worker.h
17 */
18
0118833a
AL
19#ifndef PKGLIB_ACQUIRE_WORKER_H
20#define PKGLIB_ACQUIRE_WORKER_H
21
22#include <apt-pkg/acquire.h>
23
0118833a 24
3174e150
MV
25/** \brief A fetch subprocess.
26 *
27 * A worker process is responsible for one stage of the fetch. This
28 * class encapsulates the communications protocol between the master
29 * process and the worker, from the master end.
30 *
31 * Each worker is intrinsically placed on two linked lists. The
32 * Queue list (maintained in the #NextQueue variable) is maintained
33 * by the pkgAcquire::Queue class; it represents the set of workers
34 * assigned to a particular queue. The Acquire list (maintained in
35 * the #NextAcquire variable) is maintained by the pkgAcquire class;
36 * it represents the set of active workers for a particular
37 * pkgAcquire object.
38 *
39 * \todo Like everything else in the Acquire system, this has way too
40 * many protected items.
41 *
42 * \sa pkgAcqMethod, pkgAcquire::Item, pkgAcquire
43 */
0118833a
AL
44class pkgAcquire::Worker
45{
b2e465d6 46 friend class pkgAcquire;
0a8a80e5 47
0118833a 48 protected:
b2e465d6 49 friend class Queue;
3b5421b4 50
3174e150
MV
51 /** \brief The next link on the Queue list.
52 *
53 * \todo This is always NULL; is it just for future use?
54 */
0a8a80e5 55 Worker *NextQueue;
3174e150
MV
56
57 /** \brief The next link on the Acquire list. */
0a8a80e5 58 Worker *NextAcquire;
0118833a 59
3174e150 60 /** \brief The Queue with which this worker is associated. */
0118833a 61 Queue *OwnerQ;
3174e150
MV
62
63 /** \brief The download progress indicator to which progress
64 * messages should be sent.
65 */
8267fe24 66 pkgAcquireStatus *Log;
3174e150
MV
67
68 /** \brief The configuration of this method. On startup, the
69 * target of this pointer is filled in with basic data about the
70 * method, as reported by the worker.
71 */
3b5421b4 72 MethodConfig *Config;
3174e150
MV
73
74 /** \brief The access method to be used by this worker.
75 *
76 * \todo Doesn't this duplicate Config->Access?
77 */
3b5421b4 78 string Access;
c46824ce 79
3174e150 80 /** \brief The PID of the subprocess. */
3b5421b4 81 pid_t Process;
3174e150
MV
82
83 /** \brief A file descriptor connected to the standard output of
84 * the subprocess.
85 *
86 * Used to read messages and data from the subprocess.
87 */
3b5421b4 88 int InFd;
3174e150
MV
89
90 /** \brief A file descriptor connected to the standard input of the
91 * subprocess.
92 *
93 * Used to send commands and configuration data to the subprocess.
94 */
3b5421b4 95 int OutFd;
3174e150
MV
96
97 /** \brief Set to \b true if the worker is in a state in which it
98 * might generate data or command responses.
99 *
100 * \todo Is this right? It's a guess.
101 */
0a8a80e5 102 bool InReady;
3174e150
MV
103
104 /** \brief Set to \b true if the worker is in a state in which it
105 * is legal to send commands to it.
106 *
107 * \todo Is this right?
108 */
0a8a80e5 109 bool OutReady;
0118833a 110
3174e150 111 /** If \b true, debugging output will be sent to std::clog. */
3b5421b4 112 bool Debug;
3174e150
MV
113
114 /** \brief The raw text values of messages received from the
115 * worker, in sequence.
116 */
3b5421b4 117 vector<string> MessageQueue;
3174e150
MV
118
119 /** \brief Buffers pending writes to the subprocess.
120 *
121 * \todo Wouldn't a std::dequeue be more appropriate?
122 */
0a8a80e5
AL
123 string OutQueue;
124
3174e150
MV
125 /** \brief Common code for the constructor.
126 *
127 * Initializes NextQueue and NextAcquire to NULL; Process, InFd,
128 * and OutFd to -1, OutReady and InReady to \b false, and Debug
129 * from _config.
130 */
3b5421b4
AL
131 void Construct();
132
3174e150
MV
133 /** \brief Retrieve any available messages from the subprocess.
134 *
135 * The messages are retrieved as in ::ReadMessages(), and
136 * MessageFailure() is invoked if an error occurs; in particular,
137 * if the pipe to the subprocess dies unexpectedly while a message
138 * is being read.
139 *
140 * \return \b true if the messages were successfully read, \b
141 * false otherwise.
142 */
3b5421b4 143 bool ReadMessages();
3174e150
MV
144
145 /** \brief Parse and dispatch pending messages.
146 *
147 * This dispatches the message in a manner appropriate for its
148 * type.
149 *
150 * \todo Several message types lack separate handlers.
151 *
152 * \sa Capabilities(), SendConfiguration(), MediaChange()
153 */
3b5421b4 154 bool RunMessages();
3174e150
MV
155
156 /** \brief Read and dispatch any pending messages from the
157 * subprocess.
158 *
159 * \return \b false if the subprocess died unexpectedly while a
160 * message was being transmitted.
161 */
0a8a80e5 162 bool InFdReady();
3174e150
MV
163
164 /** \brief Send any pending commands to the subprocess.
165 *
166 * This method will fail if there is no pending output.
167 *
168 * \return \b true if all commands were succeeded, \b false if an
169 * error occurred (in which case MethodFailure() will be invoked).
170 */
0a8a80e5 171 bool OutFdReady();
3b5421b4 172
3174e150
MV
173 /** \brief Handle a 100 Capabilities response from the subprocess.
174 *
175 * \param Message the raw text of the message from the subprocess.
176 *
177 * The message will be parsed and its contents used to fill
178 * #Config. If #Config is NULL, this routine is a NOP.
179 *
180 * \return \b true.
181 */
3b5421b4 182 bool Capabilities(string Message);
3174e150
MV
183
184 /** \brief Send a 601 Configuration message (containing the APT
185 * configuration) to the subprocess.
186 *
187 * The APT configuration will be send to the subprocess in a
188 * message of the following form:
189 *
190 * <pre>
191 * 601 Configuration
192 * Config-Item: Fully-Qualified-Item=Val
193 * Config-Item: Fully-Qualified-Item=Val
194 * ...
195 * </pre>
196 *
197 * \return \b true if the command was successfully sent, \b false
198 * otherwise.
199 */
0a8a80e5 200 bool SendConfiguration();
3174e150
MV
201
202 /** \brief Handle a 403 Media Change message.
203 *
204 * \param Message the raw text of the message; the Media field
205 * indicates what type of media should be changed, and the Drive
206 * field indicates where the media is located.
207 *
208 * Invokes pkgAcquireStatus::MediaChange(Media, Drive) to ask the
209 * user to swap disks; informs the subprocess of the result (via
210 * 603 Media Changed, with the Failed field set to \b true if the
211 * user cancelled the media change).
212 */
542ec555
AL
213 bool MediaChange(string Message);
214
3174e150
MV
215 /** \brief Invoked when the worked process dies unexpectedly.
216 *
217 * Waits for the subprocess to terminate and generates an error if
218 * it terminated abnormally, then closes and blanks out all file
219 * descriptors. Discards all pending messages from the
220 * subprocess.
221 *
222 * \return \b false.
223 */
0a8a80e5 224 bool MethodFailure();
3174e150
MV
225
226 /** \brief Invoked when a fetch job is completed, either
227 * successfully or unsuccessfully.
228 *
229 * Resets the status information for the worker process.
230 */
8267fe24 231 void ItemDone();
0118833a
AL
232
233 public:
234
3174e150 235 /** \brief The queue entry that is currently being downloaded. */
0a8a80e5 236 pkgAcquire::Queue::QItem *CurrentItem;
3174e150
MV
237
238 /** \brief The most recent status string received from the
239 * subprocess.
240 */
0a8a80e5 241 string Status;
3174e150
MV
242
243 /** \brief How many bytes of the file have been downloaded. Zero
244 * if the current progress of the file cannot be determined.
245 */
c88edf1d 246 unsigned long CurrentSize;
3174e150
MV
247
248 /** \brief The total number of bytes to be downloaded. Zero if the
249 * total size of the final is unknown.
250 */
c88edf1d 251 unsigned long TotalSize;
3174e150
MV
252
253 /** \brief How much of the file was already downloaded prior to
254 * starting this worker.
255 */
8b75eb1c
AL
256 unsigned long ResumePoint;
257
3174e150
MV
258 /** \brief Tell the subprocess to download the given item.
259 *
260 * \param Item the item to queue up.
261 * \return \b true if the item was successfully enqueued.
262 *
263 * Queues up a 600 URI Acquire message for the given item to be
264 * sent at the next possible moment. Does \e not flush the output
265 * queue.
266 */
0a8a80e5 267 bool QueueItem(pkgAcquire::Queue::QItem *Item);
3174e150
MV
268
269 /** \brief Start up the worker and fill in #Config.
270 *
271 * Reads the first message from the worker, which is assumed to be
272 * a 100 Capabilities message.
273 *
274 * \return \b true if all operations completed successfully.
275 */
8267fe24 276 bool Start();
3174e150
MV
277
278 /** \brief Update the worker statistics (CurrentSize, TotalSize,
279 * etc).
280 */
8267fe24 281 void Pulse();
3174e150
MV
282
283 /** \return The fetch method configuration. */
8e5fc8f5 284 inline const MethodConfig *GetConf() const {return Config;};
3174e150
MV
285
286 /** \brief Create a new Worker to download files.
287 *
288 * \param OwnerQ The queue into which this worker should be
289 * placed.
290 *
291 * \param Config A location in which to store information about
292 * the fetch method.
293 *
294 * \param Log The download progress indicator that should be used
295 * to report the progress of this worker.
296 */
8267fe24 297 Worker(Queue *OwnerQ,MethodConfig *Config,pkgAcquireStatus *Log);
3174e150
MV
298
299 /** \brief Create a new Worker that should just retrieve
300 * information about the fetch method.
301 *
302 * Nothing in particular forces you to refrain from actually
303 * downloading stuff, but the various status callbacks won't be
304 * invoked.
305 *
306 * \param Config A location in which to store information about
307 * the fetch method.
308 */
0118833a 309 Worker(MethodConfig *Config);
3174e150
MV
310
311 /** \brief Clean up this worker.
312 *
313 * Closes the file descriptors; if MethodConfig::NeedsCleanup is
314 * \b false, also rudely interrupts the worker with a SIGINT.
315 */
0118833a
AL
316 ~Worker();
317};
318
3174e150
MV
319/** @} */
320
0118833a 321#endif