CSV.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. using CommonLang.Property;
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Reflection;
  7. using System.Text;
  8. namespace CommonLang.XCSV
  9. {
  10. public class CsvTable
  11. {
  12. public string[][] Cells { get; private set; }
  13. public int MaxRow { get; private set; }
  14. public int MaxColumn { get; private set; }
  15. public void LoadFromText(string csv_text)
  16. {
  17. List<List<string>> lines = new List<List<string>>();
  18. {
  19. StringBuilder sb = new StringBuilder();
  20. List<string> line = new List<string>();
  21. int last_iq = -1;
  22. for (int i = 0; i < csv_text.Length; i++)
  23. {
  24. char c = csv_text[i];
  25. if (c == '\n')
  26. {
  27. line.Add(sb.ToString());
  28. lines.Add(line);
  29. line = new List<string>();
  30. sb = new StringBuilder();
  31. }
  32. else if (c == '"')
  33. {
  34. if (last_iq >= 0)
  35. {
  36. last_iq = -1;
  37. }
  38. else
  39. {
  40. last_iq = i;
  41. }
  42. }
  43. else if (last_iq >= 0)
  44. {
  45. sb.Append(c);
  46. }
  47. else if (c == ',')
  48. {
  49. line.Add(sb.ToString());
  50. sb = new StringBuilder();
  51. }
  52. else
  53. {
  54. sb.Append(c);
  55. }
  56. }
  57. line.Add(sb.ToString());
  58. lines.Add(line);
  59. }
  60. {
  61. this.Cells = new string[lines.Count][];
  62. this.MaxRow = lines.Count;
  63. this.MaxColumn = 0;
  64. for (int r = 0; r < lines.Count; ++r)
  65. {
  66. List<string> line = lines[r];
  67. Cells[r] = new string[line.Count];
  68. MaxColumn = Math.Max(MaxColumn, line.Count);
  69. for (int c = 0; c < line.Count; ++c)
  70. {
  71. Cells[r][c] = line[c].Trim();
  72. }
  73. }
  74. }
  75. }
  76. public string GetCell(int column, int row)
  77. {
  78. if (row >= 0 && row < Cells.Length)
  79. {
  80. if (column >= 0 && column < Cells[row].Length)
  81. {
  82. return Cells[row][column];
  83. }
  84. }
  85. return null;
  86. }
  87. public int GetColumnCount(int row)
  88. {
  89. if (row >= 0 && row < Cells.Length)
  90. {
  91. return Cells[row].Length;
  92. }
  93. return -1;
  94. }
  95. public bool IsEmptyRow(int row)
  96. {
  97. if (row >= 0 && row < Cells.Length)
  98. {
  99. for (int c = 0; c < Cells[row].Length; c++)
  100. {
  101. if (!string.IsNullOrEmpty(Cells[row][c]))
  102. {
  103. return false;
  104. }
  105. }
  106. }
  107. return true;
  108. }
  109. }
  110. public static class CsvParser
  111. {
  112. private static Log.Logger log = Log.LoggerFactory.GetLogger("CsvParser");
  113. /// <summary>
  114. /// 解析CSV对象组,仅支持二维
  115. /// </summary>
  116. /// <typeparam name="T">列表对象</typeparam>
  117. /// <param name="csv_text">CSV文本</param>
  118. /// <param name="row_index">起始行</param>
  119. /// <param name="column_index">起始列</param>
  120. /// <param name="f_split">内容分隔符</param>
  121. /// <param name="o_split">组分隔符</param>
  122. /// <returns></returns>
  123. public static List<T> LoadCSVObjectList<T>(string csv_text, int row_index = 0, int column_index = 0, char f_split = ',', char o_split = ',')
  124. {
  125. List<T> ret = new List<T>();
  126. CsvTable table = new CsvTable();
  127. table.LoadFromText(csv_text);
  128. Type type = typeof(T);
  129. HashMap<string, FieldInfo> fields = new HashMap<string, FieldInfo>();
  130. foreach (FieldInfo field in type.GetFields())
  131. {
  132. fields.Add(field.Name, field);
  133. }
  134. string[] header = new string[table.MaxColumn];
  135. // 头字段定义 //
  136. for (int c = column_index; c < table.MaxColumn; c++)
  137. {
  138. header[c] = table.GetCell(c, row_index);
  139. }
  140. // 解析实体对象 //
  141. for (int r = row_index + 1; r < table.MaxRow; r++)
  142. {
  143. if (!table.IsEmptyRow(r))
  144. {
  145. T obj = (T)ReflectionUtil.CreateInstance(type);
  146. for (int c = column_index; c < table.MaxColumn; c++)
  147. {
  148. string ftext = table.GetCell(c, r);
  149. string fieldName = header[c];
  150. FieldInfo field;
  151. if (ftext != null && fields.TryGetValue(fieldName, out field))
  152. {
  153. try
  154. {
  155. object fv = TextStreamToAny(ftext, field.FieldType, f_split, o_split);
  156. if (fv != null)
  157. {
  158. field.SetValue(obj, fv);
  159. }
  160. }
  161. catch (Exception err)
  162. {
  163. log.Error(err.Message, err);
  164. }
  165. }
  166. }
  167. ret.Add(obj);
  168. }
  169. }
  170. return ret;
  171. }
  172. public static Dictionary<K, T> LoadCSVObjectMap<K, T>(string csv_text, string keyName, int row_index = 0, int column_index = 0, char f_split = ',', char o_split = ',')
  173. {
  174. Dictionary<K, T> ret = new Dictionary<K, T>();
  175. CsvTable table = new CsvTable();
  176. table.LoadFromText(csv_text);
  177. Type type = typeof(T);
  178. HashMap<string, FieldInfo> fields = new HashMap<string, FieldInfo>();
  179. FieldInfo keyField = null;
  180. foreach (FieldInfo field in type.GetFields())
  181. {
  182. fields.Add(field.Name, field);
  183. if (string.Equals(field.Name, keyName))
  184. {
  185. keyField = field;
  186. }
  187. }
  188. if (keyField == null)
  189. {
  190. throw new Exception(string.Format("keyName[{0}] not found !", keyName));
  191. }
  192. string[] header = new string[table.MaxColumn];
  193. // 头字段定义 //
  194. for (int c = column_index; c < table.MaxColumn; c++)
  195. {
  196. header[c] = table.GetCell(c, row_index);
  197. }
  198. // 解析实体对象 //
  199. for (int r = row_index + 1; r < table.MaxRow; r++)
  200. {
  201. if (!table.IsEmptyRow(r))
  202. {
  203. T obj = (T)ReflectionUtil.CreateInstance(type);
  204. object key = null;
  205. for (int c = column_index; c < table.MaxColumn; c++)
  206. {
  207. string ftext = table.GetCell(c, r);
  208. string fieldName = header[c];
  209. FieldInfo field;
  210. if (ftext != null && fields.TryGetValue(fieldName, out field))
  211. {
  212. try
  213. {
  214. object fv = TextStreamToAny(ftext, field.FieldType, f_split, o_split);
  215. if (fv != null)
  216. {
  217. field.SetValue(obj, fv);
  218. }
  219. if (string.Equals(fieldName, keyName))
  220. {
  221. key = fv;
  222. }
  223. }
  224. catch (Exception err)
  225. {
  226. log.Error(err.Message, err);
  227. }
  228. }
  229. }
  230. if (key != null)
  231. {
  232. ret.Add((K)key, obj);
  233. }
  234. }
  235. }
  236. return ret;
  237. }
  238. /// <summary>
  239. /// 文本序列转化为任何对象
  240. /// </summary>
  241. /// <param name="ftext">文本</param>
  242. /// <param name="type">解析类型</param>
  243. /// <param name="f_split">内容分隔符</param>
  244. /// <param name="o_split">组分隔符</param>
  245. /// <returns></returns>
  246. public static object TextStreamToAny(string ftext, Type type, char f_split = ',', char o_split = ',')
  247. {
  248. if (type.IsArray)
  249. {
  250. return TextStreamToList(ftext, type, f_split, o_split);
  251. }
  252. else if (type.GetInterface(typeof(IDictionary).Name) != null)
  253. {
  254. return null;
  255. }
  256. else if (type.GetInterface(typeof(IList).Name) != null)
  257. {
  258. return TextStreamToList(ftext, type, f_split, o_split);
  259. }
  260. else
  261. {
  262. return Parser.StringToObject(ftext, type);
  263. }
  264. }
  265. /// <summary>
  266. /// 文本序列转化为对象列表
  267. /// </summary>
  268. /// <param name="ftext">文本</param>
  269. /// <param name="type">解析类型</param>
  270. /// <param name="f_split">内容分隔符</param>
  271. /// <param name="o_split">组分隔符</param>
  272. /// <returns></returns>
  273. public static object TextStreamToList(string text, Type type, char f_split = ',', char o_split = ',')
  274. {
  275. if (type.IsArray)
  276. {
  277. Type elementType = type.GetElementType();
  278. string[] groups = text.Split((IsTypePrimitive(elementType) ? f_split : o_split));
  279. Array array = Array.CreateInstance(elementType, groups.Length);
  280. for (int i = 0; i < groups.Length; i++)
  281. {
  282. array.SetValue(TextStreamToObject(groups[i], elementType), i);
  283. }
  284. return array;
  285. }
  286. else if (type.GetInterface(typeof(IList).Name) != null)
  287. {
  288. Type elementType = type.GetGenericArguments()[0];
  289. string[] groups = text.Split((IsTypePrimitive(elementType) ? f_split : o_split));
  290. IList list = (IList)Activator.CreateInstance(type);
  291. for (int i = 0; i < groups.Length; i++)
  292. {
  293. list.Add(TextStreamToObject(groups[i], elementType));
  294. }
  295. return list;
  296. }
  297. return null;
  298. }
  299. /// <summary>
  300. /// 文本序列转化为对象
  301. /// </summary>
  302. /// <param name="ftext">文本</param>
  303. /// <param name="type">解析类型</param>
  304. /// <param name="f_split">内容分隔符</param>
  305. /// <returns></returns>
  306. public static object TextStreamToObject(string text, Type type, char f_split = ',')
  307. {
  308. if (IsTypePrimitive(type))
  309. {
  310. return Parser.StringToObject(text, type);
  311. }
  312. else if (type.IsClass)
  313. {
  314. string[] fields = text.Split(f_split);
  315. object ret = Activator.CreateInstance(type);
  316. int i = 0;
  317. foreach (FieldInfo field in type.GetFields())
  318. {
  319. field.SetValue(ret, Parser.StringToObject(fields[i], field.FieldType));
  320. i++;
  321. }
  322. return ret;
  323. }
  324. return null;
  325. }
  326. /// <summary>
  327. /// 基础类型或者字符串
  328. /// </summary>
  329. /// <param name="type"></param>
  330. /// <returns></returns>
  331. public static bool IsTypePrimitive(Type type)
  332. {
  333. return type.IsPrimitive || type.IsEnum || type.IsAssignableFrom(typeof(string));
  334. }
  335. }
  336. }