mirror of
https://github.com/git-for-windows/git.git
synced 2026-04-11 01:53:21 -05:00
We're including a couple of standard headers like <stdint.h> in a bunch
of locations, which makes it hard for a project to plug in their own
logic for making required functionality available. For us this is for
example via "compat/posix.h", which already includes all of the system
headers relevant to us.
Introduce a new "reftable-system.h" header that allows projects to
provide their own headers. This new header is supposed to contain all
the project-specific bits to provide the POSIX-like environment, and some
additional supporting code. With this change, we thus have the following
split in our system-specific code:
- "reftable/reftable-system.h" is the project-specific header that
provides a POSIX-like environment. Every project is expected to
provide their own implementation.
- "reftable/system.h" contains the project-independent definition of
the interfaces that a project needs to implement. This file should
not be touched by a project.
- "reftable/system.c" contains the project-specific implementation of
the interfaces defined in "system.h". Again, every project is
expected to provide their own implementation.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
75 lines
1.9 KiB
C
75 lines
1.9 KiB
C
/*
|
|
* Copyright 2020 Google LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style
|
|
* license that can be found in the LICENSE file or at
|
|
* https://developers.google.com/open-source/licenses/bsd
|
|
*/
|
|
|
|
#ifndef REFTABLE_BLOCK_H
|
|
#define REFTABLE_BLOCK_H
|
|
|
|
#include "reftable-system.h"
|
|
#include "reftable-basics.h"
|
|
#include "reftable-blocksource.h"
|
|
#include "reftable-iterator.h"
|
|
|
|
struct z_stream_s;
|
|
|
|
/*
|
|
* A block part of a reftable. Contains records as well as some metadata
|
|
* describing them.
|
|
*/
|
|
struct reftable_block {
|
|
/*
|
|
* Offset of the block header; nonzero for the first block in a
|
|
* reftable.
|
|
*/
|
|
uint32_t header_off;
|
|
|
|
/* The memory block. */
|
|
struct reftable_block_data block_data;
|
|
uint32_t hash_size;
|
|
|
|
/* Uncompressed data for log entries. */
|
|
struct z_stream_s *zstream;
|
|
unsigned char *uncompressed_data;
|
|
size_t uncompressed_cap;
|
|
|
|
/*
|
|
* Restart point data. Restart points are located after the block's
|
|
* record data.
|
|
*/
|
|
uint16_t restart_count;
|
|
uint32_t restart_off;
|
|
|
|
/*
|
|
* Size of the data in the file. For log blocks, this is the compressed
|
|
* size.
|
|
*/
|
|
uint32_t full_block_size;
|
|
uint8_t block_type;
|
|
};
|
|
|
|
/* Initialize a reftable block from the given block source. */
|
|
int reftable_block_init(struct reftable_block *b,
|
|
struct reftable_block_source *source,
|
|
uint32_t offset, uint32_t header_size,
|
|
uint32_t table_block_size, uint32_t hash_size,
|
|
uint8_t want_type);
|
|
|
|
/* Release resources allocated by the block. */
|
|
void reftable_block_release(struct reftable_block *b);
|
|
|
|
/* Initialize a generic record iterator from the given block. */
|
|
int reftable_block_init_iterator(const struct reftable_block *b,
|
|
struct reftable_iterator *it);
|
|
|
|
/* Returns the block type (eg. 'r' for refs). */
|
|
uint8_t reftable_block_type(const struct reftable_block *b);
|
|
|
|
/* Decodes the first key in the block. */
|
|
int reftable_block_first_key(const struct reftable_block *b, struct reftable_buf *key);
|
|
|
|
#endif /* REFTABLE_BLOCK_H */
|