PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ _lwt_CheckFacesExist()

static int _lwt_CheckFacesExist ( LWT_TOPOLOGY topo)
static

Definition at line 6937 of file lwgeom_topo.c.

6938 {
6939  LWT_ISO_FACE *faces;
6940  int fields = LWT_COL_FACE_FACE_ID;
6941  uint64_t nelems = 1;
6942  GBOX qbox;
6943 
6944  qbox.xmin = qbox.ymin = -DBL_MAX;
6945  qbox.xmax = qbox.ymax = DBL_MAX;
6946  faces = lwt_be_getFaceWithinBox2D( topo, &qbox, &nelems, fields, 1);
6947  if (nelems == UINT64_MAX)
6948  {
6949  lwerror("Backend error: %s", lwt_be_lastErrorMessage(topo->be_iface));
6950  return -1;
6951  }
6952  if ( faces ) _lwt_release_faces(faces, nelems);
6953  return nelems;
6954 }
#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:449
double ymax
Definition: liblwgeom.h:371
double xmax
Definition: liblwgeom.h:369
double ymin
Definition: liblwgeom.h:370
double xmin
Definition: liblwgeom.h:368
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: