]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/hash-object.c
Merge branch 'rs/parse-options-with-keep-unknown-abbrev-fix'
[thirdparty/git.git] / builtin / 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 6 */
c2e86add 7#include "builtin.h"
0b027f6c 8#include "abspath.h"
b2141fc1 9#include "config.h"
f394e093 10#include "gettext.h"
41771fa4 11#include "hex.h"
87bed179 12#include "object-file.h"
a034e910 13#include "object-store-ll.h"
8e440259 14#include "blob.h"
d8ee4832 15#include "quote.h"
548601ad 16#include "parse-options.h"
e38da487 17#include "setup.h"
a034e910 18#include "strbuf.h"
d48be35c 19#include "write-or-die.h"
7672db20 20
5ba9a93b
JH
21/*
22 * This is to create corrupt objects for debugging and as such it
23 * needs to bypass the data conversion performed by, and the type
24 * limitation imposed by, index_fd() and its callees.
25 */
eab8bf29 26static int hash_literally(struct object_id *oid, int fd, const char *type, unsigned flags)
5ba9a93b
JH
27{
28 struct strbuf buf = STRBUF_INIT;
29 int ret;
30
31 if (strbuf_read(&buf, fd, 4096) < 0)
32 ret = -1;
5ba9a93b 33 else
0ff7b4f9 34 ret = write_object_file_literally(buf.buf, buf.len, type, oid,
1752cbbc 35 flags);
590b6367 36 close(fd);
5ba9a93b
JH
37 strbuf_release(&buf);
38 return ret;
39}
40
41static void hash_fd(int fd, const char *type, const char *path, unsigned flags,
42 int literally)
7672db20 43{
7672db20 44 struct stat st;
eab8bf29 45 struct object_id oid;
c4ce46fc 46
43df4f86 47 if (fstat(fd, &st) < 0 ||
5ba9a93b 48 (literally
eab8bf29 49 ? hash_literally(&oid, fd, type, flags)
f8adbec9
NTND
50 : index_fd(the_repository->index, &oid, fd, &st,
51 type_from_string(type), path, flags)))
17b787f6 52 die((flags & HASH_WRITE_OBJECT)
7672db20
BL
53 ? "Unable to add %s to database"
54 : "Unable to hash %s", path);
eab8bf29 55 printf("%s\n", oid_to_hex(&oid));
d8ee4832 56 maybe_flush_or_die(stdout, "hash to stdout");
7672db20
BL
57}
58
17b787f6 59static void hash_object(const char *path, const char *type, const char *vpath,
5ba9a93b 60 unsigned flags, int literally)
024510c8 61{
43df4f86 62 int fd;
66e905b7 63 fd = xopen(path, O_RDONLY);
5ba9a93b 64 hash_fd(fd, type, vpath, flags, literally);
024510c8
DB
65}
66
5ba9a93b
JH
67static void hash_stdin_paths(const char *type, int no_filters, unsigned flags,
68 int literally)
d8ee4832 69{
0d4cc1b4
JK
70 struct strbuf buf = STRBUF_INIT;
71 struct strbuf unquoted = STRBUF_INIT;
d8ee4832 72
c0353c78 73 while (strbuf_getline(&buf, stdin) != EOF) {
d8ee4832 74 if (buf.buf[0] == '"') {
0d4cc1b4
JK
75 strbuf_reset(&unquoted);
76 if (unquote_c_style(&unquoted, buf.buf, NULL))
d8ee4832 77 die("line is badly quoted");
0d4cc1b4 78 strbuf_swap(&buf, &unquoted);
d8ee4832 79 }
5ba9a93b
JH
80 hash_object(buf.buf, type, no_filters ? NULL : buf.buf, flags,
81 literally);
d8ee4832
AR
82 }
83 strbuf_release(&buf);
0d4cc1b4 84 strbuf_release(&unquoted);
d8ee4832
AR
85}
86
b28a1ce0 87int cmd_hash_object(int argc, const char **argv, const char *prefix)
7672db20 88{
b64a9846 89 static const char * const hash_object_usage[] = {
5af8b61c 90 N_("git hash-object [-t <type>] [-w] [--path=<file> | --no-filters]\n"
d9054a19
ÆAB
91 " [--stdin [--literally]] [--] <file>..."),
92 N_("git hash-object [-t <type>] [-w] --stdin-paths [--no-filters]"),
b64a9846
JH
93 NULL
94 };
95 const char *type = blob_type;
96 int hashstdin = 0;
97 int stdin_paths = 0;
b64a9846 98 int no_filters = 0;
5ba9a93b 99 int literally = 0;
0e94ee94 100 int nongit = 0;
17b787f6 101 unsigned flags = HASH_FORMAT_CHECK;
b64a9846 102 const char *vpath = NULL;
d17294a0 103 char *vpath_free = NULL;
b64a9846
JH
104 const struct option hash_object_options[] = {
105 OPT_STRING('t', NULL, &type, N_("type"), N_("object type")),
17b787f6
JH
106 OPT_BIT('w', NULL, &flags, N_("write the object into the object database"),
107 HASH_WRITE_OBJECT),
b64a9846
JH
108 OPT_COUNTUP( 0 , "stdin", &hashstdin, N_("read the object from stdin")),
109 OPT_BOOL( 0 , "stdin-paths", &stdin_paths, N_("read file names from stdin")),
110 OPT_BOOL( 0 , "no-filters", &no_filters, N_("store file as is without filters")),
5ba9a93b 111 OPT_BOOL( 0, "literally", &literally, N_("just hash any random garbage to create corrupt objects for debugging Git")),
b64a9846
JH
112 OPT_STRING( 0 , "path", &vpath, N_("file"), N_("process file as it were from this path")),
113 OPT_END()
114 };
7672db20 115 int i;
548601ad
DP
116 const char *errstr = NULL;
117
d64db5b3 118 argc = parse_options(argc, argv, prefix, hash_object_options,
37782920 119 hash_object_usage, 0);
548601ad 120
0e94ee94 121 if (flags & HASH_WRITE_OBJECT)
548601ad 122 prefix = setup_git_directory();
0e94ee94
JK
123 else
124 prefix = setup_git_directory_gently(&nongit);
125
d17294a0
ÆAB
126 if (vpath && prefix) {
127 vpath_free = prefix_filename(prefix, vpath);
128 vpath = vpath_free;
129 }
d8ee4832 130
272459a3
EN
131 git_config(git_default_config, NULL);
132
548601ad
DP
133 if (stdin_paths) {
134 if (hashstdin)
135 errstr = "Can't use --stdin-paths with --stdin";
136 else if (argc)
137 errstr = "Can't specify files with --stdin-paths";
39702431
DP
138 else if (vpath)
139 errstr = "Can't use --stdin-paths with --path";
4a3d85dc
DP
140 }
141 else {
142 if (hashstdin > 1)
143 errstr = "Multiple --stdin arguments are not supported";
144 if (vpath && no_filters)
145 errstr = "Can't use --path with --no-filters";
548601ad 146 }
548601ad
DP
147
148 if (errstr) {
42fc1139 149 error("%s", errstr);
548601ad
DP
150 usage_with_options(hash_object_usage, hash_object_options);
151 }
d8ee4832 152
8a2f5e5b 153 if (hashstdin)
5ba9a93b 154 hash_fd(0, type, vpath, flags, literally);
548601ad
DP
155
156 for (i = 0 ; i < argc; i++) {
157 const char *arg = argv[i];
a1be47e4 158 char *to_free = NULL;
548601ad 159
116fb64e 160 if (prefix)
e4da43b1 161 arg = to_free = prefix_filename(prefix, arg);
17b787f6 162 hash_object(arg, type, no_filters ? NULL : vpath ? vpath : arg,
5ba9a93b 163 flags, literally);
a1be47e4 164 free(to_free);
548601ad
DP
165 }
166
167 if (stdin_paths)
5ba9a93b 168 hash_stdin_paths(type, no_filters, flags, literally);
548601ad 169
d17294a0
ÆAB
170 free(vpath_free);
171
7672db20
BL
172 return 0;
173}