[Asterisk-code-review] CLI: Rewrite ast el strtoarr to use vector's internally. (asterisk[13])
Jenkins2
asteriskteam at digium.com
Mon Nov 27 13:22:57 CST 2017
Jenkins2 has submitted this change and it was merged. ( https://gerrit.asterisk.org/7341 )
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(-)
Approvals:
Kevin Harwell: Looks good to me, but someone else must approve
Joshua Colp: Looks good to me, but someone else must approve
George Joseph: Looks good to me, approved
Jenkins2: Approved for Submit
diff --git a/main/asterisk.c b/main/asterisk.c
index b769f6c..34d1a3d 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -3130,64 +3130,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/7341
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-MessageType: merged
Gerrit-Change-Id: Ibfe776cbe14f750effa9ca360930acaccc02e957
Gerrit-Change-Number: 7341
Gerrit-PatchSet: 1
Gerrit-Owner: Corey Farrell <git at cfware.com>
Gerrit-Reviewer: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Jenkins2
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20171127/e8612a2a/attachment.html>
More information about the asterisk-code-review
mailing list