streaming.c: avoid forward declarations
Change code added in 46bf043807
(streaming: a new API to read from
the object store, 2011-05-11) to avoid forward declarations of the
functions it uses. We can instead move this code to the bottom of the
file, and thus avoid the open_method_decl() calls.
Aside from the addition of the "static helpers[...]" comment being
added here, and the removal of the forward declarations this is a
move-only change.
The style of the added "static helpers[...]" comment isn't in line
with our usual coding style, but is consistent with several other
comments used in this file, so let's use that style consistently here.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
48bf2fa8ba
commit
b65528360f
171
streaming.c
171
streaming.c
@ -42,20 +42,6 @@ struct stream_vtbl {
|
|||||||
ssize_t read_istream_ ##name \
|
ssize_t read_istream_ ##name \
|
||||||
(struct git_istream *st, char *buf, size_t sz)
|
(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);
|
|
||||||
static struct git_istream *attach_stream_filter(struct git_istream *st,
|
|
||||||
struct stream_filter *filter);
|
|
||||||
|
|
||||||
|
|
||||||
static open_istream_fn open_istream_tbl[] = {
|
|
||||||
open_istream_incore,
|
|
||||||
open_istream_loose,
|
|
||||||
open_istream_pack_non_delta,
|
|
||||||
};
|
|
||||||
|
|
||||||
#define FILTER_BUFFER (1024*16)
|
#define FILTER_BUFFER (1024*16)
|
||||||
|
|
||||||
struct filtered_istream {
|
struct filtered_istream {
|
||||||
@ -97,80 +83,6 @@ struct git_istream {
|
|||||||
} u;
|
} u;
|
||||||
};
|
};
|
||||||
|
|
||||||
int close_istream(struct git_istream *st)
|
|
||||||
{
|
|
||||||
int r = st->vtbl->close(st);
|
|
||||||
free(st);
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
ssize_t read_istream(struct git_istream *st, void *buf, size_t sz)
|
|
||||||
{
|
|
||||||
return st->vtbl->read(st, buf, sz);
|
|
||||||
}
|
|
||||||
|
|
||||||
static enum input_source istream_source(struct repository *r,
|
|
||||||
const struct object_id *oid,
|
|
||||||
enum object_type *type,
|
|
||||||
struct object_info *oi)
|
|
||||||
{
|
|
||||||
unsigned long size;
|
|
||||||
int status;
|
|
||||||
|
|
||||||
oi->typep = type;
|
|
||||||
oi->sizep = &size;
|
|
||||||
status = oid_object_info_extended(r, oid, oi, 0);
|
|
||||||
if (status < 0)
|
|
||||||
return stream_error;
|
|
||||||
|
|
||||||
switch (oi->whence) {
|
|
||||||
case OI_LOOSE:
|
|
||||||
return loose;
|
|
||||||
case OI_PACKED:
|
|
||||||
if (!oi->u.packed.is_delta && big_file_threshold < size)
|
|
||||||
return pack_non_delta;
|
|
||||||
/* fallthru */
|
|
||||||
default:
|
|
||||||
return incore;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
struct git_istream *open_istream(struct repository *r,
|
|
||||||
const struct object_id *oid,
|
|
||||||
enum object_type *type,
|
|
||||||
unsigned long *size,
|
|
||||||
struct stream_filter *filter)
|
|
||||||
{
|
|
||||||
struct git_istream *st;
|
|
||||||
struct object_info oi = OBJECT_INFO_INIT;
|
|
||||||
const struct object_id *real = lookup_replace_object(r, oid);
|
|
||||||
enum input_source src = istream_source(r, real, type, &oi);
|
|
||||||
|
|
||||||
if (src < 0)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
st = xmalloc(sizeof(*st));
|
|
||||||
if (open_istream_tbl[src](st, r, &oi, real, type)) {
|
|
||||||
if (open_istream_incore(st, r, &oi, real, type)) {
|
|
||||||
free(st);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (filter) {
|
|
||||||
/* Add "&& !is_null_stream_filter(filter)" for performance */
|
|
||||||
struct git_istream *nst = attach_stream_filter(st, filter);
|
|
||||||
if (!nst) {
|
|
||||||
close_istream(st);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
st = nst;
|
|
||||||
}
|
|
||||||
|
|
||||||
*size = st->size;
|
|
||||||
return st;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************
|
/*****************************************************************
|
||||||
*
|
*
|
||||||
* Common helpers
|
* Common helpers
|
||||||
@ -508,11 +420,94 @@ static open_method_decl(incore)
|
|||||||
return st->u.incore.buf ? 0 : -1;
|
return st->u.incore.buf ? 0 : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*****************************************************************************
|
||||||
|
* static helpers variables and functions for users of streaming interface
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
static open_istream_fn open_istream_tbl[] = {
|
||||||
|
open_istream_incore,
|
||||||
|
open_istream_loose,
|
||||||
|
open_istream_pack_non_delta,
|
||||||
|
};
|
||||||
|
|
||||||
|
static enum input_source istream_source(struct repository *r,
|
||||||
|
const struct object_id *oid,
|
||||||
|
enum object_type *type,
|
||||||
|
struct object_info *oi)
|
||||||
|
{
|
||||||
|
unsigned long size;
|
||||||
|
int status;
|
||||||
|
|
||||||
|
oi->typep = type;
|
||||||
|
oi->sizep = &size;
|
||||||
|
status = oid_object_info_extended(r, oid, oi, 0);
|
||||||
|
if (status < 0)
|
||||||
|
return stream_error;
|
||||||
|
|
||||||
|
switch (oi->whence) {
|
||||||
|
case OI_LOOSE:
|
||||||
|
return loose;
|
||||||
|
case OI_PACKED:
|
||||||
|
if (!oi->u.packed.is_delta && big_file_threshold < size)
|
||||||
|
return pack_non_delta;
|
||||||
|
/* fallthru */
|
||||||
|
default:
|
||||||
|
return incore;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/****************************************************************
|
/****************************************************************
|
||||||
* Users of streaming interface
|
* Users of streaming interface
|
||||||
****************************************************************/
|
****************************************************************/
|
||||||
|
|
||||||
|
int close_istream(struct git_istream *st)
|
||||||
|
{
|
||||||
|
int r = st->vtbl->close(st);
|
||||||
|
free(st);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
ssize_t read_istream(struct git_istream *st, void *buf, size_t sz)
|
||||||
|
{
|
||||||
|
return st->vtbl->read(st, buf, sz);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct git_istream *open_istream(struct repository *r,
|
||||||
|
const struct object_id *oid,
|
||||||
|
enum object_type *type,
|
||||||
|
unsigned long *size,
|
||||||
|
struct stream_filter *filter)
|
||||||
|
{
|
||||||
|
struct git_istream *st;
|
||||||
|
struct object_info oi = OBJECT_INFO_INIT;
|
||||||
|
const struct object_id *real = lookup_replace_object(r, oid);
|
||||||
|
enum input_source src = istream_source(r, real, type, &oi);
|
||||||
|
|
||||||
|
if (src < 0)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
st = xmalloc(sizeof(*st));
|
||||||
|
if (open_istream_tbl[src](st, r, &oi, real, type)) {
|
||||||
|
if (open_istream_incore(st, r, &oi, real, type)) {
|
||||||
|
free(st);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (filter) {
|
||||||
|
/* Add "&& !is_null_stream_filter(filter)" for performance */
|
||||||
|
struct git_istream *nst = attach_stream_filter(st, filter);
|
||||||
|
if (!nst) {
|
||||||
|
close_istream(st);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
st = nst;
|
||||||
|
}
|
||||||
|
|
||||||
|
*size = st->size;
|
||||||
|
return st;
|
||||||
|
}
|
||||||
|
|
||||||
int stream_blob_to_fd(int fd, const struct object_id *oid, struct stream_filter *filter,
|
int stream_blob_to_fd(int fd, const struct object_id *oid, struct stream_filter *filter,
|
||||||
int can_seek)
|
int can_seek)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user