From f0f5fbbc01ad2ba325f09dc80a92c3c22374ab67 Mon Sep 17 00:00:00 2001 From: Richard Mudgett <rmudgett@digium.com> Date: Wed, 6 Jan 2016 19:09:43 -0600 Subject: [PATCH] Sorcery: Create human friendly serializer names. Sorcery name formats: sorcery/<type>-<seq> -- Sorcery thread pool serializer Change-Id: Idc2e5d3dbab15c825b97c38c028319a0d2315c47 --- main/sorcery.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/main/sorcery.c b/main/sorcery.c index 0f8ec5cd05..a445a6ecad 100644 --- a/main/sorcery.c +++ b/main/sorcery.c @@ -823,7 +823,7 @@ static struct ast_sorcery_object_type *sorcery_object_type_alloc(const char *typ { #define INITIAL_WIZARD_VECTOR_SIZE 5 struct ast_sorcery_object_type *object_type; - char uuid[AST_UUID_STR_LEN]; + char tps_name[AST_TASKPROCESSOR_MAX_NAME + 1]; if (!(object_type = ao2_alloc(sizeof(*object_type), sorcery_object_type_destructor))) { return NULL; @@ -856,12 +856,10 @@ static struct ast_sorcery_object_type *sorcery_object_type_alloc(const char *typ return NULL; } - if (!ast_uuid_generate_str(uuid, sizeof(uuid))) { - ao2_ref(object_type, -1); - return NULL; - } + /* Create name with seq number appended. */ + ast_taskprocessor_build_name(tps_name, sizeof(tps_name), "sorcery/%s", type); - if (!(object_type->serializer = ast_threadpool_serializer(uuid, threadpool))) { + if (!(object_type->serializer = ast_threadpool_serializer(tps_name, threadpool))) { ao2_ref(object_type, -1); return NULL; } -- GitLab