Skip to content

Commit

Permalink
bulk-checkin: convert index_bulk_checkin to struct object_id
Browse files Browse the repository at this point in the history
Convert the index_bulk_checkin function, and the static functions it
calls, to use pointers to struct object_id.

Signed-off-by: brian m. carlson <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
bk2204 authored and gitster committed Mar 14, 2018
1 parent d0db9ed commit 68ee6df
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions bulk-checkin.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,17 @@ static void finish_bulk_checkin(struct bulk_checkin_state *state)
reprepare_packed_git();
}

static int already_written(struct bulk_checkin_state *state, unsigned char sha1[])
static int already_written(struct bulk_checkin_state *state, struct object_id *oid)
{
int i;

/* The object may already exist in the repository */
if (has_sha1_file(sha1))
if (has_sha1_file(oid->hash))
return 1;

/* Might want to keep the list sorted */
for (i = 0; i < state->nr_written; i++)
if (!hashcmp(state->written[i]->oid.hash, sha1))
if (!oidcmp(&state->written[i]->oid, oid))
return 1;

/* This is a new object we need to keep */
Expand Down Expand Up @@ -186,7 +186,7 @@ static void prepare_to_stream(struct bulk_checkin_state *state,
}

static int deflate_to_pack(struct bulk_checkin_state *state,
unsigned char result_sha1[],
struct object_id *result_oid,
int fd, size_t size,
enum object_type type, const char *path,
unsigned flags)
Expand Down Expand Up @@ -236,17 +236,17 @@ static int deflate_to_pack(struct bulk_checkin_state *state,
if (lseek(fd, seekback, SEEK_SET) == (off_t) -1)
return error("cannot seek back");
}
the_hash_algo->final_fn(result_sha1, &ctx);
the_hash_algo->final_fn(result_oid->hash, &ctx);
if (!idx)
return 0;

idx->crc32 = crc32_end(state->f);
if (already_written(state, result_sha1)) {
if (already_written(state, result_oid)) {
hashfile_truncate(state->f, &checkpoint);
state->offset = checkpoint.offset;
free(idx);
} else {
hashcpy(idx->oid.hash, result_sha1);
oidcpy(&idx->oid, result_oid);
ALLOC_GROW(state->written,
state->nr_written + 1,
state->alloc_written);
Expand All @@ -255,11 +255,11 @@ static int deflate_to_pack(struct bulk_checkin_state *state,
return 0;
}

int index_bulk_checkin(unsigned char *sha1,
int index_bulk_checkin(struct object_id *oid,
int fd, size_t size, enum object_type type,
const char *path, unsigned flags)
{
int status = deflate_to_pack(&state, sha1, fd, size, type,
int status = deflate_to_pack(&state, oid, fd, size, type,
path, flags);
if (!state.plugged)
finish_bulk_checkin(&state);
Expand Down
2 changes: 1 addition & 1 deletion bulk-checkin.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#ifndef BULK_CHECKIN_H
#define BULK_CHECKIN_H

extern int index_bulk_checkin(unsigned char sha1[],
extern int index_bulk_checkin(struct object_id *oid,
int fd, size_t size, enum object_type type,
const char *path, unsigned flags);

Expand Down
2 changes: 1 addition & 1 deletion sha1_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -1892,7 +1892,7 @@ static int index_stream(struct object_id *oid, int fd, size_t size,
enum object_type type, const char *path,
unsigned flags)
{
return index_bulk_checkin(oid->hash, fd, size, type, path, flags);
return index_bulk_checkin(oid, fd, size, type, path, flags);
}

int index_fd(struct object_id *oid, int fd, struct stat *st,
Expand Down

0 comments on commit 68ee6df

Please sign in to comment.