summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2013-04-23 19:08:13 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2013-04-23 19:09:45 +0200
commit9a9de29d36c82d20a821b9b076ad388364bc5553 (patch)
tree162f3e8c138b5b3fe62af9a9c994d8a79c161b44
parent6c1b6b7abcef75d421e4d59c397eff54cc1f28aa (diff)
downloadlibgit2-9a9de29d36c82d20a821b9b076ad388364bc5553.tar.gz
Document the odb backend constructors
-rw-r--r--include/git2/odb_backend.h34
1 files changed, 33 insertions, 1 deletions
diff --git a/include/git2/odb_backend.h b/include/git2/odb_backend.h
index d38005d15..4c2493a25 100644
--- a/include/git2/odb_backend.h
+++ b/include/git2/odb_backend.h
@@ -19,11 +19,43 @@
*/
GIT_BEGIN_DECL
-/**
+/*
* Constructors for in-box ODB backends.
*/
+
+/**
+ * Create a backend for the packfiles.
+ *
+ * @param out location to store the odb backend pointer
+ * @param objects_dir the Git repository's objects directory
+ *
+ * @return 0 or an error code
+ */
GIT_EXTERN(int) git_odb_backend_pack(git_odb_backend **out, const char *objects_dir);
+
+/**
+ * Create a backend for loose objects
+ *
+ * @param out location to store the odb backend pointer
+ * @param objects_dir the Git repository's objects directory
+ * @param compression_level zlib compression level to use
+ * @param do_fsync whether to do an fsync() after writing (currently ignored)
+ *
+ * @return 0 or an error code
+ */
GIT_EXTERN(int) git_odb_backend_loose(git_odb_backend **out, const char *objects_dir, int compression_level, int do_fsync);
+
+/**
+ * Create a backend out of a single packfile
+ *
+ * This can be useful for inspecting the contents of a single
+ * packfile.
+ *
+ * @param out location to store the odb backend pointer
+ * @param index_file path to the packfile's .idx file
+ *
+ * @return 0 or an error code
+ */
GIT_EXTERN(int) git_odb_backend_one_pack(git_odb_backend **out, const char *index_file);
/** Streaming mode */