2018-06-07 11:19:02 -04:00
|
|
|
/* Icecast
|
|
|
|
*
|
|
|
|
* This program is distributed under the GNU General Public License, version 2.
|
|
|
|
* A copy of this license is included with this source.
|
|
|
|
*
|
|
|
|
* Copyright 2018, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
|
|
|
|
*/
|
|
|
|
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This file contains the API for report XML document parsing, manipulation, and rendering. */
|
|
|
|
|
2018-06-07 11:19:02 -04:00
|
|
|
#ifndef __REPORTXML_H__
|
|
|
|
#define __REPORTXML_H__
|
|
|
|
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
|
|
|
|
#include "icecasttypes.h"
|
|
|
|
#include "compat.h"
|
|
|
|
|
2018-07-27 07:27:42 -04:00
|
|
|
/* XML Tag Types
|
|
|
|
* While a hint of what the nodes are used for is given, see the specification for more details.
|
|
|
|
*/
|
2018-06-07 11:19:02 -04:00
|
|
|
typedef enum {
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This is a virtual type used to indicate error conditions */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE__ERROR,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <report> is the root element of report XML documents */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_REPORT,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <definition> is used to define templates */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_DEFINITION,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <incident> defines an event that is reported */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_INCIDENT,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <state> defines the state an <incident> resulted in */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_STATE,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <backtrace> provides helpful information about the location some event happend */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_BACKTRACE,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <position> defines an element within <backtrace> */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_POSITION,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <more> allows to skip <position>s in <backtrace> for any reason
|
|
|
|
* (e.g. they are unknown or consider of no intrest)
|
|
|
|
*/
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_MORE,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <fix> provides a machine readable way to actually fix the problem */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_FIX,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <action> defines a specific action to do */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_ACTION,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <reason> allows to define why an event happend */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_REASON,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <text> is used to provide messages to the user.
|
|
|
|
* The content of <text> is not machine readable.
|
|
|
|
*/
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_TEXT,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <timestamp> provides a way to present a point in time an event happend */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_TIMESTAMP,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <resource> names a resource that was involved in the event such as user input or the result */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_RESOURCE,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <value> provides an actual value for a <resource> */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_VALUE,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <reference> provides a way to refer to external documents such as documentation */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_REFERENCE,
|
2018-07-27 07:27:42 -04:00
|
|
|
/* <extension> is used to allow application specific extensions */
|
2018-06-07 11:19:02 -04:00
|
|
|
REPORTXML_NODE_TYPE_EXTENSION
|
|
|
|
} reportxml_node_type_t;
|
|
|
|
|
2018-07-27 07:44:00 -04:00
|
|
|
|
2018-07-27 07:27:42 -04:00
|
|
|
/* ---[ Document level ]--- */
|
2018-07-27 07:44:00 -04:00
|
|
|
/* The document object is NOT thread safe. */
|
|
|
|
|
2018-07-27 07:27:42 -04:00
|
|
|
|
|
|
|
/* This creates a new, empty report XML document */
|
2018-06-07 11:19:02 -04:00
|
|
|
reportxml_t * reportxml_new(void);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This gets the root node of a report XML document */
|
2018-06-07 11:19:02 -04:00
|
|
|
reportxml_node_t * reportxml_get_root_node(reportxml_t *report);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This selects a node by an attribute and it's value.
|
|
|
|
* This is mostly useful to look for an object by using it's ID.
|
|
|
|
* If more than one node matches the first one found is returned.
|
|
|
|
* If the parameter include_definitions is true nodes from within
|
|
|
|
* <definition> are also considered. If it is false nodes inside
|
|
|
|
* <definition>s are skipped.
|
|
|
|
*/
|
2018-06-27 06:00:21 -04:00
|
|
|
reportxml_node_t * reportxml_get_node_by_attribute(reportxml_t *report, const char *key, const char *value, int include_definitions);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This function parses an XML document and returns the parst report XML document */
|
2018-06-07 11:19:02 -04:00
|
|
|
reportxml_t * reportxml_parse_xmldoc(xmlDocPtr doc);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This function renders an report XML document as XML structure */
|
2018-06-07 11:19:02 -04:00
|
|
|
xmlDocPtr reportxml_render_xmldoc(reportxml_t *report);
|
|
|
|
|
2018-07-27 07:44:00 -04:00
|
|
|
|
2018-07-27 07:27:42 -04:00
|
|
|
/* ---[ Node level ]--- */
|
2018-07-27 07:44:00 -04:00
|
|
|
/* The node object is NOT thread safe. */
|
|
|
|
|
2018-07-27 07:27:42 -04:00
|
|
|
|
|
|
|
/* This creates a new node of type type.
|
|
|
|
* It's id, definition, and akindof attributes can be given as parameters.
|
|
|
|
*/
|
2018-06-07 11:19:02 -04:00
|
|
|
reportxml_node_t * reportxml_node_new(reportxml_node_type_t type, const char *id, const char *definition, const char *akindof);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This parses an XML node and returns the resulting report XML node */
|
2018-06-07 11:19:02 -04:00
|
|
|
reportxml_node_t * reportxml_node_parse_xmlnode(xmlNodePtr xmlnode);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* Copy an report XML node (and it's children) */
|
2018-06-08 04:03:06 -04:00
|
|
|
reportxml_node_t * reportxml_node_copy(reportxml_node_t *node);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* Renders an report XML node as XML node */
|
2018-06-07 11:19:02 -04:00
|
|
|
xmlNodePtr reportxml_node_render_xmlnode(reportxml_node_t *node);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This gets the type of an report XML node */
|
2018-06-07 11:19:02 -04:00
|
|
|
reportxml_node_type_t reportxml_node_get_type(reportxml_node_t *node);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* Gets and Sets attribute values */
|
2018-06-07 11:19:02 -04:00
|
|
|
int reportxml_node_set_attribute(reportxml_node_t *node, const char *key, const char *value);
|
|
|
|
char * reportxml_node_get_attribute(reportxml_node_t *node, const char *key);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* Adds, counts, and get child nodes */
|
2018-06-07 11:19:02 -04:00
|
|
|
int reportxml_node_add_child(reportxml_node_t *node, reportxml_node_t *child);
|
|
|
|
ssize_t reportxml_node_count_child(reportxml_node_t *node);
|
|
|
|
reportxml_node_t * reportxml_node_get_child(reportxml_node_t *node, size_t idx);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This gets an child by it's value of the given attribute. See reportxml_get_node_by_attribute() for more details. */
|
2018-06-27 06:00:21 -04:00
|
|
|
reportxml_node_t * reportxml_node_get_child_by_attribute(reportxml_node_t *node, const char *key, const char *value, int include_definitions);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This gets and sets the text content of an node (used for <text>) */
|
2018-06-07 11:19:02 -04:00
|
|
|
int reportxml_node_set_content(reportxml_node_t *node, const char *value);
|
|
|
|
char * reportxml_node_get_content(reportxml_node_t *node);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* Adds, counts, and gets XML childs (used for <extension>) */
|
2018-06-27 06:40:25 -04:00
|
|
|
int reportxml_node_add_xml_child(reportxml_node_t *node, xmlNodePtr child);
|
|
|
|
ssize_t reportxml_node_count_xml_child(reportxml_node_t *node);
|
|
|
|
xmlNodePtr reportxml_node_get_xml_child(reportxml_node_t *node, size_t idx);
|
2018-06-07 11:19:02 -04:00
|
|
|
|
2018-07-27 07:44:00 -04:00
|
|
|
|
2018-07-27 07:27:42 -04:00
|
|
|
/* ---[ Database level ]--- */
|
2018-07-27 07:44:00 -04:00
|
|
|
/* The database object is thread safe. */
|
|
|
|
|
2018-07-27 07:27:42 -04:00
|
|
|
|
|
|
|
/* Create a new database object */
|
2018-06-08 04:03:06 -04:00
|
|
|
reportxml_database_t * reportxml_database_new(void);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* Add an report to the database */
|
2018-06-08 04:03:06 -04:00
|
|
|
int reportxml_database_add_report(reportxml_database_t *db, reportxml_t *report);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* Build a node (copy) from the data in the database based on the given ID (using "definition" and "defines" attributes)
|
|
|
|
* depth may be used to select how many recursions may be used to resolve definitions within defines.
|
|
|
|
* The default value is selected by passing -1 (recommended).
|
|
|
|
*/
|
2018-06-08 04:03:06 -04:00
|
|
|
reportxml_node_t * reportxml_database_build_node(reportxml_database_t *db, const char *id, ssize_t depth);
|
2018-07-27 07:27:42 -04:00
|
|
|
/* This does the same as reportxml_database_build_node() except that a new report document is returned. */
|
2018-06-08 04:03:06 -04:00
|
|
|
reportxml_t * reportxml_database_build_report(reportxml_database_t *db, const char *id, ssize_t depth);
|
|
|
|
|
2018-06-07 11:19:02 -04:00
|
|
|
#endif
|