Commits


avoid the creation of new temporary files whenever a packed object is read This speeds up the creation of pack files by about 30%.


add O_CLOEXEC (close-on-exec) flag to open(2) calls suggested by millert ok thomas_adam


raw object blocksize and read buffer were unused; remove them


remove unused internal raw object API functions


cache raw objects in order to speed up gotadmin pack


reuse temporary files which were not used by got_object_raw_open()


add missing error checks in got_object_raw_open()


use RB_TREE instead of STAILQ to manage packindex bloom filters; much faster


implement 'got diff -c' for diffing commits with optional filtering by path Need for filtering by path sugggested by kn@ ok naddy@


verify object ID checksums while loose objects are being accessed


make got_packidx_get_packfile_path() usable for callers who only have a path


implement 'gotadmin cleanup'


switch from SIMPLEQ to equivalent STAILQ macros The singly-linked tail queue macros were added to OpenBSD 6.9 and are more widely available on other systems. ok stsp


raw object size should not include the length of the object's header This way, the size of a raw object is the same regardless of whether the object was found in a loose object file or in a pack file.


introduce got_object_id_queue_copy() This will be required by a future 'gotadmin pack' command.