postgis/lwgeom/ptarray.c
Sandro Santilli 99425f8eaf Dropped getbox2d_internal().
Removed all castings of getPoint() output, which has been renamed
to getPoint_internal() and commented about danger of using it.
Changed SERIALIZED_FORM() macro to use VARDATA() macro.
All this changes are aimed at taking into account memory alignment
constraints which might be the cause of recent crash bug reports.


git-svn-id: http://svn.osgeo.org/postgis/trunk@1393 b70326c6-7e19-0410-871a-916f4a2858ee
2005-02-10 17:41:55 +00:00

354 lines
7.3 KiB
C

#include <stdio.h>
#include <string.h>
#include "liblwgeom.h"
//#define PGIS_DEBUG 1
POINTARRAY *
ptarray_construct(char hasz, char hasm, unsigned int npoints)
{
uchar dims = 0;
size_t size;
uchar *ptlist;
POINTARRAY *pa;
TYPE_SETZM(dims, hasz?1:0, hasm?1:0);
size = TYPE_NDIMS(dims)*npoints*sizeof(double);
ptlist = (uchar *)lwalloc(size);
pa = lwalloc(sizeof(POINTARRAY));
pa->dims = dims;
pa->serialized_pointlist = ptlist;
pa->npoints = npoints;
return pa;
}
//POINTARRAY *
//ptarray_construct2d(uint32 npoints, const POINT2D *pts)
//{
// POINTARRAY *pa = ptarray_construct(0, 0, npoints);
// uint32 i;
//
// for (i=0; i<npoints; i++)
// {
// POINT2D *pap = (POINT2D *)getPoint(pa, i);
// pap->x = pts[i].x;
// pap->y = pts[i].y;
// }
//
// return pa;
//}
//
//POINTARRAY *
//ptarray_construct3dz(uint32 npoints, const POINT3DZ *pts)
//{
// POINTARRAY *pa = ptarray_construct(1, 0, npoints);
// uint32 i;
//
// for (i=0; i<npoints; i++)
// {
// POINT3DZ *pap = (POINT3DZ *)getPoint(pa, i);
// pap->x = pts[i].x;
// pap->y = pts[i].y;
// pap->z = pts[i].z;
// }
//
// return pa;
//}
//
//POINTARRAY *
//ptarray_construct3dm(uint32 npoints, const POINT3DM *pts)
//{
// POINTARRAY *pa = ptarray_construct(0, 1, npoints);
// uint32 i;
//
// for (i=0; i<npoints; i++)
// {
// POINT3DM *pap = (POINT3DM *)getPoint(pa, i);
// pap->x = pts[i].x;
// pap->y = pts[i].y;
// pap->m = pts[i].m;
// }
//
// return pa;
//}
//
//POINTARRAY *
//ptarray_construct4d(uint32 npoints, const POINT4D *pts)
//{
// POINTARRAY *pa = ptarray_construct(0, 1, npoints);
// uint32 i;
//
// for (i=0; i<npoints; i++)
// {
// POINT4D *pap = (POINT4D *)getPoint(pa, i);
// pap->x = pts[i].x;
// pap->y = pts[i].y;
// pap->z = pts[i].z;
// pap->m = pts[i].m;
// }
//
// return pa;
//}
void
ptarray_reverse(POINTARRAY *pa)
{
POINT4D pbuf;
uint32 i;
int ptsize = pointArray_ptsize(pa);
int last = pa->npoints-1;
int mid = last/2;
for (i=0; i<=mid; i++)
{
uchar *from, *to;
from = getPoint_internal(pa, i);
to = getPoint_internal(pa, (last-i));
memcpy((uchar *)&pbuf, to, ptsize);
memcpy(to, from, ptsize);
memcpy(from, (uchar *)&pbuf, ptsize);
}
}
// calculate the 2d bounding box of a set of points
// write result to the provided BOX2DFLOAT4
// Return 0 if bounding box is NULL (empty geom)
int
ptarray_compute_bbox_p(const POINTARRAY *pa, BOX2DFLOAT4 *result)
{
int t;
POINT2D pt;
if (pa->npoints == 0) return 0;
//pt = (POINT2D *)getPoint(pa, 0);
getPoint2d_p(pa, 0, &pt);
result->xmin = pt.x;
result->xmax = pt.x;
result->ymin = pt.y;
result->ymax = pt.y;
for (t=1;t<pa->npoints;t++)
{
//pt = (POINT2D *)getPoint(pa, t);
getPoint2d_p(pa, t, &pt);
if (pt.x < result->xmin) result->xmin = pt.x;
if (pt.y < result->ymin) result->ymin = pt.y;
if (pt.x > result->xmax) result->xmax = pt.x;
if (pt.y > result->ymax) result->ymax = pt.y;
}
return 1;
}
// calculate the 2d bounding box of a set of points
// return allocated BOX2DFLOAT4 or NULL (for empty array)
BOX2DFLOAT4 *
ptarray_compute_bbox(const POINTARRAY *pa)
{
int t;
POINT2D pt;
BOX2DFLOAT4 *result;
if (pa->npoints == 0) return NULL;
result = lwalloc(sizeof(BOX2DFLOAT4));
//pt = (POINT2D *)getPoint(pa, 0);
getPoint2d_p(pa, 0, &pt);
result->xmin = pt.x;
result->xmax = pt.x;
result->ymin = pt.y;
result->ymax = pt.y;
for (t=1;t<pa->npoints;t++)
{
//pt = (POINT2D *)getPoint(pa, t);
getPoint2d_p(pa, t, &pt);
if (pt.x < result->xmin) result->xmin = pt.x;
if (pt.y < result->ymin) result->ymin = pt.y;
if (pt.x > result->xmax) result->xmax = pt.x;
if (pt.y > result->ymax) result->ymax = pt.y;
}
return result;
}
// Returns a modified POINTARRAY so that no segment is
// longer then the given distance (computed using 2d).
// Every input point is kept.
// Z and M values for added points (if needed) are set to 0.
POINTARRAY *
ptarray_segmentize2d(POINTARRAY *ipa, double dist)
{
double segdist;
POINT4D p1, p2;
void *ip, *op;
POINT4D pbuf;
POINTARRAY *opa;
int maxpoints = ipa->npoints;
int ptsize = pointArray_ptsize(ipa);
int ipoff=0; // input point offset
pbuf.x = pbuf.y = pbuf.z = pbuf.m = 0;
// Initial storage
opa = (POINTARRAY *)lwalloc(ptsize * maxpoints);
opa->dims = ipa->dims;
opa->npoints = 0;
opa->serialized_pointlist = (uchar *)lwalloc(maxpoints*ptsize);
// Add first point
opa->npoints++;
getPoint4d_p(ipa, ipoff, &p1);
op = getPoint_internal(opa, opa->npoints-1);
memcpy(op, &p1, ptsize);
ipoff++;
while (ipoff<ipa->npoints)
{
getPoint4d_p(ipa, ipoff, &p2);
segdist = distance2d_pt_pt((POINT2D *)&p1, (POINT2D *)&p2);
if (segdist > dist) // add an intermediate point
{
pbuf.x = p1.x + (p2.x-p1.x)/segdist * dist;
pbuf.y = p1.y + (p2.y-p1.y)/segdist * dist;
// might also compute z and m if available...
ip = &pbuf;
memcpy(&p1, ip, ptsize);
}
else // copy second point
{
ip = &p2;
p1 = p2;
ipoff++;
}
// Add point
if ( ++(opa->npoints) > maxpoints ) {
maxpoints *= 1.5;
opa->serialized_pointlist = (uchar *)lwrealloc(
opa->serialized_pointlist,
maxpoints*ptsize
);
}
op = getPoint_internal(opa, opa->npoints-1);
memcpy(op, ip, ptsize);
}
return opa;
}
char
ptarray_same(const POINTARRAY *pa1, const POINTARRAY *pa2)
{
unsigned int i;
size_t ptsize;
if ( TYPE_GETZM(pa1->dims) != TYPE_GETZM(pa2->dims) ) return 0;
if ( pa1->npoints != pa2->npoints ) return 0;
ptsize = pointArray_ptsize(pa1);
for (i=0; i<pa1->npoints; i++)
{
if ( memcmp(getPoint_internal(pa1, i), getPoint_internal(pa2, i), ptsize) )
return 0;
}
return 1;
}
/*
* Add a point in a pointarray.
* 'where' is the offset (starting at 0)
* if 'where' == -1 append is required.
*/
POINTARRAY *
ptarray_addPoint(POINTARRAY *pa, uchar *p, size_t pdims, unsigned int where)
{
POINTARRAY *ret;
POINT4D pbuf;
size_t ptsize = pointArray_ptsize(pa);
if ( pdims < 2 || pdims > 4 )
{
lwerror("ptarray_addPoint: point dimension out of range (%d)",
pdims);
return NULL;
}
#if PGIS_DEBUG
lwnotice("ptarray_addPoint: called with a %dD point");
#endif
pbuf.x = pbuf.y = pbuf.z = pbuf.m = 0.0;
memcpy((uchar *)&pbuf, p, pdims*sizeof(double));
#if PGIS_DEBUG
lwnotice("ptarray_addPoint: initialized point buffer");
#endif
ret = ptarray_construct(TYPE_HASZ(pa->dims),
TYPE_HASM(pa->dims), pa->npoints+1);
if ( where == -1 ) where = pa->npoints;
if ( where )
{
memcpy(getPoint_internal(ret, 0), getPoint_internal(pa, 0), ptsize*where);
}
memcpy(getPoint_internal(ret, where), (uchar *)&pbuf, ptsize);
if ( where+1 != ret->npoints )
{
memcpy(getPoint_internal(ret, where+1),
getPoint_internal(pa, where),
ptsize*(pa->npoints-where));
}
return ret;
}
/*
* Clone a pointarray
*/
POINTARRAY *
ptarray_clone(const POINTARRAY *in)
{
POINTARRAY *out = lwalloc(sizeof(POINTARRAY));
size_t size;
out->dims = in->dims;
out->npoints = in->npoints;
size = in->npoints*sizeof(double)*TYPE_NDIMS(in->dims);
out->serialized_pointlist = lwalloc(size);
memcpy(out->serialized_pointlist, in->serialized_pointlist, size);
return out;
}
int
ptarray_isclosed2d(const POINTARRAY *in)
{
//POINT2D *p1, *p2;
if ( memcmp(getPoint_internal(in, 0), getPoint_internal(in, in->npoints-1), sizeof(POINT2D)) ) return 0;
return 1;
//p1 = (POINT2D *)getPoint(in, 0);
//p2 = (POINT2D *)getPoint(in, in->npoints-1);
//if ( p1->x != p2->x || p1->y != p2->y ) return 0;
//else return 1;
}