1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2024 Members of the Gmerlin project
* http://github.com/bplaum
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#ifndef BGAV_YML_H_INCLUDED
#define BGAV_YML_H_INCLUDED
/* VERY simple and nonstandard xml-like parser */
/*
* We need this, because asx files are, according to
* Microsoft Documentation, xml-based, but the same doc says,
* that tag- and attribute names are case insensitive,
* which is explicitely forbidden by the xml-spec.
* Since we can't tell libxml to be case insensitive,
* we need our own parser.
*
* We prefix everything with yml, so we never forget,
* that we don't deal with standard xml here.
*/
typedef struct bgav_yml_attr_s
{
struct bgav_yml_attr_s * next;
char * name;
char * value;
} bgav_yml_attr_t;
typedef struct bgav_yml_node_s
{
char * name; /* NULL if we have a pure text node */
char * pi; /* Processing info */
char * str; /* Text for text nodes */
bgav_yml_attr_t * attributes; /* Attributes of the node */
// bgav_yml_attr_t * xml_attributes; /* Attributes of the <?xml>-node */
struct bgav_yml_node_s * next;
struct bgav_yml_node_s * children;
} bgav_yml_node_t;
bgav_yml_node_t * bgav_yml_parse(bgav_input_context_t * input)
__attribute__ ((visibility("default")));
void bgav_yml_dump(bgav_yml_node_t *)
__attribute__ ((visibility("default")));
void bgav_yml_free(bgav_yml_node_t *)
__attribute__ ((visibility("default")));
const char * bgav_yml_get_attribute(bgav_yml_node_t *, const char * name);
const char * bgav_yml_get_attribute_i(bgav_yml_node_t *, const char * name);
int bgav_yml_probe(bgav_input_context_t * input);
bgav_yml_node_t * bgav_yml_find_by_name(bgav_yml_node_t * yml, const char * name);
bgav_yml_node_t * bgav_yml_find_by_pi(bgav_yml_node_t * yml, const char * pi);
#endif // BGAV_YML_H_INCLUDED
|