-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathPluralizer.fs
More file actions
290 lines (256 loc) · 9.5 KB
/
Pluralizer.fs
File metadata and controls
290 lines (256 loc) · 9.5 KB
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
// --------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// This source code is subject to terms and conditions of the Microsoft Permissive
// License (MS-PL). A copy of the license can be found in the license.htm file
// included in this distribution.
//
// You must not remove this notice, or any other, from this software.
//
// --------------------------------------------------------------------------------------
module internal FSharp.Data.Runtime.Pluralizer
open System
open System.Collections.Generic
// Pluralization service for nice 'NameUtils.fs' based on C# code from
// http://blogs.msdn.com/b/dmitryr/archive/2007/01/11/simple-english-noun-pluralizer-in-c.aspx
// (with a couple of more rules were added)
type private SuffixRule =
{ SingularSuffix: string
PluralSuffix: string }
let private tables =
lazy
(
let suffixRules =
[ "ch", "ches"
"sh", "shes"
"ss", "sses"
"ay", "ays"
"ey", "eys"
"iy", "iys"
"oy", "oys"
"uy", "uys"
"y", "ies"
"ao", "aos"
"eo", "eos"
"io", "ios"
"oo", "oos"
"uo", "uos"
"o", "oes"
"house", "houses"
"course", "courses"
"cis", "ces"
"us", "uses"
"ase", "ases"
"sis", "ses"
"xis", "xes"
"louse", "lice"
"mouse", "mice"
"zoon", "zoa"
"man", "men"
"deer", "deer"
"fish", "fish"
"sheep", "sheep"
"itis", "itis"
"ois", "ois"
"pox", "pox"
"ox", "oxes"
"foot", "feet"
"goose", "geese"
"tooth", "teeth"
"alf", "alves"
"elf", "elves"
"olf", "olves"
"arf", "arves"
"leaf", "leaves"
"nife", "nives"
"life", "lives"
"wife", "wives" ]
let specialWords =
[ "agendum", "agenda", ""
"aircraft", "", ""
"albino", "albinos", ""
"alga", "algae", ""
"alumna", "alumnae", ""
"alumnus", "alumni", ""
"apex", "apices", "apexes"
"archipelago", "archipelagos", ""
"bacterium", "bacteria", ""
"beef", "beefs", "beeves"
"bison", "", ""
"brother", "brothers", "brethren"
"candelabrum", "candelabra", ""
"carp", "", ""
"casino", "casinos", ""
"child", "children", ""
"chassis", "", ""
"chinese", "", ""
"choice", "choices", ""
"clippers", "", ""
"cod", "", ""
"codex", "codices", ""
"commando", "commandos", ""
"corps", "", ""
"cortex", "cortices", "cortexes"
"cow", "cows", "kine"
"criterion", "criteria", ""
"datum", "data", ""
"debris", "", ""
"diabetes", "", ""
"ditto", "dittos", ""
"djinn", "", ""
"dynamo", "", ""
"elk", "", ""
"embryo", "embryos", ""
"ephemeris", "ephemeris", "ephemerides"
"erratum", "errata", ""
"extremum", "extrema", ""
"fiasco", "fiascos", ""
"fish", "fishes", "fish"
"flounder", "", ""
"focus", "focuses", "foci"
"fungus", "fungi", "funguses"
"gallows", "", ""
"genie", "genies", "genii"
"ghetto", "ghettos", ""
"graffiti", "", ""
"headquarters", "", ""
"herpes", "", ""
"homework", "", ""
"index", "indices", "indexes"
"inferno", "infernos", ""
"japanese", "", ""
"jumbo", "jumbos", ""
"latex", "latices", "latexes"
"lingo", "lingos", ""
"mackerel", "", ""
"macro", "macros", ""
"manifesto", "manifestos", ""
"measles", "", ""
"money", "moneys", "monies"
"mongoose", "mongooses", "mongoose"
"mumps", "", ""
"murex", "murecis", ""
"mythos", "mythos", "mythoi"
"news", "", ""
"octopus", "octopuses", "octopodes"
"ovum", "ova", ""
"ox", "ox", "oxen"
"photo", "photos", ""
"pincers", "", ""
"pliers", "", ""
"pro", "pros", ""
"rabies", "", ""
"radius", "radiuses", "radii"
"release", "releases", ""
"rhino", "rhinos", ""
"salmon", "", ""
"scissors", "", ""
"series", "", ""
"shears", "", ""
"silex", "silices", ""
"simplex", "simplices", "simplexes"
"slice", "slices", ""
"soliloquy", "soliloquies", "soliloquy"
"species", "", ""
"stratum", "strata", ""
"source", "sources", ""
"swine", "", ""
"trout", "", ""
"tuna", "", ""
"vertebra", "vertebrae", ""
"vertex", "vertices", "vertexes"
"vortex", "vortices", "vortexes" ]
let suffixRules =
suffixRules
|> List.map (fun (singular, plural) ->
{ SingularSuffix = singular
PluralSuffix = plural })
let specialSingulars = new Dictionary<_, _>(StringComparer.OrdinalIgnoreCase)
let specialPlurals = new Dictionary<_, _>(StringComparer.OrdinalIgnoreCase)
for singular, plural, plural2 in specialWords do
let plural = if plural = "" then singular else plural
specialPlurals.Add(singular, plural)
specialSingulars.Add(plural, singular)
if plural2 <> "" then
specialSingulars.Add(plural2, singular)
suffixRules, specialSingulars, specialPlurals)
let private adjustCase (s: string) (template: string) =
if String.IsNullOrEmpty s then
s
else
// determine the type of casing of the template string
let mutable foundUpperOrLower = false
let mutable allLower = true
let mutable allUpper = true
let mutable firstUpper = false
for i = 0 to template.Length - 1 do
if Char.IsUpper template.[i] then
if i = 0 then
firstUpper <- true
allLower <- false
foundUpperOrLower <- true
else if Char.IsLower template.[i] then
allUpper <- false
foundUpperOrLower <- true
// change the case according to template
if not foundUpperOrLower then
s
else if allLower then
s.ToLowerInvariant()
else if allUpper then
s.ToUpperInvariant()
else if firstUpper && not <| Char.IsUpper s.[0] then
(Char.ToUpperInvariant s.[0]).ToString() + s.Substring(1)
else
s
let private tryToPlural (word: string) suffixRule =
if word.EndsWith(suffixRule.SingularSuffix, StringComparison.OrdinalIgnoreCase) then
Some
<| word.Substring(0, word.Length - suffixRule.SingularSuffix.Length)
+ suffixRule.PluralSuffix
else
None
let private tryToSingular (word: string) suffixRule =
if word.EndsWith(suffixRule.PluralSuffix, StringComparison.OrdinalIgnoreCase) then
Some
<| word.Substring(0, word.Length - suffixRule.PluralSuffix.Length)
+ suffixRule.SingularSuffix
else
None
let toPlural noun =
if String.IsNullOrEmpty noun then
noun
else
let suffixRules, _, specialPlurals = tables.Value
let plural =
match specialPlurals.TryGetValue noun with
| true, plural -> plural
| false, _ ->
match suffixRules |> Seq.tryPick (tryToPlural noun) with
| Some plural -> plural
| None ->
if noun.EndsWith("s", StringComparison.OrdinalIgnoreCase) then
noun
else
noun + "s"
(plural, noun) ||> adjustCase
let toSingular noun =
if String.IsNullOrEmpty noun then
noun
else
let suffixRules, specialSingulars, _ = tables.Value
let singular =
match specialSingulars.TryGetValue noun with
| true, singular -> singular
| false, _ ->
match suffixRules |> Seq.tryPick (tryToSingular noun) with
| Some singular -> singular
| None ->
if
noun.EndsWith("s", StringComparison.OrdinalIgnoreCase)
&& not <| noun.EndsWith("us", StringComparison.OrdinalIgnoreCase)
then
noun.Substring(0, noun.Length - 1)
else
noun
(singular, noun) ||> adjustCase