]> git.ipfire.org Git - thirdparty/git.git/blame - csum-file.c
add some copyright notice to the progress display code
[thirdparty/git.git] / csum-file.c
CommitLineData
c38138cd
LT
1/*
2 * csum-file.c
3 *
4 * Copyright (C) 2005 Linus Torvalds
5 *
6 * Simple file write infrastructure for writing SHA1-summed
7 * files. Useful when you write a file that you want to be
8 * able to verify hasn't been messed with afterwards.
9 */
10#include "cache.h"
11#include "csum-file.h"
12
78b713a1 13static void sha1flush(struct sha1file *f, unsigned int count)
c38138cd
LT
14{
15 void *buf = f->buffer;
16
17 for (;;) {
1c15afb9 18 int ret = xwrite(f->fd, buf, count);
c38138cd 19 if (ret > 0) {
1d7f171c 20 buf = (char *) buf + ret;
c38138cd
LT
21 count -= ret;
22 if (count)
23 continue;
78b713a1 24 return;
c38138cd
LT
25 }
26 if (!ret)
e1808845 27 die("sha1 file '%s' write error. Out of diskspace", f->name);
e1808845 28 die("sha1 file '%s' write error (%s)", f->name, strerror(errno));
c38138cd
LT
29 }
30}
31
f0215369 32int sha1close(struct sha1file *f, unsigned char *result, int final)
c38138cd 33{
7ba502c4 34 int fd;
c38138cd
LT
35 unsigned offset = f->offset;
36 if (offset) {
37 SHA1_Update(&f->ctx, f->buffer, offset);
38 sha1flush(f, offset);
f0215369 39 f->offset = 0;
c38138cd 40 }
7ba502c4
NP
41 if (final) {
42 /* write checksum and close fd */
43 SHA1_Final(f->buffer, &f->ctx);
44 if (result)
45 hashcpy(result, f->buffer);
46 sha1flush(f, 20);
47 if (close(f->fd))
48 die("%s: sha1 file error on close (%s)",
49 f->name, strerror(errno));
50 fd = 0;
51 } else
52 fd = f->fd;
7bf058f0 53 free(f);
7ba502c4 54 return fd;
c38138cd
LT
55}
56
57int sha1write(struct sha1file *f, void *buf, unsigned int count)
58{
78d1e84f
NP
59 if (f->do_crc)
60 f->crc32 = crc32(f->crc32, buf, count);
c38138cd
LT
61 while (count) {
62 unsigned offset = f->offset;
63 unsigned left = sizeof(f->buffer) - offset;
64 unsigned nr = count > left ? left : count;
65
66 memcpy(f->buffer + offset, buf, nr);
67 count -= nr;
68 offset += nr;
1d7f171c 69 buf = (char *) buf + nr;
c38138cd
LT
70 left -= nr;
71 if (!left) {
72 SHA1_Update(&f->ctx, f->buffer, offset);
73 sha1flush(f, offset);
74 offset = 0;
75 }
76 f->offset = offset;
77 }
78 return 0;
79}
80
4397f014
LT
81struct sha1file *sha1fd(int fd, const char *name)
82{
83 struct sha1file *f;
84 unsigned len;
85
86 f = xmalloc(sizeof(*f));
87
88 len = strlen(name);
89 if (len >= PATH_MAX)
90 die("you wascally wabbit, you");
91 f->namelen = len;
92 memcpy(f->name, name, len+1);
93
94 f->fd = fd;
95 f->error = 0;
96 f->offset = 0;
78d1e84f 97 f->do_crc = 0;
4397f014
LT
98 SHA1_Init(&f->ctx);
99 return f;
100}
101
78d1e84f
NP
102void crc32_begin(struct sha1file *f)
103{
104 f->crc32 = crc32(0, Z_NULL, 0);
105 f->do_crc = 1;
106}
c38138cd 107
78d1e84f
NP
108uint32_t crc32_end(struct sha1file *f)
109{
110 f->do_crc = 0;
111 return f->crc32;
112}