EnglishInflector.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\String\Inflector;
  11. final class EnglishInflector implements InflectorInterface
  12. {
  13. /**
  14. * Map English plural to singular suffixes.
  15. *
  16. * @see http://english-zone.com/spelling/plurals.html
  17. */
  18. private const PLURAL_MAP = [
  19. // First entry: plural suffix, reversed
  20. // Second entry: length of plural suffix
  21. // Third entry: Whether the suffix may succeed a vowel
  22. // Fourth entry: Whether the suffix may succeed a consonant
  23. // Fifth entry: singular suffix, normal
  24. // bacteria (bacterium), criteria (criterion), phenomena (phenomenon)
  25. ['a', 1, true, true, ['on', 'um']],
  26. // nebulae (nebula)
  27. ['ea', 2, true, true, 'a'],
  28. // services (service)
  29. ['secivres', 8, true, true, 'service'],
  30. // mice (mouse), lice (louse)
  31. ['eci', 3, false, true, 'ouse'],
  32. // geese (goose)
  33. ['esee', 4, false, true, 'oose'],
  34. // fungi (fungus), alumni (alumnus), syllabi (syllabus), radii (radius)
  35. ['i', 1, true, true, 'us'],
  36. // men (man), women (woman)
  37. ['nem', 3, true, true, 'man'],
  38. // children (child)
  39. ['nerdlihc', 8, true, true, 'child'],
  40. // oxen (ox)
  41. ['nexo', 4, false, false, 'ox'],
  42. // indices (index), appendices (appendix), prices (price)
  43. ['seci', 4, false, true, ['ex', 'ix', 'ice']],
  44. // codes (code)
  45. ['sedoc', 5, false, true, 'code'],
  46. // selfies (selfie)
  47. ['seifles', 7, true, true, 'selfie'],
  48. // zombies (zombie)
  49. ['seibmoz', 7, true, true, 'zombie'],
  50. // movies (movie)
  51. ['seivom', 6, true, true, 'movie'],
  52. // names (name)
  53. ['seman', 5, true, false, 'name'],
  54. // conspectuses (conspectus), prospectuses (prospectus)
  55. ['sesutcep', 8, true, true, 'pectus'],
  56. // feet (foot)
  57. ['teef', 4, true, true, 'foot'],
  58. // geese (goose)
  59. ['eseeg', 5, true, true, 'goose'],
  60. // teeth (tooth)
  61. ['hteet', 5, true, true, 'tooth'],
  62. // news (news)
  63. ['swen', 4, true, true, 'news'],
  64. // series (series)
  65. ['seires', 6, true, true, 'series'],
  66. // babies (baby)
  67. ['sei', 3, false, true, 'y'],
  68. // accesses (access), addresses (address), kisses (kiss)
  69. ['sess', 4, true, false, 'ss'],
  70. // statuses (status)
  71. ['sesutats', 8, true, true, 'status'],
  72. // analyses (analysis), ellipses (ellipsis), fungi (fungus),
  73. // neuroses (neurosis), theses (thesis), emphases (emphasis),
  74. // oases (oasis), crises (crisis), houses (house), bases (base),
  75. // atlases (atlas)
  76. ['ses', 3, true, true, ['s', 'se', 'sis']],
  77. // objectives (objective), alternative (alternatives)
  78. ['sevit', 5, true, true, 'tive'],
  79. // drives (drive)
  80. ['sevird', 6, false, true, 'drive'],
  81. // lives (life), wives (wife)
  82. ['sevi', 4, false, true, 'ife'],
  83. // moves (move)
  84. ['sevom', 5, true, true, 'move'],
  85. // hooves (hoof), dwarves (dwarf), elves (elf), leaves (leaf), caves (cave), staves (staff)
  86. ['sev', 3, true, true, ['f', 've', 'ff']],
  87. // axes (axis), axes (ax), axes (axe)
  88. ['sexa', 4, false, false, ['ax', 'axe', 'axis']],
  89. // indexes (index), matrixes (matrix)
  90. ['sex', 3, true, false, 'x'],
  91. // quizzes (quiz)
  92. ['sezz', 4, true, false, 'z'],
  93. // bureaus (bureau)
  94. ['suae', 4, false, true, 'eau'],
  95. // fees (fee), trees (tree), employees (employee)
  96. ['see', 3, true, true, 'ee'],
  97. // edges (edge)
  98. ['segd', 4, true, true, 'dge'],
  99. // roses (rose), garages (garage), cassettes (cassette),
  100. // waltzes (waltz), heroes (hero), bushes (bush), arches (arch),
  101. // shoes (shoe)
  102. ['se', 2, true, true, ['', 'e']],
  103. // status (status)
  104. ['sutats', 6, true, true, 'status'],
  105. // tags (tag)
  106. ['s', 1, true, true, ''],
  107. // chateaux (chateau)
  108. ['xuae', 4, false, true, 'eau'],
  109. // people (person)
  110. ['elpoep', 6, true, true, 'person'],
  111. ];
  112. /**
  113. * Map English singular to plural suffixes.
  114. *
  115. * @see http://english-zone.com/spelling/plurals.html
  116. */
  117. private const SINGULAR_MAP = [
  118. // First entry: singular suffix, reversed
  119. // Second entry: length of singular suffix
  120. // Third entry: Whether the suffix may succeed a vowel
  121. // Fourth entry: Whether the suffix may succeed a consonant
  122. // Fifth entry: plural suffix, normal
  123. // axes (axis)
  124. ['sixa', 4, false, false, 'axes'],
  125. // criterion (criteria)
  126. ['airetirc', 8, false, false, 'criterion'],
  127. // nebulae (nebula)
  128. ['aluben', 6, false, false, 'nebulae'],
  129. // children (child)
  130. ['dlihc', 5, true, true, 'children'],
  131. // prices (price)
  132. ['eci', 3, false, true, 'ices'],
  133. // services (service)
  134. ['ecivres', 7, true, true, 'services'],
  135. // lives (life), wives (wife)
  136. ['efi', 3, false, true, 'ives'],
  137. // selfies (selfie)
  138. ['eifles', 6, true, true, 'selfies'],
  139. // movies (movie)
  140. ['eivom', 5, true, true, 'movies'],
  141. // lice (louse)
  142. ['esuol', 5, false, true, 'lice'],
  143. // mice (mouse)
  144. ['esuom', 5, false, true, 'mice'],
  145. // geese (goose)
  146. ['esoo', 4, false, true, 'eese'],
  147. // houses (house), bases (base)
  148. ['es', 2, true, true, 'ses'],
  149. // geese (goose)
  150. ['esoog', 5, true, true, 'geese'],
  151. // caves (cave)
  152. ['ev', 2, true, true, 'ves'],
  153. // drives (drive)
  154. ['evird', 5, false, true, 'drives'],
  155. // objectives (objective), alternative (alternatives)
  156. ['evit', 4, true, true, 'tives'],
  157. // moves (move)
  158. ['evom', 4, true, true, 'moves'],
  159. // staves (staff)
  160. ['ffats', 5, true, true, 'staves'],
  161. // hooves (hoof), dwarves (dwarf), elves (elf), leaves (leaf)
  162. ['ff', 2, true, true, 'ffs'],
  163. // hooves (hoof), dwarves (dwarf), elves (elf), leaves (leaf)
  164. ['f', 1, true, true, ['fs', 'ves']],
  165. // arches (arch)
  166. ['hc', 2, true, true, 'ches'],
  167. // bushes (bush)
  168. ['hs', 2, true, true, 'shes'],
  169. // teeth (tooth)
  170. ['htoot', 5, true, true, 'teeth'],
  171. // bacteria (bacterium), criteria (criterion), phenomena (phenomenon)
  172. ['mu', 2, true, true, 'a'],
  173. // men (man), women (woman)
  174. ['nam', 3, true, true, 'men'],
  175. // people (person)
  176. ['nosrep', 6, true, true, ['persons', 'people']],
  177. // bacteria (bacterium), criteria (criterion), phenomena (phenomenon)
  178. ['noi', 3, true, true, 'ions'],
  179. // coupon (coupons)
  180. ['nop', 3, true, true, 'pons'],
  181. // seasons (season), treasons (treason), poisons (poison), lessons (lesson)
  182. ['nos', 3, true, true, 'sons'],
  183. // icons (icon)
  184. ['noc', 3, true, true, 'cons'],
  185. // bacteria (bacterium), criteria (criterion), phenomena (phenomenon)
  186. ['no', 2, true, true, 'a'],
  187. // echoes (echo)
  188. ['ohce', 4, true, true, 'echoes'],
  189. // heroes (hero)
  190. ['oreh', 4, true, true, 'heroes'],
  191. // atlases (atlas)
  192. ['salta', 5, true, true, 'atlases'],
  193. // irises (iris)
  194. ['siri', 4, true, true, 'irises'],
  195. // analyses (analysis), ellipses (ellipsis), neuroses (neurosis)
  196. // theses (thesis), emphases (emphasis), oases (oasis),
  197. // crises (crisis)
  198. ['sis', 3, true, true, 'ses'],
  199. // accesses (access), addresses (address), kisses (kiss)
  200. ['ss', 2, true, false, 'sses'],
  201. // syllabi (syllabus)
  202. ['suballys', 8, true, true, 'syllabi'],
  203. // buses (bus)
  204. ['sub', 3, true, true, 'buses'],
  205. // circuses (circus)
  206. ['suc', 3, true, true, 'cuses'],
  207. // hippocampi (hippocampus)
  208. ['supmacoppih', 11, false, false, 'hippocampi'],
  209. // campuses (campus)
  210. ['sup', 3, true, true, 'puses'],
  211. // status (status)
  212. ['sutats', 6, true, true, ['status', 'statuses']],
  213. // conspectuses (conspectus), prospectuses (prospectus)
  214. ['sutcep', 6, true, true, 'pectuses'],
  215. // fungi (fungus), alumni (alumnus), syllabi (syllabus), radii (radius)
  216. ['su', 2, true, true, 'i'],
  217. // news (news)
  218. ['swen', 4, true, true, 'news'],
  219. // feet (foot)
  220. ['toof', 4, true, true, 'feet'],
  221. // chateaux (chateau), bureaus (bureau)
  222. ['uae', 3, false, true, ['eaus', 'eaux']],
  223. // oxen (ox)
  224. ['xo', 2, false, false, 'oxen'],
  225. // hoaxes (hoax)
  226. ['xaoh', 4, true, false, 'hoaxes'],
  227. // indices (index)
  228. ['xedni', 5, false, true, ['indicies', 'indexes']],
  229. // boxes (box)
  230. ['xo', 2, false, true, 'oxes'],
  231. // indexes (index), matrixes (matrix)
  232. ['x', 1, true, false, ['cies', 'xes']],
  233. // appendices (appendix)
  234. ['xi', 2, false, true, 'ices'],
  235. // babies (baby)
  236. ['y', 1, false, true, 'ies'],
  237. // quizzes (quiz)
  238. ['ziuq', 4, true, false, 'quizzes'],
  239. // waltzes (waltz)
  240. ['z', 1, true, true, 'zes'],
  241. ];
  242. /**
  243. * A list of words which should not be inflected, reversed.
  244. */
  245. private const UNINFLECTED = [
  246. '',
  247. // data
  248. 'atad',
  249. // deer
  250. 'reed',
  251. // equipment
  252. 'tnempiuqe',
  253. // feedback
  254. 'kcabdeef',
  255. // fish
  256. 'hsif',
  257. // health
  258. 'htlaeh',
  259. // history
  260. 'yrotsih',
  261. // info
  262. 'ofni',
  263. // information
  264. 'noitamrofni',
  265. // money
  266. 'yenom',
  267. // moose
  268. 'esoom',
  269. // series
  270. 'seires',
  271. // sheep
  272. 'peehs',
  273. // species
  274. 'seiceps',
  275. // traffic
  276. 'ciffart',
  277. // aircraft
  278. 'tfarcria',
  279. ];
  280. /**
  281. * {@inheritdoc}
  282. */
  283. public function singularize(string $plural): array
  284. {
  285. $pluralRev = strrev($plural);
  286. $lowerPluralRev = strtolower($pluralRev);
  287. $pluralLength = \strlen($lowerPluralRev);
  288. // Check if the word is one which is not inflected, return early if so
  289. if (\in_array($lowerPluralRev, self::UNINFLECTED, true)) {
  290. return [$plural];
  291. }
  292. // The outer loop iterates over the entries of the plural table
  293. // The inner loop $j iterates over the characters of the plural suffix
  294. // in the plural table to compare them with the characters of the actual
  295. // given plural suffix
  296. foreach (self::PLURAL_MAP as $map) {
  297. $suffix = $map[0];
  298. $suffixLength = $map[1];
  299. $j = 0;
  300. // Compare characters in the plural table and of the suffix of the
  301. // given plural one by one
  302. while ($suffix[$j] === $lowerPluralRev[$j]) {
  303. // Let $j point to the next character
  304. ++$j;
  305. // Successfully compared the last character
  306. // Add an entry with the singular suffix to the singular array
  307. if ($j === $suffixLength) {
  308. // Is there any character preceding the suffix in the plural string?
  309. if ($j < $pluralLength) {
  310. $nextIsVowel = false !== strpos('aeiou', $lowerPluralRev[$j]);
  311. if (!$map[2] && $nextIsVowel) {
  312. // suffix may not succeed a vowel but next char is one
  313. break;
  314. }
  315. if (!$map[3] && !$nextIsVowel) {
  316. // suffix may not succeed a consonant but next char is one
  317. break;
  318. }
  319. }
  320. $newBase = substr($plural, 0, $pluralLength - $suffixLength);
  321. $newSuffix = $map[4];
  322. // Check whether the first character in the plural suffix
  323. // is uppercased. If yes, uppercase the first character in
  324. // the singular suffix too
  325. $firstUpper = ctype_upper($pluralRev[$j - 1]);
  326. if (\is_array($newSuffix)) {
  327. $singulars = [];
  328. foreach ($newSuffix as $newSuffixEntry) {
  329. $singulars[] = $newBase.($firstUpper ? ucfirst($newSuffixEntry) : $newSuffixEntry);
  330. }
  331. return $singulars;
  332. }
  333. return [$newBase.($firstUpper ? ucfirst($newSuffix) : $newSuffix)];
  334. }
  335. // Suffix is longer than word
  336. if ($j === $pluralLength) {
  337. break;
  338. }
  339. }
  340. }
  341. // Assume that plural and singular is identical
  342. return [$plural];
  343. }
  344. /**
  345. * {@inheritdoc}
  346. */
  347. public function pluralize(string $singular): array
  348. {
  349. $singularRev = strrev($singular);
  350. $lowerSingularRev = strtolower($singularRev);
  351. $singularLength = \strlen($lowerSingularRev);
  352. // Check if the word is one which is not inflected, return early if so
  353. if (\in_array($lowerSingularRev, self::UNINFLECTED, true)) {
  354. return [$singular];
  355. }
  356. // The outer loop iterates over the entries of the singular table
  357. // The inner loop $j iterates over the characters of the singular suffix
  358. // in the singular table to compare them with the characters of the actual
  359. // given singular suffix
  360. foreach (self::SINGULAR_MAP as $map) {
  361. $suffix = $map[0];
  362. $suffixLength = $map[1];
  363. $j = 0;
  364. // Compare characters in the singular table and of the suffix of the
  365. // given plural one by one
  366. while ($suffix[$j] === $lowerSingularRev[$j]) {
  367. // Let $j point to the next character
  368. ++$j;
  369. // Successfully compared the last character
  370. // Add an entry with the plural suffix to the plural array
  371. if ($j === $suffixLength) {
  372. // Is there any character preceding the suffix in the plural string?
  373. if ($j < $singularLength) {
  374. $nextIsVowel = false !== strpos('aeiou', $lowerSingularRev[$j]);
  375. if (!$map[2] && $nextIsVowel) {
  376. // suffix may not succeed a vowel but next char is one
  377. break;
  378. }
  379. if (!$map[3] && !$nextIsVowel) {
  380. // suffix may not succeed a consonant but next char is one
  381. break;
  382. }
  383. }
  384. $newBase = substr($singular, 0, $singularLength - $suffixLength);
  385. $newSuffix = $map[4];
  386. // Check whether the first character in the singular suffix
  387. // is uppercased. If yes, uppercase the first character in
  388. // the singular suffix too
  389. $firstUpper = ctype_upper($singularRev[$j - 1]);
  390. if (\is_array($newSuffix)) {
  391. $plurals = [];
  392. foreach ($newSuffix as $newSuffixEntry) {
  393. $plurals[] = $newBase.($firstUpper ? ucfirst($newSuffixEntry) : $newSuffixEntry);
  394. }
  395. return $plurals;
  396. }
  397. return [$newBase.($firstUpper ? ucfirst($newSuffix) : $newSuffix)];
  398. }
  399. // Suffix is longer than word
  400. if ($j === $singularLength) {
  401. break;
  402. }
  403. }
  404. }
  405. // Assume that plural is singular with a trailing `s`
  406. return [$singular.'s'];
  407. }
  408. }