demonstrate breakage of detached checkout with symbolic link HEAD
[git/dscho.git] / csum-file.c
blobcfc1ac42b9fc9489237cd0bcd1652fb4df243512
1 /*
2 * csum-file.c
4 * Copyright (C) 2005 Linus Torvalds
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 "progress.h"
12 #include "csum-file.h"
14 static void flush(struct sha1file *f, unsigned int count)
16 void *buf = f->buffer;
18 for (;;) {
19 int ret = xwrite(f->fd, buf, count);
20 if (ret > 0) {
21 f->total += ret;
22 display_throughput(f->tp, f->total);
23 buf = (char *) buf + ret;
24 count -= ret;
25 if (count)
26 continue;
27 return;
29 if (!ret)
30 die("sha1 file '%s' write error. Out of diskspace", f->name);
31 die("sha1 file '%s' write error (%s)", f->name, strerror(errno));
35 void sha1flush(struct sha1file *f)
37 unsigned offset = f->offset;
39 if (offset) {
40 SHA1_Update(&f->ctx, f->buffer, offset);
41 flush(f, offset);
42 f->offset = 0;
46 int sha1close(struct sha1file *f, unsigned char *result, unsigned int flags)
48 int fd;
50 sha1flush(f);
51 SHA1_Final(f->buffer, &f->ctx);
52 if (result)
53 hashcpy(result, f->buffer);
54 if (flags & (CSUM_CLOSE | CSUM_FSYNC)) {
55 /* write checksum and close fd */
56 flush(f, 20);
57 if (flags & CSUM_FSYNC)
58 fsync_or_die(f->fd, f->name);
59 if (close(f->fd))
60 die("%s: sha1 file error on close (%s)",
61 f->name, strerror(errno));
62 fd = 0;
63 } else
64 fd = f->fd;
65 free(f);
66 return fd;
69 int sha1write(struct sha1file *f, void *buf, unsigned int count)
71 if (f->do_crc)
72 f->crc32 = crc32(f->crc32, buf, count);
73 while (count) {
74 unsigned offset = f->offset;
75 unsigned left = sizeof(f->buffer) - offset;
76 unsigned nr = count > left ? left : count;
78 memcpy(f->buffer + offset, buf, nr);
79 count -= nr;
80 offset += nr;
81 buf = (char *) buf + nr;
82 left -= nr;
83 if (!left) {
84 SHA1_Update(&f->ctx, f->buffer, offset);
85 flush(f, offset);
86 offset = 0;
88 f->offset = offset;
90 return 0;
93 struct sha1file *sha1fd(int fd, const char *name)
95 return sha1fd_throughput(fd, name, NULL);
98 struct sha1file *sha1fd_throughput(int fd, const char *name, struct progress *tp)
100 struct sha1file *f = xmalloc(sizeof(*f));
101 f->fd = fd;
102 f->offset = 0;
103 f->total = 0;
104 f->tp = tp;
105 f->name = name;
106 f->do_crc = 0;
107 SHA1_Init(&f->ctx);
108 return f;
111 void crc32_begin(struct sha1file *f)
113 f->crc32 = crc32(0, Z_NULL, 0);
114 f->do_crc = 1;
117 uint32_t crc32_end(struct sha1file *f)
119 f->do_crc = 0;
120 return f->crc32;