5 require_once(CONST_BasePath.'/lib/SpecialSearchOperator.php');
6 require_once(CONST_BasePath.'/lib/SearchContext.php');
9 * Description of a single interpretation of a search query.
11 class SearchDescription
13 /// Ranking how well the description fits the query.
14 private $iSearchRank = 0;
15 /// Country code of country the result must belong to.
16 private $sCountryCode = '';
17 /// List of word ids making up the name of the object.
18 private $aName = array();
19 /// List of word ids making up the address of the object.
20 private $aAddress = array();
21 /// Subset of word ids of full words making up the address.
22 private $aFullNameAddress = array();
23 /// List of word ids that appear in the name but should be ignored.
24 private $aNameNonSearch = array();
25 /// List of word ids that appear in the address but should be ignored.
26 private $aAddressNonSearch = array();
27 /// Kind of search for special searches, see Nominatim::Operator.
28 private $iOperator = Operator::NONE;
29 /// Class of special feature to search for.
31 /// Type of special feature to search for.
33 /// Housenumber of the object.
34 private $sHouseNumber = '';
35 /// Postcode for the object.
36 private $sPostcode = '';
37 /// Global search constraints.
40 // Temporary values used while creating the search description.
42 /// Index of phrase currently processed.
43 private $iNamePhrase = -1;
46 public function __construct($oContext)
48 $this->oContext = $oContext;
51 public function getRank()
53 return $this->iSearchRank;
56 public function addToRank($iAddRank)
58 $this->iSearchRank += $iAddRank;
59 return $this->iSearchRank;
62 public function getPostCode()
64 return $this->sPostcode;
67 public function setPoiSearch($iOperator, $sClass, $sType)
69 $this->iOperator = $iOperator;
70 $this->sClass = $sClass;
71 $this->sType = $sType;
74 public function isNamedSearch()
76 return sizeof($this->aName) > 0 || sizeof($this->aAddress) > 0;
79 public function isCountrySearch()
81 return $this->sCountryCode && sizeof($this->aName) == 0
82 && !$this->iOperator && !$this->oContext->hasNearPoint();
85 public function isPoiSearch()
87 return (bool) $this->sClass;
90 public function looksLikeFullAddress()
92 return sizeof($this->aName)
93 && (sizeof($this->aAddress || $this->sCountryCode))
94 && preg_match('/[0-9]+/', $this->sHouseNumber);
97 public function isOperator($iType)
99 return $this->iOperator == $iType;
102 public function hasHouseNumber()
104 return (bool) $this->sHouseNumber;
107 private function poiTable()
109 return 'place_classtype_'.$this->sClass.'_'.$this->sType;
112 public function countryCodeSQL($sVar, $sCountryList)
114 if ($this->sCountryCode) {
115 return $sVar.' = \''.$this->sCountryCode."'";
118 return $sVar.' in ('.$sCountryList.')';
124 public function hasOperator()
126 return $this->iOperator != Operator::NONE;
129 public function extractKeyValuePairs($sQuery)
131 // Search for terms of kind [<key>=<value>].
133 '/\\[([\\w_]*)=([\\w_]*)\\]/',
139 foreach ($aSpecialTermsRaw as $aTerm) {
140 $sQuery = str_replace($aTerm[0], ' ', $sQuery);
141 if (!$this->hasOperator()) {
142 $this->setPoiSearch(Operator::TYPE, $aTerm[1], $aTerm[2]);
149 public function isValidSearch(&$aCountryCodes)
151 if (!sizeof($this->aName)) {
152 if ($this->sHouseNumber) {
157 && $this->sCountryCode
158 && !in_array($this->sCountryCode, $aCountryCodes)
166 /////////// Search building functions
169 public function extendWithFullTerm($aSearchTerm, $bWordInQuery, $bHasPartial, $sPhraseType, $bFirstToken, $bFirstPhrase, $bLastToken, &$iGlobalRank)
171 $aNewSearches = array();
173 if (($sPhraseType == '' || $sPhraseType == 'country')
174 && !empty($aSearchTerm['country_code'])
175 && $aSearchTerm['country_code'] != '0'
177 if (!$this->sCountryCode) {
178 $oSearch = clone $this;
179 $oSearch->iSearchRank++;
180 $oSearch->sCountryCode = $aSearchTerm['country_code'];
181 // Country is almost always at the end of the string
182 // - increase score for finding it anywhere else (optimisation)
184 $oSearch->iSearchRank += 5;
186 $aNewSearches[] = $oSearch;
188 // If it is at the beginning, we can be almost sure that
189 // the terms are in the wrong order. Increase score for all searches.
194 } elseif (($sPhraseType == '' || $sPhraseType == 'postalcode')
195 && $aSearchTerm['class'] == 'place' && $aSearchTerm['type'] == 'postcode'
197 // We need to try the case where the postal code is the primary element
198 // (i.e. no way to tell if it is (postalcode, city) OR (city, postalcode)
200 if (!$this->sPostcode && $bWordInQuery
201 && pg_escape_string($aSearchTerm['word']) == $aSearchTerm['word']
203 // If we have structured search or this is the first term,
204 // make the postcode the primary search element.
205 if ($this->iOperator == Operator::NONE
206 && ($sPhraseType == 'postalcode' || $bFirstToken)
208 $oSearch = clone $this;
209 $oSearch->iSearchRank++;
210 $oSearch->iOperator = Operator::POSTCODE;
211 $oSearch->aAddress = array_merge($this->aAddress, $this->aName);
213 array($aSearchTerm['word_id'] => $aSearchTerm['word']);
214 $aNewSearches[] = $oSearch;
217 // If we have a structured search or this is not the first term,
218 // add the postcode as an addendum.
219 if ($this->iOperator != Operator::POSTCODE
220 && ($sPhraseType == 'postalcode' || sizeof($this->aName))
222 $oSearch = clone $this;
223 $oSearch->iSearchRank++;
224 $oSearch->sPostcode = $aSearchTerm['word'];
225 $aNewSearches[] = $oSearch;
228 } elseif (($sPhraseType == '' || $sPhraseType == 'street')
229 && $aSearchTerm['class'] == 'place' && $aSearchTerm['type'] == 'house'
231 if (!$this->sHouseNumber && $this->iOperator != Operator::POSTCODE) {
232 $oSearch = clone $this;
233 $oSearch->iSearchRank++;
234 $oSearch->sHouseNumber = trim($aSearchTerm['word_token']);
235 // sanity check: if the housenumber is not mainly made
236 // up of numbers, add a penalty
237 if (preg_match_all("/[^0-9]/", $oSearch->sHouseNumber, $aMatches) > 2) {
238 $oSearch->iSearchRank++;
240 if (!isset($aSearchTerm['word_id'])) {
241 $oSearch->iSearchRank++;
243 // also must not appear in the middle of the address
244 if (sizeof($this->aAddress) || sizeof($this->aAddressNonSearch)) {
245 $oSearch->iSearchRank++;
247 $aNewSearches[] = $oSearch;
249 } elseif ($sPhraseType == ''
250 && $aSearchTerm['class'] !== '' && $aSearchTerm['class'] !== null
252 // require a normalized exact match of the term
253 // if we have the normalizer version of the query
255 if ($this->iOperator == Operator::NONE
256 && (isset($aSearchTerm['word']) && $aSearchTerm['word'])
259 $oSearch = clone $this;
260 $oSearch->iSearchRank++;
262 $iOp = Operator::NEAR; // near == in for the moment
263 if ($aSearchTerm['operator'] == '') {
264 if (sizeof($this->aName)) {
265 $iOp = Operator::NAME;
267 $oSearch->iSearchRank += 2;
270 $oSearch->setPoiSearch($iOp, $aSearchTerm['class'], $aSearchTerm['type']);
271 $aNewSearches[] = $oSearch;
273 } elseif (isset($aSearchTerm['word_id']) && $aSearchTerm['word_id']) {
274 $iWordID = $aSearchTerm['word_id'];
275 if (sizeof($this->aName)) {
276 if (($sPhraseType == '' || !$bFirstPhrase)
277 && $sPhraseType != 'country'
280 $oSearch = clone $this;
281 $oSearch->iSearchRank++;
282 $oSearch->aAddress[$iWordID] = $iWordID;
283 $aNewSearches[] = $oSearch;
285 $this->aFullNameAddress[$iWordID] = $iWordID;
288 $oSearch = clone $this;
289 $oSearch->iSearchRank++;
290 $oSearch->aName = array($iWordID => $iWordID);
291 $aNewSearches[] = $oSearch;
295 return $aNewSearches;
298 public function extendWithPartialTerm($aSearchTerm, $bStructuredPhrases, $iPhrase, &$aWordFrequencyScores, $aFullTokens)
300 // Only allow name terms.
301 if (!(isset($aSearchTerm['word_id']) && $aSearchTerm['word_id'])) {
305 $aNewSearches = array();
306 $iWordID = $aSearchTerm['word_id'];
308 if ((!$bStructuredPhrases || $iPhrase > 0)
309 && sizeof($this->aName)
310 && strpos($aSearchTerm['word_token'], ' ') === false
312 if ($aWordFrequencyScores[$iWordID] < CONST_Max_Word_Frequency) {
313 $oSearch = clone $this;
314 $oSearch->iSearchRank++;
315 $oSearch->aAddress[$iWordID] = $iWordID;
316 $aNewSearches[] = $oSearch;
318 $oSearch = clone $this;
319 $oSearch->iSearchRank++;
320 $oSearch->aAddressNonSearch[$iWordID] = $iWordID;
321 if (preg_match('#^[0-9]+$#', $aSearchTerm['word_token'])) {
322 $oSearch->iSearchRank += 2;
324 if (sizeof($aFullTokens)) {
325 $oSearch->iSearchRank++;
327 $aNewSearches[] = $oSearch;
329 // revert to the token version?
330 foreach ($aFullTokens as $aSearchTermToken) {
331 if (empty($aSearchTermToken['country_code'])
332 && empty($aSearchTermToken['lat'])
333 && empty($aSearchTermToken['class'])
335 $oSearch = clone $this;
336 $oSearch->iSearchRank++;
337 $oSearch->aAddress[$aSearchTermToken['word_id']] = $aSearchTermToken['word_id'];
338 $aNewSearches[] = $oSearch;
344 if ((!$this->sPostcode && !$this->aAddress && !$this->aAddressNonSearch)
345 && (!sizeof($this->aName) || $this->iNamePhrase == $iPhrase)
347 $oSearch = clone $this;
348 $oSearch->iSearchRank++;
349 if (!sizeof($this->aName)) {
350 $oSearch->iSearchRank += 1;
352 if (preg_match('#^[0-9]+$#', $aSearchTerm['word_token'])) {
353 $oSearch->iSearchRank += 2;
355 if ($aWordFrequencyScores[$iWordID] < CONST_Max_Word_Frequency) {
356 $oSearch->aName[$iWordID] = $iWordID;
358 $oSearch->aNameNonSearch[$iWordID] = $iWordID;
360 $oSearch->iNamePhrase = $iPhrase;
361 $aNewSearches[] = $oSearch;
364 return $aNewSearches;
367 /////////// Query functions
370 public function queryCountry(&$oDB)
372 $sSQL = 'SELECT place_id FROM placex ';
373 $sSQL .= "WHERE country_code='".$this->sCountryCode."'";
374 $sSQL .= ' AND rank_search = 4';
375 if ($this->oContext->bViewboxBounded) {
376 $sSQL .= ' AND ST_Intersects('.$this->oContext->sqlViewboxSmall.', geometry)';
378 $sSQL .= " ORDER BY st_area(geometry) DESC LIMIT 1";
380 if (CONST_Debug) var_dump($sSQL);
382 return chksql($oDB->getCol($sSQL));
385 public function queryNearbyPoi(&$oDB, $sCountryList, $sExcludeSQL, $iLimit)
387 if (!$this->sClass) {
391 $sPoiTable = $this->poiTable();
393 $sSQL = 'SELECT count(*) FROM pg_tables WHERE tablename = \''.$sPoiTable."'";
394 if (chksql($oDB->getOne($sSQL))) {
395 $sSQL = 'SELECT place_id FROM '.$sPoiTable.' ct';
397 $sSQL .= ' JOIN placex USING (place_id)';
399 if ($this->oContext->hasNearPoint()) {
400 $sSQL .= ' WHERE '.$this->oContext->withinSQL('ct.centroid');
401 } else if ($this->oContext->bViewboxBounded) {
402 $sSQL .= ' WHERE ST_Contains('.$this->oContext->sqlViewboxSmall.', ct.centroid)';
405 $sSQL .= " AND country_code in ($sCountryList)";
408 $sSQL .= ' AND place_id not in ('.$sExcludeSQL.')';
410 if ($this->oContext->sqlViewboxCentre) {
411 $sSQL .= ' ORDER BY ST_Distance(';
412 $sSQL .= $this->oContext->sqlViewboxCentre.', ct.centroid) ASC';
413 } elseif ($this->oContext->hasNearPoint()) {
414 $sSQL .= ' ORDER BY '.$this->oContext->distanceSQL('ct.centroid').' ASC';
416 $sSQL .= " limit $iLimit";
417 if (CONST_Debug) var_dump($sSQL);
418 return chksql($oDB->getCol($sSQL));
421 if ($this->oContext->hasNearPoint()) {
422 $sSQL = 'SELECT place_id FROM placex WHERE ';
423 $sSQL .= 'class=\''.$this->sClass."' and type='".$this->sType."'";
424 $sSQL .= ' AND '.$this->oContext->withinSQL('geometry');
425 $sSQL .= ' AND linked_place_id is null';
427 $sSQL .= " AND country_code in ($sCountryList)";
429 $sSQL .= ' ORDER BY '.$this->oContext->distanceSQL('centroid')." ASC";
430 $sSQL .= " LIMIT $iLimit";
431 if (CONST_Debug) var_dump($sSQL);
432 return chksql($oDB->getCol($sSQL));
438 public function queryPostcode(&$oDB, $sCountryList, $iLimit)
440 $sSQL = 'SELECT p.place_id FROM location_postcode p ';
442 if (sizeof($this->aAddress)) {
443 $sSQL .= ', search_name s ';
444 $sSQL .= 'WHERE s.place_id = p.parent_place_id ';
445 $sSQL .= 'AND array_cat(s.nameaddress_vector, s.name_vector)';
446 $sSQL .= ' @> '.getArraySQL($this->aAddress).' AND ';
451 $sSQL .= "p.postcode = '".reset($this->aName)."'";
452 $sCountryTerm = $this->countryCodeSQL('p.country_code', $sCountryList);
454 $sSQL .= ' AND '.$sCountryTerm;
456 $sSQL .= " LIMIT $iLimit";
458 if (CONST_Debug) var_dump($sSQL);
460 return chksql($oDB->getCol($sSQL));
463 public function queryNamedPlace(&$oDB, $aWordFrequencyScores, $sCountryList, $iMinAddressRank, $iMaxAddressRank, $sExcludeSQL, $iLimit)
468 if ($this->sHouseNumber && sizeof($this->aAddress)) {
469 $sHouseNumberRegex = '\\\\m'.$this->sHouseNumber.'\\\\M';
471 $aOrder[0] .= 'EXISTS(';
472 $aOrder[0] .= ' SELECT place_id';
473 $aOrder[0] .= ' FROM placex';
474 $aOrder[0] .= ' WHERE parent_place_id = search_name.place_id';
475 $aOrder[0] .= " AND transliteration(housenumber) ~* E'".$sHouseNumberRegex."'";
476 $aOrder[0] .= ' LIMIT 1';
478 // also housenumbers from interpolation lines table are needed
479 if (preg_match('/[0-9]+/', $this->sHouseNumber)) {
480 $iHouseNumber = intval($this->sHouseNumber);
481 $aOrder[0] .= 'OR EXISTS(';
482 $aOrder[0] .= ' SELECT place_id ';
483 $aOrder[0] .= ' FROM location_property_osmline ';
484 $aOrder[0] .= ' WHERE parent_place_id = search_name.place_id';
485 $aOrder[0] .= ' AND startnumber is not NULL';
486 $aOrder[0] .= ' AND '.$iHouseNumber.'>=startnumber ';
487 $aOrder[0] .= ' AND '.$iHouseNumber.'<=endnumber ';
488 $aOrder[0] .= ' LIMIT 1';
491 $aOrder[0] .= ') DESC';
494 if (sizeof($this->aName)) {
495 $aTerms[] = 'name_vector @> '.getArraySQL($this->aName);
497 if (sizeof($this->aAddress)) {
498 // For infrequent name terms disable index usage for address
499 if (CONST_Search_NameOnlySearchFrequencyThreshold
500 && sizeof($this->aName) == 1
501 && $aWordFrequencyScores[$this->aName[reset($this->aName)]]
502 < CONST_Search_NameOnlySearchFrequencyThreshold
504 $aTerms[] = 'array_cat(nameaddress_vector,ARRAY[]::integer[]) @> '.getArraySQL($this->aAddress);
506 $aTerms[] = 'nameaddress_vector @> '.getArraySQL($this->aAddress);
510 $sCountryTerm = $this->countryCodeSQL('country_code', $sCountryList);
512 $aTerms[] = $sCountryTerm;
515 if ($this->sHouseNumber) {
516 $aTerms[] = "address_rank between 16 and 27";
517 } elseif (!$this->sClass || $this->iOperator == Operator::NAME) {
518 if ($iMinAddressRank > 0) {
519 $aTerms[] = "address_rank >= ".$iMinAddressRank;
521 if ($iMaxAddressRank < 30) {
522 $aTerms[] = "address_rank <= ".$iMaxAddressRank;
526 if ($this->oContext->hasNearPoint()) {
527 $aTerms[] = $this->oContext->withinSQL('centroid');
528 $aOrder[] = $this->oContext->distanceSQL('centroid');
529 } elseif ($this->sPostcode) {
530 if (!sizeof($this->aAddress)) {
531 $aTerms[] = "EXISTS(SELECT place_id FROM location_postcode p WHERE p.postcode = '".$this->sPostcode."' AND ST_DWithin(search_name.centroid, p.geometry, 0.1))";
533 $aOrder[] = "(SELECT min(ST_Distance(search_name.centroid, p.geometry)) FROM location_postcode p WHERE p.postcode = '".$this->sPostcode."')";
538 $aTerms[] = 'place_id not in ('.$sExcludeSQL.')';
541 if ($this->oContext->bViewboxBounded) {
542 $aTerms[] = 'centroid && '.$this->oContext->sqlViewboxSmall;
545 if ($this->oContext->hasNearPoint()) {
546 $aOrder[] = $this->oContext->distanceSQL('centroid');
549 if ($this->sHouseNumber) {
550 $sImportanceSQL = '- abs(26 - address_rank) + 3';
552 $sImportanceSQL = '(CASE WHEN importance = 0 OR importance IS NULL THEN 0.75-(search_rank::float/40) ELSE importance END)';
554 $sImportanceSQL .= $this->oContext->viewboxImportanceSQL('centroid');
555 $aOrder[] = "$sImportanceSQL DESC";
557 if (sizeof($this->aFullNameAddress)) {
558 $sExactMatchSQL = ' ( ';
559 $sExactMatchSQL .= ' SELECT count(*) FROM ( ';
560 $sExactMatchSQL .= ' SELECT unnest('.getArraySQL($this->aFullNameAddress).')';
561 $sExactMatchSQL .= ' INTERSECT ';
562 $sExactMatchSQL .= ' SELECT unnest(nameaddress_vector)';
563 $sExactMatchSQL .= ' ) s';
564 $sExactMatchSQL .= ') as exactmatch';
565 $aOrder[] = 'exactmatch DESC';
567 $sExactMatchSQL = '0::int as exactmatch';
570 if ($this->sHouseNumber || $this->sClass) {
574 if (sizeof($aTerms)) {
575 $sSQL = 'SELECT place_id,'.$sExactMatchSQL;
576 $sSQL .= ' FROM search_name';
577 $sSQL .= ' WHERE '.join(' and ', $aTerms);
578 $sSQL .= ' ORDER BY '.join(', ', $aOrder);
579 $sSQL .= ' LIMIT '.$iLimit;
581 if (CONST_Debug) var_dump($sSQL);
585 "Could not get places for search terms."
593 public function queryHouseNumber(&$oDB, $aRoadPlaceIDs, $sExcludeSQL, $iLimit)
595 $sPlaceIDs = join(',', $aRoadPlaceIDs);
597 $sHouseNumberRegex = '\\\\m'.$this->sHouseNumber.'\\\\M';
598 $sSQL = 'SELECT place_id FROM placex ';
599 $sSQL .= 'WHERE parent_place_id in ('.$sPlaceIDs.')';
600 $sSQL .= " AND transliteration(housenumber) ~* E'".$sHouseNumberRegex."'";
602 $sSQL .= ' AND place_id not in ('.$sExcludeSQL.')';
604 $sSQL .= " LIMIT $iLimit";
606 if (CONST_Debug) var_dump($sSQL);
608 $aPlaceIDs = chksql($oDB->getCol($sSQL));
610 if (sizeof($aPlaceIDs)) {
611 return array('aPlaceIDs' => $aPlaceIDs, 'iHouseNumber' => -1);
614 $bIsIntHouseNumber= (bool) preg_match('/[0-9]+/', $this->sHouseNumber);
615 $iHousenumber = intval($this->sHouseNumber);
616 if ($bIsIntHouseNumber) {
617 // if nothing found, search in the interpolation line table
618 $sSQL = 'SELECT distinct place_id FROM location_property_osmline';
619 $sSQL .= ' WHERE startnumber is not NULL';
620 $sSQL .= ' AND parent_place_id in ('.$sPlaceIDs.') AND (';
621 if ($iHousenumber % 2 == 0) {
622 // If housenumber is even, look for housenumber in streets
623 // with interpolationtype even or all.
624 $sSQL .= "interpolationtype='even'";
626 // Else look for housenumber with interpolationtype odd or all.
627 $sSQL .= "interpolationtype='odd'";
629 $sSQL .= " or interpolationtype='all') and ";
630 $sSQL .= $iHousenumber.">=startnumber and ";
631 $sSQL .= $iHousenumber."<=endnumber";
634 $sSQL .= ' AND place_id not in ('.$sExcludeSQL.')';
636 $sSQL .= " limit $iLimit";
638 if (CONST_Debug) var_dump($sSQL);
640 $aPlaceIDs = chksql($oDB->getCol($sSQL, 0));
642 if (sizeof($aPlaceIDs)) {
643 return array('aPlaceIDs' => $aPlaceIDs, 'iHouseNumber' => $iHousenumber);
647 // If nothing found try the aux fallback table
648 if (CONST_Use_Aux_Location_data) {
649 $sSQL = 'SELECT place_id FROM location_property_aux';
650 $sSQL .= ' WHERE parent_place_id in ('.$sPlaceIDs.')';
651 $sSQL .= " AND housenumber = '".$this->sHouseNumber."'";
653 $sSQL .= " AND place_id not in ($sExcludeSQL)";
655 $sSQL .= " limit $iLimit";
657 if (CONST_Debug) var_dump($sSQL);
659 $aPlaceIDs = chksql($oDB->getCol($sSQL));
661 if (sizeof($aPlaceIDs)) {
662 return array('aPlaceIDs' => $aPlaceIDs, 'iHouseNumber' => -1);
666 // If nothing found then search in Tiger data (location_property_tiger)
667 if (CONST_Use_US_Tiger_Data && $bIsIntHouseNumber) {
668 $sSQL = 'SELECT distinct place_id FROM location_property_tiger';
669 $sSQL .= ' WHERE parent_place_id in ('.$sPlaceIDs.') and (';
670 if ($iHousenumber % 2 == 0) {
671 $sSQL .= "interpolationtype='even'";
673 $sSQL .= "interpolationtype='odd'";
675 $sSQL .= " or interpolationtype='all') and ";
676 $sSQL .= $iHousenumber.">=startnumber and ";
677 $sSQL .= $iHousenumber."<=endnumber";
680 $sSQL .= ' AND place_id not in ('.$sExcludeSQL.')';
682 $sSQL .= " limit $iLimit";
684 if (CONST_Debug) var_dump($sSQL);
686 $aPlaceIDs = chksql($oDB->getCol($sSQL, 0));
688 if (sizeof($aPlaceIDs)) {
689 return array('aPlaceIDs' => $aPlaceIDs, 'iHouseNumber' => $iHousenumber);
697 public function queryPoiByOperator(&$oDB, $aParentIDs, $sExcludeSQL, $iLimit)
699 $sPlaceIDs = join(',', $aParentIDs);
700 $aClassPlaceIDs = array();
702 if ($this->iOperator == Operator::TYPE || $this->iOperator == Operator::NAME) {
703 // If they were searching for a named class (i.e. 'Kings Head pub')
704 // then we might have an extra match
705 $sSQL = 'SELECT place_id FROM placex ';
706 $sSQL .= " WHERE place_id in ($sPlaceIDs)";
707 $sSQL .= " AND class='".$this->sClass."' ";
708 $sSQL .= " AND type='".$this->sType."'";
709 $sSQL .= " AND linked_place_id is null";
710 $sSQL .= " ORDER BY rank_search ASC ";
711 $sSQL .= " LIMIT $iLimit";
713 if (CONST_Debug) var_dump($sSQL);
715 $aClassPlaceIDs = chksql($oDB->getCol($sSQL));
718 // NEAR and IN are handled the same
719 if ($this->iOperator == Operator::TYPE || $this->iOperator == Operator::NEAR) {
720 $sClassTable = $this->poiTable();
721 $sSQL = "SELECT count(*) FROM pg_tables WHERE tablename = '$sClassTable'";
722 $bCacheTable = (bool) chksql($oDB->getOne($sSQL));
724 $sSQL = "SELECT min(rank_search) FROM placex WHERE place_id in ($sPlaceIDs)";
725 if (CONST_Debug) var_dump($sSQL);
726 $iMaxRank = (int)chksql($oDB->getOne($sSQL));
728 // For state / country level searches the normal radius search doesn't work very well
730 if ($iMaxRank < 9 && $bCacheTable) {
731 // Try and get a polygon to search in instead
732 $sSQL = 'SELECT geometry FROM placex';
733 $sSQL .= " WHERE place_id in ($sPlaceIDs)";
734 $sSQL .= " AND rank_search < $iMaxRank + 5";
735 $sSQL .= " AND ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon')";
736 $sSQL .= " ORDER BY rank_search ASC ";
738 if (CONST_Debug) var_dump($sSQL);
739 $sPlaceGeom = chksql($oDB->getOne($sSQL));
746 $sSQL = 'SELECT place_id FROM placex';
747 $sSQL .= " WHERE place_id in ($sPlaceIDs) and rank_search < $iMaxRank";
748 if (CONST_Debug) var_dump($sSQL);
749 $aPlaceIDs = chksql($oDB->getCol($sSQL));
750 $sPlaceIDs = join(',', $aPlaceIDs);
753 if ($sPlaceIDs || $sPlaceGeom) {
756 // More efficient - can make the range bigger
760 if ($this->oContext->hasNearPoint()) {
761 $sOrderBySQL = $this->oContext->distanceSQL('l.centroid');
762 } elseif ($sPlaceIDs) {
763 $sOrderBySQL = "ST_Distance(l.centroid, f.geometry)";
764 } elseif ($sPlaceGeom) {
765 $sOrderBySQL = "ST_Distance(st_centroid('".$sPlaceGeom."'), l.centroid)";
768 $sSQL = 'SELECT distinct i.place_id';
770 $sSQL .= ', i.order_term';
772 $sSQL .= ' from (SELECT l.place_id';
774 $sSQL .= ','.$sOrderBySQL.' as order_term';
776 $sSQL .= ' from '.$sClassTable.' as l';
779 $sSQL .= ",placex as f WHERE ";
780 $sSQL .= "f.place_id in ($sPlaceIDs) ";
781 $sSQL .= " AND ST_DWithin(l.centroid, f.centroid, $fRange)";
782 } elseif ($sPlaceGeom) {
783 $sSQL .= " WHERE ST_Contains('$sPlaceGeom', l.centroid)";
787 $sSQL .= ' AND l.place_id not in ('.$sExcludeSQL.')';
789 $sSQL .= 'limit 300) i ';
791 $sSQL .= 'order by order_term asc';
793 $sSQL .= " limit $iLimit";
795 if (CONST_Debug) var_dump($sSQL);
797 $aClassPlaceIDs = array_merge($aClassPlaceIDs, chksql($oDB->getCol($sSQL)));
799 if ($this->oContext->hasNearPoint()) {
800 $fRange = $this->oContext->nearRadius();
804 if ($this->oContext->hasNearPoint()) {
805 $sOrderBySQL = $this->oContext->distanceSQL('l.geometry');
807 $sOrderBySQL = "ST_Distance(l.geometry, f.geometry)";
810 $sSQL = 'SELECT distinct l.place_id';
812 $sSQL .= ','.$sOrderBySQL.' as orderterm';
814 $sSQL .= ' FROM placex as l, placex as f';
815 $sSQL .= " WHERE f.place_id in ($sPlaceIDs)";
816 $sSQL .= " AND ST_DWithin(l.geometry, f.centroid, $fRange)";
817 $sSQL .= " AND l.class='".$this->sClass."'";
818 $sSQL .= " AND l.type='".$this->sType."'";
820 $sSQL .= " AND l.place_id not in (".$sExcludeSQL.")";
823 $sSQL .= "ORDER BY orderterm ASC";
825 $sSQL .= " limit $iLimit";
827 if (CONST_Debug) var_dump($sSQL);
829 $aClassPlaceIDs = array_merge($aClassPlaceIDs, chksql($oDB->getCol($sSQL)));
834 return $aClassPlaceIDs;
838 /////////// Sort functions
841 public static function bySearchRank($a, $b)
843 if ($a->iSearchRank == $b->iSearchRank) {
844 return $a->iOperator + strlen($a->sHouseNumber)
845 - $b->iOperator - strlen($b->sHouseNumber);
848 return $a->iSearchRank < $b->iSearchRank ? -1 : 1;
851 //////////// Debugging functions
854 public function dumpAsHtmlTableRow(&$aWordIDs)
856 $kf = function ($k) use (&$aWordIDs) {
857 return $aWordIDs[$k];
861 echo "<td>$this->iSearchRank</td>";
862 echo "<td>".join(', ', array_map($kf, $this->aName))."</td>";
863 echo "<td>".join(', ', array_map($kf, $this->aNameNonSearch))."</td>";
864 echo "<td>".join(', ', array_map($kf, $this->aAddress))."</td>";
865 echo "<td>".join(', ', array_map($kf, $this->aAddressNonSearch))."</td>";
866 echo "<td>".$this->sCountryCode."</td>";
867 echo "<td>".Operator::toString($this->iOperator)."</td>";
868 echo "<td>".$this->sClass."</td>";
869 echo "<td>".$this->sType."</td>";
870 echo "<td>".$this->sPostcode."</td>";
871 echo "<td>".$this->sHouseNumber."</td>";