]> git.ipfire.org Git - thirdparty/git.git/blame - hash-object.c
git-cvsserver: add ability to guess -kb from contents
[thirdparty/git.git] / hash-object.c
CommitLineData
7672db20
BL
1/*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
8e440259 5 * Copyright (C) Junio C Hamano, 2005
7672db20
BL
6 */
7#include "cache.h"
8e440259 8#include "blob.h"
7672db20 9
edaec3fb 10static void hash_object(const char *path, enum object_type type, int write_object)
7672db20
BL
11{
12 int fd;
13 struct stat st;
14 unsigned char sha1[20];
15 fd = open(path, O_RDONLY);
16 if (fd < 0 ||
17 fstat(fd, &st) < 0 ||
53bca91a 18 index_fd(sha1, fd, &st, write_object, type, path))
7672db20
BL
19 die(write_object
20 ? "Unable to add %s to database"
21 : "Unable to hash %s", path);
22 printf("%s\n", sha1_to_hex(sha1));
23}
24
024510c8
DB
25static void hash_stdin(const char *type, int write_object)
26{
27 unsigned char sha1[20];
28 if (index_pipe(sha1, 0, type, write_object))
29 die("Unable to add stdin to database");
30 printf("%s\n", sha1_to_hex(sha1));
31}
32
4d1f1190 33static const char hash_object_usage[] =
024510c8 34"git-hash-object [-t <type>] [-w] [--stdin] <file>...";
7672db20
BL
35
36int main(int argc, char **argv)
37{
38 int i;
8e440259 39 const char *type = blob_type;
7672db20 40 int write_object = 0;
99e01692 41 const char *prefix = NULL;
706fe6ae 42 int prefix_length = -1;
9c2e7c0c 43 int no_more_flags = 0;
8a2f5e5b 44 int hashstdin = 0;
7672db20 45
ff350ccf
NP
46 git_config(git_default_config);
47
7672db20 48 for (i = 1 ; i < argc; i++) {
9c2e7c0c
JH
49 if (!no_more_flags && argv[i][0] == '-') {
50 if (!strcmp(argv[i], "-t")) {
51 if (argc <= ++i)
8cdf3364 52 usage(hash_object_usage);
9c2e7c0c
JH
53 type = argv[i];
54 }
55 else if (!strcmp(argv[i], "-w")) {
56 if (prefix_length < 0) {
57 prefix = setup_git_directory();
58 prefix_length =
59 prefix ? strlen(prefix) : 0;
60 }
61 write_object = 1;
706fe6ae 62 }
9c2e7c0c
JH
63 else if (!strcmp(argv[i], "--")) {
64 no_more_flags = 1;
65 }
66 else if (!strcmp(argv[i], "--help"))
67 usage(hash_object_usage);
024510c8 68 else if (!strcmp(argv[i], "--stdin")) {
8a2f5e5b
GP
69 if (hashstdin)
70 die("Multiple --stdin arguments are not supported");
71 hashstdin = 1;
024510c8 72 }
9c2e7c0c 73 else
8cdf3364
RJ
74 usage(hash_object_usage);
75 }
706fe6ae 76 else {
99e01692 77 const char *arg = argv[i];
8a2f5e5b
GP
78
79 if (hashstdin) {
80 hash_stdin(type, write_object);
81 hashstdin = 0;
82 }
706fe6ae
JH
83 if (0 <= prefix_length)
84 arg = prefix_filename(prefix, prefix_length,
85 arg);
edaec3fb 86 hash_object(arg, type_from_string(type), write_object);
9c2e7c0c 87 no_more_flags = 1;
706fe6ae 88 }
7672db20 89 }
8a2f5e5b
GP
90 if (hashstdin)
91 hash_stdin(type, write_object);
7672db20
BL
92 return 0;
93}