1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
* Copyright (C) 2003 Ross Burton <ross@burtonini.com>
*
* Sound Juicer - sj-structures.c
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.*
*
* Authors: Ross Burton <ross@burtonini.com>
*/
#include "sj-structures.h"
#include <glib.h>
/*
* Free a TrackDetails*
*/
void track_details_free(TrackDetails *track)
{
g_return_if_fail (track != NULL);
g_free (track->title);
g_free (track->artist);
g_free (track->composer);
g_free (track->track_id);
g_free (track->artist_id);
g_free (track->artist_sortname);
g_list_foreach (track->artists, (GFunc)artist_details_free, NULL);
g_free (track);
}
/*
* Free a AlbumDetails*
*/
void album_details_free(AlbumDetails *album)
{
g_return_if_fail (album != NULL);
g_free (album->title);
g_free (album->artist);
g_free (album->composer);
g_free (album->genre);
g_free (album->album_id);
if (album->release_date) g_date_free (album->release_date);
g_list_foreach (album->tracks, (GFunc)track_details_free, NULL);
g_list_free (album->tracks);
g_free (album->artist_sortname);
g_free (album->artist_id);
g_free (album->asin);
g_free (album->discogs);
g_free (album->wikipedia);
g_free (album->lyrics_url);
g_free (album->country);
g_free (album->type);
g_list_foreach (album->artists, (GFunc)artist_details_free, NULL);
g_free (album);
}
/*
* Free a ArtistDetails*
*/
void artist_details_free (ArtistDetails *artist)
{
g_free (artist->id);
g_free (artist->name);
g_free (artist->sortname);
g_free (artist->disambiguation);
g_free (artist->gender);
g_free (artist->country);
g_free (artist->joinphrase);
g_free (artist);
}
|