1 /******************************************************************************
2 * xspf.c : XSPF playlist export functions
3 ******************************************************************************
4 * Copyright (C) 2006-2009 the VideoLAN team
7 * Authors: Daniel Stränger <vlc at schmaller dot de>
8 * Yoann Peronneau <yoann@videolan.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *******************************************************************************/
26 * \file modules/misc/playlist/xspf.c
27 * \brief XSPF playlist export functions
33 #include <vlc_common.h>
34 #include <vlc_playlist.h>
35 #include <vlc_input.h>
36 #include <vlc_strings.h>
41 int xspf_export_playlist( vlc_object_t
*p_this
);
43 static char *input_xml( input_item_t
*p_item
, char *(*func
)(input_item_t
*) )
45 char *tmp
= func( p_item
);
48 char *ret
= convert_xml_special_chars( tmp
);
54 * \brief exports one item to file or traverse if item is a node
55 * \param p_item playlist item to export
56 * \param p_file file to write xml-converted item to
57 * \param p_i_count counter for track identifiers
59 static void xspf_export_item( playlist_item_t
*p_item
, FILE *p_file
,
64 /* if we get a node here, we must traverse it */
65 if( p_item
->i_children
> 0 )
67 for( int i
= 0; i
< p_item
->i_children
; i
++ )
68 xspf_export_item( p_item
->pp_children
[i
], p_file
, p_i_count
);
72 /* don't write empty nodes */
73 if( p_item
->i_children
== 0 )
76 input_item_t
*p_input
= p_item
->p_input
;
80 /* leaves can be written directly */
81 fputs( "\t\t<track>\n", p_file
);
85 char *psz_uri
= input_xml( p_input
, input_item_GetURI
);
86 if( psz_uri
&& *psz_uri
)
87 fprintf( p_file
, "\t\t\t<location>%s</location>\n", psz_uri
);
89 /* -> the name/title (only if different from uri)*/
90 psz
= input_xml( p_input
, input_item_GetTitle
);
91 if( psz
&& strcmp( psz_uri
, psz
) )
92 fprintf( p_file
, "\t\t\t<title>%s</title>\n", psz
);
96 if( p_item
->p_input
->p_meta
== NULL
)
98 goto xspfexportitem_end
;
101 /* -> the artist/creator */
102 psz
= input_xml( p_input
, input_item_GetArtist
);
104 fprintf( p_file
, "\t\t\t<creator>%s</creator>\n", psz
);
108 psz
= input_xml( p_input
, input_item_GetAlbum
);
110 fprintf( p_file
, "\t\t\t<album>%s</album>\n", psz
);
113 /* -> the track number */
114 psz
= input_xml( p_input
, input_item_GetTrackNum
);
117 int i_tracknum
= atoi( psz
);
121 fprintf( p_file
, "\t\t\t<trackNum>%i</trackNum>\n", i_tracknum
);
124 /* -> the description */
125 psz
= input_xml( p_input
, input_item_GetDescription
);
127 fprintf( p_file
, "\t\t\t<annotation>%s</annotation>\n", psz
);
130 psz
= input_xml( p_input
, input_item_GetURL
);
132 fprintf( p_file
, "\t\t\t<info>%s</info>\n", psz
);
135 psz
= input_xml( p_input
, input_item_GetArtURL
);
137 fprintf( p_file
, "\t\t\t<image>%s</image>\n", psz
);
141 /* -> the duration */
142 i_duration
= input_item_GetDuration( p_item
->p_input
);
144 fprintf( p_file
, "\t\t\t<duration>%"PRIu64
"</duration>\n",
147 /* export the intenal id and the input's options (bookmarks, ...)
149 fputs( "\t\t\t<extension application=\""
150 "http://www.videolan.org/vlc/playlist/0\">\n", p_file
);
152 /* print the id and increase the counter */
153 fprintf( p_file
, "\t\t\t\t<vlc:id>%i</vlc:id>\n", *p_i_count
);
156 for( int i
= 0; i
< p_item
->p_input
->i_options
; i
++ )
158 char* psz_src
= p_item
->p_input
->ppsz_options
[i
];
159 char* psz_ret
= NULL
;
161 if ( psz_src
[0] == ':' )
164 psz_ret
= convert_xml_special_chars( psz_src
);
165 if ( psz_ret
== NULL
)
168 fprintf( p_file
, "\t\t\t\t<vlc:option>%s</vlc:option>\n", psz_ret
);
171 fputs( "\t\t\t</extension>\n", p_file
);
172 fputs( "\t\t</track>\n", p_file
);
176 * \brief exports one item in extension to file and traverse if item is a node
177 * \param p_item playlist item to export
178 * \param p_file file to write xml-converted item to
179 * \param p_i_count counter for track identifiers
181 static void xspf_extension_item( playlist_item_t
*p_item
, FILE *p_file
,
184 if( !p_item
) return;
186 /* if we get a node here, we must traverse it */
187 if( p_item
->i_children
>= 0 )
190 char *psz_temp
= NULL
;
191 if( p_item
->p_input
->psz_name
)
192 psz_temp
= convert_xml_special_chars( p_item
->p_input
->psz_name
);
193 fprintf( p_file
, "\t\t<vlc:node title=\"%s\">\n",
194 psz_temp
? psz_temp
: "" );
197 for( i
= 0; i
< p_item
->i_children
; i
++ )
199 xspf_extension_item( p_item
->pp_children
[i
], p_file
, p_i_count
);
202 fprintf( p_file
, "\t\t</vlc:node>\n" );
207 /* print leaf and increase the counter */
208 fprintf( p_file
, "\t\t\t<vlc:item tid=\"%i\"/>\n", *p_i_count
);
215 * \brief Prints the XSPF header to file, writes each item by xspf_export_item()
216 * and closes the open xml elements
217 * \param p_this the VLC playlist object
218 * \return VLC_SUCCESS if some memory is available, otherwise VLC_ENONMEM
220 int xspf_export_playlist( vlc_object_t
*p_this
)
222 const playlist_export_t
*p_export
= (playlist_export_t
*)p_this
;
225 playlist_item_t
*p_node
= p_export
->p_root
;
227 /* write XSPF XML header */
228 fprintf( p_export
->p_file
, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" );
229 fprintf( p_export
->p_file
,
230 "<playlist xmlns=\"http://xspf.org/ns/0/\" " \
231 "xmlns:vlc=\"http://www.videolan.org/vlc/playlist/ns/0/\" " \
232 "version=\"1\">\n" );
234 if( !p_node
) return VLC_SUCCESS
;
236 /* save name of the playlist node */
237 psz_temp
= convert_xml_special_chars( p_node
->p_input
->psz_name
);
240 fprintf( p_export
->p_file
, "\t<title>%s</title>\n", psz_temp
);
244 /* export all items in a flat format */
245 fprintf( p_export
->p_file
, "\t<trackList>\n" );
247 for( i
= 0; i
< p_node
->i_children
; i
++ )
249 xspf_export_item( p_node
->pp_children
[i
], p_export
->p_file
,
252 fprintf( p_export
->p_file
, "\t</trackList>\n" );
254 /* export the tree structure in <extension> */
255 fprintf( p_export
->p_file
, "\t<extension application=\"" \
256 "http://www.videolan.org/vlc/playlist/0\">\n" );
258 for( i
= 0; i
< p_node
->i_children
; i
++ )
260 xspf_extension_item( p_node
->pp_children
[i
], p_export
->p_file
,
263 fprintf( p_export
->p_file
, "\t</extension>\n" );
265 /* close the header elements */
266 fprintf( p_export
->p_file
, "</playlist>\n" );