* [PATCH v2] Replace memcpy with hashcpy when dealing hash copy globally
@ 2014-03-02 9:37 Sun He
2014-03-03 7:49 ` Eric Sunshine
0 siblings, 1 reply; 2+ messages in thread
From: Sun He @ 2014-03-02 9:37 UTC (permalink / raw)
To: git; +Cc: pclouds, mhagger, Sun He
Replacing memcpy with hashcpy is more directly and elegant.
Leave ppc/sha1.c alone, as it is an isolated component.
Pull cache.h(actually ../cache.h) in just for one memcpy
there is not proper.
Helped-by: Michael Haggerty <mhagger@alum.mit.edu>
Helped-by: Duy Nguyen <pclouds@gmail.com>
Signed-off-by: Sun He <sunheehnus@gmail.com>
---
PATCH v2 leave ppc/sha1.c alone.
The general rule is if cache.h or git-compat-util.h is included,
it is the first #include, and system includes will be always in
git-compat-tuil.h.
via Duy Nguyen
The change in PATCH v1 is not proper because I placed cache.h
in the end.
And adding it to the head is not a good way to achieve the goal,
as is said above "---".
Thanks to Duy Nguyen.
Find the potential places with memcpy by the bash command:
$ find . | xargs grep "memcpy.*\(.*20.*\)"
ppc/sha1.c doesn't include cache.h and it cannot use
So just leave memcpy(in ppc/sha1.c) alone
bundle.c | 2 +-
grep.c | 2 +-
pack-bitmap-write.c | 2 +-
reflog-walk.c | 4 ++--
refs.c | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/bundle.c b/bundle.c
index e99065c..7809fbb 100644
--- a/bundle.c
+++ b/bundle.c
@@ -19,7 +19,7 @@ static void add_to_ref_list(const unsigned char *sha1, const char *name,
list->list = xrealloc(list->list,
list->alloc * sizeof(list->list[0]));
}
- memcpy(list->list[list->nr].sha1, sha1, 20);
+ hashcpy(list->list[list->nr].sha1, sha1);
list->list[list->nr].name = xstrdup(name);
list->nr++;
}
diff --git a/grep.c b/grep.c
index c668034..f5101f7 100644
--- a/grep.c
+++ b/grep.c
@@ -1650,7 +1650,7 @@ void grep_source_init(struct grep_source *gs, enum grep_source_type type,
break;
case GREP_SOURCE_SHA1:
gs->identifier = xmalloc(20);
- memcpy(gs->identifier, identifier, 20);
+ hashcpy(gs->identifier, identifier);
break;
case GREP_SOURCE_BUF:
gs->identifier = NULL;
diff --git a/pack-bitmap-write.c b/pack-bitmap-write.c
index 1218bef..5f1791a 100644
--- a/pack-bitmap-write.c
+++ b/pack-bitmap-write.c
@@ -530,7 +530,7 @@ void bitmap_writer_finish(struct pack_idx_entry **index,
header.version = htons(default_version);
header.options = htons(flags | options);
header.entry_count = htonl(writer.selected_nr);
- memcpy(header.checksum, writer.pack_checksum, 20);
+ hashcpy(header.checksum, writer.pack_checksum);
sha1write(f, &header, sizeof(header));
dump_bitmap(f, writer.commits);
diff --git a/reflog-walk.c b/reflog-walk.c
index b2fbdb2..d490f7d 100644
--- a/reflog-walk.c
+++ b/reflog-walk.c
@@ -32,8 +32,8 @@ static int read_one_reflog(unsigned char *osha1, unsigned char *nsha1,
sizeof(struct reflog_info));
}
item = array->items + array->nr;
- memcpy(item->osha1, osha1, 20);
- memcpy(item->nsha1, nsha1, 20);
+ hashcpy(item->osha1, osha1);
+ hashcpy(item->nsha1, nsha1);
item->email = xstrdup(email);
item->timestamp = timestamp;
item->tz = tz;
diff --git a/refs.c b/refs.c
index 89228e2..f90b7ea 100644
--- a/refs.c
+++ b/refs.c
@@ -1222,7 +1222,7 @@ static int resolve_gitlink_packed_ref(struct ref_cache *refs,
if (ref == NULL)
return -1;
- memcpy(sha1, ref->u.value.sha1, 20);
+ hashcpy(sha1, ref->u.value.sha1);
return 0;
}
--
1.9.0.138.g2de3478.dirty
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] Replace memcpy with hashcpy when dealing hash copy globally
2014-03-02 9:37 [PATCH v2] Replace memcpy with hashcpy when dealing hash copy globally Sun He
@ 2014-03-03 7:49 ` Eric Sunshine
0 siblings, 0 replies; 2+ messages in thread
From: Eric Sunshine @ 2014-03-03 7:49 UTC (permalink / raw)
To: Sun He; +Cc: Git List, Nguyễn Thái Ngọc Duy, Michael Haggerty
On Sun, Mar 2, 2014 at 4:37 AM, Sun He <sunheehnus@gmail.com> wrote:
> Replacing memcpy with hashcpy is more directly and elegant.
A better explanation is that the change takes advantage of the
abstraction provided by hashcpy() rather than hardcoding knowledge
about a particular hash representation.
> Leave ppc/sha1.c alone, as it is an isolated component.
> Pull cache.h(actually ../cache.h) in just for one memcpy
> there is not proper.
Strange one-space indentation on all lines of commit message.
Other than that, the patch looks reasonable.
> Helped-by: Michael Haggerty <mhagger@alum.mit.edu>
> Helped-by: Duy Nguyen <pclouds@gmail.com>
> Signed-off-by: Sun He <sunheehnus@gmail.com>
> ---
>
> PATCH v2 leave ppc/sha1.c alone.
>
> The general rule is if cache.h or git-compat-util.h is included,
> it is the first #include, and system includes will be always in
> git-compat-tuil.h.
> via Duy Nguyen
>
> The change in PATCH v1 is not proper because I placed cache.h
> in the end.
> And adding it to the head is not a good way to achieve the goal,
> as is said above "---".
>
> Thanks to Duy Nguyen.
>
> Find the potential places with memcpy by the bash command:
> $ find . | xargs grep "memcpy.*\(.*20.*\)"
>
>
> ppc/sha1.c doesn't include cache.h and it cannot use
> So just leave memcpy(in ppc/sha1.c) alone
>
> bundle.c | 2 +-
> grep.c | 2 +-
> pack-bitmap-write.c | 2 +-
> reflog-walk.c | 4 ++--
> refs.c | 2 +-
> 5 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/bundle.c b/bundle.c
> index e99065c..7809fbb 100644
> --- a/bundle.c
> +++ b/bundle.c
> @@ -19,7 +19,7 @@ static void add_to_ref_list(const unsigned char *sha1, const char *name,
> list->list = xrealloc(list->list,
> list->alloc * sizeof(list->list[0]));
> }
> - memcpy(list->list[list->nr].sha1, sha1, 20);
> + hashcpy(list->list[list->nr].sha1, sha1);
> list->list[list->nr].name = xstrdup(name);
> list->nr++;
> }
> diff --git a/grep.c b/grep.c
> index c668034..f5101f7 100644
> --- a/grep.c
> +++ b/grep.c
> @@ -1650,7 +1650,7 @@ void grep_source_init(struct grep_source *gs, enum grep_source_type type,
> break;
> case GREP_SOURCE_SHA1:
> gs->identifier = xmalloc(20);
> - memcpy(gs->identifier, identifier, 20);
> + hashcpy(gs->identifier, identifier);
> break;
> case GREP_SOURCE_BUF:
> gs->identifier = NULL;
> diff --git a/pack-bitmap-write.c b/pack-bitmap-write.c
> index 1218bef..5f1791a 100644
> --- a/pack-bitmap-write.c
> +++ b/pack-bitmap-write.c
> @@ -530,7 +530,7 @@ void bitmap_writer_finish(struct pack_idx_entry **index,
> header.version = htons(default_version);
> header.options = htons(flags | options);
> header.entry_count = htonl(writer.selected_nr);
> - memcpy(header.checksum, writer.pack_checksum, 20);
> + hashcpy(header.checksum, writer.pack_checksum);
>
> sha1write(f, &header, sizeof(header));
> dump_bitmap(f, writer.commits);
> diff --git a/reflog-walk.c b/reflog-walk.c
> index b2fbdb2..d490f7d 100644
> --- a/reflog-walk.c
> +++ b/reflog-walk.c
> @@ -32,8 +32,8 @@ static int read_one_reflog(unsigned char *osha1, unsigned char *nsha1,
> sizeof(struct reflog_info));
> }
> item = array->items + array->nr;
> - memcpy(item->osha1, osha1, 20);
> - memcpy(item->nsha1, nsha1, 20);
> + hashcpy(item->osha1, osha1);
> + hashcpy(item->nsha1, nsha1);
> item->email = xstrdup(email);
> item->timestamp = timestamp;
> item->tz = tz;
> diff --git a/refs.c b/refs.c
> index 89228e2..f90b7ea 100644
> --- a/refs.c
> +++ b/refs.c
> @@ -1222,7 +1222,7 @@ static int resolve_gitlink_packed_ref(struct ref_cache *refs,
> if (ref == NULL)
> return -1;
>
> - memcpy(sha1, ref->u.value.sha1, 20);
> + hashcpy(sha1, ref->u.value.sha1);
> return 0;
> }
>
> --
> 1.9.0.138.g2de3478.dirty
>
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-03-03 7:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-02 9:37 [PATCH v2] Replace memcpy with hashcpy when dealing hash copy globally Sun He
2014-03-03 7:49 ` Eric Sunshine
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).