PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ _lwt_CheckFacesExist()

static int _lwt_CheckFacesExist ( LWT_TOPOLOGY topo)
static

Definition at line 6864 of file lwgeom_topo.c.

6865 {
6866  LWT_ISO_FACE *faces;
6867  int fields = LWT_COL_FACE_FACE_ID;
6868  uint64_t nelems = 1;
6869  GBOX qbox;
6870 
6871  qbox.xmin = qbox.ymin = -DBL_MAX;
6872  qbox.xmax = qbox.ymax = DBL_MAX;
6873  faces = lwt_be_getFaceWithinBox2D( topo, &qbox, &nelems, fields, 1);
6874  if (nelems == UINT64_MAX)
6875  {
6876  lwerror("Backend error: %s", lwt_be_lastErrorMessage(topo->be_iface));
6877  return -1;
6878  }
6879  if ( faces ) _lwt_release_faces(faces, nelems);
6880  return nelems;
6881 }
#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:190
const char * lwt_be_lastErrorMessage(const LWT_BE_IFACE *be)
Definition: lwgeom_topo.c:125
static void _lwt_release_faces(LWT_ISO_FACE *faces, int num_faces)
Definition: lwgeom_topo.c:461
double ymax
Definition: liblwgeom.h:357
double xmax
Definition: liblwgeom.h:355
double ymin
Definition: liblwgeom.h:356
double xmin
Definition: liblwgeom.h:354
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: