mirror of
https://github.com/postgres/postgres.git
synced 2026-04-11 20:16:33 -04:00
This commit changes the definition of varlena to a typedef, so as it becomes possible to remove "struct" markers from various declarations in the code base. Historically, "struct" markers are not the project style for variable declarations, so this update simplifies the code and makes it more consistent across the board. This change has an impact on the following structures, simplifying declarations using them: - varlena - varatt_indirect - varatt_external This cleanup has come up in a different path set that played with TOAST and varatt.h, independently worth doing on its own. Reviewed-by: Álvaro Herrera <alvherre@kurilemu.de> Reviewed-by: Andreas Karlsson <andreas@proxel.se> Reviewed-by: Shinya Kato <shinya11.kato@gmail.com> Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us> Reviewed-by: Chao Li <li.evan.chao@gmail.com> Discussion: https://postgr.es/m/aW8xvVbovdhyI4yo@paquier.xyz
94 lines
2.8 KiB
C
94 lines
2.8 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* xml.h
|
|
* Declarations for XML data type support.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/utils/xml.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef XML_H
|
|
#define XML_H
|
|
|
|
#include "executor/tablefunc.h"
|
|
#include "fmgr.h"
|
|
#include "nodes/execnodes.h"
|
|
#include "nodes/primnodes.h"
|
|
|
|
typedef varlena xmltype;
|
|
|
|
typedef enum
|
|
{
|
|
XML_STANDALONE_YES,
|
|
XML_STANDALONE_NO,
|
|
XML_STANDALONE_NO_VALUE,
|
|
XML_STANDALONE_OMITTED,
|
|
} XmlStandaloneType;
|
|
|
|
typedef enum
|
|
{
|
|
XMLBINARY_BASE64,
|
|
XMLBINARY_HEX,
|
|
} XmlBinaryType;
|
|
|
|
typedef enum
|
|
{
|
|
PG_XML_STRICTNESS_LEGACY, /* ignore errors unless function result
|
|
* indicates error condition */
|
|
PG_XML_STRICTNESS_WELLFORMED, /* ignore non-parser messages */
|
|
PG_XML_STRICTNESS_ALL, /* report all notices/warnings/errors */
|
|
} PgXmlStrictness;
|
|
|
|
/* struct PgXmlErrorContext is private to xml.c */
|
|
typedef struct PgXmlErrorContext PgXmlErrorContext;
|
|
|
|
static inline xmltype *
|
|
DatumGetXmlP(Datum X)
|
|
{
|
|
return (xmltype *) PG_DETOAST_DATUM(X);
|
|
}
|
|
|
|
static inline Datum
|
|
XmlPGetDatum(const xmltype *X)
|
|
{
|
|
return PointerGetDatum(X);
|
|
}
|
|
|
|
#define PG_GETARG_XML_P(n) DatumGetXmlP(PG_GETARG_DATUM(n))
|
|
#define PG_RETURN_XML_P(x) PG_RETURN_POINTER(x)
|
|
|
|
extern void pg_xml_init_library(void);
|
|
extern PgXmlErrorContext *pg_xml_init(PgXmlStrictness strictness);
|
|
extern void pg_xml_done(PgXmlErrorContext *errcxt, bool isError);
|
|
extern bool pg_xml_error_occurred(PgXmlErrorContext *errcxt);
|
|
extern void xml_ereport(PgXmlErrorContext *errcxt, int level, int sqlcode,
|
|
const char *msg);
|
|
|
|
extern xmltype *xmlconcat(List *args);
|
|
extern xmltype *xmlelement(XmlExpr *xexpr,
|
|
const Datum *named_argvalue, const bool *named_argnull,
|
|
const Datum *argvalue, const bool *argnull);
|
|
extern xmltype *xmlparse(text *data, XmlOptionType xmloption_arg, bool preserve_whitespace);
|
|
extern xmltype *xmlpi(const char *target, text *arg, bool arg_is_null, bool *result_is_null);
|
|
extern xmltype *xmlroot(xmltype *data, text *version, int standalone);
|
|
extern bool xml_is_document(xmltype *arg);
|
|
extern text *xmltotext_with_options(xmltype *data, XmlOptionType xmloption_arg,
|
|
bool indent);
|
|
extern char *escape_xml(const char *str);
|
|
|
|
extern char *map_sql_identifier_to_xml_name(const char *ident, bool fully_escaped, bool escape_period);
|
|
extern char *map_xml_name_to_sql_identifier(const char *name);
|
|
extern char *map_sql_value_to_xml_value(Datum value, Oid type, bool xml_escape_strings);
|
|
|
|
extern PGDLLIMPORT int xmlbinary; /* XmlBinaryType, but int for guc enum */
|
|
|
|
extern PGDLLIMPORT int xmloption; /* XmlOptionType, but int for guc enum */
|
|
|
|
extern PGDLLIMPORT const TableFuncRoutine XmlTableRoutine;
|
|
|
|
#endif /* XML_H */
|