PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ _lwt_CheckFacesExist()

static int _lwt_CheckFacesExist ( LWT_TOPOLOGY topo)
static

Definition at line 7018 of file lwgeom_topo.c.

7019 {
7020  LWT_ISO_FACE *faces;
7021  int fields = LWT_COL_FACE_FACE_ID;
7022  uint64_t nelems = 1;
7023  GBOX qbox;
7024 
7025  qbox.xmin = qbox.ymin = -DBL_MAX;
7026  qbox.xmax = qbox.ymax = DBL_MAX;
7027  faces = lwt_be_getFaceWithinBox2D( topo, &qbox, &nelems, fields, 1);
7028  if (nelems == UINT64_MAX)
7029  {
7030  lwerror("Backend error: %s", lwt_be_lastErrorMessage(topo->be_iface));
7031  return -1;
7032  }
7033  if ( faces ) _lwt_release_faces(faces, nelems);
7034  return nelems;
7035 }
#define LWT_COL_FACE_FACE_ID
Face fields.
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static LWT_ISO_FACE * lwt_be_getFaceWithinBox2D(const LWT_TOPOLOGY *topo, const GBOX *box, uint64_t *numelems, int fields, uint64_t limit)
Definition: lwgeom_topo.c:184
const char * lwt_be_lastErrorMessage(const LWT_BE_IFACE *be)
Definition: lwgeom_topo.c:119
static void _lwt_release_faces(LWT_ISO_FACE *faces, int num_faces)
Definition: lwgeom_topo.c:455
double ymax
Definition: liblwgeom.h:372
double xmax
Definition: liblwgeom.h:370
double ymin
Definition: liblwgeom.h:371
double xmin
Definition: liblwgeom.h:369
const LWT_BE_IFACE * be_iface

References _lwt_release_faces(), LWT_TOPOLOGY_T::be_iface, lwerror(), lwt_be_getFaceWithinBox2D(), lwt_be_lastErrorMessage(), LWT_COL_FACE_FACE_ID, GBOX::xmax, GBOX::xmin, GBOX::ymax, and GBOX::ymin.

Referenced by lwt_Polygonize().

Here is the call graph for this function:
Here is the caller graph for this function: