Checkout: reindent, fix uninit. variable.
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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
diff --git a/src/checkout.c b/src/checkout.c
index df1a2c4..8d3a89e 100644
--- a/src/checkout.c
+++ b/src/checkout.c
@@ -25,160 +25,159 @@ GIT_BEGIN_DECL
static int get_head_tree(git_tree **out, git_repository *repo)
{
- int retcode = GIT_ERROR;
- git_reference *head = NULL;
-
- /* Dereference HEAD all the way to an OID ref */
- if (!git_reference_lookup_resolved(&head, repo, GIT_HEAD_FILE, -1)) {
- /* The OID should be a commit */
- git_object *commit;
- if (!git_object_lookup(&commit, repo,
- git_reference_oid(head), GIT_OBJ_COMMIT)) {
- /* Get the tree */
- if (!git_commit_tree(out, (git_commit*)commit)) {
- retcode = 0;
- }
- git_object_free(commit);
- }
- git_reference_free(head);
- }
-
- return retcode;
+ int retcode = GIT_ERROR;
+ git_reference *head = NULL;
+
+ /* Dereference HEAD all the way to an OID ref */
+ if (!git_reference_lookup_resolved(&head, repo, GIT_HEAD_FILE, -1)) {
+ /* The OID should be a commit */
+ git_object *commit;
+ if (!git_object_lookup(&commit, repo,
+ git_reference_oid(head), GIT_OBJ_COMMIT)) {
+ /* Get the tree */
+ if (!git_commit_tree(out, (git_commit*)commit)) {
+ retcode = 0;
+ }
+ git_object_free(commit);
+ }
+ git_reference_free(head);
+ }
+
+ return retcode;
}
typedef struct tree_walk_data
{
- git_indexer_stats *stats;
- git_repository *repo;
+ git_indexer_stats *stats;
+ git_repository *repo;
} tree_walk_data;
+/* TODO: murder this */
static int count_walker(const char *path, git_tree_entry *entry, void *payload)
{
- GIT_UNUSED(path);
- GIT_UNUSED(entry);
- ((tree_walk_data*)payload)->stats->total++;
- return 0;
+ GIT_UNUSED(path);
+ GIT_UNUSED(entry);
+ ((tree_walk_data*)payload)->stats->total++;
+ return 0;
}
static int apply_filters(git_buf *out,
- git_vector *filters,
- const void *data,
- size_t len)
+ git_vector *filters,
+ const void *data,
+ size_t len)
{
- int retcode = GIT_ERROR;
+ int retcode = GIT_ERROR;
- git_buf_clear(out);
+ git_buf_clear(out);
- if (!filters->length) {
- /* No filters to apply; just copy the result */
- git_buf_put(out, data, len);
- return 0;
- }
+ if (!filters->length) {
+ /* No filters to apply; just copy the result */
+ git_buf_put(out, data, len);
+ return 0;
+ }
- git_buf origblob;
- git_buf_attach(&origblob, (char*)data, len);
- retcode = git_filters_apply(out, &origblob, filters);
- git_buf_detach(&origblob);
+ git_buf origblob = GIT_BUF_INIT;
+ git_buf_attach(&origblob, (char*)data, len);
+ retcode = git_filters_apply(out, &origblob, filters);
+ git_buf_detach(&origblob);
- return retcode;
+ return retcode;
}
static int blob_contents_to_file(git_repository *repo, git_buf *fnbuf, const git_oid *id, int mode)
{
- int retcode = GIT_ERROR;
-
- git_blob *blob;
- if (!git_blob_lookup(&blob, repo, id)) {
- const void *contents = git_blob_rawcontent(blob);
- size_t len = git_blob_rawsize(blob);
- git_vector filters = GIT_VECTOR_INIT;
- int filter_count;
-
- /* TODO: line-ending smudging */
- filter_count = git_filters_load(&filters, repo,
- git_buf_cstr(fnbuf),
- GIT_FILTER_TO_WORKTREE);
- printf("Got %d filters\n", filter_count);
- if (filter_count >= 0) {
- git_buf filteredblob = GIT_BUF_INIT;
- if (!apply_filters(&filteredblob, &filters, contents, len)) {
- int fd = git_futils_creat_withpath(git_buf_cstr(fnbuf),
- GIT_DIR_MODE, mode);
- if (fd >= 0) {
- retcode = (!p_write(fd, contents, len)) ? 0 : GIT_ERROR;
- p_close(fd);
- }
- }
- }
-
- git_blob_free(blob);
- }
-
- return retcode;
+ int retcode = GIT_ERROR;
+
+ git_blob *blob;
+ if (!git_blob_lookup(&blob, repo, id)) {
+ const void *contents = git_blob_rawcontent(blob);
+ size_t len = git_blob_rawsize(blob);
+ git_vector filters = GIT_VECTOR_INIT;
+ int filter_count;
+
+ /* TODO: line-ending smudging */
+ filter_count = git_filters_load(&filters, repo,
+ git_buf_cstr(fnbuf),
+ GIT_FILTER_TO_WORKTREE);
+ if (filter_count >= 0) {
+ git_buf filteredblob = GIT_BUF_INIT;
+ if (!apply_filters(&filteredblob, &filters, contents, len)) {
+ int fd = git_futils_creat_withpath(git_buf_cstr(fnbuf),
+ GIT_DIR_MODE, mode);
+ if (fd >= 0) {
+ retcode = (!p_write(fd, contents, len)) ? 0 : GIT_ERROR;
+ p_close(fd);
+ }
+ }
+ git_buf_free(&filteredblob);
+ }
+
+ git_blob_free(blob);
+ }
+
+ return retcode;
}
static int checkout_walker(const char *path, git_tree_entry *entry, void *payload)
{
- int retcode = 0;
- tree_walk_data *data = (tree_walk_data*)payload;
- int attr = git_tree_entry_attributes(entry);
-
- switch(git_tree_entry_type(entry)) {
- case GIT_OBJ_TREE:
- /* TODO: mkdir? */
- break;
-
- case GIT_OBJ_BLOB:
- {
- git_buf fnbuf = GIT_BUF_INIT;
- git_buf_join_n(&fnbuf, '/', 3,
- git_repository_workdir(data->repo),
- path,
- git_tree_entry_name(entry));
- retcode = blob_contents_to_file(data->repo, &fnbuf, git_tree_entry_id(entry), attr);
- git_buf_free(&fnbuf);
- }
- break;
-
- default:
- retcode = -1;
- break;
- }
-
- data->stats->processed++;
- return retcode;
+ int retcode = 0;
+ tree_walk_data *data = (tree_walk_data*)payload;
+ int attr = git_tree_entry_attributes(entry);
+
+ switch(git_tree_entry_type(entry)) {
+ case GIT_OBJ_TREE:
+ /* TODO: mkdir? */
+ break;
+
+ case GIT_OBJ_BLOB:
+ {
+ git_buf fnbuf = GIT_BUF_INIT;
+ git_buf_join_n(&fnbuf, '/', 3,
+ git_repository_workdir(data->repo),
+ path,
+ git_tree_entry_name(entry));
+ retcode = blob_contents_to_file(data->repo, &fnbuf, git_tree_entry_id(entry), attr);
+ git_buf_free(&fnbuf);
+ }
+ break;
+
+ default:
+ retcode = -1;
+ break;
+ }
+
+ data->stats->processed++;
+ return retcode;
}
-/* TODO
- * -> Line endings
- */
+
int git_checkout_force(git_repository *repo, git_indexer_stats *stats)
{
- int retcode = GIT_ERROR;
- git_indexer_stats dummy_stats;
- git_tree *tree;
- tree_walk_data payload;
-
- assert(repo);
- if (!stats) stats = &dummy_stats;
-
- stats->total = stats->processed = 0;
- payload.stats = stats;
- payload.repo = repo;
-
- if (!get_head_tree(&tree, repo)) {
- /* Count all the tree nodes for progress information */
- if (!git_tree_walk(tree, count_walker, GIT_TREEWALK_POST, &payload)) {
- /* Checkout the files */
- if (!git_tree_walk(tree, checkout_walker, GIT_TREEWALK_POST, &payload)) {
- retcode = 0;
- }
- }
- git_tree_free(tree);
- }
-
- return retcode;
+ int retcode = GIT_ERROR;
+ git_indexer_stats dummy_stats;
+ git_tree *tree;
+ tree_walk_data payload;
+
+ assert(repo);
+ if (!stats) stats = &dummy_stats;
+
+ stats->total = stats->processed = 0;
+ payload.stats = stats;
+ payload.repo = repo;
+
+ if (!get_head_tree(&tree, repo)) {
+ /* Count all the tree nodes for progress information */
+ if (!git_tree_walk(tree, count_walker, GIT_TREEWALK_POST, &payload)) {
+ /* Checkout the files */
+ if (!git_tree_walk(tree, checkout_walker, GIT_TREEWALK_POST, &payload)) {
+ retcode = 0;
+ }
+ }
+ git_tree_free(tree);
+ }
+
+ return retcode;
}