util: use join() instead of asprintf() as an optimization

This commit is contained in:
Lennart Poettering 2011-08-01 02:39:22 +02:00
parent 70132bd042
commit 44d9105692
5 changed files with 18 additions and 18 deletions

View File

@ -88,7 +88,8 @@ int config_item_perf_lookup(
else { else {
char *key; char *key;
if (asprintf(&key, "%s.%s", section, lvalue) < 0) key = join(section, ".", lvalue, NULL);
if (!key)
return -ENOMEM; return -ENOMEM;
p = lookup(key, strlen(key)); p = lookup(key, strlen(key));

View File

@ -50,7 +50,8 @@ static int iterate_dir(Unit *u, const char *path, UnitDependency dependency) {
if (ignore_file(de->d_name)) if (ignore_file(de->d_name))
continue; continue;
if (asprintf(&f, "%s/%s", path, de->d_name) < 0) { f = join(path, "/", de->d_name, NULL);
if (!f) {
r = -ENOMEM; r = -ENOMEM;
goto finish; goto finish;
} }

View File

@ -560,7 +560,8 @@ static void manager_build_unit_path_cache(Manager *m) {
if (ignore_file(de->d_name)) if (ignore_file(de->d_name))
continue; continue;
if (asprintf(&p, "%s/%s", streq(*i, "/") ? "" : *i, de->d_name) < 0) { p = join(streq(*i, "/") ? "" : *i, "/", de->d_name, NULL);
if (!p) {
r = -ENOMEM; r = -ENOMEM;
goto fail; goto fail;
} }

View File

@ -635,7 +635,7 @@ static int service_load_sysv_path(Service *s, const char *path) {
char *d = NULL; char *d = NULL;
if (chkconfig_description) if (chkconfig_description)
asprintf(&d, "%s %s", chkconfig_description, j); d = join(chkconfig_description, " ", j, NULL);
else else
d = strdup(j); d = strdup(j);
@ -805,7 +805,7 @@ static int service_load_sysv_path(Service *s, const char *path) {
char *d = NULL; char *d = NULL;
if (long_description) if (long_description)
asprintf(&d, "%s %s", long_description, t); d = join(long_description, " ", t, NULL);
else else
d = strdup(j); d = strdup(j);
@ -921,7 +921,8 @@ static int service_load_sysv_name(Service *s, const char *name) {
char *path; char *path;
int r; int r;
if (asprintf(&path, "%s/%s", *p, name) < 0) path = join(*p, "/", name, NULL);
if (!path)
return -ENOMEM; return -ENOMEM;
assert(endswith(path, ".service")); assert(endswith(path, ".service"));
@ -942,7 +943,8 @@ static int service_load_sysv_name(Service *s, const char *name) {
if (r >= 0 && s->meta.load_state == UNIT_STUB) { if (r >= 0 && s->meta.load_state == UNIT_STUB) {
/* Try SUSE style boot.* init scripts */ /* Try SUSE style boot.* init scripts */
if (asprintf(&path, "%s/boot.%s", *p, name) < 0) path = join(*p, "/boot.", name, NULL);
if (!path)
return -ENOMEM; return -ENOMEM;
/* Drop .service suffix */ /* Drop .service suffix */
@ -956,7 +958,8 @@ static int service_load_sysv_name(Service *s, const char *name) {
if (r >= 0 && s->meta.load_state == UNIT_STUB) { if (r >= 0 && s->meta.load_state == UNIT_STUB) {
/* Try Frugalware style rc.* init scripts */ /* Try Frugalware style rc.* init scripts */
if (asprintf(&path, "%s/rc.%s", *p, name) < 0) path = join(*p, "/rc.", name, NULL);
if (!path)
return -ENOMEM; return -ENOMEM;
/* Drop .service suffix */ /* Drop .service suffix */
@ -2987,7 +2990,6 @@ static int service_enumerate(Manager *m) {
struct dirent *de; struct dirent *de;
free(path); free(path);
path = NULL;
path = join(*p, "/", rcnd_table[i].path, NULL); path = join(*p, "/", rcnd_table[i].path, NULL);
if (!path) { if (!path) {
r = -ENOMEM; r = -ENOMEM;
@ -3023,8 +3025,8 @@ static int service_enumerate(Manager *m) {
continue; continue;
free(fpath); free(fpath);
fpath = NULL; fpath = join(path, "/", de->d_name, NULL);
if (asprintf(&fpath, "%s/%s/%s", *p, rcnd_table[i].path, de->d_name) < 0) { if (!path) {
r = -ENOMEM; r = -ENOMEM;
goto finish; goto finish;
} }

View File

@ -809,7 +809,7 @@ int parse_env_file(
const char *separator, ...) { const char *separator, ...) {
int r = 0; int r = 0;
char *contents, *p; char *contents = NULL, *p;
assert(fname); assert(fname);
assert(separator); assert(separator);
@ -1266,8 +1266,6 @@ bool is_path(const char *p) {
} }
char *path_make_absolute(const char *p, const char *prefix) { char *path_make_absolute(const char *p, const char *prefix) {
char *r;
assert(p); assert(p);
/* Makes every item in the list an absolute path by prepending /* Makes every item in the list an absolute path by prepending
@ -1276,10 +1274,7 @@ char *path_make_absolute(const char *p, const char *prefix) {
if (path_is_absolute(p) || !prefix) if (path_is_absolute(p) || !prefix)
return strdup(p); return strdup(p);
if (asprintf(&r, "%s/%s", prefix, p) < 0) return join(prefix, "/", p, NULL);
return NULL;
return r;
} }
char *path_make_absolute_cwd(const char *p) { char *path_make_absolute_cwd(const char *p) {