PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ _lwt_GetEqualEdge()

static LWT_ELEMID _lwt_GetEqualEdge ( LWT_TOPOLOGY topo,
LWLINE edge 
)
static

Definition at line 5295 of file lwgeom_topo.c.

5296 {
5297  LWT_ELEMID id;
5298  LWT_ISO_EDGE *edges;
5299  uint64_t num, i;
5300  const GBOX *qbox = lwgeom_get_bbox( lwline_as_lwgeom(edge) );
5301  GEOSGeometry *edgeg;
5302  const int flds = LWT_COL_EDGE_EDGE_ID|LWT_COL_EDGE_GEOM;
5303 
5304  edges = lwt_be_getEdgeWithinBox2D( topo, qbox, &num, flds, 0 );
5305  if (num == UINT64_MAX)
5306  {
5307  lwerror("Backend error: %s", lwt_be_lastErrorMessage(topo->be_iface));
5308  return -1;
5309  }
5310  if ( num )
5311  {
5312  initGEOS(lwnotice, lwgeom_geos_error);
5313 
5314  edgeg = LWGEOM2GEOS( lwline_as_lwgeom(edge), 0 );
5315  if ( ! edgeg )
5316  {
5317  _lwt_release_edges(edges, num);
5318  lwerror("Could not convert edge geometry to GEOS: %s", lwgeom_geos_errmsg);
5319  return -1;
5320  }
5321  for (i=0; i<num; ++i)
5322  {
5323  LWT_ISO_EDGE *e = &(edges[i]);
5324  LWGEOM *g = lwline_as_lwgeom(e->geom);
5325  GEOSGeometry *gg;
5326  int equals;
5327  gg = LWGEOM2GEOS( g, 0 );
5328  if ( ! gg )
5329  {
5330  GEOSGeom_destroy(edgeg);
5331  _lwt_release_edges(edges, num);
5332  lwerror("Could not convert edge geometry to GEOS: %s", lwgeom_geos_errmsg);
5333  return -1;
5334  }
5335  equals = GEOSEquals(gg, edgeg);
5336  GEOSGeom_destroy(gg);
5337  if ( equals == 2 )
5338  {
5339  GEOSGeom_destroy(edgeg);
5340  _lwt_release_edges(edges, num);
5341  lwerror("GEOSEquals exception: %s", lwgeom_geos_errmsg);
5342  return -1;
5343  }
5344  if ( equals )
5345  {
5346  id = e->edge_id;
5347  GEOSGeom_destroy(edgeg);
5348  _lwt_release_edges(edges, num);
5349  return id;
5350  }
5351  }
5352  GEOSGeom_destroy(edgeg);
5353  _lwt_release_edges(edges, num);
5354  }
5355 
5356  return 0;
5357 }
char lwgeom_geos_errmsg[LWGEOM_GEOS_ERRMSG_MAXSIZE]
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
void lwgeom_geos_error(const char *fmt,...)
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:322
const GBOX * lwgeom_get_bbox(const LWGEOM *lwgeom)
Get a non-empty geometry bounding box, computing and caching it if not already there.
Definition: lwgeom.c:726
LWT_INT64 LWT_ELEMID
Identifier of topology element.
#define LWT_COL_EDGE_EDGE_ID
Edge fields.
#define LWT_COL_EDGE_GEOM
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
const char * lwt_be_lastErrorMessage(const LWT_BE_IFACE *be)
Definition: lwgeom_topo.c:119
static LWT_ISO_EDGE * lwt_be_getEdgeWithinBox2D(const LWT_TOPOLOGY *topo, const GBOX *box, uint64_t *numelems, int fields, uint64_t limit)
Definition: lwgeom_topo.c:178
static void _lwt_release_edges(LWT_ISO_EDGE *edges, int num_edges)
Definition: lwgeom_topo.c:451
LWLINE * geom
LWT_ELEMID edge_id
const LWT_BE_IFACE * be_iface

References _lwt_release_edges(), LWT_TOPOLOGY_T::be_iface, LWT_ISO_EDGE::edge_id, LWT_ISO_EDGE::geom, lwerror(), LWGEOM2GEOS(), lwgeom_geos_errmsg, lwgeom_geos_error(), lwgeom_get_bbox(), lwline_as_lwgeom(), lwnotice(), lwt_be_getEdgeWithinBox2D(), lwt_be_lastErrorMessage(), LWT_COL_EDGE_EDGE_ID, and LWT_COL_EDGE_GEOM.

Referenced by _lwt_AddLineEdge().

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