Dshow: relicense to LGPL
[vlc.git] / src / misc / xml.c
blob3f9f678d0494eab1fb030ff42b7c6595ec0f3ec9
1 /*****************************************************************************
2 * xml.c: XML parser wrapper for XML modules
3 *****************************************************************************
4 * Copyright (C) 2004-2010 VLC authors and VideoLAN
6 * Authors: Gildas Bazin <gbazin@videolan.org>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 *****************************************************************************/
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
27 #include <vlc_common.h>
28 #include <vlc_xml.h>
29 #include <vlc_modules.h>
30 #include "../libvlc.h"
32 #undef xml_Create
33 /*****************************************************************************
34 * xml_Create:
35 *****************************************************************************
36 * Create an instance of an XML parser.
37 * Returns NULL on error.
38 *****************************************************************************/
39 xml_t *xml_Create( vlc_object_t *p_this )
41 xml_t *p_xml;
43 p_xml = vlc_custom_create( p_this, sizeof( *p_xml ), "xml" );
45 p_xml->p_module = module_need( p_xml, "xml", NULL, false );
46 if( !p_xml->p_module )
48 vlc_object_release( p_xml );
49 msg_Err( p_this, "XML provider not found" );
50 return NULL;
53 return p_xml;
56 /*****************************************************************************
57 * xml_Delete: Deletes an instance of xml_t
58 *****************************************************************************/
59 void xml_Delete( xml_t *p_xml )
61 module_unneed( p_xml, p_xml->p_module );
62 vlc_object_release( p_xml );
66 #undef xml_ReaderCreate
67 /**
68 * Creates an XML reader.
69 * @param obj parent VLC object
70 * @param stream stream to read XML from
71 * @return NULL on error.
73 xml_reader_t *xml_ReaderCreate(vlc_object_t *obj, stream_t *stream)
75 xml_reader_t *reader;
77 reader = vlc_custom_create(obj, sizeof(*reader), "xml reader");
79 reader->p_stream = stream;
80 reader->p_module = module_need(reader, "xml reader", NULL, false);
81 if (unlikely(reader->p_module == NULL))
83 msg_Err(reader, "XML reader not found");
84 vlc_object_release(reader);
85 return NULL;
87 return reader;
91 /**
92 * Deletes an XML reader.
93 * @param reader XML reader created with xml_ReaderCreate().
95 void xml_ReaderDelete(xml_reader_t *reader)
97 module_unneed(reader, reader->p_module);
98 vlc_object_release(reader);