2010-01-30 23:24:23 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_ASXPARSER_H
|
|
|
|
#define MPLAYER_ASXPARSER_H
|
2002-01-08 01:24:25 +00:00
|
|
|
|
2010-02-20 20:09:06 +00:00
|
|
|
#include "playtree.h"
|
|
|
|
|
2008-01-06 23:20:15 +00:00
|
|
|
typedef struct ASX_Parser_t ASX_Parser_t;
|
2002-01-08 01:24:25 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char* buffer;
|
|
|
|
int line;
|
|
|
|
} ASX_LineSave_t;
|
|
|
|
|
2008-01-06 23:20:15 +00:00
|
|
|
struct ASX_Parser_t {
|
2002-01-08 01:24:25 +00:00
|
|
|
int line; // Curent line
|
|
|
|
ASX_LineSave_t *ret_stack;
|
|
|
|
int ret_stack_size;
|
|
|
|
char* last_body;
|
2002-01-22 22:47:17 +00:00
|
|
|
int deep;
|
2002-01-08 01:24:25 +00:00
|
|
|
};
|
2009-05-13 02:58:57 +00:00
|
|
|
|
2002-11-12 14:19:53 +00:00
|
|
|
ASX_Parser_t*
|
|
|
|
asx_parser_new(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
asx_parser_free(ASX_Parser_t* parser);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return -1 on error, 0 when nothing is found, 1 on sucess
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
asx_get_element(ASX_Parser_t* parser,char** _buffer,
|
|
|
|
char** _element,char** _body,char*** _attribs);
|
|
|
|
|
|
|
|
int
|
|
|
|
asx_parse_attribs(ASX_Parser_t* parser,char* buffer,char*** _attribs);
|
|
|
|
|
|
|
|
/////// Attribs utils
|
|
|
|
|
|
|
|
char*
|
2006-07-15 16:03:12 +00:00
|
|
|
asx_get_attrib(const char* attrib,char** attribs);
|
2002-11-12 14:19:53 +00:00
|
|
|
|
|
|
|
int
|
2006-07-13 05:03:43 +00:00
|
|
|
asx_attrib_to_enum(const char* val,char** valid_vals);
|
2002-11-12 14:19:53 +00:00
|
|
|
|
2007-06-24 10:14:42 +00:00
|
|
|
#define asx_free_attribs(a) asx_list_free(&a,free)
|
2002-11-12 14:19:53 +00:00
|
|
|
|
|
|
|
////// List utils
|
|
|
|
|
|
|
|
typedef void (*ASX_FreeFunc)(void* arg);
|
|
|
|
|
|
|
|
void
|
|
|
|
asx_list_free(void* list_ptr,ASX_FreeFunc free_func);
|
2008-01-01 21:35:58 +00:00
|
|
|
|
2010-02-20 20:09:06 +00:00
|
|
|
play_tree_t*
|
|
|
|
asx_parser_build_tree(char* buffer,int deep);
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_ASXPARSER_H */
|