Operator.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. using CommonLang.Property;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace CommonLang.Formula
  6. {
  7. public enum NumericComparisonOP
  8. {
  9. EQUAL,
  10. NOT_EQUAL,
  11. LESS_THAN,
  12. LESS_THAN_OR_EQUAL,
  13. GREATER_THAN,
  14. GREATER_THAN_OR_EQUAL,
  15. }
  16. public enum ObjectComparisonOP
  17. {
  18. EQUAL,
  19. NOT_EQUAL,
  20. }
  21. public enum BooleanOP
  22. {
  23. EQUAL,
  24. NOT_EQUAL,
  25. AND,
  26. OR,
  27. XOR,
  28. }
  29. public enum NumericOP
  30. {
  31. [DescAttribute("加")]
  32. ADD,
  33. [DescAttribute("减")]
  34. SUB,
  35. [DescAttribute("乘")]
  36. MUL,
  37. [DescAttribute("除")]
  38. DIV,
  39. [DescAttribute("求余")]
  40. MOD,
  41. }
  42. public static class FormulaHelper
  43. {
  44. public static bool Compare<T>(T a, NumericComparisonOP op, T b) where T : IComparable
  45. {
  46. int d = a.CompareTo(b) ;
  47. switch (op)
  48. {
  49. case NumericComparisonOP.EQUAL:
  50. return d == 0;
  51. case NumericComparisonOP.NOT_EQUAL:
  52. return d != 0;
  53. case NumericComparisonOP.LESS_THAN:
  54. return d < 0;
  55. case NumericComparisonOP.LESS_THAN_OR_EQUAL:
  56. return d <= 0;
  57. case NumericComparisonOP.GREATER_THAN:
  58. return d > 0;
  59. case NumericComparisonOP.GREATER_THAN_OR_EQUAL:
  60. return d >= 0;
  61. }
  62. throw new Exception("NumericComparisonOP未识别的操作数: " + op);
  63. }
  64. public static bool Compare(object a, ObjectComparisonOP op, object b)
  65. {
  66. if (a != null)
  67. {
  68. switch (op)
  69. {
  70. case ObjectComparisonOP.EQUAL:
  71. return a.Equals(b);
  72. case ObjectComparisonOP.NOT_EQUAL:
  73. return !a.Equals(b);
  74. }
  75. }
  76. else
  77. {
  78. return a == b;
  79. }
  80. throw new Exception("ObjectComparisonOP未识别的操作数: " + op);
  81. }
  82. public static bool Calculate(bool a, BooleanOP op, bool b)
  83. {
  84. switch (op)
  85. {
  86. case BooleanOP.EQUAL:
  87. return a == b;
  88. case BooleanOP.NOT_EQUAL:
  89. return a != b;
  90. case BooleanOP.AND:
  91. return a && b;
  92. case BooleanOP.OR:
  93. return a || b;
  94. case BooleanOP.XOR:
  95. return a ^ b;
  96. }
  97. throw new Exception("BooleanOP未识别的操作数: " + op);
  98. }
  99. public static int Calculate(int a, NumericOP op, int b)
  100. {
  101. switch (op)
  102. {
  103. case NumericOP.ADD:
  104. return a + b;
  105. case NumericOP.SUB:
  106. return a - b;
  107. case NumericOP.MUL:
  108. return a * b;
  109. case NumericOP.DIV:
  110. return a / b;
  111. case NumericOP.MOD:
  112. return a % b;
  113. }
  114. throw new Exception("NumericOP未识别的操作数: " + op);
  115. }
  116. public static float Calculate(float a, NumericOP op, float b)
  117. {
  118. switch (op)
  119. {
  120. case NumericOP.ADD:
  121. return a + b;
  122. case NumericOP.SUB:
  123. return a - b;
  124. case NumericOP.MUL:
  125. return a * b;
  126. case NumericOP.DIV:
  127. return a / b;
  128. case NumericOP.MOD:
  129. return a % b;
  130. }
  131. throw new Exception("NumericOP未识别的操作数: " + op);
  132. }
  133. public static string ToString(NumericComparisonOP op)
  134. {
  135. switch (op)
  136. {
  137. case NumericComparisonOP.EQUAL:
  138. return "等于";
  139. case NumericComparisonOP.NOT_EQUAL:
  140. return "不等于";
  141. case NumericComparisonOP.LESS_THAN:
  142. return "小于";
  143. case NumericComparisonOP.LESS_THAN_OR_EQUAL:
  144. return "小于或等于";
  145. case NumericComparisonOP.GREATER_THAN:
  146. return "大于";
  147. case NumericComparisonOP.GREATER_THAN_OR_EQUAL:
  148. return "大于或等于";
  149. }
  150. return " nop ";
  151. }
  152. public static string ToString(ObjectComparisonOP op)
  153. {
  154. switch (op)
  155. {
  156. case ObjectComparisonOP.EQUAL:
  157. return "等于";
  158. case ObjectComparisonOP.NOT_EQUAL:
  159. return "不等于";
  160. }
  161. return " nop ";
  162. }
  163. public static string ToString(BooleanOP op)
  164. {
  165. switch (op)
  166. {
  167. case BooleanOP.EQUAL:
  168. return "等于";
  169. case BooleanOP.NOT_EQUAL:
  170. return "不等于";
  171. case BooleanOP.AND:
  172. return "并且";
  173. case BooleanOP.OR:
  174. return "或者";
  175. case BooleanOP.XOR:
  176. return "异或";
  177. }
  178. return " nop ";
  179. }
  180. public static string ToString(NumericOP op)
  181. {
  182. switch (op)
  183. {
  184. case NumericOP.ADD:
  185. return "+";
  186. case NumericOP.SUB:
  187. return "-";
  188. case NumericOP.MUL:
  189. return "*";
  190. case NumericOP.DIV:
  191. return "/";
  192. case NumericOP.MOD:
  193. return "%";
  194. }
  195. return " nop ";
  196. }
  197. }
  198. }