FCQLCTrend.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CB.Common;
  5. using CB.Data;
  6. using CB.Entity;
  7. using CB.Interface;
  8. using CB.Interface.Infrastructure;
  9. namespace CB.TrendChart.LotteryTrendChart
  10. {
  11. /// <summary>
  12. /// 福彩七乐彩走势图生成工具
  13. /// </summary>
  14. public class FCQLCTrend
  15. {
  16. public static int Cid = 5;//Cid用于设置样式值
  17. /// <summary>
  18. /// 生成走势图,生成当前term数据及以后数据
  19. /// by JNswins 2015-06-10
  20. /// </summary>
  21. /// <param name="chartId">走势图ID</param>
  22. /// <param name="chartType">走势图类型</param>
  23. /// <param name="term">需要生成走势图期数</param>
  24. /// <param name="LotterySearchField">彩种开奖数据额外查询条件</param>
  25. /// <returns></returns>
  26. public static Tuple<bool, string> CreateTrendChart(int chartId, TrendChartType chartType, long term, LotterySearchField fields = null)
  27. {
  28. //获取走势图项及配置数据
  29. var trendChartItem = TrendChartItemService.ToListByChartId(chartId, chartType);
  30. if (null == trendChartItem || 0 >= trendChartItem.Count)
  31. return new Tuple<bool, string>(false, string.Format("未找到【ChartId={0}】走势图的项配置数据", chartId));
  32. int count = trendChartItem.Count;
  33. IList<IChartItem<FCQLCInfo>> chartItem = new List<IChartItem<FCQLCInfo>>(count);
  34. IList<ChartCssConfigInfo> cssConfig = new List<ChartCssConfigInfo>(count);
  35. foreach (var item in trendChartItem)
  36. {
  37. //实例化项类型
  38. chartItem.Add(TrendChartUtils.GetTrendChartInterface<FCQLCInfo>(item.ClassName));
  39. //获取项CSS配置信息
  40. cssConfig.Add(ChartCssConfigService.Get(item.ChartCssId));
  41. }
  42. //各项初始化
  43. for (int i = 0; i < count; i++)
  44. {
  45. trendChartItem[i].Cid = Cid;
  46. chartItem[i].Init(cssConfig[i], trendChartItem[i]);
  47. }
  48. //大于等于term开奖数据
  49. IList<FCQLCInfo> ListToEnd = FCQLCService.GetListToEnd(term, fields);
  50. if (null == ListToEnd || 0 >= ListToEnd.Count)
  51. return new Tuple<bool, string>(false, "未找到有效开奖数据");
  52. int j = 0;
  53. TrendChartData entity = null;
  54. var ResultEntity = new TrendChartData
  55. {
  56. ChartId = chartId,
  57. Term = term,
  58. ChartType = chartType,
  59. LocalMiss = new string[count],
  60. LastMiss = new string[count],
  61. AllMaxMiss = new string[count],
  62. AllAvgMiss = new string[count],
  63. AllTimes = new string[count]
  64. };
  65. foreach (var currentData in ListToEnd)
  66. {
  67. //根据参数term期数获取近两期开奖信息TOP 2 [Term]<=term ORDER BY [Term] DESC
  68. IList<FCQLCInfo> list = FCQLCService.ToListForTrend(currentData.Term, fields);
  69. FCQLCInfo info = null,lastinfo=null;
  70. info = list[0];
  71. if (2 == list.Count)
  72. {
  73. //取当前期数的上一期的走势图信息及遗漏数据
  74. lastinfo = list[1];
  75. entity = ResultEntity;
  76. if (0 == j)
  77. entity = FCQLCTrendChartDataService.GetTrendChartDataByTerm(chartId, chartType, list[1].Term);
  78. }
  79. bool yes = true;
  80. var sp = new StringBuilder(20000);
  81. sp.Append("<tr>");
  82. for (int i = 0; i < count; i++)
  83. {
  84. //初始化遗漏数据(根据上期结果集计算_entity)
  85. chartItem[i].MissDataInit(entity, i);
  86. //计算项值及遗漏计算
  87. yes = yes && chartItem[i].SetItemValue(info,lastinfo);
  88. if (yes)
  89. {
  90. //结果集赋值
  91. ResultEntity.LocalMiss[i] = chartItem[i].GetMissData(MissDataType.LocalMiss);
  92. ResultEntity.LastMiss[i] = chartItem[i].GetMissData(MissDataType.LastMiss);
  93. ResultEntity.AllMaxMiss[i] = chartItem[i].GetMissData(MissDataType.AllMaxMiss);
  94. ResultEntity.AllAvgMiss[i] = chartItem[i].GetMissData(MissDataType.AllAvgMiss);
  95. ResultEntity.AllTimes[i] = chartItem[i].GetMissData(MissDataType.AllTimes);
  96. sp.Append(chartItem[i].GetFomartString("<td {0}>{1}</td>"));
  97. }
  98. }
  99. sp.Append("</tr>");
  100. if (null != entity)
  101. ResultEntity.RecordCount = entity.RecordCount + 1;
  102. else
  103. ResultEntity.RecordCount = 1;
  104. ResultEntity.Term = currentData.Term;
  105. ResultEntity.HtmlData = sp.ToString();
  106. if (!yes)
  107. { return new Tuple<bool, string>(false, string.Format("无效开奖数据:数据生成截止期数为【term={0}】", ResultEntity.Term)); }
  108. yes = yes && DatabaseProvider.GetDbProvider<IFCQLCTrendChartDataService>().Save(ResultEntity);
  109. if (!yes)
  110. { return new Tuple<bool, string>(false, string.Format("数据保存出错:数据保存截止期数为【term={0}】", ResultEntity.Term)); }
  111. j++;
  112. }
  113. return new Tuple<bool, string>(true, string.Format("正常生成完毕,截止期数为:Term={0}", ListToEnd[ListToEnd.Count - 1].Term));
  114. }
  115. /// <summary>
  116. /// 预览走势图,默认显示近30期数据 (实时计算生成)
  117. /// </summary>
  118. /// <param name="chartId"></param>
  119. /// <param name="chartType"></param>
  120. /// <param name="term"></param>
  121. /// <param name="fields"></param>
  122. /// <returns></returns>
  123. public static string PreViewTrendChart(int chartId, TrendChartType chartType, LotterySearchField fields = null)
  124. {
  125. var list = FCQLCService.GetListToEnd(0, fields);
  126. if (null == list || 0 >= list.Count)
  127. return "";
  128. //获取走势图项及配置数据
  129. var trendChartItem = TrendChartItemService.ToListByChartId(chartId, chartType);
  130. if (null == trendChartItem || 0 >= trendChartItem.Count)
  131. return "";
  132. int count = trendChartItem.Count;
  133. IList<IChartItem<FCQLCInfo>> chartItem = new List<IChartItem<FCQLCInfo>>(count);
  134. IList<ChartCssConfigInfo> cssConfig = new List<ChartCssConfigInfo>(count);
  135. foreach (var item in trendChartItem)
  136. {
  137. //实例化项类型
  138. chartItem.Add(TrendChartUtils.GetTrendChartInterface<FCQLCInfo>(item.ClassName));
  139. //获取项CSS配置信息
  140. cssConfig.Add(ChartCssConfigService.Get(item.ChartCssId));
  141. }
  142. //项初始化
  143. for (int i = 0; i < count; i++)
  144. {
  145. trendChartItem[i].Cid = Cid;
  146. chartItem[i].Init(cssConfig[i], trendChartItem[i]);
  147. }
  148. var sp = new StringBuilder(20000);
  149. int record = list.Count;
  150. int topSize = null == fields ? 30 : fields.TopSize;
  151. if (30 > topSize)
  152. topSize = 30;
  153. for (int i = 0; i < record; i++)
  154. {
  155. for (int j = count - 1; j >= 0; j--)
  156. {
  157. chartItem[j].SetItemValue(list[i]);
  158. }
  159. if (i >= record - topSize)
  160. {
  161. sp.Append("<tr>");
  162. for (int j = 0; j < count; j++)
  163. {
  164. sp.Append(chartItem[j].GetFomartString("<td {0}>{1}</td>"));
  165. }
  166. sp.Append("</tr>");
  167. }
  168. }
  169. return sp.ToString();
  170. }
  171. #region 生成走势图 已注释 by JNswins 2015-06-11
  172. ///// <summary>
  173. ///// 生成走势图
  174. ///// </summary>
  175. ///// <param name="chartId">走势图ID</param>
  176. ///// <param name="chartType">走势图类型</param>
  177. ///// <param name="term">需要生成走势图期数</param>
  178. ///// <param name="MultiTerm">true:生成term期数及以后期数的走势图及遗漏数据;false:仅生成当前期走势图及遗漏数据</param>
  179. ///// <param name="IsZS">true:生成组三数据;false:全部数据</param>
  180. ///// <returns></returns>
  181. //public static bool CreateTrendChart(int chartId, TrendChartType chartType, long term, int week, bool MultiTerm = false, bool IsZS = false)
  182. //{
  183. // if (MultiTerm)
  184. // return CreateCurrentToEndTrendChart(chartId, chartType, term);
  185. // return CreateCurrentTrendChart(chartId, chartType, term);
  186. //}
  187. ///// <summary>
  188. ///// 生成当前期走势图
  189. ///// </summary>
  190. ///// <param name="chartId"></param>
  191. ///// <param name="chartType"></param>
  192. ///// <param name="term"></param>
  193. ///// <returns></returns>
  194. //private static bool CreateCurrentTrendChart(int chartId, TrendChartType chartType, long term)
  195. //{
  196. // //获取走势图项及配置数据
  197. // var trendChartItem = TrendChartItemService.ToListByChartId(chartId, chartType);
  198. // if (null == trendChartItem || 0 >= trendChartItem.Count)
  199. // return false;
  200. // int count = trendChartItem.Count;
  201. // IList<IChartItem<FCQLCInfo>> chartItem = new List<IChartItem<FCQLCInfo>>(count);
  202. // IList<ChartCssConfigInfo> cssConfig = new List<ChartCssConfigInfo>(count);
  203. // foreach (var item in trendChartItem)
  204. // {
  205. // //实例化项类型
  206. // chartItem.Add(TrendChartUtils.GetTrendChartInterface<FCQLCInfo>(item.ClassName));
  207. // //获取项CSS配置信息
  208. // cssConfig.Add(ChartCssConfigService.Get(item.ChartCssId));
  209. // }
  210. // //根据参数term期数获取近两期开奖信息TOP 2 [Term]<=term ORDER BY [Term] DESC
  211. // var list = FCQLCService.ToListForTrend(term);
  212. // FCQLCInfo info = null;
  213. // TrendChartData entity = null;
  214. // if (null == list || 0 >= list.Count)
  215. // return false;
  216. // info = list[0];
  217. // if (2 == list.Count)
  218. // {
  219. // //取当前期数的上一期的走势图信息及遗漏数据
  220. // entity = FCQLCTrendChartDataService.GetTrendChartDataByTerm(chartId, chartType, list[1].Term);
  221. // }
  222. // var ResultEntity = new TrendChartData
  223. // {
  224. // ChartId = chartId,
  225. // Term = term,
  226. // ChartType = chartType,
  227. // LocalMiss = new string[count],
  228. // LastMiss = new string[count],
  229. // AllMaxMiss = new string[count],
  230. // AllAvgMiss = new string[count],
  231. // AllTimes = new string[count]
  232. // };
  233. // var sp = new StringBuilder(20000);
  234. // sp.Append("<tr>");
  235. // for (int i = 0; i < count; i++)
  236. // {
  237. // //项初始化
  238. // chartItem[i].Init(cssConfig[i], trendChartItem[i]);
  239. // //初始化遗漏数据(根据上期结果集计算_entity)
  240. // chartItem[i].MissDataInit(entity, i);
  241. // //计算项值及遗漏计算
  242. // chartItem[i].SetItemValue(info);
  243. // //结果集赋值
  244. // ResultEntity.LocalMiss[i] = chartItem[i].GetMissData(MissDataType.LocalMiss);
  245. // ResultEntity.LastMiss[i] = chartItem[i].GetMissData(MissDataType.LastMiss);
  246. // ResultEntity.AllMaxMiss[i] = chartItem[i].GetMissData(MissDataType.AllMaxMiss);
  247. // ResultEntity.AllAvgMiss[i] = chartItem[i].GetMissData(MissDataType.AllAvgMiss);
  248. // ResultEntity.AllTimes[i] = chartItem[i].GetMissData(MissDataType.AllTimes);
  249. // sp.Append(chartItem[i].GetFomartString("<td {0}>{1}</td>"));
  250. // }
  251. // sp.Append("</tr>");
  252. // if (entity != null)
  253. // ResultEntity.RecordCount = entity.RecordCount + 1;
  254. // else
  255. // ResultEntity.RecordCount = 1;
  256. // ResultEntity.HtmlData = sp.ToString();
  257. // return DatabaseProvider.GetDbProvider<IFCQLCTrendChartDataService>().Save(ResultEntity);
  258. //}
  259. ///// <summary>
  260. ///// 生成当期走势图以及后面走势图
  261. ///// </summary>
  262. ///// <param name="chartId"></param>
  263. ///// <param name="chartType"></param>
  264. ///// <param name="term"></param>
  265. ///// <returns></returns>
  266. //private static bool CreateCurrentToEndTrendChart(int chartId, TrendChartType chartType, long term)
  267. //{
  268. // //当期以及以后数据
  269. // var ListToEnd = FCQLCService.GetListToEnd(term);
  270. // if (null == ListToEnd || ListToEnd.Count <= 0)
  271. // return false;
  272. // //获取走势图项及配置数据
  273. // var trendChartItem = TrendChartItemService.ToListByChartId(chartId, chartType);
  274. // if (null == trendChartItem || 0 >= trendChartItem.Count)
  275. // return false;
  276. // int count = trendChartItem.Count;
  277. // IList<IChartItem<FCQLCInfo>> chartItem = new List<IChartItem<FCQLCInfo>>(count);
  278. // IList<ChartCssConfigInfo> cssConfig = new List<ChartCssConfigInfo>(count);
  279. // foreach (var item in trendChartItem)
  280. // {
  281. // //实例化项类型
  282. // chartItem.Add(TrendChartUtils.GetTrendChartInterface<FCQLCInfo>(item.ClassName));
  283. // //获取项CSS配置信息
  284. // cssConfig.Add(ChartCssConfigService.Get(item.ChartCssId));
  285. // }
  286. // //项初始化
  287. // for (int i = 0; i < count; i++)
  288. // {
  289. // chartItem[i].Init(cssConfig[i], trendChartItem[i]);
  290. // }
  291. // foreach (var currentData in ListToEnd)
  292. // {
  293. // //根据参数term期数获取近两期开奖信息TOP 2 [Term]<=term ORDER BY [Term] DESC
  294. // var list = FCQLCService.ToListForTrend(currentData.Term);
  295. // FCQLCInfo info = null;
  296. // TrendChartData entity = null;
  297. // if (null == list || 0 >= list.Count)
  298. // continue;
  299. // info = list[0];
  300. // if (2 == list.Count)
  301. // {
  302. // //取当前期数的上一期的走势图信息及遗漏数据
  303. // entity = FCQLCTrendChartDataService.GetTrendChartDataByTerm(chartId, chartType, list[1].Term);
  304. // }
  305. // var ResultEntity = new TrendChartData
  306. // {
  307. // ChartId = chartId,
  308. // Term = currentData.Term,
  309. // ChartType = chartType,
  310. // LocalMiss = new string[count],
  311. // LastMiss = new string[count],
  312. // AllMaxMiss = new string[count],
  313. // AllAvgMiss = new string[count],
  314. // AllTimes = new string[count]
  315. // };
  316. // var sp = new StringBuilder(20000);
  317. // sp.Append("<tr>");
  318. // for (int i = 0; i < count; i++)
  319. // {
  320. // //初始化遗漏数据(根据上期结果集计算_entity)
  321. // chartItem[i].MissDataInit(entity, i);
  322. // //计算项值及遗漏计算
  323. // chartItem[i].SetItemValue(info);
  324. // //结果集赋值
  325. // ResultEntity.LocalMiss[i] = chartItem[i].GetMissData(MissDataType.LocalMiss);
  326. // ResultEntity.LastMiss[i] = chartItem[i].GetMissData(MissDataType.LastMiss);
  327. // ResultEntity.AllMaxMiss[i] = chartItem[i].GetMissData(MissDataType.AllMaxMiss);
  328. // ResultEntity.AllAvgMiss[i] = chartItem[i].GetMissData(MissDataType.AllAvgMiss);
  329. // ResultEntity.AllTimes[i] = chartItem[i].GetMissData(MissDataType.AllTimes);
  330. // sp.Append(chartItem[i].GetFomartString("<td {0}>{1}</td>"));
  331. // }
  332. // sp.Append("</tr>");
  333. // if (entity != null)
  334. // ResultEntity.RecordCount = entity.RecordCount + 1;
  335. // else
  336. // ResultEntity.RecordCount = 1;
  337. // ResultEntity.HtmlData = sp.ToString();
  338. // DatabaseProvider.GetDbProvider<IFCQLCTrendChartDataService>().Save(ResultEntity);
  339. // }
  340. // return true;
  341. //}
  342. #endregion
  343. #region 生成预览走势图(直接生成)已注释 by JNswins 2015-06-11
  344. ///// <summary>
  345. ///// 预览当期走势图以及后面走势图
  346. ///// </summary>
  347. ///// <param name="chartId"></param>
  348. ///// <param name="chartType"></param>
  349. ///// <param name="term"></param>
  350. ///// <returns></returns>
  351. //public static string PreViewCurrentToEndTrendChart(int chartId, TrendChartType chartType)
  352. //{
  353. // StringBuilder sp = new StringBuilder(20000);
  354. // //当期以及以后数据
  355. // var ListToEnd = FCQLCService.GetListToEnd(0, null);
  356. // if (null == ListToEnd || ListToEnd.Count <= 0)
  357. // return "";
  358. // //获取走势图项及配置数据
  359. // var trendChartItem = TrendChartItemService.ToListByChartId(chartId, chartType);
  360. // if (null == trendChartItem || 0 >= trendChartItem.Count)
  361. // return "";
  362. // int count = trendChartItem.Count;
  363. // IList<IChartItem<FCQLCInfo>> chartItem = new List<IChartItem<FCQLCInfo>>(count);
  364. // IList<ChartCssConfigInfo> cssConfig = new List<ChartCssConfigInfo>(count);
  365. // foreach (var item in trendChartItem)
  366. // {
  367. // //实例化项类型
  368. // chartItem.Add(TrendChartUtils.GetTrendChartInterface<FCQLCInfo>(item.ClassName));
  369. // //获取项CSS配置信息
  370. // cssConfig.Add(ChartCssConfigService.Get(item.ChartCssId));
  371. // }
  372. // //项初始化
  373. // for (int i = 0; i < count; i++)
  374. // {
  375. // chartItem[i].Init(cssConfig[i], trendChartItem[i]);
  376. // }
  377. // for (int j = 0; j < ListToEnd.Count; j++)
  378. // {
  379. // if (j < ListToEnd.Count - 31)
  380. // {
  381. // for (int i = 0; i < count; i++)
  382. // {
  383. // //计算项值及遗漏计算
  384. // chartItem[i].SetItemValue(ListToEnd[j]);
  385. // }
  386. // }
  387. // else
  388. // {
  389. // sp.Append("<tr>");
  390. // for (int i = 0; i < count; i++)
  391. // {
  392. // //计算项值及遗漏计算
  393. // chartItem[i].SetItemValue(ListToEnd[j]);
  394. // sp.Append(chartItem[i].GetFomartString("<td {0}>{1}</td>"));
  395. // }
  396. // sp.Append("</tr>");
  397. // }
  398. // }
  399. // return sp.ToString();
  400. //}
  401. #endregion
  402. }
  403. }