1 /*****************************************************************************
3 *****************************************************************************
4 * Copyright (C) 2004 the VideoLAN team
7 * Authors: Cyril Deguet <asmax@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #include "xmlparser.hpp"
25 #include "../src/os_factory.hpp"
28 #ifdef HAVE_SYS_STAT_H
29 # include <sys/stat.h>
32 // Static variable to avoid initializing catalogs twice
33 static bool m_initialized
= false;
35 XMLParser::XMLParser( intf_thread_t
*pIntf
, const string
&rFileName
,
42 m_pXML
= xml_Create( pIntf
);
45 msg_Err( getIntf(), "failed to open XML parser" );
49 // Avoid duplicate initialization (mutex needed ?) -> doesn't work
50 // Reinitialization required for a new XMLParser
51 // if( !m_initialized )
54 // m_initialized = true;
58 char* psz_uri
= make_URI( rFileName
.c_str(), NULL
);
59 m_pStream
= stream_UrlNew( pIntf
, psz_uri
);
64 msg_Err( getIntf(), "failed to open %s for reading",
68 m_pReader
= xml_ReaderCreate( m_pXML
, m_pStream
);
71 msg_Err( getIntf(), "failed to open %s for parsing",
76 xml_ReaderUseDTD( m_pReader
, useDTD
);
80 XMLParser::~XMLParser()
82 if( m_pReader
&& m_pXML
) xml_ReaderDelete( m_pXML
, m_pReader
);
83 if( m_pXML
) xml_Delete( m_pXML
);
84 if( m_pStream
) stream_Delete( m_pStream
);
88 void XMLParser::LoadCatalog()
90 // Get the resource path and look for the DTD
91 OSFactory
*pOSFactory
= OSFactory::instance( getIntf() );
92 const list
<string
> &resPath
= pOSFactory
->getResourcePath();
93 const string
&sep
= pOSFactory
->getDirSeparator();
94 list
<string
>::const_iterator it
;
96 #ifdef HAVE_SYS_STAT_H
99 // Try to load the catalog first (needed at least on win32 where
100 // we don't have a default catalog)
101 for( it
= resPath
.begin(); it
!= resPath
.end(); it
++ )
103 string catalog_path
= (*it
) + sep
+ "skin.catalog";
104 if( !stat( catalog_path
.c_str(), &statBuf
) )
106 msg_Dbg( getIntf(), "Using catalog %s", catalog_path
.c_str() );
107 xml_CatalogLoad( m_pXML
, catalog_path
.c_str() );
111 if( it
== resPath
.end() )
113 // Ok, try the default one
114 xml_CatalogLoad( m_pXML
, 0 );
117 for( it
= resPath
.begin(); it
!= resPath
.end(); it
++ )
119 string path
= (*it
) + sep
+ "skin.dtd";
120 if( !stat( path
.c_str(), &statBuf
) )
123 msg_Dbg( getIntf(), "using DTD %s", path
.c_str() );
125 // Add an entry in the default catalog
126 xml_CatalogAdd( m_pXML
, "public",
127 "-//VideoLAN//DTD VLC Skins V"
128 SKINS_DTD_VERSION
"//EN", path
.c_str() );
132 if( it
== resPath
.end() )
134 msg_Err( getIntf(), "cannot find the skins DTD");
139 bool XMLParser::parse()
141 if( !m_pReader
) return false;
145 int ret
= xml_ReaderRead( m_pReader
);
148 if( m_errors
) return false;
151 int type
= xml_ReaderNodeType( m_pReader
);
159 case XML_READER_STARTELEM
:
161 // Read the element name
162 char *eltName
= xml_ReaderName( m_pReader
);
163 if( !eltName
) return false;
165 // Read the attributes
166 AttrList_t attributes
;
167 while( xml_ReaderNextAttr( m_pReader
) == VLC_SUCCESS
)
169 char *name
= xml_ReaderName( m_pReader
);
170 char *value
= xml_ReaderValue( m_pReader
);
171 if( !name
|| !value
)
177 attributes
[name
] = value
;
180 handleBeginElement( eltName
, attributes
);
183 map
<const char*, const char*, ltstr
> ::iterator it
=
185 while( it
!= attributes
.end() )
187 free( (char *)it
->first
);
188 free( (char *)it
->second
);
195 case XML_READER_ENDELEM
:
197 // Read the element name
198 char *eltName
= xml_ReaderName( m_pReader
);
199 if( !eltName
) return false;
201 handleEndElement( eltName
);
206 ret
= xml_ReaderRead( m_pReader
);
208 return (ret
== 0 && !m_errors
);