aboutsummaryrefslogtreecommitdiffstats
path: root/src/Song.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-18 19:24:55 +0100
committerMax Kellermann <max@duempel.org>2014-01-18 19:24:55 +0100
commitbc966577ffb2354f44ebb85ceb83b188bb6907b6 (patch)
tree9a3cf69e7521fb112270818ff8668d312ffc3e28 /src/Song.cxx
parentfdf4dff561d637ac7ea29b4438663870bb97839b (diff)
downloadmpd-bc966577ffb2354f44ebb85ceb83b188bb6907b6.tar.gz
mpd-bc966577ffb2354f44ebb85ceb83b188bb6907b6.tar.xz
mpd-bc966577ffb2354f44ebb85ceb83b188bb6907b6.zip
Song: use the VarSize library
Diffstat (limited to '')
-rw-r--r--src/Song.cxx29
1 files changed, 16 insertions, 13 deletions
diff --git a/src/Song.cxx b/src/Song.cxx
index c80185506..9edbe37f6 100644
--- a/src/Song.cxx
+++ b/src/Song.cxx
@@ -21,13 +21,24 @@
#include "Song.hxx"
#include "Directory.hxx"
#include "tag/Tag.hxx"
-#include "util/Alloc.hxx"
+#include "util/VarSize.hxx"
#include "DetachedSong.hxx"
#include <assert.h>
#include <string.h>
#include <stdlib.h>
+inline Song::Song(const char *_uri, size_t uri_length, Directory *_parent)
+ :tag(nullptr), parent(_parent), mtime(0), start_ms(0), end_ms(0)
+{
+ memcpy(uri, _uri, uri_length + 1);
+}
+
+inline Song::~Song()
+{
+ delete tag;
+}
+
static Song *
song_alloc(const char *uri, Directory *parent)
{
@@ -37,16 +48,9 @@ song_alloc(const char *uri, Directory *parent)
uri_length = strlen(uri);
assert(uri_length);
- Song *song = (Song *)
- xalloc(sizeof(*song) - sizeof(song->uri) + uri_length + 1);
-
- song->tag = nullptr;
- memcpy(song->uri, uri, uri_length + 1);
- song->parent = parent;
- song->mtime = 0;
- song->start_ms = song->end_ms = 0;
-
- return song;
+ return NewVarSize<Song>(sizeof(Song::uri),
+ uri_length + 1,
+ uri, uri_length, parent);
}
Song *
@@ -69,8 +73,7 @@ Song::NewFile(const char *path, Directory *parent)
void
Song::Free()
{
- delete tag;
- free(this);
+ DeleteVarSize(this);
}
std::string