Entry.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. //
  2. // Entry.cs
  3. //
  4. // Authors:
  5. // Marek Safar <[email protected]>
  6. //
  7. // Copyright (C) 2012 Xamarin Inc (http://www.xamarin.com)
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining
  10. // a copy of this software and associated documentation files (the
  11. // "Software"), to deal in the Software without restriction, including
  12. // without limitation the rights to use, copy, modify, merge, publish,
  13. // distribute, sublicense, and/or sell copies of the Software, and to
  14. // permit persons to whom the Software is furnished to do so, subject to
  15. // the following conditions:
  16. //
  17. // The above copyright notice and this permission notice shall be
  18. // included in all copies or substantial portions of the Software.
  19. //
  20. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  21. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  24. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  25. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. //
  28. using System;
  29. using System.Text;
  30. using System.Collections.Generic;
  31. namespace Mono.Tools.LocaleBuilder
  32. {
  33. public class Entry
  34. {
  35. public static readonly Mapping General = new Mapping ();
  36. public static readonly Mapping Patterns = new Mapping ();
  37. public static readonly Mapping DateTimeStrings = new Mapping ();
  38. public class Mapping
  39. {
  40. // maps strings to indexes
  41. Dictionary<string, int> hash = new Dictionary<string, int> ();
  42. List<string> string_order = new List<string> ();
  43. // idx 0 is reserved to indicate null
  44. int curpos = 1;
  45. // serialize the strings in Hashtable.
  46. public string GetStrings ()
  47. {
  48. Console.WriteLine ("Total string data size: {0}", curpos);
  49. if (curpos > UInt16.MaxValue)
  50. throw new Exception ("need to increase idx size in culture-info.h");
  51. StringBuilder ret = new StringBuilder ();
  52. // the null entry
  53. ret.Append ("\t\"\\0\"\n");
  54. foreach (string s in string_order) {
  55. ret.Append ("\t\"");
  56. ret.Append (s);
  57. ret.Append ("\\0\"\n");
  58. }
  59. return ret.ToString ();
  60. }
  61. public int AddString (string s, int size)
  62. {
  63. if (!hash.ContainsKey (s)) {
  64. int ret;
  65. string_order.Add (s);
  66. ret = curpos;
  67. hash.Add (s, curpos);
  68. curpos += size + 1; // null terminator
  69. return ret;
  70. }
  71. return hash[s];
  72. }
  73. }
  74. protected static StringBuilder AppendNames (StringBuilder builder, IList<string> names)
  75. {
  76. builder.Append ('{');
  77. for (int i = 0; i < names.Count; i++) {
  78. if (i > 0)
  79. builder.Append (", ");
  80. builder.Append (Encode (DateTimeStrings, names[i]));
  81. }
  82. builder.Append ("}");
  83. return builder;
  84. }
  85. public static string EncodeStringIdx (string str)
  86. {
  87. return Encode (General, str);
  88. }
  89. protected static string EncodePatternStringIdx (string str)
  90. {
  91. return Encode (Patterns, str);
  92. }
  93. static string Encode (Mapping mapping, string str)
  94. {
  95. if (str == null)
  96. return "0";
  97. StringBuilder ret = new StringBuilder ();
  98. byte[] ba = new UTF8Encoding ().GetBytes (str);
  99. bool in_hex = false;
  100. foreach (byte b in ba) {
  101. if (b > 127 || (in_hex && is_hex (b))) {
  102. ret.AppendFormat ("\\x{0:x}", b);
  103. in_hex = true;
  104. } else {
  105. if (b == '\\')
  106. ret.Append ('\\');
  107. ret.Append ((char) b);
  108. in_hex = false;
  109. }
  110. }
  111. int res = mapping.AddString (ret.ToString (), ba.Length);
  112. return res.ToString ();
  113. }
  114. static bool is_hex (int e)
  115. {
  116. return (e >= '0' && e <= '9') || (e >= 'A' && e <= 'F') || (e >= 'a' && e <= 'f');
  117. }
  118. }
  119. }