]> git.saurik.com Git - apt.git/blame - methods/rred.cc
apply various suggestions made by cppcheck
[apt.git] / methods / rred.cc
CommitLineData
dbd5418b
AT
1// Copyright (c) 2014 Anthony Towns
2//
3// This program is free software; you can redistribute it and/or modify
4// it under the terms of the GNU General Public License as published by
5// the Free Software Foundation; either version 2 of the License, or
6// (at your option) any later version.
7
ea542140
DK
8#include <config.h>
9
2e178d1c
MV
10#include <apt-pkg/fileutl.h>
11#include <apt-pkg/error.h>
12#include <apt-pkg/acquire-method.h>
13#include <apt-pkg/strutl.h>
14#include <apt-pkg/hashes.h>
472ff00e 15#include <apt-pkg/configuration.h>
23e64f6d 16#include "aptmethod.h"
2e178d1c 17
453b82a3
DK
18#include <stddef.h>
19#include <iostream>
dbd5418b
AT
20#include <string>
21#include <list>
22#include <vector>
dbd5418b
AT
23
24#include <assert.h>
6d3e5bd8 25#include <errno.h>
dbd5418b
AT
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
2e178d1c 29#include <sys/stat.h>
246bbb61 30#include <sys/time.h>
dbd5418b 31
2e178d1c 32#include <apti18n.h>
dbd5418b
AT
33
34#define BLOCK_SIZE (512*1024)
35
36class MemBlock {
37 char *start;
38 size_t size;
39 char *free;
6d3e5bd8 40 MemBlock *next;
dbd5418b 41
258b9e51 42 explicit MemBlock(size_t size) : size(size), next(NULL)
dbd5418b
AT
43 {
44 free = start = new char[size];
dbd5418b
AT
45 }
46
47 size_t avail(void) { return size - (free - start); }
48
49 public:
50
51 MemBlock(void) {
52 free = start = new char[BLOCK_SIZE];
53 size = BLOCK_SIZE;
54 next = NULL;
55 }
56
57 ~MemBlock() {
58 delete [] start;
59 delete next;
60 }
61
62 void clear(void) {
63 free = start;
64 if (next)
65 next->clear();
66 }
67
68 char *add_easy(char *src, size_t len, char *last)
69 {
70 if (last) {
71 for (MemBlock *k = this; k; k = k->next) {
72 if (k->free == last) {
73 if (len <= k->avail()) {
74 char *n = k->add(src, len);
75 assert(last == n);
76 if (last == n)
77 return NULL;
78 return n;
79 } else {
80 break;
81 }
82 } else if (last >= start && last < free) {
83 break;
84 }
85 }
86 }
87 return add(src, len);
88 }
89
90 char *add(char *src, size_t len) {
91 if (len > avail()) {
92 if (!next) {
93 if (len > BLOCK_SIZE) {
94 next = new MemBlock(len);
95 } else {
96 next = new MemBlock;
97 }
98 }
99 return next->add(src, len);
100 }
101 char *dst = free;
102 free += len;
103 memcpy(dst, src, len);
104 return dst;
105 }
2e178d1c 106};
dbd5418b
AT
107
108struct Change {
109 /* Ordering:
110 *
111 * 1. write out <offset> lines unchanged
112 * 2. skip <del_cnt> lines from source
113 * 3. write out <add_cnt> lines (<add>/<add_len>)
114 */
115 size_t offset;
116 size_t del_cnt;
117 size_t add_cnt; /* lines */
118 size_t add_len; /* bytes */
119 char *add;
120
258b9e51 121 explicit Change(size_t off)
dbd5418b
AT
122 {
123 offset = off;
124 del_cnt = add_cnt = add_len = 0;
125 add = NULL;
126 }
127
128 /* actually, don't write <lines> lines from <add> */
129 void skip_lines(size_t lines)
130 {
131 while (lines > 0) {
132 char *s = (char*) memchr(add, '\n', add_len);
133 assert(s != NULL);
134 s++;
135 add_len -= (s - add);
136 add_cnt--;
137 lines--;
138 if (add_len == 0) {
139 add = NULL;
140 assert(add_cnt == 0);
141 assert(lines == 0);
142 } else {
143 add = s;
144 assert(add_cnt > 0);
145 }
d84cd865
MV
146 }
147 }
bb1293d9 148};
dbd5418b
AT
149
150class FileChanges {
151 std::list<struct Change> changes;
152 std::list<struct Change>::iterator where;
153 size_t pos; // line number is as far left of iterator as possible
154
9dd940ed 155 bool pos_is_okay(void) const
dbd5418b
AT
156 {
157#ifdef POSDEBUG
158 size_t cpos = 0;
9dd940ed 159 std::list<struct Change>::const_iterator x;
25d99f3b 160 for (x = changes.begin(); x != where; ++x) {
dbd5418b
AT
161 assert(x != changes.end());
162 cpos += x->offset + x->add_cnt;
163 }
164 return cpos == pos;
bb1293d9 165#else
dbd5418b 166 return true;
bb1293d9 167#endif
dbd5418b
AT
168 }
169
170 public:
171 FileChanges() {
172 where = changes.end();
173 pos = 0;
174 }
175
176 std::list<struct Change>::iterator begin(void) { return changes.begin(); }
177 std::list<struct Change>::iterator end(void) { return changes.end(); }
178
179 std::list<struct Change>::reverse_iterator rbegin(void) { return changes.rbegin(); }
180 std::list<struct Change>::reverse_iterator rend(void) { return changes.rend(); }
181
182 void add_change(Change c) {
183 assert(pos_is_okay());
184 go_to_change_for(c.offset);
185 assert(pos + where->offset == c.offset);
186 if (c.del_cnt > 0)
187 delete_lines(c.del_cnt);
188 assert(pos + where->offset == c.offset);
189 if (c.add_len > 0) {
190 assert(pos_is_okay());
191 if (where->add_len > 0)
192 new_change();
193 assert(where->add_len == 0 && where->add_cnt == 0);
194
195 where->add_len = c.add_len;
196 where->add_cnt = c.add_cnt;
197 where->add = c.add;
198 }
199 assert(pos_is_okay());
200 merge();
201 assert(pos_is_okay());
202 }
203
204 private:
205 void merge(void)
206 {
207 while (where->offset == 0 && where != changes.begin()) {
208 left();
209 }
210 std::list<struct Change>::iterator next = where;
25d99f3b 211 ++next;
dbd5418b
AT
212
213 while (next != changes.end() && next->offset == 0) {
214 where->del_cnt += next->del_cnt;
215 next->del_cnt = 0;
216 if (next->add == NULL) {
217 next = changes.erase(next);
218 } else if (where->add == NULL) {
219 where->add = next->add;
220 where->add_len = next->add_len;
221 where->add_cnt = next->add_cnt;
222 next = changes.erase(next);
223 } else {
25d99f3b 224 ++next;
dbd5418b
AT
225 }
226 }
227 }
228
229 void go_to_change_for(size_t line)
47d2bc78 230 {
dbd5418b
AT
231 while(where != changes.end()) {
232 if (line < pos) {
233 left();
234 continue;
235 }
236 if (pos + where->offset + where->add_cnt <= line) {
237 right();
238 continue;
239 }
240 // line is somewhere in this slot
241 if (line < pos + where->offset) {
242 break;
243 } else if (line == pos + where->offset) {
244 return;
245 } else {
246 split(line - pos);
247 right();
248 return;
47d2bc78 249 }
bb1293d9 250 }
dbd5418b
AT
251 /* it goes before this patch */
252 insert(line-pos);
253 }
254
255 void new_change(void) { insert(where->offset); }
256
257 void insert(size_t offset)
258 {
259 assert(pos_is_okay());
260 assert(where == changes.end() || offset <= where->offset);
261 if (where != changes.end())
262 where->offset -= offset;
263 changes.insert(where, Change(offset));
25d99f3b 264 --where;
dbd5418b
AT
265 assert(pos_is_okay());
266 }
267
268 void split(size_t offset)
269 {
270 assert(pos_is_okay());
271
272 assert(where->offset < offset);
273 assert(offset < where->offset + where->add_cnt);
274
275 size_t keep_lines = offset - where->offset;
276
277 Change before(*where);
47d2bc78 278
dbd5418b
AT
279 where->del_cnt = 0;
280 where->offset = 0;
281 where->skip_lines(keep_lines);
282
283 before.add_cnt = keep_lines;
284 before.add_len -= where->add_len;
285
286 changes.insert(where, before);
25d99f3b 287 --where;
dbd5418b 288 assert(pos_is_okay());
3de9ff77 289 }
dbd5418b 290
dbd5418b
AT
291 void delete_lines(size_t cnt)
292 {
293 std::list<struct Change>::iterator x = where;
294 assert(pos_is_okay());
295 while (cnt > 0)
296 {
297 size_t del;
298 del = x->add_cnt;
299 if (del > cnt)
300 del = cnt;
301 x->skip_lines(del);
302 cnt -= del;
303
25d99f3b 304 ++x;
dbd5418b
AT
305 if (x == changes.end()) {
306 del = cnt;
307 } else {
308 del = x->offset;
309 if (del > cnt)
310 del = cnt;
311 x->offset -= del;
312 }
313 where->del_cnt += del;
314 cnt -= del;
315 }
316 assert(pos_is_okay());
317 }
47d2bc78 318
dbd5418b
AT
319 void left(void) {
320 assert(pos_is_okay());
25d99f3b 321 --where;
dbd5418b
AT
322 pos -= where->offset + where->add_cnt;
323 assert(pos_is_okay());
324 }
47d2bc78 325
dbd5418b
AT
326 void right(void) {
327 assert(pos_is_okay());
328 pos += where->offset + where->add_cnt;
25d99f3b 329 ++where;
dbd5418b
AT
330 assert(pos_is_okay());
331 }
332};
333
334class Patch {
335 FileChanges filechanges;
336 MemBlock add_text;
337
d7a51997 338 static bool retry_fwrite(char *b, size_t l, FileFd &f, Hashes *hash)
2fd754cf 339 {
d7a51997
DK
340 if (f.Write(b, l) == false)
341 return false;
342 if (hash)
343 hash->Add((unsigned char*)b, l);
344 return true;
2fd754cf
AT
345 }
346
d7a51997 347 static void dump_rest(FileFd &o, FileFd &i, Hashes *hash)
dbd5418b
AT
348 {
349 char buffer[BLOCK_SIZE];
d7a51997
DK
350 unsigned long long l = 0;
351 while (i.Read(buffer, sizeof(buffer), &l)) {
352 if (l ==0 || !retry_fwrite(buffer, l, o, hash))
2fd754cf 353 break;
dbd5418b
AT
354 }
355 }
356
d7a51997 357 static void dump_lines(FileFd &o, FileFd &i, size_t n, Hashes *hash)
dbd5418b
AT
358 {
359 char buffer[BLOCK_SIZE];
dbd5418b 360 while (n > 0) {
d7a51997 361 if (i.ReadLine(buffer, sizeof(buffer)) == NULL)
dbd5418b 362 buffer[0] = '\0';
25d99f3b 363 size_t const l = strlen(buffer);
dbd5418b
AT
364 if (l == 0 || buffer[l-1] == '\n')
365 n--;
2fd754cf 366 retry_fwrite(buffer, l, o, hash);
dbd5418b
AT
367 }
368 }
369
d7a51997 370 static void skip_lines(FileFd &i, int n)
dbd5418b
AT
371 {
372 char buffer[BLOCK_SIZE];
dbd5418b 373 while (n > 0) {
d7a51997 374 if (i.ReadLine(buffer, sizeof(buffer)) == NULL)
dbd5418b 375 buffer[0] = '\0';
25d99f3b 376 size_t const l = strlen(buffer);
dbd5418b
AT
377 if (l == 0 || buffer[l-1] == '\n')
378 n--;
379 }
380 }
381
d7a51997 382 static void dump_mem(FileFd &o, char *p, size_t s, Hashes *hash) {
2fd754cf 383 retry_fwrite(p, s, o, hash);
dbd5418b
AT
384 }
385
386 public:
387
6d3e5bd8 388 bool read_diff(FileFd &f, Hashes * const h)
dbd5418b
AT
389 {
390 char buffer[BLOCK_SIZE];
391 bool cmdwanted = true;
392
6d3e5bd8
DK
393 Change ch(std::numeric_limits<size_t>::max());
394 if (f.ReadLine(buffer, sizeof(buffer)) == NULL)
395 return _error->Error("Reading first line of patchfile %s failed", f.Name().c_str());
396 do {
36795154
DK
397 if (h != NULL)
398 h->Add(buffer);
dbd5418b
AT
399 if (cmdwanted) {
400 char *m, *c;
401 size_t s, e;
6d3e5bd8
DK
402 errno = 0;
403 s = strtoul(buffer, &m, 10);
c69e8370 404 if (unlikely(m == buffer || s == std::numeric_limits<unsigned long>::max() || errno != 0))
6d3e5bd8
DK
405 return _error->Error("Parsing patchfile %s failed: Expected an effected line start", f.Name().c_str());
406 else if (*m == ',') {
407 ++m;
dbd5418b 408 e = strtol(m, &c, 10);
c69e8370 409 if (unlikely(m == c || e == std::numeric_limits<unsigned long>::max() || errno != 0))
6d3e5bd8
DK
410 return _error->Error("Parsing patchfile %s failed: Expected an effected line end", f.Name().c_str());
411 if (unlikely(e < s))
412 return _error->Error("Parsing patchfile %s failed: Effected lines end %lu is before start %lu", f.Name().c_str(), e, s);
dbd5418b
AT
413 } else {
414 e = s;
415 c = m;
416 }
6d3e5bd8
DK
417 if (s > ch.offset)
418 return _error->Error("Parsing patchfile %s failed: Effected line is after previous effected line", f.Name().c_str());
dbd5418b
AT
419 switch(*c) {
420 case 'a':
421 cmdwanted = false;
422 ch.add = NULL;
423 ch.add_cnt = 0;
424 ch.add_len = 0;
425 ch.offset = s;
426 ch.del_cnt = 0;
427 break;
428 case 'c':
6d3e5bd8
DK
429 if (unlikely(s == 0))
430 return _error->Error("Parsing patchfile %s failed: Change command can't effect line zero", f.Name().c_str());
dbd5418b
AT
431 cmdwanted = false;
432 ch.add = NULL;
433 ch.add_cnt = 0;
434 ch.add_len = 0;
435 ch.offset = s - 1;
436 ch.del_cnt = e - s + 1;
437 break;
438 case 'd':
6d3e5bd8
DK
439 if (unlikely(s == 0))
440 return _error->Error("Parsing patchfile %s failed: Delete command can't effect line zero", f.Name().c_str());
dbd5418b
AT
441 ch.offset = s - 1;
442 ch.del_cnt = e - s + 1;
443 ch.add = NULL;
444 ch.add_cnt = 0;
445 ch.add_len = 0;
446 filechanges.add_change(ch);
447 break;
6d3e5bd8
DK
448 default:
449 return _error->Error("Parsing patchfile %s failed: Unknown command", f.Name().c_str());
dbd5418b 450 }
2fd754cf 451 } else { /* !cmdwanted */
6d3e5bd8 452 if (strcmp(buffer, ".\n") == 0) {
dbd5418b
AT
453 cmdwanted = true;
454 filechanges.add_change(ch);
455 } else {
456 char *last = NULL;
457 char *add;
458 size_t l;
459 if (ch.add)
460 last = ch.add + ch.add_len;
461 l = strlen(buffer);
462 add = add_text.add_easy(buffer, l, last);
463 if (!add) {
464 ch.add_len += l;
465 ch.add_cnt++;
466 } else {
467 if (ch.add) {
468 filechanges.add_change(ch);
469 ch.del_cnt = 0;
470 }
471 ch.offset += ch.add_cnt;
472 ch.add = add;
473 ch.add_len = l;
474 ch.add_cnt = 1;
475 }
476 }
477 }
6d3e5bd8
DK
478 } while(f.ReadLine(buffer, sizeof(buffer)));
479 return true;
dbd5418b
AT
480 }
481
d7a51997 482 void write_diff(FileFd &f)
dbd5418b 483 {
6298ff8b 484 unsigned long long line = 0;
dbd5418b 485 std::list<struct Change>::reverse_iterator ch;
25d99f3b 486 for (ch = filechanges.rbegin(); ch != filechanges.rend(); ++ch) {
dbd5418b
AT
487 line += ch->offset + ch->del_cnt;
488 }
489
25d99f3b 490 for (ch = filechanges.rbegin(); ch != filechanges.rend(); ++ch) {
dbd5418b
AT
491 std::list<struct Change>::reverse_iterator mg_i, mg_e = ch;
492 while (ch->del_cnt == 0 && ch->offset == 0)
25d99f3b 493 ++ch;
dbd5418b 494 line -= ch->del_cnt;
d7a51997 495 std::string buf;
dbd5418b
AT
496 if (ch->add_cnt > 0) {
497 if (ch->del_cnt == 0) {
d7a51997 498 strprintf(buf, "%llua\n", line);
dbd5418b 499 } else if (ch->del_cnt == 1) {
d7a51997 500 strprintf(buf, "%lluc\n", line+1);
dbd5418b 501 } else {
d7a51997 502 strprintf(buf, "%llu,%lluc\n", line+1, line+ch->del_cnt);
dbd5418b 503 }
d7a51997 504 f.Write(buf.c_str(), buf.length());
dbd5418b
AT
505
506 mg_i = ch;
507 do {
508 dump_mem(f, mg_i->add, mg_i->add_len, NULL);
509 } while (mg_i-- != mg_e);
510
d7a51997
DK
511 buf = ".\n";
512 f.Write(buf.c_str(), buf.length());
dbd5418b 513 } else if (ch->del_cnt == 1) {
d7a51997
DK
514 strprintf(buf, "%llud\n", line+1);
515 f.Write(buf.c_str(), buf.length());
dbd5418b 516 } else if (ch->del_cnt > 1) {
d7a51997
DK
517 strprintf(buf, "%llu,%llud\n", line+1, line+ch->del_cnt);
518 f.Write(buf.c_str(), buf.length());
dbd5418b
AT
519 }
520 line -= ch->offset;
521 }
522 }
47d2bc78 523
d7a51997 524 void apply_against_file(FileFd &out, FileFd &in, Hashes *hash = NULL)
dbd5418b
AT
525 {
526 std::list<struct Change>::iterator ch;
25d99f3b 527 for (ch = filechanges.begin(); ch != filechanges.end(); ++ch) {
dbd5418b
AT
528 dump_lines(out, in, ch->offset, hash);
529 skip_lines(in, ch->del_cnt);
530 dump_mem(out, ch->add, ch->add_len, hash);
531 }
532 dump_rest(out, in, hash);
47d2bc78 533 }
dbd5418b
AT
534};
535
23e64f6d 536class RredMethod : public aptMethod {
dbd5418b
AT
537 private:
538 bool Debug;
dbd5418b 539
36795154
DK
540 struct PDiffFile {
541 std::string FileName;
542 HashStringList ExpectedHashes;
543 PDiffFile(std::string const &FileName, HashStringList const &ExpectedHashes) :
544 FileName(FileName), ExpectedHashes(ExpectedHashes) {}
545 };
546
547 HashStringList ReadExpectedHashesForPatch(unsigned int const patch, std::string const &Message)
548 {
549 HashStringList ExpectedHashes;
550 for (char const * const * type = HashString::SupportedHashes(); *type != NULL; ++type)
551 {
552 std::string tagname;
553 strprintf(tagname, "Patch-%d-%s-Hash", patch, *type);
554 std::string const hashsum = LookupTag(Message, tagname.c_str());
555 if (hashsum.empty() == false)
556 ExpectedHashes.push_back(HashString(*type, hashsum));
557 }
558 return ExpectedHashes;
559 }
560
dbd5418b 561 protected:
3b302846 562 virtual bool URIAcquire(std::string const &Message, FetchItem *Itm) APT_OVERRIDE {
dbd5418b
AT
563 Debug = _config->FindB("Debug::pkgAcquire::RRed", false);
564 URI Get = Itm->Uri;
565 std::string Path = Get.Host + Get.Path; // rred:/path - no host
566
567 FetchResult Res;
568 Res.Filename = Itm->DestFile;
50bd6fd3
DK
569 if (Itm->Uri.empty())
570 {
dbd5418b
AT
571 Path = Itm->DestFile;
572 Itm->DestFile.append(".result");
573 } else
574 URIStart(Res);
575
36795154 576 std::vector<PDiffFile> patchfiles;
dbd5418b
AT
577 Patch patch;
578
50bd6fd3 579 if (FileExists(Path + ".ed") == true)
36795154
DK
580 {
581 HashStringList const ExpectedHashes = ReadExpectedHashesForPatch(0, Message);
582 std::string const FileName = Path + ".ed";
583 if (ExpectedHashes.usable() == false)
584 return _error->Error("No hashes found for uncompressed patch: %s", FileName.c_str());
585 patchfiles.push_back(PDiffFile(FileName, ExpectedHashes));
586 }
50bd6fd3
DK
587 else
588 {
589 _error->PushToStack();
590 std::vector<std::string> patches = GetListOfFilesInDir(flNotFile(Path), "gz", true, false);
591 _error->RevertToStack();
592
593 std::string const baseName = Path + ".ed.";
36795154 594 unsigned int seen_patches = 0;
50bd6fd3
DK
595 for (std::vector<std::string>::const_iterator p = patches.begin();
596 p != patches.end(); ++p)
36795154 597 {
50bd6fd3 598 if (p->compare(0, baseName.length(), baseName) == 0)
36795154
DK
599 {
600 HashStringList const ExpectedHashes = ReadExpectedHashesForPatch(seen_patches, Message);
601 if (ExpectedHashes.usable() == false)
602 return _error->Error("No hashes found for uncompressed patch %d: %s", seen_patches, p->c_str());
603 patchfiles.push_back(PDiffFile(*p, ExpectedHashes));
604 ++seen_patches;
605 }
606 }
dbd5418b
AT
607 }
608
609 std::string patch_name;
36795154
DK
610 for (std::vector<PDiffFile>::iterator I = patchfiles.begin();
611 I != patchfiles.end();
25d99f3b 612 ++I)
dbd5418b 613 {
36795154 614 patch_name = I->FileName;
dbd5418b
AT
615 if (Debug == true)
616 std::clog << "Patching " << Path << " with " << patch_name
617 << std::endl;
618
50bd6fd3 619 FileFd p;
6d3e5bd8 620 Hashes patch_hash(I->ExpectedHashes);
50bd6fd3 621 // all patches are compressed, even if the name doesn't reflect it
6d3e5bd8
DK
622 if (p.Open(patch_name, FileFd::ReadOnly, FileFd::Gzip) == false ||
623 patch.read_diff(p, &patch_hash) == false)
624 {
95278287 625 _error->DumpErrors(std::cerr, GlobalError::DEBUG, false);
6d3e5bd8 626 return false;
dbd5418b 627 }
50bd6fd3 628 p.Close();
36795154
DK
629 HashStringList const hsl = patch_hash.GetHashStringList();
630 if (hsl != I->ExpectedHashes)
4f51fd86 631 return _error->Error("Hash Sum mismatch for uncompressed patch %s", patch_name.c_str());
dbd5418b
AT
632 }
633
634 if (Debug == true)
635 std::clog << "Applying patches against " << Path
636 << " and writing results to " << Itm->DestFile
637 << std::endl;
638
d7a51997
DK
639 FileFd inp, out;
640 if (inp.Open(Path, FileFd::ReadOnly, FileFd::Extension) == false)
641 {
642 std::cerr << "FAILED to open inp " << Path << std::endl;
643 return _error->Error("Failed to open inp %s", Path.c_str());
644 }
645 if (out.Open(Itm->DestFile, FileFd::WriteOnly | FileFd::Create, FileFd::Extension) == false)
646 {
647 std::cerr << "FAILED to open out " << Itm->DestFile << std::endl;
648 return _error->Error("Failed to open out %s", Itm->DestFile.c_str());
649 }
dbd5418b 650
9224ce3d 651 Hashes hash(Itm->ExpectedHashes);
dbd5418b
AT
652 patch.apply_against_file(out, inp, &hash);
653
d7a51997
DK
654 out.Close();
655 inp.Close();
dbd5418b
AT
656
657 if (Debug == true) {
658 std::clog << "rred: finished file patching of " << Path << "." << std::endl;
659 }
660
661 struct stat bufbase, bufpatch;
662 if (stat(Path.c_str(), &bufbase) != 0 ||
663 stat(patch_name.c_str(), &bufpatch) != 0)
664 return _error->Errno("stat", _("Failed to stat"));
665
246bbb61 666 struct timeval times[2];
25d99f3b
DK
667 times[0].tv_sec = bufbase.st_atime;
668 times[1].tv_sec = bufpatch.st_mtime;
246bbb61
DK
669 times[0].tv_usec = times[1].tv_usec = 0;
670 if (utimes(Itm->DestFile.c_str(), times) != 0)
671 return _error->Errno("utimes",_("Failed to set modification time"));
dbd5418b
AT
672
673 if (stat(Itm->DestFile.c_str(), &bufbase) != 0)
674 return _error->Errno("stat", _("Failed to stat"));
675
676 Res.LastModified = bufbase.st_mtime;
677 Res.Size = bufbase.st_size;
678 Res.TakeHashes(hash);
679 URIDone(Res);
680
681 return true;
682 }
683
684 public:
23e64f6d 685 RredMethod() : aptMethod("rred", "2.0",SingleInstance | SendConfig), Debug(false) {}
bb1293d9 686};
dbd5418b
AT
687
688int main(int argc, char **argv)
689{
690 int i;
691 bool just_diff = true;
692 Patch patch;
693
694 if (argc <= 1) {
695 RredMethod Mth;
696 return Mth.Run();
697 }
698
699 if (argc > 1 && strcmp(argv[1], "-f") == 0) {
700 just_diff = false;
701 i = 2;
702 } else {
703 i = 1;
704 }
705
706 for (; i < argc; i++) {
50bd6fd3
DK
707 FileFd p;
708 if (p.Open(argv[i], FileFd::ReadOnly) == false) {
709 _error->DumpErrors(std::cerr);
dbd5418b
AT
710 exit(1);
711 }
6d3e5bd8
DK
712 if (patch.read_diff(p, NULL) == false)
713 {
714 _error->DumpErrors(std::cerr);
715 exit(2);
716 }
dbd5418b
AT
717 }
718
719 if (just_diff) {
d7a51997
DK
720 FileFd out;
721 out.OpenDescriptor(STDOUT_FILENO, FileFd::WriteOnly | FileFd::Create);
722 patch.write_diff(out);
dbd5418b 723 } else {
d7a51997
DK
724 FileFd out, inp;
725 out.OpenDescriptor(STDOUT_FILENO, FileFd::WriteOnly | FileFd::Create);
726 inp.OpenDescriptor(STDIN_FILENO, FileFd::ReadOnly);
dbd5418b
AT
727 patch.apply_against_file(out, inp);
728 }
729 return 0;
2e178d1c 730}