[Asterisk-code-review] CLI: Rewrite ast el strtoarr to use vector's internally. (asterisk[master])
Corey Farrell
asteriskteam at digium.com
Fri Nov 17 13:40:16 CST 2017
Corey Farrell has uploaded this change for review. ( https://gerrit.asterisk.org/7267
Change subject: CLI: Rewrite ast_el_strtoarr to use vector's internally.
......................................................................
CLI: Rewrite ast_el_strtoarr to use vector's internally.
This rewrites ast_el_strtoarr to use vector's internally, but still
return the original NULL terminated array of strings.
Change-Id: Ibfe776cbe14f750effa9ca360930acaccc02e957
---
M main/asterisk.c
1 file changed, 22 insertions(+), 39 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/67/7267/1
diff --git a/main/asterisk.c b/main/asterisk.c
index 2908b46..46dc9a7 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -3001,64 +3001,47 @@
return ast_str_buffer(prompt);
}
-static void destroy_match_list(char **match_list, int matches)
-{
- if (match_list) {
- int idx;
-
- for (idx = 0; idx < matches; ++idx) {
- ast_free(match_list[idx]);
- }
- ast_free(match_list);
- }
-}
-
static char **ast_el_strtoarr(char *buf)
{
char *retstr;
- char **match_list = NULL;
- char **new_list;
- size_t match_list_len = 1;
- int matches = 0;
+ char **match_list;
+ struct ast_vector_string *vec = ast_calloc(1, sizeof(*vec));
+
+ if (!vec) {
+ return NULL;
+ }
while ((retstr = strsep(&buf, " "))) {
if (!strcmp(retstr, AST_CLI_COMPLETE_EOF)) {
break;
}
- if (matches + 1 >= match_list_len) {
- match_list_len <<= 1;
- new_list = ast_realloc(match_list, match_list_len * sizeof(char *));
- if (!new_list) {
- destroy_match_list(match_list, matches);
- return NULL;
- }
- match_list = new_list;
- }
retstr = ast_strdup(retstr);
- if (!retstr) {
- destroy_match_list(match_list, matches);
- return NULL;
+ if (!retstr || AST_VECTOR_APPEND(vec, retstr)) {
+ ast_free(retstr);
+ goto vector_cleanup;
}
- match_list[matches++] = retstr;
}
- if (!match_list) {
- return NULL;
+ if (!AST_VECTOR_SIZE(vec)) {
+ goto vector_cleanup;
}
- if (matches >= match_list_len) {
- new_list = ast_realloc(match_list, (match_list_len + 1) * sizeof(char *));
- if (!new_list) {
- destroy_match_list(match_list, matches);
- return NULL;
- }
- match_list = new_list;
+ if (AST_VECTOR_APPEND(vec, NULL)) {
+ /* We failed to NULL terminate the elements */
+ goto vector_cleanup;
}
- match_list[matches] = NULL;
+ match_list = AST_VECTOR_STEAL_ELEMENTS(vec);
+ AST_VECTOR_PTR_FREE(vec);
return match_list;
+
+vector_cleanup:
+ AST_VECTOR_CALLBACK_VOID(vec, ast_free);
+ AST_VECTOR_PTR_FREE(vec);
+
+ return NULL;
}
static int ast_el_sort_compare(const void *i1, const void *i2)
--
To view, visit https://gerrit.asterisk.org/7267
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibfe776cbe14f750effa9ca360930acaccc02e957
Gerrit-Change-Number: 7267
Gerrit-PatchSet: 1
Gerrit-Owner: Corey Farrell <git at cfware.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20171117/eb7bed19/attachment-0001.html>
More information about the asterisk-code-review
mailing list