]> git.proxmox.com Git - libgit2.git/commitdiff
index: Add git_index_write_tree
authorVicent Marti <tanoku@gmail.com>
Thu, 1 Nov 2012 19:15:53 +0000 (20:15 +0100)
committerVicent Marti <tanoku@gmail.com>
Thu, 1 Nov 2012 19:17:10 +0000 (20:17 +0100)
include/git2/index.h
include/git2/tree.h
src/index.c
src/tree.c
src/tree.h

index 1d91663d803c33a811a0806d8e65549ca86a3222..2a0b001ffe385046dc496f7a8d9075355232edf5 100644 (file)
@@ -190,6 +190,38 @@ GIT_EXTERN(int) git_index_write(git_index *index);
  */
 GIT_EXTERN(int) git_index_read_tree(git_index *index, git_tree *tree);
 
+/**
+ * Write the index as a tree
+ *
+ * This method will scan the index and write a representation
+ * of its current state back to disk; it recursively creates
+ * tree objects for each of the subtrees stored in the index,
+ * but only returns the OID of the root tree. This is the OID
+ * that can be used e.g. to create a commit.
+ *
+ * The index instance cannot be bare, and needs to be associated
+ * to an existing repository.
+ *
+ * @param oid Pointer where to store the OID of the written tree
+ * @param index Index to write
+ * @return 0 or an error code
+ */
+GIT_EXTERN(int) git_index_write_tree(git_oid *oid, git_index *index);
+
+/**
+ * Write the index as a tree to the given repository
+ *
+ * This method will do the same as `git_index_write_tree`, but
+ * letting the user choose the repository where the tree will
+ * be written.
+ *
+ * @param oid Pointer where to store OID of the the written tree
+ * @param index Index to write
+ * @param repo Repository where to write the tree
+ * @return 0 or an error code
+ */
+GIT_EXTERN(int) git_index_write_tree_to(git_oid *oid, git_index *index, git_repository *repo);
+
 /**@}*/
 
 /** @name Raw Index Entry Functions
index 2ee1f4afa69461c59fc089b6c3e7e30c6a7db961..527f81819d498b9c8ef36054f2c18a99d888abd9 100644 (file)
@@ -184,24 +184,6 @@ GIT_EXTERN(int) git_tree_entry_to_object(
        git_repository *repo,
        const git_tree_entry *entry);
 
-/**
- * Write a tree to the ODB from the index file
- *
- * This method will scan the index and write a representation
- * of its current state back to disk; it recursively creates
- * tree objects for each of the subtrees stored in the index,
- * but only returns the OID of the root tree. This is the OID
- * that can be used e.g. to create a commit.
- *
- * The index instance cannot be bare, and needs to be associated
- * to an existing repository.
- *
- * @param oid Pointer where to store the written tree
- * @param index Index to write
- * @return 0 or an error code
- */
-GIT_EXTERN(int) git_tree_create_fromindex(git_oid *oid, git_index *index);
-
 /**
  * Create a new tree builder.
  *
index 8f684a34b2efec639c732af9df5f24a0f64075bd..73fd40acfcc75bb0774e2f72261403757b77fb20 100644 (file)
@@ -264,8 +264,14 @@ int git_index_open(git_index **index_out, const char *index_path)
        index = git__calloc(1, sizeof(git_index));
        GITERR_CHECK_ALLOC(index);
 
-       index->index_file_path = git__strdup(index_path);
-       GITERR_CHECK_ALLOC(index->index_file_path);
+       if (index_path != NULL) {
+               index->index_file_path = git__strdup(index_path);
+               GITERR_CHECK_ALLOC(index->index_file_path);
+
+               /* Check if index file is stored on disk already */
+               if (git_path_exists(index->index_file_path) == true)
+                       index->on_disk = 1;
+       }
 
        if (git_vector_init(&index->entries, 32, index_cmp) < 0)
                return -1;
@@ -275,13 +281,10 @@ int git_index_open(git_index **index_out, const char *index_path)
        index->entries_search_path = index_srch_path;
        index->reuc_search = reuc_srch;
 
-       /* Check if index file is stored on disk already */
-       if (git_path_exists(index->index_file_path) == true)
-               index->on_disk = 1;
-
        *index_out = index;
        GIT_REFCOUNT_INC(index);
-       return git_index_read(index);
+
+       return (index_path != NULL) ? git_index_read(index) : 0;
 }
 
 static void index_free(git_index *index)
@@ -394,7 +397,11 @@ int git_index_read(git_index *index)
        git_buf buffer = GIT_BUF_INIT;
        git_futils_filestamp stamp;
 
-       assert(index->index_file_path);
+       if (!index->index_file_path) {
+               giterr_set(GITERR_INDEX,
+                       "Failed to read index: The index is in-memory only");
+               return -1;
+       }
 
        if (!index->on_disk || git_path_exists(index->index_file_path) == false) {
                git_index_clear(index);
@@ -426,6 +433,12 @@ int git_index_write(git_index *index)
        struct stat indexst;
        int error;
 
+       if (!index->index_file_path) {
+               giterr_set(GITERR_INDEX,
+                       "Failed to write index: The index is in-memory only");
+               return -1;
+       }
+
        git_vector_sort(&index->entries);
        git_vector_sort(&index->reuc);
 
@@ -449,6 +462,29 @@ int git_index_write(git_index *index)
        return 0;
 }
 
+int git_index_write_tree(git_oid *oid, git_index *index)
+{
+       git_repository *repo;
+
+       assert(oid && index);
+
+       repo = (git_repository *)GIT_REFCOUNT_OWNER(index);
+
+       if (repo == NULL) {
+               giterr_set(GITERR_INDEX, "Failed to write tree. "
+                 "The index file is not backed up by an existing repository");
+               return -1
+       }
+
+       return git_tree__write_index(oid, index, repo);
+}
+
+int git_index_write_tree_to(git_oid *oid, git_index *index, git_repository *repo)
+{
+       assert(oid && index && repo);
+       return git_tree__write_index(oid, index, repo);
+}
+
 unsigned int git_index_entrycount(git_index *index)
 {
        assert(index);
index 9ecefbb61e0b8d3d5ae6e231da13c2545534ae5a..dd9f94869c777452c10a2fe08fba6011ce820845 100644 (file)
@@ -491,16 +491,12 @@ on_error:
        return -1;
 }
 
-int git_tree_create_fromindex(git_oid *oid, git_index *index)
+int git_tree__write_index(git_oid *oid, git_index *index, git_repository *repo)
 {
        int ret;
        git_repository *repo;
 
-       repo = (git_repository *)GIT_REFCOUNT_OWNER(index);
-
-       if (repo == NULL)
-               return tree_error("Failed to create tree. "
-                 "The index file is not backed up by an existing repository");
+       assert(oid && index && repo);
 
        if (index->tree != NULL && index->tree->entries >= 0) {
                git_oid_cpy(oid, &index->tree->oid);
index 24b517ce37e6cd191cdf83bc0313be4ae671b213..b67c5520223a598cb6d98c8e32c0818d44b20fcd 100644 (file)
@@ -47,6 +47,12 @@ int git_tree__parse(git_tree *tree, git_odb_object *obj);
  */
 int git_tree__prefix_position(git_tree *tree, const char *prefix);
 
+
+/**
+ * Write a tree to the given repository
+ */
+int git_tree__write_index(git_oid *oid, git_index *index, git_repository *repo);
+
 /**
  * Obsolete mode kept for compatibility reasons
  */