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>
40 lines
1.0 KiB
C
40 lines
1.0 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_BASICS_H
|
|
#define REFTABLE_BASICS_H
|
|
|
|
#include "reftable-system.h"
|
|
|
|
/* A buffer that contains arbitrary byte slices. */
|
|
struct reftable_buf {
|
|
size_t alloc;
|
|
size_t len;
|
|
char *buf;
|
|
};
|
|
#define REFTABLE_BUF_INIT { 0 }
|
|
|
|
/*
|
|
* Hash functions understood by the reftable library. Note that the values are
|
|
* arbitrary and somewhat random such that we can easily detect cases where the
|
|
* hash hasn't been properly set up.
|
|
*/
|
|
enum reftable_hash {
|
|
REFTABLE_HASH_SHA1 = 89,
|
|
REFTABLE_HASH_SHA256 = 247,
|
|
};
|
|
#define REFTABLE_HASH_SIZE_SHA1 20
|
|
#define REFTABLE_HASH_SIZE_SHA256 32
|
|
#define REFTABLE_HASH_SIZE_MAX REFTABLE_HASH_SIZE_SHA256
|
|
|
|
/* Overrides the functions to use for memory management. */
|
|
void reftable_set_alloc(void *(*malloc)(size_t),
|
|
void *(*realloc)(void *, size_t), void (*free)(void *));
|
|
|
|
#endif
|