summaryrefslogtreecommitdiff
path: root/src/protocol.c
blob: 4c4a7f79bc29cbaa898a21d315ef21ceb5ab4aa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
 * Copyright (C) 2009-2012 the libgit2 contributors
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */
#include "common.h"
#include "protocol.h"
#include "pkt.h"
#include "buffer.h"

int git_protocol_store_refs(git_protocol *p, const char *data, size_t len)
{
	git_buf *buf = &p->buf;
	git_vector *refs = p->refs;
	int error;
	const char *line_end, *ptr;

	if (len == 0) { /* EOF */
		if (buf->size != 0) {
			giterr_set(GITERR_NET, "Unexpected EOF");
			return p->error = -1;
		} else {
			return 0;
		}
	}

	git_buf_put(buf, data, len);
	ptr = buf->ptr;
	while (1) {
		git_pkt *pkt;

		if (buf->size == 0)
			return 0;

		error = git_pkt_parse_line(&pkt, ptr, &line_end, buf->size);
		if (error == GIT_ESHORTBUFFER)
			return 0; /* Ask for more */
		if (error < 0)
			return p->error = -1;

		git_buf_consume(buf, line_end);
		if (git_vector_insert(refs, pkt) < 0)
			return p->error = -1;

		if (pkt->type == GIT_PKT_FLUSH)
			p->flush = 1;
	}

	return 0;
}