git_path_dirload: use git_path_diriter
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
diff --git a/src/path.c b/src/path.c
index 2390b4f..72bc917 100644
--- a/src/path.c
+++ b/src/path.c
@@ -1109,80 +1109,6 @@ static int entry_path_alloc(
return 0;
}
-int git_path_dirload(
- const char *path,
- size_t prefix_len,
- size_t alloc_extra,
- unsigned int flags,
- git_vector *contents)
-{
- int error;
- DIR *dir;
- size_t path_len;
- path_dirent_data de_data;
- struct dirent *de, *de_buf = (struct dirent *)&de_data;
-
-#ifdef GIT_USE_ICONV
- git_path_iconv_t ic = GIT_PATH_ICONV_INIT;
-#endif
-
- GIT_UNUSED(flags);
-
- assert(path && contents);
-
- path_len = strlen(path);
-
- if (!path_len || path_len < prefix_len) {
- giterr_set(GITERR_INVALID, "Invalid directory path '%s'", path);
- return -1;
- }
- if ((dir = opendir(path)) == NULL) {
- giterr_set(GITERR_OS, "Failed to open directory '%s'", path);
- return -1;
- }
-
-#ifdef GIT_USE_ICONV
- if ((flags & GIT_PATH_DIR_PRECOMPOSE_UNICODE) != 0)
- (void)git_path_iconv_init_precompose(&ic);
-#endif
-
- path += prefix_len;
- path_len -= prefix_len;
-
- while ((error = p_readdir_r(dir, de_buf, &de)) == 0 && de != NULL) {
- char *entry_path, *de_path = de->d_name;
- size_t de_len = strlen(de_path);
-
- if (git_path_is_dot_or_dotdot(de_path))
- continue;
-
-#ifdef GIT_USE_ICONV
- if ((error = git_path_iconv(&ic, &de_path, &de_len)) < 0)
- break;
-#endif
-
- if ((error = entry_path_alloc(&entry_path,
- path, path_len, de_path, de_len, alloc_extra)) < 0)
- break;
-
- if ((error = git_vector_insert(contents, entry_path)) < 0) {
- git__free(entry_path);
- break;
- }
- }
-
- closedir(dir);
-
-#ifdef GIT_USE_ICONV
- git_path_iconv_clear(&ic);
-#endif
-
- if (error != 0)
- giterr_set(GITERR_OS, "Failed to process directory entry in '%s'", path);
-
- return error;
-}
-
int git_path_with_stat_cmp(const void *a, const void *b)
{
const git_path_with_stat *psa = a, *psb = b;
@@ -1311,6 +1237,117 @@ void git_path_diriter_free(git_path_diriter *diriter)
git_buf_free(&diriter->path);
}
+int git_path_dirload(
+ git_vector *contents,
+ const char *path,
+ size_t prefix_len,
+ unsigned int flags)
+{
+ git_path_diriter iter = {0};
+ const char *name;
+ size_t name_len;
+ char *dup;
+ int error;
+
+ assert(contents && path);
+
+ if ((error = git_path_diriter_init(&iter, path, flags)) < 0)
+ return error;
+
+ while ((error = git_path_diriter_next(&name, &name_len, &iter)) == 0) {
+ if ((error = git_path_diriter_fullpath(&name, &name_len, &iter)) < 0)
+ break;
+
+ assert(name_len > prefix_len);
+
+ dup = git__strndup(name + prefix_len, name_len - prefix_len);
+ GITERR_CHECK_ALLOC(dup);
+
+ if ((error = git_vector_insert(contents, dup)) < 0)
+ break;
+ }
+
+ if (error == GIT_ITEROVER)
+ error = 0;
+
+ git_path_diriter_free(&iter);
+ return error;
+}
+
+static int _dirload(
+ const char *path,
+ size_t prefix_len,
+ size_t alloc_extra,
+ unsigned int flags,
+ git_vector *contents)
+{
+ int error;
+ DIR *dir;
+ size_t path_len;
+ path_dirent_data de_data;
+ struct dirent *de, *de_buf = (struct dirent *)&de_data;
+
+#ifdef GIT_USE_ICONV
+ git_path_iconv_t ic = GIT_PATH_ICONV_INIT;
+#endif
+
+ GIT_UNUSED(flags);
+
+ assert(path && contents);
+
+ path_len = strlen(path);
+
+ if (!path_len || path_len < prefix_len) {
+ giterr_set(GITERR_INVALID, "Invalid directory path '%s'", path);
+ return -1;
+ }
+ if ((dir = opendir(path)) == NULL) {
+ giterr_set(GITERR_OS, "Failed to open directory '%s'", path);
+ return -1;
+ }
+
+#ifdef GIT_USE_ICONV
+ if ((flags & GIT_PATH_DIR_PRECOMPOSE_UNICODE) != 0)
+ (void)git_path_iconv_init_precompose(&ic);
+#endif
+
+ path += prefix_len;
+ path_len -= prefix_len;
+
+ while ((error = p_readdir_r(dir, de_buf, &de)) == 0 && de != NULL) {
+ char *entry_path, *de_path = de->d_name;
+ size_t de_len = strlen(de_path);
+
+ if (git_path_is_dot_or_dotdot(de_path))
+ continue;
+
+#ifdef GIT_USE_ICONV
+ if ((error = git_path_iconv(&ic, &de_path, &de_len)) < 0)
+ break;
+#endif
+
+ if ((error = entry_path_alloc(&entry_path,
+ path, path_len, de_path, de_len, alloc_extra)) < 0)
+ break;
+
+ if ((error = git_vector_insert(contents, entry_path)) < 0) {
+ git__free(entry_path);
+ break;
+ }
+ }
+
+ closedir(dir);
+
+#ifdef GIT_USE_ICONV
+ git_path_iconv_clear(&ic);
+#endif
+
+ if (error != 0)
+ giterr_set(GITERR_OS, "Failed to process directory entry in '%s'", path);
+
+ return error;
+}
+
int git_path_dirload_with_stat(
const char *path,
size_t prefix_len,
@@ -1330,7 +1367,7 @@ int git_path_dirload_with_stat(
if (git_buf_set(&full, path, prefix_len) < 0)
return -1;
- error = git_path_dirload(
+ error = _dirload(
path, prefix_len, sizeof(git_path_with_stat) + 1, flags, contents);
if (error < 0) {
git_buf_free(&full);
diff --git a/src/path.h b/src/path.h
index 3a25d4a..ff743f6 100644
--- a/src/path.h
+++ b/src/path.h
@@ -366,22 +366,18 @@ extern void git_path_diriter_free(git_path_diriter *diriter);
* of strings. That vector can then be sorted, iterated, or whatever.
* Remember to free alloc of the allocated strings when you are done.
*
+ * @param contents Vector to fill with directory entry names.
* @param path The directory to read from.
* @param prefix_len When inserting entries, the trailing part of path
* will be prefixed after this length. I.e. given path "/a/b" and
* prefix_len 3, the entries will look like "b/e1", "b/e2", etc.
- * @param alloc_extra Extra bytes to add to each string allocation in
- * case you want to append anything funny.
* @param flags Combination of GIT_PATH_DIR flags.
- * @param contents Vector to fill with directory entry names.
*/
extern int git_path_dirload(
+ git_vector *contents,
const char *path,
size_t prefix_len,
- size_t alloc_extra,
- uint32_t flags,
- git_vector *contents);
-
+ uint32_t flags);
typedef struct {
struct stat st;
diff --git a/tests/diff/drivers.c b/tests/diff/drivers.c
index 8b12368..e3a0014 100644
--- a/tests/diff/drivers.c
+++ b/tests/diff/drivers.c
@@ -186,7 +186,7 @@ void test_diff_drivers__builtins(void)
g_repo = cl_git_sandbox_init("userdiff");
- cl_git_pass(git_path_dirload("userdiff/files", 9, 0, 0, &files));
+ cl_git_pass(git_path_dirload(&files, "userdiff/files", 9, 0));
opts.interhunk_lines = 1;
opts.context_lines = 1;