regress.c 8.2 KB
Newer Older
1
/*
B
Bruce Momjian 已提交
2
 * $Header: /cvsroot/pgsql/src/test/regress/regress.c,v 1.15 1997/09/18 20:22:54 momjian Exp $
3 4
 */

5
#include <float.h>				/* faked on sunos */
6
#include <stdio.h>
B
Bruce Momjian 已提交
7
#include <string.h>				/* for MemSet() */
8

M
Marc G. Fournier 已提交
9 10
#include <postgres.h>

11
#include "utils/geo_decls.h"	/* includes <math.h> */
12
#include "executor/executor.h"	/* For GetAttributeByName */
13 14

#define P_MAXDIG 12
15 16 17
#define LDELIM			'('
#define RDELIM			')'
#define DELIM			','
18

19
typedef void *TUPLE;
20

21 22 23 24 25
extern double *regress_dist_ptpath(Point *pt, PATH *path);
extern double *regress_path_dist(PATH *p1, PATH *p2);
extern PATH *poly2path(POLYGON *poly);
extern Point *interpt_pp(PATH *p1, PATH *p2);
extern void regress_lseg_construct(LSEG *lseg, Point *pt1, Point *pt2);
26
extern char overpaid(TUPLE tuple);
B
Bruce Momjian 已提交
27
extern int	boxarea(BOX *box);
28
extern char *reverse_c16(char *string);
29 30

/*
31
** Distance from a point to a path
32
*/
33
double	   *
34
regress_dist_ptpath(pt, path)
35 36
Point	   *pt;
PATH	   *path;
37
{
38 39 40 41
	double	   *result;
	double	   *tmp;
	int			i;
	LSEG		lseg;
42 43 44

	switch (path->npts)
	{
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
		case 0:
			result = PALLOCTYPE(double);
			*result = Abs((double) DBL_MAX);	/* +infinity */
			break;
		case 1:
			result = point_distance(pt, &path->p[0]);
			break;
		default:

			/*
			 * the distance from a point to a path is the smallest
			 * distance from the point to any of its constituent segments.
			 */
			Assert(path->npts > 1);
			result = PALLOCTYPE(double);
			for (i = 0; i < path->npts - 1; ++i)
			{
				regress_lseg_construct(&lseg, &path->p[i], &path->p[i + 1]);
				tmp = dist_ps(pt, &lseg);
				if (i == 0 || *tmp < *result)
					*result = *tmp;
				PFREE(tmp);

			}
			break;
70
	}
71
	return (result);
72 73 74 75
}

/* this essentially does a cartesian product of the lsegs in the
   two paths, and finds the min distance between any two lsegs */
76
double	   *
77
regress_path_dist(p1, p2)
78 79
PATH	   *p1;
PATH	   *p2;
80
{
81 82 83 84 85 86
	double	   *min,
			   *tmp;
	int			i,
				j;
	LSEG		seg1,
				seg2;
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

	regress_lseg_construct(&seg1, &p1->p[0], &p1->p[1]);
	regress_lseg_construct(&seg2, &p2->p[0], &p2->p[1]);
	min = lseg_distance(&seg1, &seg2);

	for (i = 0; i < p1->npts - 1; i++)
		for (j = 0; j < p2->npts - 1; j++)
		{
			regress_lseg_construct(&seg1, &p1->p[i], &p1->p[i + 1]);
			regress_lseg_construct(&seg2, &p2->p[j], &p2->p[j + 1]);

			if (*min < *(tmp = lseg_distance(&seg1, &seg2)))
				*min = *tmp;
			PFREE(tmp);
		}

	return (min);
104 105
}

106
PATH	   *
107
poly2path(poly)
108
POLYGON    *poly;
109
{
110 111 112
	int			i;
	char	   *output = (char *) PALLOC(2 * (P_MAXDIG + 1) * poly->npts + 64);
	char		buf[2 * (P_MAXDIG) + 20];
113

114
	sprintf(output, "(1, %*d", P_MAXDIG, poly->npts);
115

116 117 118 119 120
	for (i = 0; i < poly->npts; i++)
	{
		sprintf(buf, ",%*g,%*g", P_MAXDIG, poly->p[i].x, P_MAXDIG, poly->p[i].y);
		strcat(output, buf);
	}
121

122 123 124
	sprintf(buf, "%c", RDELIM);
	strcat(output, buf);
	return (path_in(output));
125 126
}

127
/* return the point where two paths intersect.	Assumes that they do. */
128
Point	   *
129
interpt_pp(p1, p2)
130 131
PATH	   *p1;
PATH	   *p2;
132
{
133

134 135 136 137 138
	Point	   *retval;
	int			i,
				j;
	LSEG		seg1,
				seg2;
139

140
#if FALSE
141
	LINE	   *ln;
142

143
#endif
144
	bool		found;			/* We've found the intersection */
145

146
	found = false;				/* Haven't found it yet */
B
Bryan Henderson 已提交
147

148 149 150 151 152 153 154 155
	for (i = 0; i < p1->npts - 1 && !found; i++)
		for (j = 0; j < p2->npts - 1 && !found; j++)
		{
			regress_lseg_construct(&seg1, &p1->p[i], &p1->p[i + 1]);
			regress_lseg_construct(&seg2, &p2->p[j], &p2->p[j + 1]);
			if (lseg_intersect(&seg1, &seg2))
				found = true;
		}
156

157
#if FALSE
158 159
	ln = line_construct_pp(&seg2.p[0], &seg2.p[1]);
	retval = interpt_sl(&seg1, ln);
160
#endif
161 162 163
	retval = lseg_interpt(&seg1, &seg2);

	return (retval);
164 165 166 167
}


/* like lseg_construct, but assume space already allocated */
168
void
169
regress_lseg_construct(lseg, pt1, pt2)
170 171 172
LSEG	   *lseg;
Point	   *pt1;
Point	   *pt2;
173
{
174 175 176 177 178
	lseg->p[0].x = pt1->x;
	lseg->p[0].y = pt1->y;
	lseg->p[1].x = pt2->x;
	lseg->p[1].y = pt2->y;
	lseg->m = point_sl(pt1, pt2);
179 180 181
}


182 183
char
overpaid(tuple)
184
TUPLE		tuple;
185
{
186 187
	bool		isnull;
	long		salary;
188

189 190
	salary = (long) GetAttributeByName(tuple, "salary", &isnull);
	return (salary > 699);
191 192
}

193 194
/* New type "widget"
 * This used to be "circle", but I added circle to builtins,
195
 *	so needed to make sure the names do not collide. - tgl 97/04/21
196 197
 */

198 199
typedef struct
{
200 201 202
	Point		center;
	double		radius;
}			WIDGET;
203

204 205
WIDGET	   *widget_in(char *str);
char	   *widget_out(WIDGET * widget);
206
int			pt_in_widget(Point *point, WIDGET * widget);
207 208 209

#define NARGS	3

210
WIDGET	   *
211
widget_in(str)
212
char	   *str;
213
{
214 215 216 217 218
	char	   *p,
			   *coord[NARGS],
				buf2[1000];
	int			i;
	WIDGET	   *result;
219 220

	if (str == NULL)
221
		return (NULL);
222 223 224 225
	for (i = 0, p = str; *p && i < NARGS && *p != RDELIM; p++)
		if (*p == ',' || (*p == LDELIM && !i))
			coord[i++] = p + 1;
	if (i < NARGS - 1)
226
		return (NULL);
227
	result = (WIDGET *) palloc(sizeof(WIDGET));
228 229 230 231
	result->center.x = atof(coord[0]);
	result->center.y = atof(coord[1]);
	result->radius = atof(coord[2]);

232
	sprintf(buf2, "widget_in: read (%f, %f, %f)\n", result->center.x,
233 234
			result->center.y, result->radius);
	return (result);
235 236
}

237
char	   *
238
widget_out(widget)
239
WIDGET	   *widget;
240
{
241
	char	   *result;
242

243 244
	if (widget == NULL)
		return (NULL);
245

246 247 248 249
	result = (char *) palloc(60);
	sprintf(result, "(%g,%g,%g)",
			widget->center.x, widget->center.y, widget->radius);
	return (result);
250 251
}

252
int
253
pt_in_widget(point, widget)
254 255
Point	   *point;
WIDGET	   *widget;
256
{
257
	extern double point_dt();
258

259
	return (point_dt(point, &widget->center) < widget->radius);
260 261 262 263
}

#define ABS(X) ((X) > 0 ? (X) : -(X))

264
int
265 266
boxarea(box)

267
BOX		   *box;
268 269

{
270 271
	int			width,
				height;
272

273
	width = ABS(box->high.x - box->low.x);
274
	height = ABS(box->high.y - box->low.y);
275 276 277
	return (width * height);
}

278
char	   *
279
reverse_c16(string)
280
char	   *string;
281
{
282 283 284
	register	i;
	int			len;
	char	   *new_string;
285 286 287 288 289 290

	if (!(new_string = palloc(16)))
	{
		fprintf(stderr, "reverse_c16: palloc failed\n");
		return (NULL);
	}
B
Bruce Momjian 已提交
291
	MemSet(new_string, 0, 16);
292 293 294 295 296 297 298 299
	for (i = 0; i < 16 && string[i]; ++i)
		;
	if (i == 16 || !string[i])
		--i;
	len = i;
	for (; i >= 0; --i)
		new_string[len - i] = string[i];
	return (new_string);
300
}
V
Vadim B. Mikheev 已提交
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413

#include "executor/spi.h"		/* this is what you need to work with SPI */
#include "commands/trigger.h"	/* -"- and triggers */

static TransactionId fd17b_xid = InvalidTransactionId;
static TransactionId fd17a_xid = InvalidTransactionId;
static int	fd17b_level = 0;
static int	fd17a_level = 0;
static bool fd17b_recursion = true;
static bool fd17a_recursion = true;
HeapTuple	funny_dup17(void);

HeapTuple						/* have to return HeapTuple to Executor */
funny_dup17()
{
	TransactionId *xid;
	int		   *level;
	bool	   *recursion;
	Relation	rel;
	TupleDesc	tupdesc;
	HeapTuple	tuple;
	char		sql[8192];
	char	   *when;
	int			inserted;
	int			selected = 0;
	int			ret;

	tuple = CurrentTriggerData->tg_trigtuple;
	rel = CurrentTriggerData->tg_relation;
	tupdesc = rel->rd_att;
	if (TRIGGER_FIRED_BEFORE(CurrentTriggerData->tg_event))
	{
		xid = &fd17b_xid;
		level = &fd17b_level;
		recursion = &fd17b_recursion;
		when = "BEFORE";
	}
	else
	{
		xid = &fd17a_xid;
		level = &fd17a_level;
		recursion = &fd17a_recursion;
		when = "AFTER ";
	}

	CurrentTriggerData = NULL;

	if (!TransactionIdIsCurrentTransactionId(*xid))
	{
		*xid = GetCurrentTransactionId();
		*level = 0;
		*recursion = true;
	}

	if (*level == 17)
	{
		*recursion = false;
		return (tuple);
	}

	if (!(*recursion))
		return (tuple);

	(*level)++;

	SPI_connect();

	sprintf(sql, "insert into %s select * from %s where %s = '%s'::%s",
			SPI_getrelname(rel), SPI_getrelname(rel),
			SPI_fname(tupdesc, 1),
			SPI_getvalue(tuple, tupdesc, 1),
			SPI_gettype(tupdesc, 1));

	if ((ret = SPI_exec(sql, 0)) < 0)
		elog(WARN, "funny_dup17 (fired %s) on level %3d: SPI_exec (insert ...) returned %d",
			 when, *level, ret);

	inserted = SPI_processed;

	sprintf(sql, "select count (*) from %s where %s = '%s'::%s",
			SPI_getrelname(rel),
			SPI_fname(tupdesc, 1),
			SPI_getvalue(tuple, tupdesc, 1),
			SPI_gettype(tupdesc, 1));

	if ((ret = SPI_exec(sql, 0)) < 0)
		elog(WARN, "funny_dup17 (fired %s) on level %3d: SPI_exec (select ...) returned %d",
			 when, *level, ret);

	if (SPI_processed > 0)
	{
		selected =
			int4in(
				   SPI_getvalue(
								SPI_tuptable->vals[0],
								SPI_tuptable->tupdesc,
								1
								)
			);
	}

	elog(NOTICE, "funny_dup17 (fired %s) on level %3d: %d/%d tuples inserted/selected",
		 when, *level, inserted, selected);

	SPI_finish();

	(*level)--;

	if (*level == 0)
		*xid = InvalidTransactionId;

	return (tuple);
}