5 * This API allows you to create a temporary object directory, advertise it to
6 * sub-processes via GIT_OBJECT_DIRECTORY and GIT_ALTERNATE_OBJECT_DIRECTORIES,
7 * and then either migrate its object into the main object directory, or remove
8 * it. The library handles unexpected signal/exit death by cleaning up the
13 * struct tmp_objdir *t = tmp_objdir_create();
14 * if (!run_command_v_opt_cd_env(cmd, 0, NULL, tmp_objdir_env(t)) &&
15 * !tmp_objdir_migrate(t))
16 * printf("success!\n");
18 * die("failed...tmp_objdir will clean up for us");
25 * Create a new temporary object directory; returns NULL on failure.
27 struct tmp_objdir
*tmp_objdir_create(void);
30 * Return a list of environment strings, suitable for use with
31 * child_process.env, that can be passed to child programs to make use of the
32 * temporary object directory.
34 const char **tmp_objdir_env(const struct tmp_objdir
*);
37 * Finalize a temporary object directory by migrating its objects into the main
38 * object database, removing the temporary directory, and freeing any
39 * associated resources.
41 int tmp_objdir_migrate(struct tmp_objdir
*);
44 * Destroy a temporary object directory, discarding any objects it contains.
46 int tmp_objdir_destroy(struct tmp_objdir
*);
49 * Add the temporary object directory as an alternate object store in the
52 void tmp_objdir_add_as_alternate(const struct tmp_objdir
*);
54 #endif /* TMP_OBJDIR_H */