PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ is_gml_namespace()

static bool is_gml_namespace ( xmlNodePtr  xnode,
bool  is_strict 
)
static

Return false if current element namespace is not a GML one Return true otherwise.

Definition at line 159 of file lwgeom_in_gml.c.

160 {
161  xmlNsPtr *ns, *p;
162 
163  ns = xmlGetNsList(xnode->doc, xnode);
164  /*
165  * If no namespace is available we could return true anyway
166  * (because we work only on GML fragment, we don't want to
167  * 'oblige' to add namespace on the geometry root node)
168  */
169  if (ns == NULL) { return !is_strict; }
170 
171  /*
172  * Handle namespaces:
173  * - http://www.opengis.net/gml (GML 3.1.1 and priors)
174  * - http://www.opengis.net/gml/3.2 (GML 3.2.1)
175  */
176  for (p=ns ; *p ; p++)
177  {
178  if ((*p)->href == NULL || (*p)->prefix == NULL ||
179  xnode->ns == NULL || xnode->ns->prefix == NULL) continue;
180 
181  if (!xmlStrcmp(xnode->ns->prefix, (*p)->prefix))
182  {
183  if ( !strcmp((char *) (*p)->href, GML_NS)
184  || !strcmp((char *) (*p)->href, GML32_NS))
185  {
186  xmlFree(ns);
187  return true;
188  } else {
189  xmlFree(ns);
190  return false;
191  }
192  }
193  }
194 
195  xmlFree(ns);
196  return !is_strict; /* Same reason here to not return false */
197 }
#define GML_NS
Definition: lwgeom_in_gml.c:76
#define GML32_NS
Definition: lwgeom_in_gml.c:77

References GML32_NS, and GML_NS.

Referenced by gmlGetProp(), parse_gml(), parse_gml_coll(), parse_gml_coord(), parse_gml_curve(), parse_gml_data(), parse_gml_mcurve(), parse_gml_mline(), parse_gml_mpoint(), parse_gml_mpoly(), parse_gml_msurface(), parse_gml_patch(), parse_gml_polygon(), parse_gml_psurface(), parse_gml_surface(), parse_gml_tin(), and parse_gml_triangle().

Here is the caller graph for this function: