1 -- Functions for term normalisation and access to the 'word' table.
3 CREATE OR REPLACE FUNCTION transliteration(text) RETURNS text
4 AS '{{ modulepath }}/nominatim.so', 'transliteration'
5 LANGUAGE c IMMUTABLE STRICT;
8 CREATE OR REPLACE FUNCTION gettokenstring(text) RETURNS text
9 AS '{{ modulepath }}/nominatim.so', 'gettokenstring'
10 LANGUAGE c IMMUTABLE STRICT;
13 CREATE OR REPLACE FUNCTION make_standard_name(name TEXT) RETURNS TEXT
18 o := public.gettokenstring(public.transliteration(name));
19 RETURN trim(substr(o,1,length(o)));
22 LANGUAGE plpgsql IMMUTABLE;
24 -- returns NULL if the word is too common
25 CREATE OR REPLACE FUNCTION getorcreate_word_id(lookup_word TEXT)
30 return_word_id INTEGER;
33 lookup_token := trim(lookup_word);
34 SELECT min(word_id), max(search_name_count) FROM word
35 WHERE word_token = lookup_token and class is null and type is null
36 INTO return_word_id, count;
37 IF return_word_id IS NULL THEN
38 return_word_id := nextval('seq_word');
39 INSERT INTO word VALUES (return_word_id, lookup_token, null, null, null, null, 0);
41 IF count > get_maxwordfreq() THEN
42 return_word_id := NULL;
45 RETURN return_word_id;
50 -- Create housenumber tokens from an OSM addr:housenumber.
51 -- The housnumber is split at comma and semicolon as necessary.
52 -- The function returns the normalized form of the housenumber suitable
54 CREATE OR REPLACE FUNCTION create_housenumber_id(housenumber TEXT)
60 SELECT array_to_string(array_agg(trans), ';')
62 FROM (SELECT lookup_word as trans, getorcreate_housenumber_id(lookup_word)
63 FROM (SELECT make_standard_name(h) as lookup_word
64 FROM regexp_split_to_table(housenumber, '[,;]') h) x) y;
68 $$ LANGUAGE plpgsql STABLE STRICT;
70 CREATE OR REPLACE FUNCTION getorcreate_housenumber_id(lookup_word TEXT)
75 return_word_id INTEGER;
77 lookup_token := ' ' || trim(lookup_word);
78 SELECT min(word_id) FROM word
79 WHERE word_token = lookup_token and class='place' and type='house'
81 IF return_word_id IS NULL THEN
82 return_word_id := nextval('seq_word');
83 INSERT INTO word VALUES (return_word_id, lookup_token, null,
84 'place', 'house', null, 0);
86 RETURN return_word_id;
92 CREATE OR REPLACE FUNCTION getorcreate_postcode_id(postcode TEXT)
98 return_word_id INTEGER;
100 lookup_word := upper(trim(postcode));
101 lookup_token := ' ' || make_standard_name(lookup_word);
102 SELECT min(word_id) FROM word
103 WHERE word_token = lookup_token and word = lookup_word
104 and class='place' and type='postcode'
106 IF return_word_id IS NULL THEN
107 return_word_id := nextval('seq_word');
108 INSERT INTO word VALUES (return_word_id, lookup_token, lookup_word,
109 'place', 'postcode', null, 0);
111 RETURN return_word_id;
117 CREATE OR REPLACE FUNCTION getorcreate_country(lookup_word TEXT,
118 lookup_country_code varchar(2))
123 return_word_id INTEGER;
125 lookup_token := ' '||trim(lookup_word);
126 SELECT min(word_id) FROM word
127 WHERE word_token = lookup_token and country_code=lookup_country_code
129 IF return_word_id IS NULL THEN
130 return_word_id := nextval('seq_word');
131 INSERT INTO word VALUES (return_word_id, lookup_token, null,
132 null, null, lookup_country_code, 0);
134 RETURN return_word_id;
140 CREATE OR REPLACE FUNCTION getorcreate_amenity(lookup_word TEXT, normalized_word TEXT,
141 lookup_class text, lookup_type text)
146 return_word_id INTEGER;
148 lookup_token := ' '||trim(lookup_word);
149 SELECT min(word_id) FROM word
150 WHERE word_token = lookup_token and word = normalized_word
151 and class = lookup_class and type = lookup_type
153 IF return_word_id IS NULL THEN
154 return_word_id := nextval('seq_word');
155 INSERT INTO word VALUES (return_word_id, lookup_token, normalized_word,
156 lookup_class, lookup_type, null, 0);
158 RETURN return_word_id;
164 CREATE OR REPLACE FUNCTION getorcreate_amenityoperator(lookup_word TEXT,
165 normalized_word TEXT,
173 return_word_id INTEGER;
175 lookup_token := ' '||trim(lookup_word);
176 SELECT min(word_id) FROM word
177 WHERE word_token = lookup_token and word = normalized_word
178 and class = lookup_class and type = lookup_type and operator = op
180 IF return_word_id IS NULL THEN
181 return_word_id := nextval('seq_word');
182 INSERT INTO word VALUES (return_word_id, lookup_token, normalized_word,
183 lookup_class, lookup_type, null, 0, op);
185 RETURN return_word_id;
191 CREATE OR REPLACE FUNCTION getorcreate_name_id(lookup_word TEXT, src_word TEXT)
196 nospace_lookup_token TEXT;
197 return_word_id INTEGER;
199 lookup_token := ' '||trim(lookup_word);
200 SELECT min(word_id) FROM word
201 WHERE word_token = lookup_token and class is null and type is null
203 IF return_word_id IS NULL THEN
204 return_word_id := nextval('seq_word');
205 INSERT INTO word VALUES (return_word_id, lookup_token, src_word,
206 null, null, null, 0);
208 RETURN return_word_id;
214 CREATE OR REPLACE FUNCTION getorcreate_name_id(lookup_word TEXT)
219 RETURN getorcreate_name_id(lookup_word, '');
224 -- Normalize a string and lookup its word ids (partial words).
225 CREATE OR REPLACE FUNCTION addr_ids_from_name(lookup_word TEXT)
231 return_word_id INTEGER[];
235 words := string_to_array(make_standard_name(lookup_word), ' ');
236 IF array_upper(words, 1) IS NOT NULL THEN
237 FOR j IN 1..array_upper(words, 1) LOOP
238 IF (words[j] != '') THEN
239 SELECT array_agg(word_id) INTO word_ids
241 WHERE word_token = words[j] and class is null and type is null;
243 IF word_ids IS NULL THEN
244 id := nextval('seq_word');
245 INSERT INTO word VALUES (id, words[j], null, null, null, null, 0);
246 return_word_id := return_word_id || id;
248 return_word_id := array_merge(return_word_id, word_ids);
254 RETURN return_word_id;
260 -- Normalize a string and look up its name ids (full words).
261 CREATE OR REPLACE FUNCTION word_ids_from_name(lookup_word TEXT)
266 return_word_ids INTEGER[];
268 lookup_token := ' '|| make_standard_name(lookup_word);
269 SELECT array_agg(word_id) FROM word
270 WHERE word_token = lookup_token and class is null and type is null
271 INTO return_word_ids;
272 RETURN return_word_ids;
275 LANGUAGE plpgsql STABLE STRICT;
278 CREATE OR REPLACE FUNCTION create_country(src HSTORE, country_code varchar(2))
288 FOR item IN SELECT (each(src)).* LOOP
290 s := make_standard_name(item.value);
291 w := getorcreate_country(s, country_code);
293 words := regexp_split_to_array(item.value, E'[,;()]');
294 IF array_upper(words, 1) != 1 THEN
295 FOR j IN 1..array_upper(words, 1) LOOP
296 s := make_standard_name(words[j]);
298 w := getorcreate_country(s, country_code);
308 CREATE OR REPLACE FUNCTION make_keywords(src HSTORE)
319 result := '{}'::INTEGER[];
321 FOR item IN SELECT (each(src)).* LOOP
323 s := make_standard_name(item.value);
324 w := getorcreate_name_id(s, item.value);
326 IF not(ARRAY[w] <@ result) THEN
327 result := result || w;
330 w := getorcreate_word_id(s);
332 IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
333 result := result || w;
336 words := string_to_array(s, ' ');
337 IF array_upper(words, 1) IS NOT NULL THEN
338 FOR j IN 1..array_upper(words, 1) LOOP
339 IF (words[j] != '') THEN
340 w = getorcreate_word_id(words[j]);
341 IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
342 result := result || w;
348 words := regexp_split_to_array(item.value, E'[,;()]');
349 IF array_upper(words, 1) != 1 THEN
350 FOR j IN 1..array_upper(words, 1) LOOP
351 s := make_standard_name(words[j]);
353 w := getorcreate_word_id(s);
354 IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
355 result := result || w;
361 s := regexp_replace(item.value, '市$', '');
362 IF s != item.value THEN
363 s := make_standard_name(s);
365 w := getorcreate_name_id(s, item.value);
366 IF NOT (ARRAY[w] <@ result) THEN
367 result := result || w;
380 CREATE OR REPLACE FUNCTION make_keywords(src TEXT)
391 result := '{}'::INTEGER[];
393 s := make_standard_name(src);
394 w := getorcreate_name_id(s, src);
396 IF NOT (ARRAY[w] <@ result) THEN
397 result := result || w;
400 w := getorcreate_word_id(s);
402 IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
403 result := result || w;
406 words := string_to_array(s, ' ');
407 IF array_upper(words, 1) IS NOT NULL THEN
408 FOR j IN 1..array_upper(words, 1) LOOP
409 IF (words[j] != '') THEN
410 w = getorcreate_word_id(words[j]);
411 IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
412 result := result || w;
418 words := regexp_split_to_array(src, E'[,;()]');
419 IF array_upper(words, 1) != 1 THEN
420 FOR j IN 1..array_upper(words, 1) LOOP
421 s := make_standard_name(words[j]);
423 w := getorcreate_word_id(s);
424 IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
425 result := result || w;
431 s := regexp_replace(src, '市$', '');
433 s := make_standard_name(s);
435 w := getorcreate_name_id(s, src);
436 IF NOT (ARRAY[w] <@ result) THEN
437 result := result || w;
448 CREATE OR REPLACE FUNCTION create_poi_search_terms(obj_place_id BIGINT,
449 in_partition SMALLINT,
450 parent_place_id BIGINT,
454 initial_name_vector INTEGER[],
456 OUT name_vector INTEGER[],
457 OUT nameaddress_vector INTEGER[])
460 parent_name_vector INTEGER[];
461 parent_address_vector INTEGER[];
462 addr_place_ids INTEGER[];
465 parent_address_place_ids BIGINT[];
466 filtered_address HSTORE;
468 nameaddress_vector := '{}'::INTEGER[];
470 SELECT s.name_vector, s.nameaddress_vector
471 INTO parent_name_vector, parent_address_vector
473 WHERE s.place_id = parent_place_id;
475 -- Find all address tags that don't appear in the parent search names.
476 SELECT hstore(array_agg(ARRAY[k, v])) INTO filtered_address
477 FROM (SELECT skeys(address) as k, svals(address) as v) a
478 WHERE not addr_ids_from_name(v) && parent_address_vector
479 AND k not in ('country', 'street', 'place', 'postcode',
480 'housenumber', 'streetnumber', 'conscriptionnumber');
482 -- Compute all search terms from the addr: tags.
483 IF filtered_address IS NOT NULL THEN
486 get_places_for_addr_tags(in_partition, geometry, filtered_address, country)
488 IF addr_item.place_id is null THEN
489 nameaddress_vector := array_merge(nameaddress_vector,
494 IF parent_address_place_ids is null THEN
495 SELECT array_agg(parent_place_id) INTO parent_address_place_ids
496 FROM place_addressline
497 WHERE place_id = parent_place_id;
500 IF not parent_address_place_ids @> ARRAY[addr_item.place_id] THEN
501 nameaddress_vector := array_merge(nameaddress_vector,
504 INSERT INTO place_addressline (place_id, address_place_id, fromarea,
505 isaddress, distance, cached_rank_address)
506 VALUES (obj_place_id, addr_item.place_id, not addr_item.isguess,
507 true, addr_item.distance, addr_item.rank_address);
512 name_vector := initial_name_vector;
514 -- Check if the parent covers all address terms.
515 -- If not, create a search name entry with the house number as the name.
516 -- This is unusual for the search_name table but prevents that the place
517 -- is returned when we only search for the street/place.
519 IF housenumber is not null and not nameaddress_vector <@ parent_address_vector THEN
520 name_vector := array_merge(name_vector,
521 ARRAY[getorcreate_housenumber_id(make_standard_name(housenumber))]);
524 IF not address ? 'street' and address ? 'place' THEN
525 addr_place_ids := addr_ids_from_name(address->'place');
526 IF not addr_place_ids <@ parent_name_vector THEN
527 -- make sure addr:place terms are always searchable
528 nameaddress_vector := array_merge(nameaddress_vector, addr_place_ids);
529 -- If there is a housenumber, also add the place name as a name,
530 -- so we can search it by the usual housenumber+place algorithms.
531 IF housenumber is not null THEN
532 name_vector := array_merge(name_vector,
533 ARRAY[getorcreate_name_id(make_standard_name(address->'place'))]);
538 -- Cheating here by not recomputing all terms but simply using the ones
539 -- from the parent object.
540 nameaddress_vector := array_merge(nameaddress_vector, parent_name_vector);
541 nameaddress_vector := array_merge(nameaddress_vector, parent_address_vector);