2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[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     public\r
34 #endif\r
35     abstract class AbstractEndPluralWords : AbstractWords\r
36     {\r
37         /// <summary>\r
38         /// Corresponding singular and plural endings\r
39         /// </summary>\r
40         protected class SingularPlural\r
41         {\r
42             /// <summary>\r
43             /// Singular ending\r
44             /// </summary>\r
45             public string Singular;\r
46             /// <summary>\r
47             /// Plural ending\r
48             /// </summary>\r
49             public string Plural;\r
50         }\r
51 \r
52         /// <summary>\r
53         /// Singulars and plurals ends\r
54         /// </summary>\r
55         /// <value>The singulars plurals.</value>\r
56         protected abstract SingularPlural[] SingularsPlurals { get; }\r
57 \r
58         /// <summary>\r
59         /// using English heuristics, convert 'dogs' to 'dog',\r
60         /// 'categories' to 'category',\r
61         /// 'cat' remains unchanged.\r
62         /// </summary>\r
63         protected override string ComputeSingular(string plural)\r
64         {\r
65             if (plural.Length < 2)\r
66                 return plural;\r
67 \r
68             // we run on every possible singular/plural\r
69             foreach (SingularPlural sp in SingularsPlurals)\r
70             {\r
71                 string newWord = Try(plural, sp.Plural, sp.Singular);\r
72                 if (newWord != null)\r
73                     return newWord;\r
74             }\r
75 \r
76             return plural;\r
77         }\r
78 \r
79         /// <summary>\r
80         /// using English heuristics, convert 'dog' to 'dogs',\r
81         /// 'bass' remains unchanged.\r
82         /// </summary>\r
83         protected override string ComputePlural(string singular)\r
84         {\r
85             if (singular.Length < 2)\r
86                 return singular;\r
87 \r
88             foreach (SingularPlural sp in SingularsPlurals)\r
89             {\r
90                 string newWord = Try(singular, sp.Singular, sp.Plural);\r
91                 if (newWord != null)\r
92                     return newWord;\r
93             }\r
94 \r
95             return singular;\r
96         }\r
97 \r
98         /// <summary>\r
99         /// Tries the specified word for singular/plural.\r
100         /// </summary>\r
101         /// <param name="word">The word.</param>\r
102         /// <param name="ending">The ending.</param>\r
103         /// <param name="newEnding">The new ending.</param>\r
104         /// <returns></returns>\r
105         protected string Try(string word, string ending, string newEnding)\r
106         {\r
107             // if the word ends with tested end\r
108             if (word.ToLower().EndsWith(ending))\r
109             {\r
110                 // then substitute old end by new end ...\r
111                 string newWord = word.Substring(0, word.Length - ending.Length) + newEnding;\r
112                 // ... and if the word exists, we have the right one\r
113                 if (Exists(newWord))\r
114                     return newWord;\r
115             }\r
116             return null;\r
117         }\r
118     }\r
119 }