mirror of
https://github.com/weechat/weechat.git
synced 2026-06-27 21:36:37 +02:00
Merge branch 'shared-strings'
This commit is contained in:
+42
-28
@@ -86,6 +86,40 @@ gui_lines_free (struct t_gui_lines *lines)
|
||||
free (lines);
|
||||
}
|
||||
|
||||
/*
|
||||
* Allocates array with tags in a line_data.
|
||||
*/
|
||||
|
||||
void
|
||||
gui_line_tags_alloc (struct t_gui_line_data *line_data, const char *tags)
|
||||
{
|
||||
if (tags)
|
||||
{
|
||||
line_data->tags_array = string_split_shared (tags, ",", 0, 0,
|
||||
&line_data->tags_count);
|
||||
}
|
||||
else
|
||||
{
|
||||
line_data->tags_count = 0;
|
||||
line_data->tags_array = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Frees array with tags in a line_data.
|
||||
*/
|
||||
|
||||
void
|
||||
gui_line_tags_free (struct t_gui_line_data *line_data)
|
||||
{
|
||||
if (line_data->tags_array)
|
||||
{
|
||||
string_free_split_shared (line_data->tags_array);
|
||||
line_data->tags_count = 0;
|
||||
line_data->tags_array = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Checks if prefix on line is a nick and is the same as nick on previous line.
|
||||
*
|
||||
@@ -871,10 +905,9 @@ gui_line_remove_from_list (struct t_gui_buffer *buffer,
|
||||
{
|
||||
if (line->data->str_time)
|
||||
free (line->data->str_time);
|
||||
if (line->data->tags_array)
|
||||
string_free_split (line->data->tags_array);
|
||||
gui_line_tags_free (line->data);
|
||||
if (line->data->prefix)
|
||||
free (line->data->prefix);
|
||||
string_shared_free (line->data->prefix);
|
||||
if (line->data->message)
|
||||
free (line->data->message);
|
||||
free (line->data);
|
||||
@@ -1090,19 +1123,10 @@ gui_line_add (struct t_gui_buffer *buffer, time_t date,
|
||||
new_line->data->date = date;
|
||||
new_line->data->date_printed = date_printed;
|
||||
new_line->data->str_time = gui_chat_get_time_string (date);
|
||||
if (tags)
|
||||
{
|
||||
new_line->data->tags_array = string_split (tags, ",", 0, 0,
|
||||
&new_line->data->tags_count);
|
||||
}
|
||||
else
|
||||
{
|
||||
new_line->data->tags_count = 0;
|
||||
new_line->data->tags_array = NULL;
|
||||
}
|
||||
gui_line_tags_alloc (new_line->data, tags);
|
||||
new_line->data->refresh_needed = 0;
|
||||
new_line->data->prefix = (prefix) ?
|
||||
strdup (prefix) : ((date != 0) ? strdup ("") : NULL);
|
||||
(char *)string_shared_get (prefix) : ((date != 0) ? (char *)string_shared_get ("") : NULL);
|
||||
new_line->data->prefix_length = (prefix) ?
|
||||
gui_chat_strlen_screen (prefix) : 0;
|
||||
new_line->data->message = (message) ? strdup (message) : strdup ("");
|
||||
@@ -1318,8 +1342,8 @@ void
|
||||
gui_line_clear (struct t_gui_line *line)
|
||||
{
|
||||
if (line->data->prefix)
|
||||
free (line->data->prefix);
|
||||
line->data->prefix = strdup ("");
|
||||
string_shared_free (line->data->prefix);
|
||||
line->data->prefix = (char *)string_shared_get ("");
|
||||
|
||||
if (line->data->message)
|
||||
free (line->data->message);
|
||||
@@ -1521,18 +1545,8 @@ gui_line_hdata_line_data_update_cb (void *data,
|
||||
if (hashtable_has_key (hashtable, "tags_array"))
|
||||
{
|
||||
value = hashtable_get (hashtable, "tags_array");
|
||||
if (line_data->tags_array)
|
||||
string_free_split (line_data->tags_array);
|
||||
if (value)
|
||||
{
|
||||
line_data->tags_array = string_split (value, ",", 0, 0,
|
||||
&line_data->tags_count);
|
||||
}
|
||||
else
|
||||
{
|
||||
line_data->tags_count = 0;
|
||||
line_data->tags_array = NULL;
|
||||
}
|
||||
gui_line_tags_free (line_data);
|
||||
gui_line_tags_alloc (line_data, value);
|
||||
rc++;
|
||||
}
|
||||
|
||||
|
||||
+20
-20
@@ -268,8 +268,8 @@ gui_nicklist_add_group (struct t_gui_buffer *buffer,
|
||||
if (!new_group)
|
||||
return NULL;
|
||||
|
||||
new_group->name = strdup (name);
|
||||
new_group->color = (color) ? strdup (color) : NULL;
|
||||
new_group->name = (char *)string_shared_get (name);
|
||||
new_group->color = (color) ? (char *)string_shared_get (color) : NULL;
|
||||
new_group->visible = visible;
|
||||
new_group->parent = (parent_group) ? parent_group : buffer->nicklist_root;
|
||||
new_group->level = (new_group->parent) ? new_group->parent->level + 1 : 0;
|
||||
@@ -442,10 +442,10 @@ gui_nicklist_add_nick (struct t_gui_buffer *buffer,
|
||||
return NULL;
|
||||
|
||||
new_nick->group = (group) ? group : buffer->nicklist_root;
|
||||
new_nick->name = strdup (name);
|
||||
new_nick->color = (color) ? strdup (color) : NULL;
|
||||
new_nick->prefix = (prefix) ? strdup (prefix) : NULL;
|
||||
new_nick->prefix_color = (prefix_color) ? strdup (prefix_color) : NULL;
|
||||
new_nick->name = (char *)string_shared_get (name);
|
||||
new_nick->color = (color) ? (char *)string_shared_get (color) : NULL;
|
||||
new_nick->prefix = (prefix) ? (char *)string_shared_get (prefix) : NULL;
|
||||
new_nick->prefix_color = (prefix_color) ? (char *)string_shared_get (prefix_color) : NULL;
|
||||
new_nick->visible = visible;
|
||||
|
||||
gui_nicklist_insert_nick_sorted (new_nick->group, new_nick);
|
||||
@@ -495,13 +495,13 @@ gui_nicklist_remove_nick (struct t_gui_buffer *buffer,
|
||||
|
||||
/* free data */
|
||||
if (nick->name)
|
||||
free (nick->name);
|
||||
string_shared_free (nick->name);
|
||||
if (nick->color)
|
||||
free (nick->color);
|
||||
string_shared_free (nick->color);
|
||||
if (nick->prefix)
|
||||
free (nick->prefix);
|
||||
string_shared_free (nick->prefix);
|
||||
if (nick->prefix_color)
|
||||
free (nick->prefix_color);
|
||||
string_shared_free (nick->prefix_color);
|
||||
|
||||
buffer->nicklist_count--;
|
||||
buffer->nicklist_nicks_count--;
|
||||
@@ -575,9 +575,9 @@ gui_nicklist_remove_group (struct t_gui_buffer *buffer,
|
||||
|
||||
/* free data */
|
||||
if (group->name)
|
||||
free (group->name);
|
||||
string_shared_free (group->name);
|
||||
if (group->color)
|
||||
free (group->color);
|
||||
string_shared_free (group->color);
|
||||
|
||||
if (group->visible)
|
||||
{
|
||||
@@ -884,8 +884,8 @@ gui_nicklist_group_set (struct t_gui_buffer *buffer,
|
||||
if (string_strcasecmp (property, "color") == 0)
|
||||
{
|
||||
if (group->color)
|
||||
free (group->color);
|
||||
group->color = (value[0]) ? strdup (value) : NULL;
|
||||
string_shared_free (group->color);
|
||||
group->color = (value[0]) ? (char *)string_shared_get (value) : NULL;
|
||||
group_changed = 1;
|
||||
}
|
||||
else if (string_strcasecmp (property, "visible") == 0)
|
||||
@@ -995,22 +995,22 @@ gui_nicklist_nick_set (struct t_gui_buffer *buffer,
|
||||
if (string_strcasecmp (property, "color") == 0)
|
||||
{
|
||||
if (nick->color)
|
||||
free (nick->color);
|
||||
nick->color = (value[0]) ? strdup (value) : NULL;
|
||||
string_shared_free (nick->color);
|
||||
nick->color = (value[0]) ? (char *)string_shared_get (value) : NULL;
|
||||
nick_changed = 1;
|
||||
}
|
||||
else if (string_strcasecmp (property, "prefix") == 0)
|
||||
{
|
||||
if (nick->prefix)
|
||||
free (nick->prefix);
|
||||
nick->prefix = (value[0]) ? strdup (value) : NULL;
|
||||
string_shared_free (nick->prefix);
|
||||
nick->prefix = (value[0]) ? (char *)string_shared_get (value) : NULL;
|
||||
nick_changed = 1;
|
||||
}
|
||||
else if (string_strcasecmp (property, "prefix_color") == 0)
|
||||
{
|
||||
if (nick->prefix_color)
|
||||
free (nick->prefix_color);
|
||||
nick->prefix_color = (value[0]) ? strdup (value) : NULL;
|
||||
string_shared_free (nick->prefix_color);
|
||||
nick->prefix_color = (value[0]) ? (char *)string_shared_get (value) : NULL;
|
||||
nick_changed = 1;
|
||||
}
|
||||
else if (string_strcasecmp (property, "visible") == 0)
|
||||
|
||||
Reference in New Issue
Block a user