File: soundex.c

package info (click to toggle)
pg-similarity 1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 452 kB
  • sloc: ansic: 3,257; sql: 517; makefile: 32; sh: 1
file content (144 lines) | stat: -rw-r--r-- 2,951 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*----------------------------------------------------------------------------
 *
 * soundex.c
 *
 * Copyright (c) 2008-2018, Euler Taveira de Oliveira
 *
 *----------------------------------------------------------------------------
 */

#include "similarity.h"


static const char *stable =
/*		 ABCDEFGHIJKLMNOPQRSTUVWXYZ */
		"01230120022455012623010202";

/*
 * soundex code is only defined to ASCII characters
 */
static char convert_soundex(char a)
{
	a = toupper((unsigned char) a);
	/* soundex code is only defined to ASCII characters */
	if (a >= 'A' && a <= 'Z')
		return stable[a - 'A'];
	else
		return a;
}

static char *_soundex(char *a)
{
	int		alen;
	int		i;
	int		len;
	char	*scode;
	int		lastcode = PGS_SOUNDEX_INV_CODE;

	alen = strlen(a);

	elog(DEBUG2, "alen: %d", alen);

	if (alen == 0)
		return NULL;

#ifdef PGS_IGNORE_CASE
	elog(DEBUG2, "case-sensitive turns off");
	for (i = 0; i < alen; i++)
		a[i] = toupper(a[i]);
#endif

	scode = palloc(PGS_SOUNDEX_LEN + 1);

	scode[PGS_SOUNDEX_LEN] = '\0';

	/* ignoring non-alpha characters */
	while (!isalpha(*a) && *a != '\0')
		a++;

	if (*a == '\0')
		elog(ERROR, "string doesn't contain non-alpha character(s)");

	/* get the first letter */
	scode[0] = *a++;
	len = 1;

	elog(DEBUG2, "The first letter is: %c", scode[0]);

	while (*a && len < PGS_SOUNDEX_LEN)
	{
		int curcode = convert_soundex(*a);

		elog(DEBUG3, "The code for '%c' is: %d", *a, curcode);

		if (isalpha(*a) && (curcode != lastcode) && curcode != '0')
		{
				scode[len] = curcode;
				elog(DEBUG2, "scode[%d] = %d", len, curcode);
				len++;
		}
		lastcode = curcode;
		a++;
	}

	/* fill with zeros (if necessary) */
	while (len < PGS_SOUNDEX_LEN)
	{
		scode[len] = '0';
		elog(DEBUG2, "scode[%d] = %d", len, scode[len]);
		len++;
	}

	return scode;
}

PG_FUNCTION_INFO_V1(soundex);

Datum
soundex(PG_FUNCTION_ARGS)
{
	char	*a, *b;
	char	*resa;
	char	*resb;
	float8	res;

	a = DatumGetPointer(DirectFunctionCall1(textout, PointerGetDatum(PG_GETARG_TEXT_P(0))));
	b = DatumGetPointer(DirectFunctionCall1(textout, PointerGetDatum(PG_GETARG_TEXT_P(1))));

	if (strlen(a) > PGS_MAX_STR_LEN || strlen(b) > PGS_MAX_STR_LEN)
		ereport(ERROR,
				(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
				 errmsg("argument exceeds the maximum length of %d bytes",
					 PGS_MAX_STR_LEN)));

	resa = _soundex(a);
	resb = _soundex(b);

	elog(DEBUG1, "soundex(%s) = %s", a, resa);
	elog(DEBUG1, "soundex(%s) = %s", b, resb);

	/*
	 * we don't have threshold in soundex algorithm, instead same code means strings
	 * are similar (i.e. threshold is 1.0) or it is not (i.e. threshold is 0.0).
	 */
	if (strncmp(resa, resb, PGS_SOUNDEX_LEN) == 0)
		res = 1.0;
	else
		res = 0.0;

	PG_RETURN_FLOAT8(res);
}

PG_FUNCTION_INFO_V1(soundex_op);

Datum soundex_op(PG_FUNCTION_ARGS)
{
	float8	res;

	res = DatumGetFloat8(DirectFunctionCall2(
					soundex,
					PG_GETARG_DATUM(0),
					PG_GETARG_DATUM(1)));

	PG_RETURN_BOOL(res == 1.0);
}