pkt-line: rename packet_write() to packet_write_fmt()

packet_write() should be called packet_write_fmt() because it is a
printf-like function that takes a format string as first parameter.

packet_write_fmt() should be used for text strings only. Arbitrary
binary data should use a new packet_write() function that is introduced
in a subsequent patch.

Suggested-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Lars Schneider <larsxschneider@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Lars Schneider
2016-10-16 16:20:29 -07:00
committed by Junio C Hamano
parent ac2fbaa674
commit 81c634e94f
11 changed files with 29 additions and 29 deletions

View File

@ -47,10 +47,10 @@ static int run_remote_archiver(int argc, const char **argv,
if (name_hint) { if (name_hint) {
const char *format = archive_format_from_filename(name_hint); const char *format = archive_format_from_filename(name_hint);
if (format) if (format)
packet_write(fd[1], "argument --format=%s\n", format); packet_write_fmt(fd[1], "argument --format=%s\n", format);
} }
for (i = 1; i < argc; i++) for (i = 1; i < argc; i++)
packet_write(fd[1], "argument %s\n", argv[i]); packet_write_fmt(fd[1], "argument %s\n", argv[i]);
packet_flush(fd[1]); packet_flush(fd[1]);
buf = packet_read_line(fd[0], NULL); buf = packet_read_line(fd[0], NULL);

View File

@ -224,7 +224,7 @@ static int receive_pack_config(const char *var, const char *value, void *cb)
static void show_ref(const char *path, const unsigned char *sha1) static void show_ref(const char *path, const unsigned char *sha1)
{ {
if (sent_capabilities) { if (sent_capabilities) {
packet_write(1, "%s %s\n", sha1_to_hex(sha1), path); packet_write_fmt(1, "%s %s\n", sha1_to_hex(sha1), path);
} else { } else {
struct strbuf cap = STRBUF_INIT; struct strbuf cap = STRBUF_INIT;
@ -239,7 +239,7 @@ static void show_ref(const char *path, const unsigned char *sha1)
if (advertise_push_options) if (advertise_push_options)
strbuf_addstr(&cap, " push-options"); strbuf_addstr(&cap, " push-options");
strbuf_addf(&cap, " agent=%s", git_user_agent_sanitized()); strbuf_addf(&cap, " agent=%s", git_user_agent_sanitized());
packet_write(1, "%s %s%c%s\n", packet_write_fmt(1, "%s %s%c%s\n",
sha1_to_hex(sha1), path, 0, cap.buf); sha1_to_hex(sha1), path, 0, cap.buf);
strbuf_release(&cap); strbuf_release(&cap);
sent_capabilities = 1; sent_capabilities = 1;

View File

@ -128,9 +128,9 @@ static void send_git_request(int stdin_fd, const char *serv, const char *repo,
const char *vhost) const char *vhost)
{ {
if (!vhost) if (!vhost)
packet_write(stdin_fd, "%s %s%c", serv, repo, 0); packet_write_fmt(stdin_fd, "%s %s%c", serv, repo, 0);
else else
packet_write(stdin_fd, "%s %s%chost=%s%c", serv, repo, 0, packet_write_fmt(stdin_fd, "%s %s%chost=%s%c", serv, repo, 0,
vhost, 0); vhost, 0);
} }

View File

@ -88,11 +88,11 @@ int cmd_upload_archive(int argc, const char **argv, const char *prefix)
writer.git_cmd = 1; writer.git_cmd = 1;
if (start_command(&writer)) { if (start_command(&writer)) {
int err = errno; int err = errno;
packet_write(1, "NACK unable to spawn subprocess\n"); packet_write_fmt(1, "NACK unable to spawn subprocess\n");
die("upload-archive: %s", strerror(err)); die("upload-archive: %s", strerror(err));
} }
packet_write(1, "ACK\n"); packet_write_fmt(1, "ACK\n");
packet_flush(1); packet_flush(1);
while (1) { while (1) {

View File

@ -730,7 +730,7 @@ struct child_process *git_connect(int fd[2], const char *url,
* Note: Do not add any other headers here! Doing so * Note: Do not add any other headers here! Doing so
* will cause older git-daemon servers to crash. * will cause older git-daemon servers to crash.
*/ */
packet_write(fd[1], packet_write_fmt(fd[1],
"%s %s%chost=%s%c", "%s %s%chost=%s%c",
prog, path, 0, prog, path, 0,
target_host, 0); target_host, 0);

View File

@ -281,7 +281,7 @@ static int daemon_error(const char *dir, const char *msg)
{ {
if (!informative_errors) if (!informative_errors)
msg = "access denied or repository not exported"; msg = "access denied or repository not exported";
packet_write(1, "ERR %s: %s", msg, dir); packet_write_fmt(1, "ERR %s: %s", msg, dir);
return -1; return -1;
} }

View File

@ -464,7 +464,7 @@ static void get_info_refs(struct strbuf *hdr, char *arg)
hdr_str(hdr, content_type, buf.buf); hdr_str(hdr, content_type, buf.buf);
end_headers(hdr); end_headers(hdr);
packet_write(1, "# service=git-%s\n", svc->name); packet_write_fmt(1, "# service=git-%s\n", svc->name);
packet_flush(1); packet_flush(1);
argv[0] = svc->name; argv[0] = svc->name;

View File

@ -118,7 +118,7 @@ static void format_packet(struct strbuf *out, const char *fmt, va_list args)
packet_trace(out->buf + orig_len + 4, n - 4, 1); packet_trace(out->buf + orig_len + 4, n - 4, 1);
} }
void packet_write(int fd, const char *fmt, ...) void packet_write_fmt(int fd, const char *fmt, ...)
{ {
static struct strbuf buf = STRBUF_INIT; static struct strbuf buf = STRBUF_INIT;
va_list args; va_list args;

View File

@ -20,7 +20,7 @@
* side can't, we stay with pure read/write interfaces. * side can't, we stay with pure read/write interfaces.
*/ */
void packet_flush(int fd); void packet_flush(int fd);
void packet_write(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3))); void packet_write_fmt(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
void packet_buf_flush(struct strbuf *buf); void packet_buf_flush(struct strbuf *buf);
void packet_buf_write(struct strbuf *buf, const char *fmt, ...) __attribute__((format (printf, 2, 3))); void packet_buf_write(struct strbuf *buf, const char *fmt, ...) __attribute__((format (printf, 2, 3)));

View File

@ -260,7 +260,7 @@ static int advertise_shallow_grafts_cb(const struct commit_graft *graft, void *c
{ {
int fd = *(int *)cb; int fd = *(int *)cb;
if (graft->nr_parent == -1) if (graft->nr_parent == -1)
packet_write(fd, "shallow %s\n", oid_to_hex(&graft->oid)); packet_write_fmt(fd, "shallow %s\n", oid_to_hex(&graft->oid));
return 0; return 0;
} }

View File

@ -393,13 +393,13 @@ static int get_common_commits(void)
if (multi_ack == 2 && got_common if (multi_ack == 2 && got_common
&& !got_other && ok_to_give_up()) { && !got_other && ok_to_give_up()) {
sent_ready = 1; sent_ready = 1;
packet_write(1, "ACK %s ready\n", last_hex); packet_write_fmt(1, "ACK %s ready\n", last_hex);
} }
if (have_obj.nr == 0 || multi_ack) if (have_obj.nr == 0 || multi_ack)
packet_write(1, "NAK\n"); packet_write_fmt(1, "NAK\n");
if (no_done && sent_ready) { if (no_done && sent_ready) {
packet_write(1, "ACK %s\n", last_hex); packet_write_fmt(1, "ACK %s\n", last_hex);
return 0; return 0;
} }
if (stateless_rpc) if (stateless_rpc)
@ -416,20 +416,20 @@ static int get_common_commits(void)
const char *hex = sha1_to_hex(sha1); const char *hex = sha1_to_hex(sha1);
if (multi_ack == 2) { if (multi_ack == 2) {
sent_ready = 1; sent_ready = 1;
packet_write(1, "ACK %s ready\n", hex); packet_write_fmt(1, "ACK %s ready\n", hex);
} else } else
packet_write(1, "ACK %s continue\n", hex); packet_write_fmt(1, "ACK %s continue\n", hex);
} }
break; break;
default: default:
got_common = 1; got_common = 1;
memcpy(last_hex, sha1_to_hex(sha1), 41); memcpy(last_hex, sha1_to_hex(sha1), 41);
if (multi_ack == 2) if (multi_ack == 2)
packet_write(1, "ACK %s common\n", last_hex); packet_write_fmt(1, "ACK %s common\n", last_hex);
else if (multi_ack) else if (multi_ack)
packet_write(1, "ACK %s continue\n", last_hex); packet_write_fmt(1, "ACK %s continue\n", last_hex);
else if (have_obj.nr == 1) else if (have_obj.nr == 1)
packet_write(1, "ACK %s\n", last_hex); packet_write_fmt(1, "ACK %s\n", last_hex);
break; break;
} }
continue; continue;
@ -437,10 +437,10 @@ static int get_common_commits(void)
if (!strcmp(line, "done")) { if (!strcmp(line, "done")) {
if (have_obj.nr > 0) { if (have_obj.nr > 0) {
if (multi_ack) if (multi_ack)
packet_write(1, "ACK %s\n", last_hex); packet_write_fmt(1, "ACK %s\n", last_hex);
return 0; return 0;
} }
packet_write(1, "NAK\n"); packet_write_fmt(1, "NAK\n");
return -1; return -1;
} }
die("git upload-pack: expected SHA1 list, got '%s'", line); die("git upload-pack: expected SHA1 list, got '%s'", line);
@ -650,7 +650,7 @@ static void receive_needs(void)
while (result) { while (result) {
struct object *object = &result->item->object; struct object *object = &result->item->object;
if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) { if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
packet_write(1, "shallow %s", packet_write_fmt(1, "shallow %s",
oid_to_hex(&object->oid)); oid_to_hex(&object->oid));
register_shallow(object->oid.hash); register_shallow(object->oid.hash);
shallow_nr++; shallow_nr++;
@ -662,7 +662,7 @@ static void receive_needs(void)
struct object *object = shallows.objects[i].item; struct object *object = shallows.objects[i].item;
if (object->flags & NOT_SHALLOW) { if (object->flags & NOT_SHALLOW) {
struct commit_list *parents; struct commit_list *parents;
packet_write(1, "unshallow %s", packet_write_fmt(1, "unshallow %s",
oid_to_hex(&object->oid)); oid_to_hex(&object->oid));
object->flags &= ~CLIENT_SHALLOW; object->flags &= ~CLIENT_SHALLOW;
/* make sure the real parents are parsed */ /* make sure the real parents are parsed */
@ -741,7 +741,7 @@ static int send_ref(const char *refname, const struct object_id *oid,
struct strbuf symref_info = STRBUF_INIT; struct strbuf symref_info = STRBUF_INIT;
format_symref_info(&symref_info, cb_data); format_symref_info(&symref_info, cb_data);
packet_write(1, "%s %s%c%s%s%s%s%s agent=%s\n", packet_write_fmt(1, "%s %s%c%s%s%s%s%s agent=%s\n",
oid_to_hex(oid), refname_nons, oid_to_hex(oid), refname_nons,
0, capabilities, 0, capabilities,
(allow_unadvertised_object_request & ALLOW_TIP_SHA1) ? (allow_unadvertised_object_request & ALLOW_TIP_SHA1) ?
@ -753,11 +753,11 @@ static int send_ref(const char *refname, const struct object_id *oid,
git_user_agent_sanitized()); git_user_agent_sanitized());
strbuf_release(&symref_info); strbuf_release(&symref_info);
} else { } else {
packet_write(1, "%s %s\n", oid_to_hex(oid), refname_nons); packet_write_fmt(1, "%s %s\n", oid_to_hex(oid), refname_nons);
} }
capabilities = NULL; capabilities = NULL;
if (!peel_ref(refname, peeled.hash)) if (!peel_ref(refname, peeled.hash))
packet_write(1, "%s %s^{}\n", oid_to_hex(&peeled), refname_nons); packet_write_fmt(1, "%s %s^{}\n", oid_to_hex(&peeled), refname_nons);
return 0; return 0;
} }