void *k, *v;
unsigned int h;
hashtable_flag_t flags;
+ hashtable_destructor_t destructor;
struct entry *next;
};
\return SWITCH_STATUS_SUCCESS if the data is added
\note the string key must be a constant or a dynamic string
*/
-SWITCH_DECLARE(switch_status_t) switch_core_hash_insert(_In_ switch_hash_t *hash, _In_z_ const char *key, _In_opt_ const void *data);
+SWITCH_DECLARE(switch_status_t) switch_core_hash_insert_destructor(_In_ switch_hash_t *hash, _In_z_ const char *key, _In_opt_ const void *data, hashtable_destructor_t destructor);
+#define switch_core_hash_insert(_h, _k, _d) switch_core_hash_insert_destructor(_h, _k, _d, NULL)
+
/*!
\brief Insert data into a hash
} hashtable_flag_t;
SWITCH_DECLARE(int)
-switch_hashtable_insert(switch_hashtable_t *h, void *k, void *v, hashtable_flag_t flags);
+switch_hashtable_insert_destructor(switch_hashtable_t *h, void *k, void *v, hashtable_flag_t flags, hashtable_destructor_t destructor);
+#define switch_hashtable_insert(_h, _k, _v, _f) switch_hashtable_insert_destructor(_h, _k, _v, _f, NULL)
#define DEFINE_HASHTABLE_INSERT(fnname, keytype, valuetype) \
int fnname (switch_hashtable_t *h, keytype *k, valuetype *v) \
typedef struct switch_media_bug switch_media_bug_t;
typedef struct switch_limit_interface switch_limit_interface_t;
+typedef void (*hashtable_destructor_t)(void *ptr);
+
struct switch_console_callback_match_node {
char *val;
struct switch_console_callback_match_node *next;
\param vname the name of the global pointer to modify with the new function
*/
#define SWITCH_DECLARE_GLOBAL_STRING_FUNC(fname, vname) static void fname(const char *string) { if (!string) return;\
- if (vname) {free(vname); vname = NULL;}vname = strdup(string);} static void fname(const char *string)
+ if (vname) {vname = NULL;}vname = switch_core_permanent_strdup(string);} static void fname(const char *string)
/*!
\brief Separate a string into an array based on a character delimiter
profile->auth_scheme = auth_scheme;
profile->timeout = timeout;
- profile->url = strdup(url);
+ profile->url = switch_core_strdup(globals.pool, url);
switch_assert(profile->url);
if (bind_local != NULL) {
- profile->bind_local = strdup(bind_local);
+ profile->bind_local = switch_core_strdup(globals.pool, bind_local);
}
if (method != NULL) {
- profile->method = strdup(method);
+ profile->method = switch_core_strdup(globals.pool, method);
} else {
profile->method = NULL;
}
if (bind_cred) {
- profile->cred = strdup(bind_cred);
+ profile->cred = switch_core_strdup(globals.pool, bind_cred);
}
profile->disable100continue = disable100continue;
profile->enable_cacert_check = enable_cacert_check;
if (ssl_cert_file) {
- profile->ssl_cert_file = strdup(ssl_cert_file);
+ profile->ssl_cert_file = switch_core_strdup(globals.pool, ssl_cert_file);
}
if (ssl_key_file) {
- profile->ssl_key_file = strdup(ssl_key_file);
+ profile->ssl_key_file = switch_core_strdup(globals.pool, ssl_key_file);
}
if (ssl_key_password) {
- profile->ssl_key_password = strdup(ssl_key_password);
+ profile->ssl_key_password = switch_core_strdup(globals.pool, ssl_key_password);
}
if (ssl_version) {
- profile->ssl_version = strdup(ssl_version);
+ profile->ssl_version = switch_core_strdup(globals.pool, ssl_version);
}
if (ssl_cacert_file) {
- profile->ssl_cacert_file = strdup(ssl_cacert_file);
+ profile->ssl_cacert_file = switch_core_strdup(globals.pool, ssl_cacert_file);
}
profile->enable_ssl_verifyhost = enable_ssl_verifyhost;
if (cookie_file) {
- profile->cookie_file = strdup(cookie_file);
+ profile->cookie_file = switch_core_strdup(globals.pool, cookie_file);
}
profile->vars_map = vars_map;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Profile [%s] JSON Function [%s]\n",
zstr(bname) ? "N/A" : bname, profile->url);
- profile->name = strdup(bname);
+ profile->name = switch_core_strdup(globals.pool, bname);
switch_core_hash_insert(globals.profile_hash, bname, profile);
/* **************************************************************************
CONFIGURATION
************************************************************************* */
+static void destroy_descriptor(void *ptr)
+{
+ tone_descriptor_t *d = (tone_descriptor_t *) ptr;
+
+ super_tone_rx_free_descriptor(d->spandsp_tone_descriptor);
+}
switch_status_t load_configuration(switch_bool_t reload)
{
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Unable to allocate tone_descriptor: %s\n", name);
switch_goto_status(SWITCH_STATUS_FALSE, done);
}
- switch_core_hash_insert(spandsp_globals.tones, name, descriptor);
+
+ switch_core_hash_insert_destructor(spandsp_globals.tones, name, descriptor, destroy_descriptor);
/* add tones to descriptor */
for (tone = switch_xml_child(xdescriptor, "tone"); tone; tone = switch_xml_next(tone)) {
switch_core_destroy_memory_pool(&spandsp_globals.config_pool);
}
+ memset(&spandsp_globals, 0, sizeof(spandsp_globals));
+
return SWITCH_STATUS_UNLOAD;
}
t38_state_list.thread_running = 0;
wake_thread(1);
switch_thread_join(&tstatus, t38_state_list.thread);
- memset(&spandsp_globals, 0, sizeof(spandsp_globals));
}
static const switch_state_handler_table_t t38_gateway_state_handlers;
switch_mutex_destroy(globals.event_mutex);
switch_core_hash_destroy(&module_manager.load_hash);
+ switch_core_destroy_memory_pool(&module_manager.pool);
return SWITCH_STATUS_SUCCESS;
}
return process_node(node, level);
}
+static void cleanup_profile(void *ptr)
+{
+ logfile_profile_t *profile = (logfile_profile_t *) ptr;
+
+ switch_core_hash_destroy(&profile->log_hash);
+ switch_file_close(profile->log_afd);
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Closing %s\n", profile->logfile);
+ switch_safe_free(profile->logfile);
+
+}
+
static switch_status_t load_profile(switch_xml_t xml)
{
switch_xml_t param, settings;
return SWITCH_STATUS_GENERR;
}
- switch_core_hash_insert(profile_hash, new_profile->name, (void *) new_profile);
+ switch_core_hash_insert_destructor(profile_hash, new_profile->name, (void *) new_profile, cleanup_profile);
return SWITCH_STATUS_SUCCESS;
}
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_logfile_shutdown)
{
- switch_hash_index_t *hi;
- const void *var;
- void *val;
-
switch_log_unbind_logger(mod_logfile_logger);
switch_event_unbind(&globals.node);
-
- for (hi = switch_core_hash_first(profile_hash); hi; hi = switch_core_hash_next(&hi)) {
- logfile_profile_t *profile;
- switch_core_hash_this(hi, &var, NULL, &val);
- if ((profile = (logfile_profile_t *) val)) {
- switch_file_close(profile->log_afd);
- switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Closing %s\n", profile->logfile);
- switch_safe_free(profile->logfile);
- }
- }
-
switch_core_hash_destroy(&profile_hash);
-
-
return SWITCH_STATUS_SUCCESS;
}
return SWITCH_STATUS_SUCCESS;
}
-SWITCH_DECLARE(switch_status_t) switch_core_hash_insert(switch_hash_t *hash, const char *key, const void *data)
+SWITCH_DECLARE(switch_status_t) switch_core_hash_insert_destructor(switch_hash_t *hash, const char *key, const void *data, hashtable_destructor_t destructor)
{
- switch_hashtable_insert(hash, strdup(key), (void *)data, HASHTABLE_FLAG_FREE_KEY);
+ switch_hashtable_insert_destructor(hash, strdup(key), (void *)data, HASHTABLE_FLAG_FREE_KEY, destructor);
return SWITCH_STATUS_SUCCESS;
}
/*****************************************************************************/
SWITCH_DECLARE(int)
-switch_hashtable_insert(switch_hashtable_t *h, void *k, void *v, hashtable_flag_t flags)
+switch_hashtable_insert_destructor(switch_hashtable_t *h, void *k, void *v, hashtable_flag_t flags, hashtable_destructor_t destructor)
{
/* This method allows duplicate keys - but they shouldn't be used */
unsigned int index;
e->k = k;
e->v = v;
e->flags = flags;
+ e->destructor = destructor;
e->next = h->table[index];
h->table[index] = e;
return -1;
if (e->flags & HASHTABLE_FLAG_FREE_KEY) {
freekey(e->k);
}
+ if (e->flags & HASHTABLE_FLAG_FREE_VALUE) {
+ switch_safe_free(e->v);
+ } else if (e->destructor) {
+ e->destructor(e->v);
+ e->v = NULL;
+ }
switch_safe_free(e);
return v;
}
if (f->flags & HASHTABLE_FLAG_FREE_VALUE) {
switch_safe_free(f->v);
+ } else if (f->destructor) {
+ f->destructor(f->v);
+ f->v = NULL;
}
switch_safe_free(f);
}