streaming.c 11.8 KB
Newer Older
1 2 3 4 5
/*
 * Copyright (c) 2011, Google Inc.
 */
#include "cache.h"
#include "streaming.h"
J
Jonathan Tan 已提交
6
#include "packfile.h"
7 8 9 10 11 12 13 14 15 16

enum input_source {
	stream_error = -1,
	incore = 0,
	loose = 1,
	pack_non_delta = 2
};

typedef int (*open_istream_fn)(struct git_istream *,
			       struct object_info *,
17
			       const struct object_id *,
18 19 20 21 22 23 24 25 26 27 28 29
			       enum object_type *);
typedef int (*close_istream_fn)(struct git_istream *);
typedef ssize_t (*read_istream_fn)(struct git_istream *, char *, size_t);

struct stream_vtbl {
	close_istream_fn close;
	read_istream_fn read;
};

#define open_method_decl(name) \
	int open_istream_ ##name \
	(struct git_istream *st, struct object_info *oi, \
30
	 const struct object_id *oid, \
31 32 33 34 35 36 37 38 39 40 41 42 43 44
	 enum object_type *type)

#define close_method_decl(name) \
	int close_istream_ ##name \
	(struct git_istream *st)

#define read_method_decl(name) \
	ssize_t read_istream_ ##name \
	(struct git_istream *st, char *buf, size_t sz)

/* forward declaration */
static open_method_decl(incore);
static open_method_decl(loose);
static open_method_decl(pack_non_delta);
J
Junio C Hamano 已提交
45 46 47
static struct git_istream *attach_stream_filter(struct git_istream *st,
						struct stream_filter *filter);

48 49 50 51 52 53 54

static open_istream_fn open_istream_tbl[] = {
	open_istream_incore,
	open_istream_loose,
	open_istream_pack_non_delta,
};

J
Junio C Hamano 已提交
55 56 57 58 59 60 61 62 63
#define FILTER_BUFFER (1024*16)

struct filtered_istream {
	struct git_istream *upstream;
	struct stream_filter *filter;
	char ibuf[FILTER_BUFFER];
	char obuf[FILTER_BUFFER];
	int i_end, i_ptr;
	int o_end, o_ptr;
64
	int input_finished;
J
Junio C Hamano 已提交
65 66
};

67 68 69
struct git_istream {
	const struct stream_vtbl *vtbl;
	unsigned long size; /* inflated size of full object */
J
Junio C Hamano 已提交
70
	git_zstream z;
71
	enum { z_unused, z_used, z_done, z_error } z_state;
72 73 74 75 76 77 78 79

	union {
		struct {
			char *buf; /* from read_object() */
			unsigned long read_ptr;
		} incore;

		struct {
80 81 82 83 84
			void *mapped;
			unsigned long mapsize;
			char hdr[32];
			int hdr_avail;
			int hdr_used;
85 86 87
		} loose;

		struct {
88 89
			struct packed_git *pack;
			off_t pos;
90
		} in_pack;
J
Junio C Hamano 已提交
91 92

		struct filtered_istream filtered;
93 94 95 96 97
	} u;
};

int close_istream(struct git_istream *st)
{
98 99 100
	int r = st->vtbl->close(st);
	free(st);
	return r;
101 102
}

103
ssize_t read_istream(struct git_istream *st, void *buf, size_t sz)
104 105 106 107
{
	return st->vtbl->read(st, buf, sz);
}

108
static enum input_source istream_source(const struct object_id *oid,
109 110 111 112 113 114
					enum object_type *type,
					struct object_info *oi)
{
	unsigned long size;
	int status;

115
	oi->typep = type;
116
	oi->sizep = &size;
117
	status = oid_object_info_extended(oid, oi, 0);
118 119 120 121 122 123 124
	if (status < 0)
		return stream_error;

	switch (oi->whence) {
	case OI_LOOSE:
		return loose;
	case OI_PACKED:
125
		if (!oi->u.packed.is_delta && big_file_threshold < size)
126 127 128 129 130 131 132
			return pack_non_delta;
		/* fallthru */
	default:
		return incore;
	}
}

133
struct git_istream *open_istream(const struct object_id *oid,
134
				 enum object_type *type,
J
Junio C Hamano 已提交
135 136
				 unsigned long *size,
				 struct stream_filter *filter)
137 138
{
	struct git_istream *st;
139
	struct object_info oi = OBJECT_INFO_INIT;
140
	const struct object_id *real = lookup_replace_object(oid);
141 142 143 144 145 146
	enum input_source src = istream_source(real, type, &oi);

	if (src < 0)
		return NULL;

	st = xmalloc(sizeof(*st));
147 148
	if (open_istream_tbl[src](st, &oi, real, type)) {
		if (open_istream_incore(st, &oi, real, type)) {
149 150 151 152
			free(st);
			return NULL;
		}
	}
153
	if (filter) {
J
Junio C Hamano 已提交
154 155
		/* Add "&& !is_null_stream_filter(filter)" for performance */
		struct git_istream *nst = attach_stream_filter(st, filter);
156
		if (!nst) {
J
Junio C Hamano 已提交
157
			close_istream(st);
158 159
			return NULL;
		}
J
Junio C Hamano 已提交
160 161 162
		st = nst;
	}

163 164 165 166
	*size = st->size;
	return st;
}

167 168 169 170 171 172 173 174 175 176 177 178 179 180

/*****************************************************************
 *
 * Common helpers
 *
 *****************************************************************/

static void close_deflated_stream(struct git_istream *st)
{
	if (st->z_state == z_used)
		git_inflate_end(&st->z);
}


J
Junio C Hamano 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
/*****************************************************************
 *
 * Filtered stream
 *
 *****************************************************************/

static close_method_decl(filtered)
{
	free_stream_filter(st->u.filtered.filter);
	return close_istream(st->u.filtered.upstream);
}

static read_method_decl(filtered)
{
	struct filtered_istream *fs = &(st->u.filtered);
	size_t filled = 0;

	while (sz) {
		/* do we already have filtered output? */
		if (fs->o_ptr < fs->o_end) {
			size_t to_move = fs->o_end - fs->o_ptr;
			if (sz < to_move)
				to_move = sz;
			memcpy(buf + filled, fs->obuf + fs->o_ptr, to_move);
			fs->o_ptr += to_move;
			sz -= to_move;
			filled += to_move;
			continue;
		}
		fs->o_end = fs->o_ptr = 0;

		/* do we have anything to feed the filter with? */
		if (fs->i_ptr < fs->i_end) {
			size_t to_feed = fs->i_end - fs->i_ptr;
			size_t to_receive = FILTER_BUFFER;
			if (stream_filter(fs->filter,
					  fs->ibuf + fs->i_ptr, &to_feed,
					  fs->obuf, &to_receive))
				return -1;
			fs->i_ptr = fs->i_end - to_feed;
			fs->o_end = FILTER_BUFFER - to_receive;
			continue;
		}
224 225 226 227 228 229 230 231 232 233 234 235 236

		/* tell the filter to drain upon no more input */
		if (fs->input_finished) {
			size_t to_receive = FILTER_BUFFER;
			if (stream_filter(fs->filter,
					  NULL, NULL,
					  fs->obuf, &to_receive))
				return -1;
			fs->o_end = FILTER_BUFFER - to_receive;
			if (!fs->o_end)
				break;
			continue;
		}
J
Junio C Hamano 已提交
237 238 239
		fs->i_end = fs->i_ptr = 0;

		/* refill the input from the upstream */
240 241 242
		if (!fs->input_finished) {
			fs->i_end = read_istream(fs->upstream, fs->ibuf, FILTER_BUFFER);
			if (fs->i_end < 0)
243
				return -1;
244 245 246 247
			if (fs->i_end)
				continue;
		}
		fs->input_finished = 1;
J
Junio C Hamano 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
	}
	return filled;
}

static struct stream_vtbl filtered_vtbl = {
	close_istream_filtered,
	read_istream_filtered,
};

static struct git_istream *attach_stream_filter(struct git_istream *st,
						struct stream_filter *filter)
{
	struct git_istream *ifs = xmalloc(sizeof(*ifs));
	struct filtered_istream *fs = &(ifs->u.filtered);

	ifs->vtbl = &filtered_vtbl;
	fs->upstream = st;
	fs->filter = filter;
	fs->i_end = fs->i_ptr = 0;
	fs->o_end = fs->o_ptr = 0;
268
	fs->input_finished = 0;
J
Junio C Hamano 已提交
269 270 271 272
	ifs->size = -1; /* unknown */
	return ifs;
}

273 274 275 276 277 278
/*****************************************************************
 *
 * Loose object stream
 *
 *****************************************************************/

279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
static read_method_decl(loose)
{
	size_t total_read = 0;

	switch (st->z_state) {
	case z_done:
		return 0;
	case z_error:
		return -1;
	default:
		break;
	}

	if (st->u.loose.hdr_used < st->u.loose.hdr_avail) {
		size_t to_copy = st->u.loose.hdr_avail - st->u.loose.hdr_used;
		if (sz < to_copy)
			to_copy = sz;
		memcpy(buf, st->u.loose.hdr + st->u.loose.hdr_used, to_copy);
		st->u.loose.hdr_used += to_copy;
		total_read += to_copy;
	}

	while (total_read < sz) {
		int status;

		st->z.next_out = (unsigned char *)buf + total_read;
		st->z.avail_out = sz - total_read;
		status = git_inflate(&st->z, Z_FINISH);

		total_read = st->z.next_out - (unsigned char *)buf;

		if (status == Z_STREAM_END) {
			git_inflate_end(&st->z);
			st->z_state = z_done;
			break;
		}
315
		if (status != Z_OK && (status != Z_BUF_ERROR || total_read < sz)) {
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
			git_inflate_end(&st->z);
			st->z_state = z_error;
			return -1;
		}
	}
	return total_read;
}

static close_method_decl(loose)
{
	close_deflated_stream(st);
	munmap(st->u.loose.mapped, st->u.loose.mapsize);
	return 0;
}

static struct stream_vtbl loose_vtbl = {
	close_istream_loose,
	read_istream_loose,
};

336 337
static open_method_decl(loose)
{
338
	st->u.loose.mapped = map_sha1_file(oid->hash, &st->u.loose.mapsize);
339 340
	if (!st->u.loose.mapped)
		return -1;
341 342 343 344 345 346
	if ((unpack_sha1_header(&st->z,
				st->u.loose.mapped,
				st->u.loose.mapsize,
				st->u.loose.hdr,
				sizeof(st->u.loose.hdr)) < 0) ||
	    (parse_sha1_header(st->u.loose.hdr, &st->size) < 0)) {
347 348 349 350 351 352 353 354 355 356 357
		git_inflate_end(&st->z);
		munmap(st->u.loose.mapped, st->u.loose.mapsize);
		return -1;
	}

	st->u.loose.hdr_used = strlen(st->u.loose.hdr) + 1;
	st->u.loose.hdr_avail = st->z.total_out;
	st->z_state = z_used;

	st->vtbl = &loose_vtbl;
	return 0;
358 359 360 361 362 363 364 365 366
}


/*****************************************************************
 *
 * Non-delta packed object stream
 *
 *****************************************************************/

367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
static read_method_decl(pack_non_delta)
{
	size_t total_read = 0;

	switch (st->z_state) {
	case z_unused:
		memset(&st->z, 0, sizeof(st->z));
		git_inflate_init(&st->z);
		st->z_state = z_used;
		break;
	case z_done:
		return 0;
	case z_error:
		return -1;
	case z_used:
		break;
	}

	while (total_read < sz) {
		int status;
		struct pack_window *window = NULL;
		unsigned char *mapped;

		mapped = use_pack(st->u.in_pack.pack, &window,
				  st->u.in_pack.pos, &st->z.avail_in);

		st->z.next_out = (unsigned char *)buf + total_read;
		st->z.avail_out = sz - total_read;
		st->z.next_in = mapped;
		status = git_inflate(&st->z, Z_FINISH);

		st->u.in_pack.pos += st->z.next_in - mapped;
		total_read = st->z.next_out - (unsigned char *)buf;
		unuse_pack(&window);

		if (status == Z_STREAM_END) {
			git_inflate_end(&st->z);
			st->z_state = z_done;
			break;
		}
		if (status != Z_OK && status != Z_BUF_ERROR) {
			git_inflate_end(&st->z);
			st->z_state = z_error;
			return -1;
		}
	}
	return total_read;
}

static close_method_decl(pack_non_delta)
{
	close_deflated_stream(st);
	return 0;
}

static struct stream_vtbl pack_non_delta_vtbl = {
	close_istream_pack_non_delta,
	read_istream_pack_non_delta,
};

427 428
static open_method_decl(pack_non_delta)
{
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
	struct pack_window *window;
	enum object_type in_pack_type;

	st->u.in_pack.pack = oi->u.packed.pack;
	st->u.in_pack.pos = oi->u.packed.offset;
	window = NULL;

	in_pack_type = unpack_object_header(st->u.in_pack.pack,
					    &window,
					    &st->u.in_pack.pos,
					    &st->size);
	unuse_pack(&window);
	switch (in_pack_type) {
	default:
		return -1; /* we do not do deltas for now */
	case OBJ_COMMIT:
	case OBJ_TREE:
	case OBJ_BLOB:
	case OBJ_TAG:
		break;
	}
	st->z_state = z_unused;
	st->vtbl = &pack_non_delta_vtbl;
	return 0;
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
}


/*****************************************************************
 *
 * In-core stream
 *
 *****************************************************************/

static close_method_decl(incore)
{
	free(st->u.incore.buf);
	return 0;
}

static read_method_decl(incore)
{
	size_t read_size = sz;
	size_t remainder = st->size - st->u.incore.read_ptr;

	if (remainder <= read_size)
		read_size = remainder;
	if (read_size) {
		memcpy(buf, st->u.incore.buf + st->u.incore.read_ptr, read_size);
		st->u.incore.read_ptr += read_size;
	}
	return read_size;
}

static struct stream_vtbl incore_vtbl = {
	close_istream_incore,
	read_istream_incore,
};

static open_method_decl(incore)
{
489
	st->u.incore.buf = read_object_file_extended(oid, type, &st->size, 0);
490 491 492 493 494
	st->u.incore.read_ptr = 0;
	st->vtbl = &incore_vtbl;

	return st->u.incore.buf ? 0 : -1;
}
495 496 497 498 499 500


/****************************************************************
 * Users of streaming interface
 ****************************************************************/

501
int stream_blob_to_fd(int fd, const struct object_id *oid, struct stream_filter *filter,
502 503 504 505 506 507 508 509
		      int can_seek)
{
	struct git_istream *st;
	enum object_type type;
	unsigned long sz;
	ssize_t kept = 0;
	int result = -1;

510
	st = open_istream(oid, &type, &sz, filter);
J
John Keeping 已提交
511 512 513
	if (!st) {
		if (filter)
			free_stream_filter(filter);
514
		return result;
J
John Keeping 已提交
515
	}
516 517 518 519 520 521 522
	if (type != OBJ_BLOB)
		goto close_and_exit;
	for (;;) {
		char buf[1024 * 16];
		ssize_t wrote, holeto;
		ssize_t readlen = read_istream(st, buf, sizeof(buf));

523 524
		if (readlen < 0)
			goto close_and_exit;
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
		if (!readlen)
			break;
		if (can_seek && sizeof(buf) == readlen) {
			for (holeto = 0; holeto < readlen; holeto++)
				if (buf[holeto])
					break;
			if (readlen == holeto) {
				kept += holeto;
				continue;
			}
		}

		if (kept && lseek(fd, kept, SEEK_CUR) == (off_t) -1)
			goto close_and_exit;
		else
			kept = 0;
		wrote = write_in_full(fd, buf, readlen);

543
		if (wrote < 0)
544 545 546
			goto close_and_exit;
	}
	if (kept && (lseek(fd, kept - 1, SEEK_CUR) == (off_t) -1 ||
E
Erik Faye-Lund 已提交
547
		     xwrite(fd, "", 1) != 1))
548 549 550 551 552 553 554
		goto close_and_exit;
	result = 0;

 close_and_exit:
	close_istream(st);
	return result;
}