forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ogr_expat.h
65 lines (53 loc) · 1.73 KB
/
ogr_expat.h
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
/******************************************************************************
* $Id$
*
* Project: OGR
* Purpose: Convenience function for parsing with Expat library
* Author: Even Rouault, even dot rouault at spatialys.com
*
******************************************************************************
* Copyright (c) 2009, Even Rouault <even dot rouault at spatialys.com>
*
* SPDX-License-Identifier: MIT
****************************************************************************/
#ifndef OGR_EXPATH_INCLUDED
#define OGR_EXPATH_INCLUDED
#ifdef HAVE_EXPAT
#include "cpl_port.h"
#include <expat.h>
#include <memory>
/* Compatibility stuff for expat >= 1.95.0 and < 1.95.7 */
#ifndef XMLCALL
#define XMLCALL
#endif
#ifndef XML_STATUS_OK
#define XML_STATUS_OK 1
#define XML_STATUS_ERROR 0
#endif
/* XML_StopParser only available for expat >= 1.95.8 */
#if !defined(XML_MAJOR_VERSION) || \
(XML_MAJOR_VERSION * 10000 + XML_MINOR_VERSION * 100 + \
XML_MICRO_VERSION) < 19508
#define XML_StopParser(parser, resumable)
#warning \
"Expat version is too old and does not have XML_StopParser. Corrupted files could hang OGR"
#endif
/* Only for internal use ! */
XML_Parser CPL_DLL OGRCreateExpatXMLParser(void);
//
//! @cond Doxygen_Suppress
struct CPL_DLL OGRExpatUniquePtrDeleter
{
void operator()(XML_Parser oParser) const
{
XML_ParserFree(oParser);
}
};
//! @endcond
/** Unique pointer type for XML_Parser.
* @since GDAL 3.2
*/
using OGRExpatUniquePtr =
std::unique_ptr<XML_ParserStruct, OGRExpatUniquePtrDeleter>;
#endif /* HAVE_EXPAT */
#endif /* OGR_EXPATH_INCLUDED */