libxml.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:8k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * libxml.c: XML parser using libxml2
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 266c5ee2bff0b9370a29319c91997e669667edf7 $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  8.  *
  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.
  13.  *
  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.
  18.  *
  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.  *****************************************************************************/
  23. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include <vlc_common.h>
  27. #include <vlc_plugin.h>
  28. #include "vlc_block.h"
  29. #include "vlc_stream.h"
  30. #include "vlc_xml.h"
  31. #include <libxml/xmlreader.h>
  32. #include <libxml/catalog.h>
  33. /*****************************************************************************
  34.  * Module descriptor
  35.  *****************************************************************************/
  36. static int  Open ( vlc_object_t * );
  37. static void Close( vlc_object_t * );
  38. vlc_module_begin ()
  39.     set_description( N_("XML Parser (using libxml2)") )
  40.     set_capability( "xml", 10 )
  41.     set_callbacks( Open, Close )
  42. vlc_module_end ()
  43. struct xml_reader_sys_t
  44. {
  45.     /* libxml2 reader context */
  46.     xmlTextReaderPtr p_reader;
  47. };
  48. static xml_reader_t *ReaderCreate( xml_t *, stream_t * );
  49. static void ReaderDelete( xml_reader_t * );
  50. static int ReaderRead( xml_reader_t * );
  51. static int ReaderNodeType( xml_reader_t * );
  52. static char *ReaderName( xml_reader_t * );
  53. static char *ReaderValue( xml_reader_t * );
  54. static int ReaderNextAttr( xml_reader_t * );
  55. static int ReaderUseDTD ( xml_reader_t *, bool );
  56. static void CatalogLoad( xml_t *, const char * );
  57. static void CatalogAdd( xml_t *, const char *, const char *, const char * );
  58. static int StreamRead( void *p_context, char *p_buffer, int i_buffer );
  59. static vlc_mutex_t lock = VLC_STATIC_MUTEX;
  60. /*****************************************************************************
  61.  * Module initialization
  62.  *****************************************************************************/
  63. static int Open( vlc_object_t *p_this )
  64. {
  65.     xml_t *p_xml = (xml_t *)p_this;
  66.     if( !xmlHasFeature( XML_WITH_THREAD ) )
  67.         return VLC_EGENERIC;
  68.     vlc_mutex_lock( &lock );
  69.     xmlInitParser();
  70.     vlc_mutex_unlock( &lock );
  71.     p_xml->pf_reader_create = ReaderCreate;
  72.     p_xml->pf_reader_delete = ReaderDelete;
  73.     p_xml->pf_catalog_load = CatalogLoad;
  74.     p_xml->pf_catalog_add  = CatalogAdd;
  75.     return VLC_SUCCESS;
  76. }
  77. /*****************************************************************************
  78.  * Module deinitialization
  79.  *****************************************************************************/
  80. static void Close( vlc_object_t *p_this )
  81. {
  82. #ifdef LIBXML_GETS_A_CLUE_ABOUT_REENTRANCY_AND_MEMORY_LEAKS
  83.     vlc_mutex_lock( &lock );
  84.     xmlCleanupParser();
  85.     vlc_mutex_unlock( &lock );
  86. #endif
  87.     VLC_UNUSED(p_this);
  88.     return;
  89. }
  90. /*****************************************************************************
  91.  * Catalogue functions
  92.  *****************************************************************************/
  93. static void CatalogLoad( xml_t *p_xml, const char *psz_filename )
  94. {
  95.     VLC_UNUSED(p_xml);
  96.     if( !psz_filename ) xmlInitializeCatalog();
  97.     else xmlLoadCatalog( psz_filename );
  98. }
  99. static void CatalogAdd( xml_t *p_xml, const char *psz_arg1,
  100.                           const char *psz_arg2, const char *psz_filename )
  101. {
  102.     VLC_UNUSED(p_xml);
  103.     xmlCatalogAdd( (unsigned char*)psz_arg1, (unsigned char*)psz_arg2,
  104.         (unsigned char*)psz_filename );
  105. }
  106. /*****************************************************************************
  107.  * Reader functions
  108.  *****************************************************************************/
  109. static void ReaderErrorHandler( void *p_arg, const char *p_msg,
  110.                                 xmlParserSeverities severity,
  111.                                 xmlTextReaderLocatorPtr locator)
  112. {
  113.     VLC_UNUSED(severity);
  114.     xml_reader_t *p_reader = (xml_reader_t *)p_arg;
  115.     int line = xmlTextReaderLocatorLineNumber( locator );
  116.     msg_Err( p_reader->p_xml, "XML parser error (line %d) : %s", line, p_msg );
  117. }
  118. static xml_reader_t *ReaderCreate( xml_t *p_xml, stream_t *p_stream )
  119. {
  120.     xml_reader_t *p_reader;
  121.     xml_reader_sys_t *p_sys;
  122.     xmlTextReaderPtr p_libxml_reader;
  123.     p_libxml_reader = xmlReaderForIO( StreamRead, NULL, p_stream,
  124.                                       NULL, NULL, 0 );
  125.     if( !p_libxml_reader )
  126.     {
  127.         msg_Err( p_xml, "failed to create XML parser" );
  128.         return NULL;
  129.     }
  130.     p_reader = malloc( sizeof(xml_reader_t) );
  131.     if( !p_reader )
  132.     {
  133.         xmlFreeTextReader( p_libxml_reader );
  134.         return NULL;
  135.     }
  136.     p_reader->p_sys = p_sys = malloc( sizeof(xml_reader_sys_t) );
  137.     if( !p_sys )
  138.     {
  139.         xmlFreeTextReader( p_libxml_reader );
  140.         free( p_reader );
  141.         return NULL;
  142.     }
  143.     p_reader->p_sys->p_reader = p_libxml_reader;
  144.     p_reader->p_xml = p_xml;
  145.     /* Set the error handler */
  146.     xmlTextReaderSetErrorHandler( p_libxml_reader,
  147.                                   ReaderErrorHandler, p_reader );
  148.     p_reader->pf_read = ReaderRead;
  149.     p_reader->pf_node_type = ReaderNodeType;
  150.     p_reader->pf_name = ReaderName;
  151.     p_reader->pf_value = ReaderValue;
  152.     p_reader->pf_next_attr = ReaderNextAttr;
  153.     p_reader->pf_use_dtd = ReaderUseDTD;
  154.     return p_reader;
  155. }
  156. static void ReaderDelete( xml_reader_t *p_reader )
  157. {
  158.     xmlFreeTextReader( p_reader->p_sys->p_reader );
  159.     free( p_reader->p_sys );
  160.     free( p_reader );
  161. }
  162. static int ReaderUseDTD ( xml_reader_t *p_reader, bool b_use )
  163. {
  164.     /* Activate DTD validation */
  165.     xmlTextReaderSetParserProp( p_reader->p_sys->p_reader,
  166.                                 XML_PARSER_DEFAULTATTRS, b_use );
  167.     xmlTextReaderSetParserProp( p_reader->p_sys->p_reader,
  168.                                 XML_PARSER_VALIDATE, b_use );
  169.     return VLC_SUCCESS;
  170. }
  171. static int ReaderRead( xml_reader_t *p_reader )
  172. {
  173.     int i_ret = xmlTextReaderRead( p_reader->p_sys->p_reader );
  174. #if 0
  175.     switch( i_ret )
  176.     {
  177.     default:
  178.     }
  179. #endif
  180.     return i_ret;
  181. }
  182. static int ReaderNodeType( xml_reader_t *p_reader )
  183. {
  184.     int i_ret = xmlTextReaderNodeType( p_reader->p_sys->p_reader );
  185.     switch( i_ret )
  186.     {
  187.     case XML_READER_TYPE_ELEMENT:
  188.         i_ret = XML_READER_STARTELEM;
  189.         break;
  190.     case XML_READER_TYPE_END_ELEMENT:
  191.         i_ret = XML_READER_ENDELEM;
  192.         break;
  193.     case XML_READER_TYPE_CDATA:
  194.     case XML_READER_TYPE_TEXT:
  195.         i_ret = XML_READER_TEXT;
  196.         break;
  197.     case -1:
  198.         i_ret = -1;
  199.         break;
  200.     default:
  201.         i_ret = XML_READER_NONE;
  202.         break;
  203.     }
  204.     return i_ret;
  205. }
  206. static char *ReaderName( xml_reader_t *p_reader )
  207. {
  208.     const xmlChar *psz_name =
  209.         xmlTextReaderConstName( p_reader->p_sys->p_reader );
  210.     if( psz_name ) return strdup( (const char *)psz_name );
  211.     else return 0;
  212. }
  213. static char *ReaderValue( xml_reader_t *p_reader )
  214. {
  215.     const xmlChar *psz_value =
  216.         xmlTextReaderConstValue( p_reader->p_sys->p_reader );
  217.     if( psz_value ) return strdup( (const char *)psz_value );
  218.     else return 0;
  219. }
  220. static int ReaderNextAttr( xml_reader_t *p_reader )
  221. {
  222.     return ( xmlTextReaderMoveToNextAttribute( p_reader->p_sys->p_reader )
  223.              == 1 ) ? VLC_SUCCESS : VLC_EGENERIC;
  224. }
  225. static int StreamRead( void *p_context, char *p_buffer, int i_buffer )
  226. {
  227.     stream_t *s = (stream_t*)p_context;
  228.     return stream_Read( s, p_buffer, i_buffer );
  229. }