Intial indexer code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
diff --git a/include/git2.h b/include/git2.h
index 35e48b2..96de524 100644
--- a/include/git2.h
+++ b/include/git2.h
@@ -60,5 +60,6 @@
#include "git2/net.h"
#include "git2/transport.h"
#include "git2/status.h"
+#include "git2/indexer.h"
#endif
diff --git a/include/git2/indexer.h b/include/git2/indexer.h
new file mode 100644
index 0000000..be17520
--- /dev/null
+++ b/include/git2/indexer.h
@@ -0,0 +1,15 @@
+#ifndef _INCLUDE_git_indexer_h__
+#define _INCLUDE_git_indexer_h__
+
+typedef struct git_pack_indexer {
+ struct pack_file *pack;
+ git_vector objects;
+ git_vector deltas;
+ struct stat st;
+} git_pack_indexer;
+
+GIT_EXTERN(int) git_pack_indexer_new(git_pack_indexer **out, const char *packname);
+GIT_EXTERN(void) git_pack_indexer_free(git_pack_indexer *idx)
+
+
+#endif
diff --git a/src/indexer.c b/src/indexer.c
new file mode 100644
index 0000000..b63efc0
--- /dev/null
+++ b/src/indexer.c
@@ -0,0 +1,133 @@
+/*
+ * This file is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2,
+ * as published by the Free Software Foundation.
+ *
+ * In addition to the permissions in the GNU General Public License,
+ * the authors give you unlimited permission to link the compiled
+ * version of this file into combinations with other programs,
+ * and to distribute those combinations without any restriction
+ * coming from the use of this file. (The General Public License
+ * restrictions do apply in other respects; for example, they cover
+ * modification of the file, and distribution when not linked into
+ * a combined executable.)
+ *
+ * This file is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; see the file COPYING. If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#include "common.h"
+#include "pack.h"
+#include "posix.h"
+
+static int parse_header(git_pack_indexer *idx)
+{
+ struct pack_header hdr;
+ int error;
+
+ /* Verify we recognize this pack file format. */
+ if ((error = p_read(idx->pack->pack_fd, &hdr, sizeof(hdr))) < GIT_SUCCESS)
+ goto cleanup;
+
+ if (hdr.hdr_signature != htonl(PACK_SIGNATURE)) {
+ error = git__throw(GIT_EOBJCORRUPTED, "Wrong pack signature");
+ goto cleanup;
+ }
+
+ if (!pack_version_ok(hdr.hdr_version)) {
+ error = git__throw(GIT_EOBJCORRUPTED, "Wrong pack version");
+ goto cleanup;
+ }
+
+ /*
+ * FIXME: At this point we have no idea how many of the are
+ * deltas, so assume all objects are both until we get a better
+ * idea
+ */
+ error = git_vector_init(&idx->objects, hdr.hdr_entries, NULL /* FIXME: probably need something */);
+ if (error < GIT_SUCCESS)
+ goto cleanup;
+
+ error = git_vector_init(&idx->deltas, hdr.hdr_entries, NULL /* FIXME: probably need something */);
+ if (error < GIT_SUCCESS)
+ goto cleanup;
+
+ return GIT_SUCCESS;
+
+cleanup:
+ git_vector_free(&idx->objects);
+ git_vector_free(&idx->deltas);
+
+ return error;
+}
+
+int git_pack_indexer_new(git_pack_indexer **out, const char *packname)
+{
+ struct git_pack_indexer *idx;
+ unsigned int namelen;
+ int ret, error;
+
+ idx = git__malloc(sizeof(struct git_pack_indexer));
+ if (idx == NULL)
+ return GIT_ENOMEM;
+
+ memset(idx, 0x0, sizeof(*idx));
+
+ namelen = strlen(packname);
+ idx->pack = git__malloc(sizeof(struct pack_file) + namelen + 1);
+ if (idx->pack == NULL)
+ goto cleanup;
+
+ memset(idx->pack, 0x0, sizeof(struct pack_file));
+ memcpy(idx->pack->pack_name, packname, namelen);
+
+ ret = p_stat(packname, &idx->st);
+ if (ret < 0) {
+ if (errno == ENOENT)
+ error = git__throw(GIT_ENOTFOUND, "Failed to stat packfile. File not found");
+ else
+ error = git__throw(GIT_EOSERR, "Failed to stat packfile.");
+
+ goto cleanup;
+ }
+
+ ret = p_open(idx->pack->pack_name, O_RDONLY);
+ if (ret < 0) {
+ error = git__throw(GIT_EOSERR, "Failed to open packfile");
+ goto cleanup;
+ }
+
+ idx->pack->pack_fd = ret;
+
+ error = parse_header(idx);
+ if (error < GIT_SUCCESS) {
+ error = git__rethrow(error, "Failed to parse packfile header");
+ goto cleanup;
+ }
+
+ *out = idx;
+
+ return GIT_SUCCESS;
+
+cleanup:
+ free(idx->pack);
+ free(idx);
+
+ return error;
+}
+
+void git_pack_indexer_free(git_pack_indexer *idx)
+{
+ p_close(idx->pack->pack_fd);
+ git_vector_free(&idx->objects);
+ git_vector_free(&idx->deltas);
+ free(idx->pack);
+ free(idx);
+}