]> git.ipfire.org Git - thirdparty/git.git/blame - csum-file.h
Git 1.7.8-rc2
[thirdparty/git.git] / csum-file.h
CommitLineData
c38138cd
LT
1#ifndef CSUM_FILE_H
2#define CSUM_FILE_H
3
2a128d63
NP
4struct progress;
5
c38138cd
LT
6/* A SHA1-protected file */
7struct sha1file {
ec640ed1 8 int fd;
e337a04d 9 int check_fd;
ec640ed1 10 unsigned int offset;
9126f009 11 git_SHA_CTX ctx;
218558af 12 off_t total;
2a128d63 13 struct progress *tp;
ec640ed1 14 const char *name;
78d1e84f
NP
15 int do_crc;
16 uint32_t crc32;
c38138cd
LT
17 unsigned char buffer[8192];
18};
19
4c81b03e
LT
20/* sha1close flags */
21#define CSUM_CLOSE 1
22#define CSUM_FSYNC 2
23
4397f014 24extern struct sha1file *sha1fd(int fd, const char *name);
e337a04d 25extern struct sha1file *sha1fd_check(const char *name);
2a128d63 26extern struct sha1file *sha1fd_throughput(int fd, const char *name, struct progress *tp);
4c81b03e 27extern int sha1close(struct sha1file *, unsigned char *, unsigned int);
c38138cd 28extern int sha1write(struct sha1file *, void *, unsigned int);
838cd346 29extern void sha1flush(struct sha1file *f);
78d1e84f
NP
30extern void crc32_begin(struct sha1file *);
31extern uint32_t crc32_end(struct sha1file *);
c38138cd
LT
32
33#endif