forked from Haran/BMDMSoundex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBMDM.php
217 lines (170 loc) · 5.02 KB
/
BMDM.php
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<?php
/*
* Copyright Olegs Capligins, 2016
*
* This is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* It is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public License.
* If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace dautkom\bmdm;
require_once "library/Core.php";
use dautkom\bmdm\library\Core;
use dautkom\bmdm\library\BeiderMorse;
use dautkom\bmdm\library\DaitchMokotoff;
/**
* @package dautkom\bmdm
*/
class BMDM extends Core
{
/**
* @var DaitchMokotoff
*/
public $dm;
/**
* @var BeiderMorse
*/
public $bm;
/**
* @ignore
* @param string $mode
*/
public function __construct($mode = 'gen')
{
self::$input = null;
self::$logger = null;
register_shutdown_function([$this, 'beforeShutdown']);
spl_autoload_register([$this, 'autoload']);
if (!in_array($mode, ['gen', 'sep', 'ash'])) {
$this->dbg("Unsupported mode argument passed: '$mode', falling back to default 'gen'");
$mode = 'gen';
}
$this->dm = new DaitchMokotoff();
$this->bm = new BeiderMorse($mode);
}
/**
* Fallback autoloader if no composer is used
*
* @param string $className
* @return void
*/
public function autoload($className)
{
$file = __DIR__."/library/".substr($className, strrpos($className, '\\') + 1).'.php';
if( file_exists($file) ) {
/** @noinspection PhpIncludeInspection */
require $file;
}
}
/**
* Performance data
*
* @return void
*/
public function beforeShutdown()
{
$time = microtime(true) - $_SERVER["REQUEST_TIME_FLOAT"];
$mem = memory_get_usage();
$this->dbg("Execution time: $time seconds");
$this->dbg("Used memory: $mem bytes");
}
/**
* Set property self::$input preparatory encoding it to UTF-8 and taking
* care of ampersand-notation encoding of unicode (e.g. &#....)
*
* @param string $input
* @return $this
*/
public function set($input)
{
self::$input = Core::prepareString($input);
return $this;
}
/**
* Retrieve full soundex data
* <p></p>
* EXAMPLE:
* array(
* ['input'] => (string) input string
* ['numeric'] => (array) Daitch-Mokotoff numeric keys
* ['phonetic'] => (array) Beider-Morse phonetic keys
* )
*
* @return array
*/
public function soundex()
{
$result = [];
$phonetic = $this->bm->soundex();
$result['input'] = self::$input;
$result['numeric'] = $this->beiderMorseToDaitchMokotoff($phonetic);
$result['phonetic'] = $phonetic;
return $result;
}
/**
* Retrieve list of supported languages
*
* @return array
*/
public function getLanguages()
{
return $this->bm->getLanguages();
}
/**
* Determine language of given string
* <p></p>
* EXAMPLE:
* array(
* 'code' => (int) language code,
* 'languages' => array(
* [0] => 'english',
* [1] => 'french',
* ...
* )
* )
*
* @return array
*/
public function guess()
{
$code = $this->bm->getLanguageCode();
$names = $this->bm->getLanguageNames();
return ['code' => $code, 'languages' => $names];
}
/**
* Convert Beider-Morse phonetic keys to Daitch-Mokotoff keys
* with proper deduplication of keys per each word
*
* @param array $phoneticKeys array of Beider-Morse phonetic keys
* @return array
*/
private function beiderMorseToDaitchMokotoff($phoneticKeys)
{
$result = [];
// Passthrough for D-M algorithm strict matching for latin-only strings
if( self::$strict_dm && preg_match('/^[a-z0-9\s]+$/', self::$input) ) {
return $this->dm->soundex(self::$input);
}
// If self::$strict_dm is false or input string contains non-latin characters
// D-M values will be calculated based on B-M phonetic keys
foreach ($phoneticKeys as $word => $keys) {
foreach ($keys as $key) {
$dm_soundex = $this->dm->soundex($key);
$dm_soundex = join(' ', $dm_soundex[0]);
$result[$word][] = $dm_soundex;
}
$result[$word] = array_unique($result[$word]);
$result[$word] = array_values($result[$word]);
}
return $result;
}
}