PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ gserialized_datum_predicate_box2df_geom_2d()

static int gserialized_datum_predicate_box2df_geom_2d ( const BOX2DF *  br1,
Datum  gs2,
box2df_predicate  predicate 
)
static

Definition at line 673 of file gserialized_gist_2d.c.

References box2df_to_string(), gserialized_contains_box2df_geom_2d(), gserialized_datum_get_box2df_p(), LW_FALSE, LW_SUCCESS, LW_TRUE, and PG_FUNCTION_INFO_V1().

Referenced by gserialized_contains_box2df_geom_2d(), gserialized_overlaps_box2df_geom_2d(), and gserialized_within_box2df_geom_2d().

674 {
675  BOX2DF b2, *br2=NULL;
676  POSTGIS_DEBUG(3, "entered function");
677 
678  if (gserialized_datum_get_box2df_p(gs2, &b2) == LW_SUCCESS) br2 = &b2;
679 
680  if ( predicate(br1, br2) )
681  {
682  POSTGIS_DEBUGF(3, "got boxes %s", br2 ? box2df_to_string(&b2) : "(null)");
683  return LW_TRUE;
684  }
685  return LW_FALSE;
686 }
#define LW_SUCCESS
Definition: liblwgeom.h:80
static char * box2df_to_string(const BOX2DF *a)
#define LW_FALSE
Definition: liblwgeom.h:77
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
int gserialized_datum_get_box2df_p(Datum gsdatum, BOX2DF *box2df)
Peak into a GSERIALIZED datum to find the bounding box.
Here is the call graph for this function:
Here is the caller graph for this function: