aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:39:08 +0200
committerEric Wong <normalperson@yhbt.net>2008-09-02 00:20:20 -0700
commitc82544458231694c197b0c967f6e2844e8612bc6 (patch)
treecb1d059950bcdbd31bb6f93a295fc393747df2a7 /src/tag.h
parentff13366268bde4493b431f50ae8fa8fcff2c9c80 (diff)
downloadmpd-c82544458231694c197b0c967f6e2844e8612bc6.tar.gz
mpd-c82544458231694c197b0c967f6e2844e8612bc6.tar.xz
mpd-c82544458231694c197b0c967f6e2844e8612bc6.zip
tag: try not to reallocate tag.items in every add() call
If many tag_items are added at once while the tag cache is being loaded, manage these items in a static fixed list, instead of reallocating the list with every newly created item. This reduces heap fragmentation. Massif results again: mk before: total 12,837,632; useful 10,626,383; extra 2,211,249 mk now: total 12,736,720; useful 10,626,383; extra 2,110,337 The "useful" value is the same since this patch only changes the way we allocate the same amount of memory, but heap fragmentation was reduced by 5%.
Diffstat (limited to 'src/tag.h')
-rw-r--r--src/tag.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/tag.h b/src/tag.h
index 6ca48affa..44c680a98 100644
--- a/src/tag.h
+++ b/src/tag.h
@@ -61,8 +61,22 @@ void tag_clear_items_by_type(struct mpd_tag *tag, enum tag_type itemType);
void tag_free(struct mpd_tag *tag);
+/**
+ * Gives an optional hint to the tag library that we will now add
+ * several tag items; this is used by the library to optimize memory
+ * allocation. Only one tag may be in this state, and this tag must
+ * not have any items yet. You must call tag_end_add() when you are
+ * done.
+ */
+void tag_begin_add(struct mpd_tag *tag);
+
+/**
+ * Finishes the operation started with tag_begin_add().
+ */
+void tag_end_add(struct mpd_tag *tag);
+
void tag_add_item_n(struct mpd_tag *tag, enum tag_type itemType,
- const char *value, size_t len);
+ const char *value, size_t len);
static inline void tag_add_item(struct mpd_tag *tag, enum tag_type itemType,
const char *value)