2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / class / System.Data.Linq / src / DbLinq / Language / Implementation / AbstractEndPluralWords.cs
1 #region MIT license\r
2 // \r
3 // MIT license\r
4 //\r
5 // Copyright (c) 2007-2008 Jiri Moudry, Pascal Craponne\r
6 // \r
7 // Permission is hereby granted, free of charge, to any person obtaining a copy\r
8 // of this software and associated documentation files (the "Software"), to deal\r
9 // in the Software without restriction, including without limitation the rights\r
10 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
11 // copies of the Software, and to permit persons to whom the Software is\r
12 // furnished to do so, subject to the following conditions:\r
13 // \r
14 // The above copyright notice and this permission notice shall be included in\r
15 // all copies or substantial portions of the Software.\r
16 // \r
17 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
18 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
19 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
20 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
21 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
22 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
23 // THE SOFTWARE.\r
24 // \r
25 #endregion\r
26 \r
27 namespace DbLinq.Language.Implementation\r
28 {\r
29     /// <summary>\r
30     /// Words with singular/plural capacity, changed in the end\r
31     /// </summary>\r
32 #if MONO_STRICT\r
33     internal\r
34 #else\r
35     public\r
36 #endif\r
37     abstract class AbstractEndPluralWords : AbstractWords\r
38     {\r
39         /// <summary>\r
40         /// Corresponding singular and plural endings\r
41         /// </summary>\r
42         protected class SingularPlural\r
43         {\r
44             /// <summary>\r
45             /// Singular ending\r
46             /// </summary>\r
47             public string Singular;\r
48             /// <summary>\r
49             /// Plural ending\r
50             /// </summary>\r
51             public string Plural;\r
52         }\r
53 \r
54         /// <summary>\r
55         /// Singulars and plurals ends\r
56         /// </summary>\r
57         /// <value>The singulars plurals.</value>\r
58         protected abstract SingularPlural[] SingularsPlurals { get; }\r
59 \r
60         /// <summary>\r
61         /// using English heuristics, convert 'dogs' to 'dog',\r
62         /// 'categories' to 'category',\r
63         /// 'cat' remains unchanged.\r
64         /// </summary>\r
65         protected override string ComputeSingular(string plural)\r
66         {\r
67             if (plural.Length < 2)\r
68                 return plural;\r
69 \r
70             // we run on every possible singular/plural\r
71             foreach (SingularPlural sp in SingularsPlurals)\r
72             {\r
73                 string newWord = Try(plural, sp.Plural, sp.Singular);\r
74                 if (newWord != null)\r
75                     return newWord;\r
76             }\r
77 \r
78             return plural;\r
79         }\r
80 \r
81         /// <summary>\r
82         /// using English heuristics, convert 'dog' to 'dogs',\r
83         /// 'bass' remains unchanged.\r
84         /// </summary>\r
85         protected override string ComputePlural(string singular)\r
86         {\r
87             if (singular.Length < 2)\r
88                 return singular;\r
89 \r
90             foreach (SingularPlural sp in SingularsPlurals)\r
91             {\r
92                 string newWord = Try(singular, sp.Singular, sp.Plural);\r
93                 if (newWord != null)\r
94                     return newWord;\r
95             }\r
96 \r
97             return singular;\r
98         }\r
99 \r
100         /// <summary>\r
101         /// Tries the specified word for singular/plural.\r
102         /// </summary>\r
103         /// <param name="word">The word.</param>\r
104         /// <param name="ending">The ending.</param>\r
105         /// <param name="newEnding">The new ending.</param>\r
106         /// <returns></returns>\r
107         protected string Try(string word, string ending, string newEnding)\r
108         {\r
109             // if the word ends with tested end\r
110             if (word.ToLower().EndsWith(ending))\r
111             {\r
112                 // then substitute old end by new end ...\r
113                 string newWord = word.Substring(0, word.Length - ending.Length) + newEnding;\r
114                 // ... and if the word exists, we have the right one\r
115                 if (Exists(newWord))\r
116                     return newWord;\r
117             }\r
118             return null;\r
119         }\r
120     }\r
121 }