summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Federico Mena Quintero2013-06-28 20:02:20 -0500
committerGravatar Federico Mena Quintero2013-07-02 20:31:44 -0500
commit42892465d4522cf19283b8a06bf48104bb387430 (patch)
treecdb38bd51c5bdc3ab65541071b70b566be3a11d5
parentef73e32751e86eca9ae34160708233da401a3297 (diff)
downloadlibimobiledevice-42892465d4522cf19283b8a06bf48104bb387430.tar.gz
libimobiledevice-42892465d4522cf19283b8a06bf48104bb387430.tar.bz2
common: Add utils.[ch] with a string_concat() function
Instead of doing malloc() and repeated strcat(), which is an O(n^2) way to concatenate multiple strings, we define a single O(total_len) function that uses stpcpy(). This will also make the rest of the code more legible and safer.
-rw-r--r--common/Makefile.am3
-rw-r--r--common/utils.c85
-rw-r--r--common/utils.h27
3 files changed, 114 insertions, 1 deletions
diff --git a/common/Makefile.am b/common/Makefile.am
index 664e13b..20bfe4d 100644
--- a/common/Makefile.am
+++ b/common/Makefile.am
@@ -10,7 +10,8 @@ libinternalcommon_la_SOURCES = \
10 socket.c socket.h \ 10 socket.c socket.h \
11 thread.c thread.h \ 11 thread.c thread.h \
12 debug.c debug.h \ 12 debug.c debug.h \
13 userpref.c userpref.h 13 userpref.c userpref.h \
14 utils.c utils.h
14 15
15if WIN32 16if WIN32
16libinternalcommon_la_LIBADD += -lole32 17libinternalcommon_la_LIBADD += -lole32
diff --git a/common/utils.c b/common/utils.c
new file mode 100644
index 0000000..b2b3768
--- /dev/null
+++ b/common/utils.c
@@ -0,0 +1,85 @@
1/*
2 * utils.c
3 * Miscellaneous utilities for string manipulation
4 *
5 * Copyright (c) 2013 Federico Mena Quintero
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifdef HAVE_CONFIG_H
23#include <config.h>
24#endif
25
26#include <stdarg.h>
27#include <stdlib.h>
28#include <string.h>
29
30#include "utils.h"
31
32/**
33 * Concatenate strings into a newly allocated string
34 *
35 * @note: Specify NULL for the last string in the varargs list
36 *
37 * @str: The first string in the list
38 * @...: Subsequent strings. Use NULL for the last item.
39 *
40 * @return a newly allocated string, or NULL if @str is NULL. This will also
41 * return NULL and set errno to ENOMEM if memory is exhausted.
42 */
43char *string_concat(const char *str, ...)
44{
45 size_t len;
46 va_list args;
47 char *s;
48 char *result;
49 char *dest;
50
51 if (!str)
52 return NULL;
53
54 /* Compute final length */
55
56 len = strlen(str) + 1; /* plus 1 for the null terminator */
57
58 va_start(args, str);
59 s = va_arg(args, char *);
60 while (s) {
61 len += strlen(s);
62 s = va_arg(args, char*);
63 }
64 va_end(args);
65
66 /* Concat each string */
67
68 result = malloc(len);
69 if (!result)
70 return NULL; /* errno remains set */
71
72 dest = result;
73
74 dest = stpcpy(dest, str);
75
76 va_start(args, str);
77 s = va_arg(args, char *);
78 while (s) {
79 dest = stpcpy(dest, s);
80 s = va_arg(args, char *);
81 }
82 va_end(args);
83
84 return result;
85}
diff --git a/common/utils.h b/common/utils.h
new file mode 100644
index 0000000..129f974
--- /dev/null
+++ b/common/utils.h
@@ -0,0 +1,27 @@
1/*
2 * utils.h
3 * Miscellaneous utilities for string manipulation
4 *
5 * Copyright (c) 2013 Federico Mena Quintero
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef __UTILS_H
23#define __UTILS_H
24
25char *string_concat(const char *str, ...);
26
27#endif