]> git.ipfire.org Git - thirdparty/git.git/commit - repository.c
repository: introduce raw object store field
authorStefan Beller <sbeller@google.com>
Fri, 23 Mar 2018 17:20:55 +0000 (18:20 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 23 Mar 2018 18:06:01 +0000 (11:06 -0700)
commit90c62155d65a6bec5c2c293c8ece0b22173f63a3
treec4d23c9cae65059849f5e1d39814f3eb34657120
parent00a3da2a131a3e122df7e053d992fbc1735bf4f9
repository: introduce raw object store field

The raw object store field will contain any objects needed for access
to objects in a given repository.

This patch introduces the raw object store and populates it with the
`objectdir`, which used to be part of the repository struct.

As the struct gains members, we'll also populate the function to clear
the memory for these members.

In a later step, we'll introduce a struct object_parser, that will
complement the object parsing in a repository struct: The raw object
parser is the layer that will provide access to raw object content,
while the higher level object parser code will parse raw objects and
keeps track of parenthood and other object relationships using 'struct
object'.  For now only add the lower level to the repository struct.

Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/grep.c
environment.c
object-store.h [new file with mode: 0644]
object.c
path.c
repository.c
repository.h
sha1_file.c