1 | #region Copyright notice and license
|
---|
2 |
|
---|
3 | // Protocol Buffers - Google's data interchange format
|
---|
4 | // Copyright 2008 Google Inc. All rights reserved.
|
---|
5 | // http://github.com/jskeet/dotnet-protobufs/
|
---|
6 | // Original C++/Java/Python code:
|
---|
7 | // http://code.google.com/p/protobuf/
|
---|
8 | //
|
---|
9 | // Redistribution and use in source and binary forms, with or without
|
---|
10 | // modification, are permitted provided that the following conditions are
|
---|
11 | // met:
|
---|
12 | //
|
---|
13 | // * Redistributions of source code must retain the above copyright
|
---|
14 | // notice, this list of conditions and the following disclaimer.
|
---|
15 | // * Redistributions in binary form must reproduce the above
|
---|
16 | // copyright notice, this list of conditions and the following disclaimer
|
---|
17 | // in the documentation and/or other materials provided with the
|
---|
18 | // distribution.
|
---|
19 | // * Neither the name of Google Inc. nor the names of its
|
---|
20 | // contributors may be used to endorse or promote products derived from
|
---|
21 | // this software without specific prior written permission.
|
---|
22 | //
|
---|
23 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
24 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
25 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
26 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
---|
27 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
---|
28 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
---|
29 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
30 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
31 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
32 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
---|
33 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
34 |
|
---|
35 | #endregion
|
---|
36 |
|
---|
37 | using System;
|
---|
38 | using System.Text.RegularExpressions;
|
---|
39 |
|
---|
40 | namespace Google.ProtocolBuffers
|
---|
41 | {
|
---|
42 | /// <summary>
|
---|
43 | /// Helpers for converting names to pascal case etc.
|
---|
44 | /// </summary>
|
---|
45 | public class NameHelpers
|
---|
46 | {
|
---|
47 | /// <summary>
|
---|
48 | /// All characters that are not alpha-numeric
|
---|
49 | /// </summary>
|
---|
50 | private static readonly Regex NonAlphaNumericCharacters = new Regex(@"[^a-zA-Z0-9]+");
|
---|
51 |
|
---|
52 | /// <summary>
|
---|
53 | /// Matches lower-case character that follow either an underscore, or a number
|
---|
54 | /// </summary>
|
---|
55 | private static readonly Regex UnderscoreOrNumberWithLowerCase = new Regex(@"[0-9_][a-z]");
|
---|
56 |
|
---|
57 | /// <summary>
|
---|
58 | /// Removes non alpha numeric characters while capitalizing letters that follow
|
---|
59 | /// a number or underscore. The first letter is always upper case.
|
---|
60 | /// </summary>
|
---|
61 | public static string UnderscoresToPascalCase(string input)
|
---|
62 | {
|
---|
63 | string name = UnderscoresToUpperCase(input);
|
---|
64 |
|
---|
65 | // Pascal case always begins with upper-case letter
|
---|
66 | if (Char.IsLower(name[0]))
|
---|
67 | {
|
---|
68 | char[] chars = name.ToCharArray();
|
---|
69 | chars[0] = char.ToUpper(chars[0]);
|
---|
70 | return new string(chars);
|
---|
71 | }
|
---|
72 | return name;
|
---|
73 | }
|
---|
74 |
|
---|
75 | /// <summary>
|
---|
76 | /// Removes non alpha numeric characters while capitalizing letters that follow
|
---|
77 | /// a number or underscore. The first letter is always lower case.
|
---|
78 | /// </summary>
|
---|
79 | public static string UnderscoresToCamelCase(string input)
|
---|
80 | {
|
---|
81 | string name = UnderscoresToUpperCase(input);
|
---|
82 |
|
---|
83 | // Camel case always begins with lower-case letter
|
---|
84 | if (Char.IsUpper(name[0]))
|
---|
85 | {
|
---|
86 | char[] chars = name.ToCharArray();
|
---|
87 | chars[0] = char.ToLower(chars[0]);
|
---|
88 | return new string(chars);
|
---|
89 | }
|
---|
90 | return name;
|
---|
91 | }
|
---|
92 |
|
---|
93 | /// <summary>
|
---|
94 | /// Capitalizes any characters following an '_' or a number '0' - '9' and removes
|
---|
95 | /// all non alpha-numeric characters. If the resulting string begins with a number
|
---|
96 | /// an '_' will be prefixed.
|
---|
97 | /// </summary>
|
---|
98 | private static string UnderscoresToUpperCase(string input)
|
---|
99 | {
|
---|
100 | string name = UnderscoreOrNumberWithLowerCase.Replace(input, x => x.Value.ToUpper());
|
---|
101 | name = NonAlphaNumericCharacters.Replace(name, String.Empty);
|
---|
102 |
|
---|
103 | if (name.Length == 0)
|
---|
104 | {
|
---|
105 | throw new ArgumentException(String.Format("The field name '{0}' is invalid.", input));
|
---|
106 | }
|
---|
107 |
|
---|
108 | // Fields can not start with a number
|
---|
109 | if (Char.IsNumber(name[0]))
|
---|
110 | {
|
---|
111 | name = '_' + name;
|
---|
112 | }
|
---|
113 |
|
---|
114 | return name;
|
---|
115 | }
|
---|
116 |
|
---|
117 | internal static string StripProto(string text)
|
---|
118 | {
|
---|
119 | if (!StripSuffix(ref text, ".protodevel"))
|
---|
120 | {
|
---|
121 | StripSuffix(ref text, ".proto");
|
---|
122 | }
|
---|
123 | return text;
|
---|
124 | }
|
---|
125 |
|
---|
126 | /// <summary>
|
---|
127 | /// Attempts to strip a suffix from a string, returning whether
|
---|
128 | /// or not the suffix was actually present.
|
---|
129 | /// </summary>
|
---|
130 | public static bool StripSuffix(ref string text, string suffix)
|
---|
131 | {
|
---|
132 | if (text.EndsWith(suffix))
|
---|
133 | {
|
---|
134 | text = text.Substring(0, text.Length - suffix.Length);
|
---|
135 | return true;
|
---|
136 | }
|
---|
137 | return false;
|
---|
138 | }
|
---|
139 | }
|
---|
140 | } |
---|