PostgreSQL Source Code  git master
xml.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * xml.h
4  * Declarations for XML data type support.
5  *
6  *
7  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * src/include/utils/xml.h
11  *
12  *-------------------------------------------------------------------------
13  */
14 
15 #ifndef XML_H
16 #define XML_H
17 
18 #include "executor/tablefunc.h"
19 #include "fmgr.h"
20 #include "nodes/execnodes.h"
21 #include "nodes/primnodes.h"
22 
23 typedef struct varlena xmltype;
24 
25 typedef enum
26 {
32 
33 typedef enum
34 {
38 
39 typedef enum
40 {
41  PG_XML_STRICTNESS_LEGACY, /* ignore errors unless function result
42  * indicates error condition */
43  PG_XML_STRICTNESS_WELLFORMED, /* ignore non-parser messages */
44  PG_XML_STRICTNESS_ALL, /* report all notices/warnings/errors */
46 
47 /* struct PgXmlErrorContext is private to xml.c */
49 
50 static inline xmltype *
52 {
53  return (xmltype *) PG_DETOAST_DATUM(X);
54 }
55 
56 static inline Datum
58 {
59  return PointerGetDatum(X);
60 }
61 
62 #define PG_GETARG_XML_P(n) DatumGetXmlP(PG_GETARG_DATUM(n))
63 #define PG_RETURN_XML_P(x) PG_RETURN_POINTER(x)
64 
65 extern void pg_xml_init_library(void);
67 extern void pg_xml_done(PgXmlErrorContext *errcxt, bool isError);
69 extern void xml_ereport(PgXmlErrorContext *errcxt, int level, int sqlcode,
70  const char *msg);
71 
72 extern xmltype *xmlconcat(List *args);
73 extern xmltype *xmlelement(XmlExpr *xexpr,
74  Datum *named_argvalue, bool *named_argnull,
75  Datum *argvalue, bool *argnull);
76 extern xmltype *xmlparse(text *data, XmlOptionType xmloption_arg, bool preserve_whitespace);
77 extern xmltype *xmlpi(const char *target, text *arg, bool arg_is_null, bool *result_is_null);
78 extern xmltype *xmlroot(xmltype *data, text *version, int standalone);
79 extern bool xml_is_document(xmltype *arg);
80 extern text *xmltotext_with_options(xmltype *data, XmlOptionType xmloption_arg,
81  bool indent);
82 extern char *escape_xml(const char *str);
83 
84 extern char *map_sql_identifier_to_xml_name(const char *ident, bool fully_escaped, bool escape_period);
85 extern char *map_xml_name_to_sql_identifier(const char *name);
86 extern char *map_sql_value_to_xml_value(Datum value, Oid type, bool xml_escape_strings);
87 
88 extern PGDLLIMPORT int xmlbinary; /* XmlBinaryType, but int for guc enum */
89 
90 extern PGDLLIMPORT int xmloption; /* XmlOptionType, but int for guc enum */
91 
93 
94 #endif /* XML_H */
#define PGDLLIMPORT
Definition: c.h:1303
#define PG_DETOAST_DATUM(datum)
Definition: fmgr.h:240
#define ident
Definition: indent_codes.h:47
static struct @150 value
void * arg
const void * data
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
uintptr_t Datum
Definition: postgres.h:64
unsigned int Oid
Definition: postgres_ext.h:31
XmlOptionType
Definition: primnodes.h:1547
Definition: pg_list.h:54
Definition: c.h:674
const char * type
const char * name
XmlStandaloneType
Definition: xml.h:26
@ XML_STANDALONE_OMITTED
Definition: xml.h:30
@ XML_STANDALONE_NO_VALUE
Definition: xml.h:29
@ XML_STANDALONE_YES
Definition: xml.h:27
@ XML_STANDALONE_NO
Definition: xml.h:28
xmltype * xmlconcat(List *args)
Definition: xml.c:553
struct PgXmlErrorContext PgXmlErrorContext
Definition: xml.h:48
PGDLLIMPORT int xmloption
Definition: xml.c:110
static xmltype * DatumGetXmlP(Datum X)
Definition: xml.h:51
void xml_ereport(PgXmlErrorContext *errcxt, int level, int sqlcode, const char *msg)
text * xmltotext_with_options(xmltype *data, XmlOptionType xmloption_arg, bool indent)
Definition: xml.c:656
static Datum XmlPGetDatum(const xmltype *X)
Definition: xml.h:57
xmltype * xmlparse(text *data, XmlOptionType xmloption_arg, bool preserve_whitespace)
Definition: xml.c:960
char * map_sql_identifier_to_xml_name(const char *ident, bool fully_escaped, bool escape_period)
Definition: xml.c:2315
PGDLLIMPORT int xmlbinary
Definition: xml.c:109
bool xml_is_document(xmltype *arg)
Definition: xml.c:1096
bool pg_xml_error_occurred(PgXmlErrorContext *errcxt)
char * escape_xml(const char *str)
Definition: xml.c:2632
char * map_xml_name_to_sql_identifier(const char *name)
Definition: xml.c:2371
xmltype * xmlpi(const char *target, text *arg, bool arg_is_null, bool *result_is_null)
Definition: xml.c:978
void pg_xml_done(PgXmlErrorContext *errcxt, bool isError)
PgXmlErrorContext * pg_xml_init(PgXmlStrictness strictness)
PGDLLIMPORT const TableFuncRoutine XmlTableRoutine
Definition: xml.c:223
void pg_xml_init_library(void)
char * map_sql_value_to_xml_value(Datum value, Oid type, bool xml_escape_strings)
Definition: xml.c:2413
xmltype * xmlelement(XmlExpr *xexpr, Datum *named_argvalue, bool *named_argnull, Datum *argvalue, bool *argnull)
Definition: xml.c:836
XmlBinaryType
Definition: xml.h:34
@ XMLBINARY_BASE64
Definition: xml.h:35
@ XMLBINARY_HEX
Definition: xml.h:36
xmltype * xmlroot(xmltype *data, text *version, int standalone)
Definition: xml.c:1030
PgXmlStrictness
Definition: xml.h:40
@ PG_XML_STRICTNESS_LEGACY
Definition: xml.h:41
@ PG_XML_STRICTNESS_ALL
Definition: xml.h:44
@ PG_XML_STRICTNESS_WELLFORMED
Definition: xml.h:43