]> git.openstreetmap.org Git - nominatim.git/blob - sql/functions/placex_triggers.sql
779301c56cc87f2fafe762d5dd3a281385745f68
[nominatim.git] / sql / functions / placex_triggers.sql
1 -- Trigger functions for the placex table.
2
3 CREATE OR REPLACE FUNCTION get_rel_node_members(members TEXT[], memberLabels TEXT[])
4   RETURNS SETOF BIGINT
5   AS $$
6 DECLARE
7   i INTEGER;
8 BEGIN
9   FOR i IN 1..ARRAY_UPPER(members,1) BY 2 LOOP
10     IF members[i+1] = ANY(memberLabels)
11        AND upper(substring(members[i], 1, 1))::char(1) = 'N'
12     THEN
13       RETURN NEXT substring(members[i], 2)::bigint;
14     END IF;
15   END LOOP;
16
17   RETURN;
18 END;
19 $$
20 LANGUAGE plpgsql IMMUTABLE;
21
22 -- copy 'name' to or from the default language (if there is a default language)
23 CREATE OR REPLACE FUNCTION add_default_place_name(country_code VARCHAR(2),
24                                                   INOUT name HSTORE)
25   AS $$
26 DECLARE
27   default_language VARCHAR(10);
28 BEGIN
29   IF name is not null AND array_upper(akeys(name),1) > 1 THEN
30     default_language := get_country_language_code(country_code);
31     IF default_language IS NOT NULL THEN
32       IF name ? 'name' AND NOT name ? ('name:'||default_language) THEN
33         name := name || hstore(('name:'||default_language), (name -> 'name'));
34       ELSEIF name ? ('name:'||default_language) AND NOT name ? 'name' THEN
35         name := name || hstore('name', (name -> ('name:'||default_language)));
36       END IF;
37     END IF;
38   END IF;
39 END;
40 $$
41 LANGUAGE plpgsql IMMUTABLE;
42
43 -- Find the parent road of a POI.
44 --
45 -- \returns Place ID of parent object or NULL if none
46 --
47 -- Copy data from linked items (POIs on ways, addr:street links, relations).
48 --
49 CREATE OR REPLACE FUNCTION find_parent_for_poi(poi_osm_type CHAR(1),
50                                                poi_osm_id BIGINT,
51                                                poi_partition SMALLINT,
52                                                bbox GEOMETRY,
53                                                addr_street TEXT,
54                                                addr_place TEXT,
55                                                fallback BOOL = true)
56   RETURNS BIGINT
57   AS $$
58 DECLARE
59   parent_place_id BIGINT DEFAULT NULL;
60   location RECORD;
61   parent RECORD;
62 BEGIN
63     --DEBUG: RAISE WARNING 'finding street for % %', poi_osm_type, poi_osm_id;
64
65     -- Is this object part of an associatedStreet relation?
66     FOR location IN
67       SELECT members FROM planet_osm_rels
68       WHERE parts @> ARRAY[poi_osm_id]
69         and members @> ARRAY[lower(poi_osm_type) || poi_osm_id]
70         and tags @> ARRAY['associatedStreet']
71     LOOP
72       FOR i IN 1..array_upper(location.members, 1) BY 2 LOOP
73         IF location.members[i+1] = 'street' THEN
74           --DEBUG: RAISE WARNING 'node in relation %',relation;
75           FOR parent IN
76             SELECT place_id from placex
77              WHERE osm_type = 'W' and osm_id = substring(location.members[i],2)::bigint
78                and name is not null
79                and rank_search between 26 and 27
80           LOOP
81             RETURN parent.place_id;
82           END LOOP;
83         END IF;
84       END LOOP;
85     END LOOP;
86
87     parent_place_id := find_parent_for_address(addr_street, addr_place,
88                                                poi_partition, bbox);
89     IF parent_place_id is not null THEN
90       RETURN parent_place_id;
91     END IF;
92
93     IF poi_osm_type = 'N' THEN
94       -- Is this node part of an interpolation?
95       FOR parent IN
96         SELECT q.parent_place_id
97           FROM location_property_osmline q, planet_osm_ways x
98          WHERE q.linegeo && bbox and x.id = q.osm_id
99                and poi_osm_id = any(x.nodes)
100          LIMIT 1
101       LOOP
102         --DEBUG: RAISE WARNING 'Get parent from interpolation: %', parent.parent_place_id;
103         RETURN parent.parent_place_id;
104       END LOOP;
105
106       -- Is this node part of any other way?
107       FOR location IN
108         SELECT p.place_id, p.osm_id, p.rank_search, p.address,
109                coalesce(p.centroid, ST_Centroid(p.geometry)) as centroid
110           FROM placex p, planet_osm_ways w
111          WHERE p.osm_type = 'W' and p.rank_search >= 26
112                and p.geometry && bbox
113                and w.id = p.osm_id and poi_osm_id = any(w.nodes)
114       LOOP
115         --DEBUG: RAISE WARNING 'Node is part of way % ', location.osm_id;
116
117         -- Way IS a road then we are on it - that must be our road
118         IF location.rank_search < 28 THEN
119           --DEBUG: RAISE WARNING 'node in way that is a street %',location;
120           return location.place_id;
121         END IF;
122
123         SELECT find_parent_for_poi('W', location.osm_id, poi_partition,
124                                    location.centroid,
125                                    location.address->'street',
126                                    location.address->'place',
127                                    false)
128           INTO parent_place_id;
129         IF parent_place_id is not null THEN
130           RETURN parent_place_id;
131         END IF;
132       END LOOP;
133     END IF;
134
135     IF fallback THEN
136       IF ST_Area(bbox) < 0.01 THEN
137         -- for smaller features get the nearest road
138         SELECT getNearestRoadPlaceId(poi_partition, bbox) INTO parent_place_id;
139         --DEBUG: RAISE WARNING 'Checked for nearest way (%)', parent_place_id;
140       ELSE
141         -- for larger features simply find the area with the largest rank that
142         -- contains the bbox
143         FOR location IN
144           SELECT place_id FROM placex
145             WHERE bbox @ geometry AND _ST_Covers(geometry, ST_Centroid(bbox))
146                   AND rank_search between 5 and 25
147             ORDER BY rank_search desc
148         LOOP
149             RETURN location.place_id;
150         END LOOP;
151       END IF;
152     END IF;
153
154     RETURN parent_place_id;
155 END;
156 $$
157 LANGUAGE plpgsql STABLE;
158
159 -- Try to find a linked place for the given object.
160 CREATE OR REPLACE FUNCTION find_linked_place(bnd placex)
161   RETURNS placex
162   AS $$
163 DECLARE
164   relation_members TEXT[];
165   rel_member RECORD;
166   linked_placex placex%ROWTYPE;
167   bnd_name TEXT;
168 BEGIN
169   IF bnd.rank_search >= 26 or bnd.rank_address = 0
170      or ST_GeometryType(bnd.geometry) NOT IN ('ST_Polygon','ST_MultiPolygon')
171   THEN
172     RETURN NULL;
173   END IF;
174
175   IF bnd.osm_type = 'R' THEN
176     -- see if we have any special relation members
177     SELECT members FROM planet_osm_rels WHERE id = bnd.osm_id INTO relation_members;
178     --DEBUG: RAISE WARNING 'Got relation members';
179
180     -- Search for relation members with role 'lable'.
181     IF relation_members IS NOT NULL THEN
182       FOR rel_member IN
183         SELECT get_rel_node_members(relation_members, ARRAY['label']) as member
184       LOOP
185         --DEBUG: RAISE WARNING 'Found label member %', rel_member.member;
186
187         FOR linked_placex IN
188           SELECT * from placex
189           WHERE osm_type = 'N' and osm_id = rel_member.member
190             and class = 'place'
191         LOOP
192           --DEBUG: RAISE WARNING 'Linked label member';
193           RETURN linked_placex;
194         END LOOP;
195
196       END LOOP;
197     END IF;
198   END IF;
199
200   IF bnd.name ? 'name' THEN
201     bnd_name := make_standard_name(bnd.name->'name');
202     IF bnd_name = '' THEN
203       bnd_name := NULL;
204     END IF;
205   END IF;
206
207   -- If extratags has a place tag, look for linked nodes by their place type.
208   -- Area and node still have to have the same name.
209   IF bnd.extratags ? 'place' and bnd_name is not null THEN
210     FOR linked_placex IN
211       SELECT * FROM placex
212       WHERE make_standard_name(name->'name') = bnd_name
213         AND placex.class = 'place' AND placex.type = bnd.extratags->'place'
214         AND placex.osm_type = 'N'
215         AND placex.rank_search < 26 -- needed to select the right index
216         AND _st_covers(bnd.geometry, placex.geometry)
217     LOOP
218       --DEBUG: RAISE WARNING 'Found type-matching place node %', linked_placex.osm_id;
219       RETURN linked_placex;
220     END LOOP;
221   END IF;
222
223   -- Search for relation members with role admin_center.
224   IF bnd.osm_type = 'R' and bnd_name is not null
225      and relation_members is not null
226   THEN
227     FOR rel_member IN
228       SELECT get_rel_node_members(relation_members,
229                                 ARRAY['admin_center','admin_centre']) as member
230     LOOP
231     --DEBUG: RAISE WARNING 'Found admin_center member %', rel_member.member;
232       FOR linked_placex IN
233         SELECT * from placex
234         WHERE osm_type = 'N' and osm_id = rel_member.member
235           and class = 'place'
236       LOOP
237         -- For an admin centre we also want a name match - still not perfect,
238         -- for example 'new york, new york'
239         -- But that can be fixed by explicitly setting the label in the data
240         IF bnd_name = make_standard_name(linked_placex.name->'name')
241            AND bnd.rank_address = linked_placex.rank_address
242         THEN
243           RETURN linked_placex;
244         END IF;
245           --DEBUG: RAISE WARNING 'Linked admin_center';
246       END LOOP;
247     END LOOP;
248   END IF;
249
250   -- Name searches can be done for ways as well as relations
251   IF bnd_name is not null THEN
252     --DEBUG: RAISE WARNING 'Looking for nodes with matching names';
253     FOR linked_placex IN
254       SELECT placex.* from placex
255       WHERE make_standard_name(name->'name') = bnd_name
256         AND placex.rank_address = bnd.rank_address
257         AND placex.osm_type = 'N'
258         AND placex.rank_search < 26 -- needed to select the right index
259         AND _st_covers(bnd.geometry, placex.geometry)
260     LOOP
261       --DEBUG: RAISE WARNING 'Found matching place node %', linked_placex.osm_id;
262       RETURN linked_placex;
263     END LOOP;
264   END IF;
265
266   RETURN NULL;
267 END;
268 $$
269 LANGUAGE plpgsql STABLE;
270
271
272 -- Insert address of a place into the place_addressline table.
273 --
274 -- \param obj_place_id  Place_id of the place to compute the address for.
275 -- \param partition     Partition number where the place is in.
276 -- \param maxrank       Rank of the place. All address features must have
277 --                      a search rank lower than the given rank.
278 -- \param address       Address terms for the place.
279 -- \param geoemtry      Geometry to which the address objects should be close.
280 --
281 -- \retval parent_place_id  Place_id of the address object that is the direct
282 --                          ancestor.
283 -- \retval postcode         Postcode computed from the address. This is the
284 --                          addr:postcode of one of the address objects. If
285 --                          more than one of has a postcode, the highest ranking
286 --                          one is used. May be NULL.
287 -- \retval nameaddress_vector  Search terms for the address. This is the sum
288 --                             of name terms of all address objects.
289 CREATE OR REPLACE FUNCTION insert_addresslines(obj_place_id BIGINT,
290                                                partition SMALLINT,
291                                                maxrank SMALLINT,
292                                                address HSTORE,
293                                                geometry GEOMETRY,
294                                                OUT parent_place_id BIGINT,
295                                                OUT postcode TEXT,
296                                                OUT nameaddress_vector INT[])
297   AS $$
298 DECLARE
299   current_rank_address INTEGER := 0;
300   location_distance FLOAT := 0;
301   location_parent GEOMETRY := NULL;
302   parent_place_id_rank SMALLINT := 0;
303
304   location_isaddress BOOLEAN;
305
306   address_havelevel BOOLEAN[];
307   location_keywords INT[];
308
309   location RECORD;
310   addr_item RECORD;
311
312   isin_tokens INT[];
313   isin TEXT[];
314 BEGIN
315   parent_place_id := 0;
316   nameaddress_vector := '{}'::int[];
317   isin_tokens := '{}'::int[];
318
319   ---- convert address store to array of tokenids
320   IF address IS NOT NULL THEN
321     FOR addr_item IN SELECT * FROM each(address)
322     LOOP
323       IF addr_item.key IN ('city', 'tiger:county', 'state', 'suburb', 'province',
324                            'district', 'region', 'county', 'municipality',
325                            'hamlet', 'village', 'subdistrict', 'town',
326                            'neighbourhood', 'quarter', 'parish')
327       THEN
328         isin_tokens := array_merge(isin_tokens,
329                                    word_ids_from_name(addr_item.value));
330         IF NOT %REVERSE-ONLY% THEN
331           nameaddress_vector := array_merge(nameaddress_vector,
332                                             addr_ids_from_name(addr_item.value));
333         END IF;
334       END IF;
335     END LOOP;
336
337     IF address ? 'is_in' THEN
338       -- is_in items need splitting
339       isin := regexp_split_to_array(address->'is_in', E'[;,]');
340       IF array_upper(isin, 1) IS NOT NULL THEN
341         FOR i IN 1..array_upper(isin, 1) LOOP
342           isin_tokens := array_merge(isin_tokens,
343                                      word_ids_from_name(isin[i]));
344
345           -- merge word into address vector
346           IF NOT %REVERSE-ONLY% THEN
347             nameaddress_vector := array_merge(nameaddress_vector,
348                                               addr_ids_from_name(isin[i]));
349           END IF;
350         END LOOP;
351       END IF;
352     END IF;
353   END IF;
354   IF NOT %REVERSE-ONLY% THEN
355     nameaddress_vector := array_merge(nameaddress_vector, isin_tokens);
356   END IF;
357
358   ---- now compute the address terms
359   FOR i IN 1..28 LOOP
360     address_havelevel[i] := false;
361   END LOOP;
362
363   FOR location IN
364     SELECT * FROM getNearFeatures(partition, geometry, maxrank, isin_tokens)
365   LOOP
366     IF location.rank_address != current_rank_address THEN
367       current_rank_address := location.rank_address;
368       IF location.isguess THEN
369         location_distance := location.distance * 1.5;
370       ELSE
371         IF location.rank_address <= 12 THEN
372           -- for county and above, if we have an area consider that exact
373           -- (It would be nice to relax the constraint for places close to
374           --  the boundary but we'd need the exact geometry for that. Too
375           --  expensive.)
376           location_distance = 0;
377         ELSE
378           -- Below county level remain slightly fuzzy.
379           location_distance := location.distance * 0.5;
380         END IF;
381       END IF;
382     ELSE
383       CONTINUE WHEN location.keywords <@ location_keywords;
384     END IF;
385
386     IF location.distance < location_distance OR NOT location.isguess THEN
387       location_keywords := location.keywords;
388
389       location_isaddress := NOT address_havelevel[location.rank_address];
390       IF location_isaddress AND location.isguess AND location_parent IS NOT NULL THEN
391           location_isaddress := ST_Contains(location_parent, location.centroid);
392       END IF;
393
394       -- RAISE WARNING '% isaddress: %', location.place_id, location_isaddress;
395       -- Add it to the list of search terms
396       IF NOT %REVERSE-ONLY% THEN
397           nameaddress_vector := array_merge(nameaddress_vector,
398                                             location.keywords::integer[]);
399       END IF;
400
401       INSERT INTO place_addressline (place_id, address_place_id, fromarea,
402                                      isaddress, distance, cached_rank_address)
403         VALUES (obj_place_id, location.place_id, true,
404                 location_isaddress, location.distance, location.rank_address);
405
406       IF location_isaddress THEN
407         -- add postcode if we have one
408         -- (If multiple postcodes are available, we end up with the highest ranking one.)
409         IF location.postcode is not null THEN
410             postcode = location.postcode;
411         END IF;
412
413         address_havelevel[location.rank_address] := true;
414         IF NOT location.isguess THEN
415           SELECT placex.geometry FROM placex
416             WHERE obj_place_id = location.place_id INTO location_parent;
417         END IF;
418
419         IF location.rank_address > parent_place_id_rank THEN
420           parent_place_id = location.place_id;
421           parent_place_id_rank = location.rank_address;
422         END IF;
423       END IF;
424     --DEBUG: RAISE WARNING '  Terms: (%) %',location, nameaddress_vector;
425     END IF;
426
427   END LOOP;
428 END;
429 $$
430 LANGUAGE plpgsql;
431
432
433 CREATE OR REPLACE FUNCTION placex_insert()
434   RETURNS TRIGGER
435   AS $$
436 DECLARE
437   postcode TEXT;
438   result BOOLEAN;
439   is_area BOOLEAN;
440   country_code VARCHAR(2);
441   diameter FLOAT;
442   classtable TEXT;
443   classtype TEXT;
444 BEGIN
445   --DEBUG: RAISE WARNING '% % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
446
447   NEW.place_id := nextval('seq_place');
448   NEW.indexed_status := 1; --STATUS_NEW
449
450   NEW.country_code := lower(get_country_code(NEW.geometry));
451
452   NEW.partition := get_partition(NEW.country_code);
453   NEW.geometry_sector := geometry_sector(NEW.partition, NEW.geometry);
454
455   IF NEW.osm_type = 'X' THEN
456     -- E'X'ternal records should already be in the right format so do nothing
457   ELSE
458     is_area := ST_GeometryType(NEW.geometry) IN ('ST_Polygon','ST_MultiPolygon');
459
460     IF NEW.class in ('place','boundary')
461        AND NEW.type in ('postcode','postal_code') THEN
462
463       IF NEW.address IS NULL OR NOT NEW.address ? 'postcode' THEN
464           -- most likely just a part of a multipolygon postcode boundary, throw it away
465           RETURN NULL;
466       END IF;
467
468       NEW.name := hstore('ref', NEW.address->'postcode');
469
470       SELECT * FROM get_postcode_rank(NEW.country_code, NEW.address->'postcode')
471         INTO NEW.rank_search, NEW.rank_address;
472
473       IF NOT is_area THEN
474           NEW.rank_address := 0;
475       END IF;
476     ELSEIF NEW.class = 'boundary' AND NOT is_area THEN
477         return NULL;
478     ELSEIF NEW.class = 'boundary' AND NEW.type = 'administrative'
479            AND NEW.admin_level <= 4 AND NEW.osm_type = 'W' THEN
480         return NULL;
481     ELSEIF NEW.osm_type = 'N' AND NEW.class = 'highway' THEN
482         NEW.rank_search = 30;
483         NEW.rank_address = 0;
484     ELSEIF NEW.class = 'landuse' AND NOT is_area THEN
485         NEW.rank_search = 30;
486         NEW.rank_address = 0;
487     ELSE
488       -- do table lookup stuff
489       IF NEW.class = 'boundary' and NEW.type = 'administrative' THEN
490         classtype = NEW.type || NEW.admin_level::TEXT;
491       ELSE
492         classtype = NEW.type;
493       END IF;
494       SELECT l.rank_search, l.rank_address FROM address_levels l
495        WHERE (l.country_code = NEW.country_code or l.country_code is NULL)
496              AND l.class = NEW.class AND (l.type = classtype or l.type is NULL)
497        ORDER BY l.country_code, l.class, l.type LIMIT 1
498         INTO NEW.rank_search, NEW.rank_address;
499
500       IF NEW.rank_search is NULL THEN
501         NEW.rank_search := 30;
502       END IF;
503
504       IF NEW.rank_address is NULL THEN
505         NEW.rank_address := 30;
506       END IF;
507     END IF;
508
509     -- some postcorrections
510     IF NEW.class = 'waterway' AND NEW.osm_type = 'R' THEN
511         -- Slightly promote waterway relations so that they are processed
512         -- before their members.
513         NEW.rank_search := NEW.rank_search - 1;
514     END IF;
515
516     IF (NEW.extratags -> 'capital') = 'yes' THEN
517       NEW.rank_search := NEW.rank_search - 1;
518     END IF;
519
520   END IF;
521
522   -- a country code make no sense below rank 4 (country)
523   IF NEW.rank_search < 4 THEN
524     NEW.country_code := NULL;
525   END IF;
526
527   --DEBUG: RAISE WARNING 'placex_insert:END: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
528
529   RETURN NEW; -- %DIFFUPDATES% The following is not needed until doing diff updates, and slows the main index process down
530
531   IF NEW.osm_type = 'N' and NEW.rank_search > 28 THEN
532       -- might be part of an interpolation
533       result := osmline_reinsert(NEW.osm_id, NEW.geometry);
534   ELSEIF NEW.rank_address > 0 THEN
535     IF (ST_GeometryType(NEW.geometry) in ('ST_Polygon','ST_MultiPolygon') AND ST_IsValid(NEW.geometry)) THEN
536       -- Performance: We just can't handle re-indexing for country level changes
537       IF st_area(NEW.geometry) < 1 THEN
538         -- mark items within the geometry for re-indexing
539   --    RAISE WARNING 'placex poly insert: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
540
541         -- work around bug in postgis, this may have been fixed in 2.0.0 (see http://trac.osgeo.org/postgis/ticket/547)
542         update placex set indexed_status = 2 where (st_covers(NEW.geometry, placex.geometry) OR ST_Intersects(NEW.geometry, placex.geometry)) 
543          AND rank_search > NEW.rank_search and indexed_status = 0 and ST_geometrytype(placex.geometry) = 'ST_Point' and (rank_search < 28 or name is not null or (NEW.rank_search >= 16 and address ? 'place'));
544         update placex set indexed_status = 2 where (st_covers(NEW.geometry, placex.geometry) OR ST_Intersects(NEW.geometry, placex.geometry)) 
545          AND rank_search > NEW.rank_search and indexed_status = 0 and ST_geometrytype(placex.geometry) != 'ST_Point' and (rank_search < 28 or name is not null or (NEW.rank_search >= 16 and address ? 'place'));
546       END IF;
547     ELSE
548       -- mark nearby items for re-indexing, where 'nearby' depends on the features rank_search and is a complete guess :(
549       diameter := 0;
550       -- 16 = city, anything higher than city is effectively ignored (polygon required!)
551       IF NEW.type='postcode' THEN
552         diameter := 0.05;
553       ELSEIF NEW.rank_search < 16 THEN
554         diameter := 0;
555       ELSEIF NEW.rank_search < 18 THEN
556         diameter := 0.1;
557       ELSEIF NEW.rank_search < 20 THEN
558         diameter := 0.05;
559       ELSEIF NEW.rank_search = 21 THEN
560         diameter := 0.001;
561       ELSEIF NEW.rank_search < 24 THEN
562         diameter := 0.02;
563       ELSEIF NEW.rank_search < 26 THEN
564         diameter := 0.002; -- 100 to 200 meters
565       ELSEIF NEW.rank_search < 28 THEN
566         diameter := 0.001; -- 50 to 100 meters
567       END IF;
568       IF diameter > 0 THEN
569   --      RAISE WARNING 'placex point insert: % % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type,diameter;
570         IF NEW.rank_search >= 26 THEN
571           -- roads may cause reparenting for >27 rank places
572           update placex set indexed_status = 2 where indexed_status = 0 and rank_search > NEW.rank_search and ST_DWithin(placex.geometry, NEW.geometry, diameter);
573           -- reparenting also for OSM Interpolation Lines (and for Tiger?)
574           update location_property_osmline set indexed_status = 2 where indexed_status = 0 and ST_DWithin(location_property_osmline.linegeo, NEW.geometry, diameter);
575         ELSEIF NEW.rank_search >= 16 THEN
576           -- up to rank 16, street-less addresses may need reparenting
577           update placex set indexed_status = 2 where indexed_status = 0 and rank_search > NEW.rank_search and ST_DWithin(placex.geometry, NEW.geometry, diameter) and (rank_search < 28 or name is not null or address ? 'place');
578         ELSE
579           -- for all other places the search terms may change as well
580           update placex set indexed_status = 2 where indexed_status = 0 and rank_search > NEW.rank_search and ST_DWithin(placex.geometry, NEW.geometry, diameter) and (rank_search < 28 or name is not null);
581         END IF;
582       END IF;
583     END IF;
584   END IF;
585
586
587    -- add to tables for special search
588    -- Note: won't work on initial import because the classtype tables
589    -- do not yet exist. It won't hurt either.
590   classtable := 'place_classtype_' || NEW.class || '_' || NEW.type;
591   SELECT count(*)>0 FROM pg_tables WHERE tablename = classtable and schemaname = current_schema() INTO result;
592   IF result THEN
593     EXECUTE 'INSERT INTO ' || classtable::regclass || ' (place_id, centroid) VALUES ($1,$2)' 
594     USING NEW.place_id, ST_Centroid(NEW.geometry);
595   END IF;
596
597   RETURN NEW;
598
599 END;
600 $$
601 LANGUAGE plpgsql;
602
603
604 CREATE OR REPLACE FUNCTION placex_update()
605   RETURNS TRIGGER
606   AS $$
607 DECLARE
608   i INTEGER;
609   location RECORD;
610   relation_members TEXT[];
611
612   centroid GEOMETRY;
613
614   addr_street TEXT;
615   addr_place TEXT;
616
617   name_vector INTEGER[];
618   nameaddress_vector INTEGER[];
619
620   linked_node_id BIGINT;
621   linked_importance FLOAT;
622   linked_wikipedia TEXT;
623
624   result BOOLEAN;
625 BEGIN
626   -- deferred delete
627   IF OLD.indexed_status = 100 THEN
628     --DEBUG: RAISE WARNING 'placex_update delete % %',NEW.osm_type,NEW.osm_id;
629     delete from placex where place_id = OLD.place_id;
630     RETURN NULL;
631   END IF;
632
633   IF NEW.indexed_status != 0 OR OLD.indexed_status = 0 THEN
634     RETURN NEW;
635   END IF;
636
637   --DEBUG: RAISE WARNING 'placex_update % % (%)',NEW.osm_type,NEW.osm_id,NEW.place_id;
638
639   NEW.indexed_date = now();
640
641   IF NOT %REVERSE-ONLY% THEN
642     DELETE from search_name WHERE place_id = NEW.place_id;
643   END IF;
644   result := deleteSearchName(NEW.partition, NEW.place_id);
645   DELETE FROM place_addressline WHERE place_id = NEW.place_id;
646   result := deleteRoad(NEW.partition, NEW.place_id);
647   result := deleteLocationArea(NEW.partition, NEW.place_id, NEW.rank_search);
648   UPDATE placex set linked_place_id = null, indexed_status = 2
649          where linked_place_id = NEW.place_id;
650   -- update not necessary for osmline, cause linked_place_id does not exist
651
652   IF NEW.linked_place_id is not null THEN
653     --DEBUG: RAISE WARNING 'place already linked to %', NEW.linked_place_id;
654     RETURN NEW;
655   END IF;
656
657   --DEBUG: RAISE WARNING 'Copy over address tags';
658   -- housenumber is a computed field, so start with an empty value
659   NEW.housenumber := NULL;
660   IF NEW.address is not NULL THEN
661       IF NEW.address ? 'conscriptionnumber' THEN
662         i := getorcreate_housenumber_id(make_standard_name(NEW.address->'conscriptionnumber'));
663         IF NEW.address ? 'streetnumber' THEN
664             i := getorcreate_housenumber_id(make_standard_name(NEW.address->'streetnumber'));
665             NEW.housenumber := (NEW.address->'conscriptionnumber') || '/' || (NEW.address->'streetnumber');
666         ELSE
667             NEW.housenumber := NEW.address->'conscriptionnumber';
668         END IF;
669       ELSEIF NEW.address ? 'streetnumber' THEN
670         NEW.housenumber := NEW.address->'streetnumber';
671         i := getorcreate_housenumber_id(make_standard_name(NEW.address->'streetnumber'));
672       ELSEIF NEW.address ? 'housenumber' THEN
673         NEW.housenumber := NEW.address->'housenumber';
674         i := getorcreate_housenumber_id(make_standard_name(NEW.housenumber));
675       END IF;
676
677       addr_street := NEW.address->'street';
678       addr_place := NEW.address->'place';
679
680       IF NEW.address ? 'postcode' and NEW.address->'postcode' not similar to '%(,|;)%' THEN
681         i := getorcreate_postcode_id(NEW.address->'postcode');
682       END IF;
683   END IF;
684
685   -- Speed up searches - just use the centroid of the feature
686   -- cheaper but less acurate
687   NEW.centroid := ST_PointOnSurface(NEW.geometry);
688   --DEBUG: RAISE WARNING 'Computing preliminary centroid at %',ST_AsText(NEW.centroid);
689
690   NEW.postcode := null;
691
692   -- recalculate country and partition
693   IF NEW.rank_search = 4 AND NEW.address is not NULL AND NEW.address ? 'country' THEN
694     -- for countries, believe the mapped country code,
695     -- so that we remain in the right partition if the boundaries
696     -- suddenly expand.
697     NEW.country_code := lower(NEW.address->'country');
698     NEW.partition := get_partition(lower(NEW.country_code));
699     IF NEW.partition = 0 THEN
700       NEW.country_code := lower(get_country_code(NEW.centroid));
701       NEW.partition := get_partition(NEW.country_code);
702     END IF;
703   ELSE
704     IF NEW.rank_search >= 4 THEN
705       NEW.country_code := lower(get_country_code(NEW.centroid));
706     ELSE
707       NEW.country_code := NULL;
708     END IF;
709     NEW.partition := get_partition(NEW.country_code);
710   END IF;
711   --DEBUG: RAISE WARNING 'Country updated: "%"', NEW.country_code;
712
713   -- waterway ways are linked when they are part of a relation and have the same class/type
714   IF NEW.osm_type = 'R' and NEW.class = 'waterway' THEN
715       FOR relation_members IN select members from planet_osm_rels r where r.id = NEW.osm_id and r.parts != array[]::bigint[]
716       LOOP
717           FOR i IN 1..array_upper(relation_members, 1) BY 2 LOOP
718               IF relation_members[i+1] in ('', 'main_stream', 'side_stream') AND substring(relation_members[i],1,1) = 'w' THEN
719                 --DEBUG: RAISE WARNING 'waterway parent %, child %/%', NEW.osm_id, i, relation_members[i];
720                 FOR linked_node_id IN SELECT place_id FROM placex
721                   WHERE osm_type = 'W' and osm_id = substring(relation_members[i],2,200)::bigint
722                   and class = NEW.class and type in ('river', 'stream', 'canal', 'drain', 'ditch')
723                   and ( relation_members[i+1] != 'side_stream' or NEW.name->'name' = name->'name')
724                 LOOP
725                   UPDATE placex SET linked_place_id = NEW.place_id WHERE place_id = linked_node_id;
726                 END LOOP;
727               END IF;
728           END LOOP;
729       END LOOP;
730       --DEBUG: RAISE WARNING 'Waterway processed';
731   END IF;
732
733   NEW.importance := null;
734   SELECT wikipedia, importance
735     FROM compute_importance(NEW.extratags, NEW.country_code, NEW.osm_type, NEW.osm_id)
736     INTO NEW.wikipedia,NEW.importance;
737
738 --DEBUG: RAISE WARNING 'Importance computed from wikipedia: %', NEW.importance;
739
740   -- ---------------------------------------------------------------------------
741   -- For low level elements we inherit from our parent road
742   IF (NEW.rank_search > 27 OR (NEW.type = 'postcode' AND NEW.rank_search = 25)) THEN
743
744     --DEBUG: RAISE WARNING 'finding street for % %', NEW.osm_type, NEW.osm_id;
745     NEW.parent_place_id := null;
746
747     -- if we have a POI and there is no address information,
748     -- see if we can get it from a surrounding building
749     IF NEW.osm_type = 'N' AND addr_street IS NULL AND addr_place IS NULL
750        AND NEW.housenumber IS NULL THEN
751       FOR location IN
752         -- The additional && condition works around the misguided query
753         -- planner of postgis 3.0.
754         SELECT address from placex where ST_Covers(geometry, NEW.centroid)
755             and geometry && NEW.centroid
756             and (address ? 'housenumber' or address ? 'street' or address ? 'place')
757             and rank_search > 28 AND ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon')
758             limit 1
759       LOOP
760         NEW.housenumber := location.address->'housenumber';
761         addr_street := location.address->'street';
762         addr_place := location.address->'place';
763         --DEBUG: RAISE WARNING 'Found surrounding building % %', location.osm_type, location.osm_id;
764       END LOOP;
765     END IF;
766
767     -- We have to find our parent road.
768     NEW.parent_place_id := find_parent_for_poi(NEW.osm_type, NEW.osm_id,
769                                                NEW.partition,
770                                                ST_Envelope(NEW.geometry),
771                                                addr_street, addr_place);
772
773     -- If we found the road take a shortcut here.
774     -- Otherwise fall back to the full address getting method below.
775     IF NEW.parent_place_id is not null THEN
776
777       -- Get the details of the parent road
778       SELECT p.country_code, p.postcode FROM placex p
779        WHERE p.place_id = NEW.parent_place_id INTO location;
780
781       NEW.country_code := location.country_code;
782       --DEBUG: RAISE WARNING 'Got parent details from search name';
783
784       -- determine postcode
785       IF NEW.address is not null AND NEW.address ? 'postcode' THEN
786           NEW.postcode = upper(trim(NEW.address->'postcode'));
787       ELSE
788          NEW.postcode := location.postcode;
789       END IF;
790       IF NEW.postcode is null THEN
791         NEW.postcode := get_nearest_postcode(NEW.country_code, NEW.geometry);
792       END IF;
793
794       -- If there is no name it isn't searchable, don't bother to create a search record
795       IF NEW.name is NULL THEN
796         --DEBUG: RAISE WARNING 'Not a searchable place % %', NEW.osm_type, NEW.osm_id;
797         return NEW;
798       END IF;
799
800       NEW.name := add_default_place_name(NEW.country_code, NEW.name);
801       name_vector := make_keywords(NEW.name);
802
803       -- Performance, it would be more acurate to do all the rest of the import
804       -- process but it takes too long
805       -- Just be happy with inheriting from parent road only
806       IF NEW.rank_search <= 25 and NEW.rank_address > 0 THEN
807         result := add_location(NEW.place_id, NEW.country_code, NEW.partition, name_vector, NEW.rank_search, NEW.rank_address, upper(trim(NEW.address->'postcode')), NEW.geometry);
808         --DEBUG: RAISE WARNING 'Place added to location table';
809       END IF;
810
811       result := insertSearchName(NEW.partition, NEW.place_id, name_vector,
812                                  NEW.rank_search, NEW.rank_address, NEW.geometry);
813
814       IF NOT %REVERSE-ONLY% THEN
815           -- Merge address from parent
816           SELECT array_merge(s.name_vector, s.nameaddress_vector)
817             INTO nameaddress_vector
818             FROM search_name s
819             WHERE s.place_id = NEW.parent_place_id;
820
821           INSERT INTO search_name (place_id, search_rank, address_rank,
822                                    importance, country_code, name_vector,
823                                    nameaddress_vector, centroid)
824                  VALUES (NEW.place_id, NEW.rank_search, NEW.rank_address,
825                          NEW.importance, NEW.country_code, name_vector,
826                          nameaddress_vector, NEW.centroid);
827           --DEBUG: RAISE WARNING 'Place added to search table';
828         END IF;
829
830       return NEW;
831     END IF;
832
833   END IF;
834
835   -- ---------------------------------------------------------------------------
836   -- Full indexing
837   --DEBUG: RAISE WARNING 'Using full index mode for % %', NEW.osm_type, NEW.osm_id;
838   SELECT * INTO location FROM find_linked_place(NEW);
839   IF location.place_id is not null THEN
840     --DEBUG: RAISE WARNING 'Linked %', location;
841
842     -- Use the linked point as the centre point of the geometry,
843     -- but only if it is within the area of the boundary.
844     centroid := coalesce(location.centroid, ST_Centroid(location.geometry));
845     IF centroid is not NULL AND ST_Within(centroid, NEW.geometry) THEN
846         NEW.centroid := centroid;
847     END IF;
848
849     -- Use the address rank of the linked place, if it has one
850     IF location.rank_address between 5 and 25 THEN
851       NEW.rank_address := location.rank_address;
852     END IF;
853
854     -- merge in the label name
855     IF NOT location.name IS NULL THEN
856       NEW.name := location.name || NEW.name;
857     END IF;
858
859     -- merge in extra tags
860     NEW.extratags := hstore('linked_' || location.class, location.type)
861                      || coalesce(location.extratags, ''::hstore)
862                      || coalesce(NEW.extratags, ''::hstore);
863
864     -- mark the linked place (excludes from search results)
865     UPDATE placex set linked_place_id = NEW.place_id
866       WHERE place_id = location.place_id;
867
868     SELECT wikipedia, importance
869       FROM compute_importance(location.extratags, NEW.country_code,
870                               'N', location.osm_id)
871       INTO linked_wikipedia,linked_importance;
872
873     -- Use the maximum importance if one could be computed from the linked object.
874     IF linked_importance is not null AND
875        (NEW.importance is null or NEW.importance < linked_importance)
876     THEN
877       NEW.importance = linked_importance;
878     END IF;
879   END IF;
880
881   -- Initialise the name vector using our name
882   NEW.name := add_default_place_name(NEW.country_code, NEW.name);
883   name_vector := make_keywords(NEW.name);
884
885   -- make sure all names are in the word table
886   IF NEW.admin_level = 2
887      AND NEW.class = 'boundary' AND NEW.type = 'administrative'
888      AND NEW.country_code IS NOT NULL AND NEW.osm_type = 'R'
889   THEN
890     PERFORM create_country(NEW.name, lower(NEW.country_code));
891     --DEBUG: RAISE WARNING 'Country names updated';
892   END IF;
893
894   SELECT * FROM insert_addresslines(NEW.place_id, NEW.partition,
895                                     NEW.rank_search, NEW.address,
896                                     CASE WHEN NEW.rank_search >= 26
897                                              AND NEW.rank_search < 30
898                                       THEN NEW.geometry ELSE NEW.centroid END)
899     INTO NEW.parent_place_id, NEW.postcode, nameaddress_vector;
900
901   --DEBUG: RAISE WARNING 'RETURN insert_addresslines: %, %, %', NEW.parent_place_id, NEW.postcode, nameaddress_vector;
902
903   IF NEW.address is not null AND NEW.address ? 'postcode' 
904      AND NEW.address->'postcode' not similar to '%(,|;)%' THEN
905     NEW.postcode := upper(trim(NEW.address->'postcode'));
906   END IF;
907
908   IF NEW.postcode is null AND NEW.rank_search > 8 THEN
909     NEW.postcode := get_nearest_postcode(NEW.country_code, NEW.geometry);
910   END IF;
911
912   -- if we have a name add this to the name search table
913   IF NEW.name IS NOT NULL THEN
914
915     IF NEW.rank_search <= 25 and NEW.rank_address > 0 THEN
916       result := add_location(NEW.place_id, NEW.country_code, NEW.partition, name_vector, NEW.rank_search, NEW.rank_address, upper(trim(NEW.address->'postcode')), NEW.geometry);
917       --DEBUG: RAISE WARNING 'added to location (full)';
918     END IF;
919
920     IF NEW.rank_search between 26 and 27 and NEW.class = 'highway' THEN
921       result := insertLocationRoad(NEW.partition, NEW.place_id, NEW.country_code, NEW.geometry);
922       --DEBUG: RAISE WARNING 'insert into road location table (full)';
923     END IF;
924
925     result := insertSearchName(NEW.partition, NEW.place_id, name_vector,
926                                NEW.rank_search, NEW.rank_address, NEW.geometry);
927     --DEBUG: RAISE WARNING 'added to search name (full)';
928
929     IF NOT %REVERSE-ONLY% THEN
930         INSERT INTO search_name (place_id, search_rank, address_rank,
931                                  importance, country_code, name_vector,
932                                  nameaddress_vector, centroid)
933                VALUES (NEW.place_id, NEW.rank_search, NEW.rank_address,
934                        NEW.importance, NEW.country_code, name_vector,
935                        nameaddress_vector, NEW.centroid);
936     END IF;
937
938   END IF;
939
940   --DEBUG: RAISE WARNING 'place update % % finsihed.', NEW.osm_type, NEW.osm_id;
941
942   RETURN NEW;
943 END;
944 $$
945 LANGUAGE plpgsql;
946
947
948 CREATE OR REPLACE FUNCTION placex_delete()
949   RETURNS TRIGGER
950   AS $$
951 DECLARE
952   b BOOLEAN;
953   classtable TEXT;
954 BEGIN
955   -- RAISE WARNING 'placex_delete % %',OLD.osm_type,OLD.osm_id;
956
957   update placex set linked_place_id = null, indexed_status = 2 where linked_place_id = OLD.place_id and indexed_status = 0;
958   --DEBUG: RAISE WARNING 'placex_delete:01 % %',OLD.osm_type,OLD.osm_id;
959   update placex set linked_place_id = null where linked_place_id = OLD.place_id;
960   --DEBUG: RAISE WARNING 'placex_delete:02 % %',OLD.osm_type,OLD.osm_id;
961
962   IF OLD.rank_address < 30 THEN
963
964     -- mark everything linked to this place for re-indexing
965     --DEBUG: RAISE WARNING 'placex_delete:03 % %',OLD.osm_type,OLD.osm_id;
966     UPDATE placex set indexed_status = 2 from place_addressline where address_place_id = OLD.place_id 
967       and placex.place_id = place_addressline.place_id and indexed_status = 0 and place_addressline.isaddress;
968
969     --DEBUG: RAISE WARNING 'placex_delete:04 % %',OLD.osm_type,OLD.osm_id;
970     DELETE FROM place_addressline where address_place_id = OLD.place_id;
971
972     --DEBUG: RAISE WARNING 'placex_delete:05 % %',OLD.osm_type,OLD.osm_id;
973     b := deleteRoad(OLD.partition, OLD.place_id);
974
975     --DEBUG: RAISE WARNING 'placex_delete:06 % %',OLD.osm_type,OLD.osm_id;
976     update placex set indexed_status = 2 where parent_place_id = OLD.place_id and indexed_status = 0;
977     --DEBUG: RAISE WARNING 'placex_delete:07 % %',OLD.osm_type,OLD.osm_id;
978     -- reparenting also for OSM Interpolation Lines (and for Tiger?)
979     update location_property_osmline set indexed_status = 2 where indexed_status = 0 and parent_place_id = OLD.place_id;
980
981   END IF;
982
983   --DEBUG: RAISE WARNING 'placex_delete:08 % %',OLD.osm_type,OLD.osm_id;
984
985   IF OLD.rank_address < 26 THEN
986     b := deleteLocationArea(OLD.partition, OLD.place_id, OLD.rank_search);
987   END IF;
988
989   --DEBUG: RAISE WARNING 'placex_delete:09 % %',OLD.osm_type,OLD.osm_id;
990
991   IF OLD.name is not null THEN
992     IF NOT %REVERSE-ONLY% THEN
993       DELETE from search_name WHERE place_id = OLD.place_id;
994     END IF;
995     b := deleteSearchName(OLD.partition, OLD.place_id);
996   END IF;
997
998   --DEBUG: RAISE WARNING 'placex_delete:10 % %',OLD.osm_type,OLD.osm_id;
999
1000   DELETE FROM place_addressline where place_id = OLD.place_id;
1001
1002   --DEBUG: RAISE WARNING 'placex_delete:11 % %',OLD.osm_type,OLD.osm_id;
1003
1004   -- remove from tables for special search
1005   classtable := 'place_classtype_' || OLD.class || '_' || OLD.type;
1006   SELECT count(*)>0 FROM pg_tables WHERE tablename = classtable and schemaname = current_schema() INTO b;
1007   IF b THEN
1008     EXECUTE 'DELETE FROM ' || classtable::regclass || ' WHERE place_id = $1' USING OLD.place_id;
1009   END IF;
1010
1011   --DEBUG: RAISE WARNING 'placex_delete:12 % %',OLD.osm_type,OLD.osm_id;
1012
1013   RETURN OLD;
1014
1015 END;
1016 $$
1017 LANGUAGE plpgsql;