Collections.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. using CommonLang.IO;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.Specialized;
  5. using System.Reflection;
  6. using System.Text;
  7. using System.Collections;
  8. using CommonLang.Log;
  9. namespace CommonLang
  10. {
  11. public class HashMap<K, V> : Dictionary<K, V>
  12. {
  13. public HashMap() { }
  14. public HashMap(int capacity) : base(capacity) { }
  15. public HashMap(IEqualityComparer<K> comparer) : base(comparer) { }
  16. public HashMap(int capacity, IEqualityComparer<K> comparer) : base(capacity, comparer) { }
  17. public HashMap(IDictionary<K, V> map) : base(map) { }
  18. public HashMap(IDictionary<K, V> map, IEqualityComparer<K> comparer) : base(map, comparer) { }
  19. public V Get(K key)
  20. {
  21. V ret;
  22. if (base.TryGetValue(key, out ret))
  23. {
  24. return ret;
  25. }
  26. return default(V);
  27. }
  28. public void Put(K key, V val)
  29. {
  30. this[key] = val;
  31. }
  32. /// <summary>
  33. /// 添加成功返回true
  34. /// </summary>
  35. /// <param name="key"></param>
  36. /// <param name="val"></param>
  37. /// <returns></returns>
  38. public bool TryAdd(K key, V val)
  39. {
  40. if (!this.ContainsKey(key))
  41. {
  42. this[key] = val;
  43. return true;
  44. }
  45. return false;
  46. }
  47. public V RemoveByKey(K key)
  48. {
  49. V ret;
  50. if (base.TryGetValue(key, out ret))
  51. {
  52. base.Remove(key);
  53. }
  54. return ret;
  55. }
  56. public void PutAll(IDictionary<K, V> map)
  57. {
  58. foreach (KeyValuePair<K, V> e in map)
  59. {
  60. Put(e.Key, e.Value);
  61. }
  62. }
  63. }
  64. public class ForEachHashMap<K, V> : IDictionary<K, V>
  65. {
  66. public V this[K key]
  67. {
  68. get
  69. {
  70. throw new NotImplementedException();
  71. }
  72. set
  73. {
  74. throw new NotImplementedException();
  75. }
  76. }
  77. public int Count
  78. {
  79. get
  80. {
  81. throw new NotImplementedException();
  82. }
  83. }
  84. public bool IsReadOnly
  85. {
  86. get
  87. {
  88. throw new NotImplementedException();
  89. }
  90. }
  91. public ICollection<K> Keys
  92. {
  93. get
  94. {
  95. throw new NotImplementedException();
  96. }
  97. }
  98. public ICollection<V> Values
  99. {
  100. get
  101. {
  102. throw new NotImplementedException();
  103. }
  104. }
  105. public void Add(KeyValuePair<K, V> item)
  106. {
  107. throw new NotImplementedException();
  108. }
  109. public void Add(K key, V value)
  110. {
  111. throw new NotImplementedException();
  112. }
  113. public void Clear()
  114. {
  115. throw new NotImplementedException();
  116. }
  117. public bool Contains(KeyValuePair<K, V> item)
  118. {
  119. throw new NotImplementedException();
  120. }
  121. public bool ContainsKey(K key)
  122. {
  123. throw new NotImplementedException();
  124. }
  125. public void CopyTo(KeyValuePair<K, V>[] array, int arrayIndex)
  126. {
  127. throw new NotImplementedException();
  128. }
  129. public IEnumerator<KeyValuePair<K, V>> GetEnumerator()
  130. {
  131. throw new NotImplementedException();
  132. }
  133. public bool Remove(KeyValuePair<K, V> item)
  134. {
  135. throw new NotImplementedException();
  136. }
  137. public bool Remove(K key)
  138. {
  139. throw new NotImplementedException();
  140. }
  141. public bool TryGetValue(K key, out V value)
  142. {
  143. throw new NotImplementedException();
  144. }
  145. IEnumerator IEnumerable.GetEnumerator()
  146. {
  147. throw new NotImplementedException();
  148. }
  149. }
  150. public class Properties : HashMap<string, string>
  151. {
  152. public static Properties LoadFromResource(string path, string separator = "=")
  153. {
  154. string text = Resource.LoadAllText(path);
  155. if (text != null)
  156. {
  157. Properties ret = new Properties();
  158. ret.ParseText(text, separator);
  159. return ret;
  160. }
  161. else
  162. {
  163. return null;
  164. }
  165. }
  166. public void AddAll(NameValueCollection config)
  167. {
  168. foreach (string key in config.AllKeys)
  169. {
  170. this[key] = config[key];
  171. }
  172. }
  173. public int ParseText(string text, string separator = "=")
  174. {
  175. string[] lines = text.Split(new char[] { '\n' });
  176. return ParseLines(lines, separator);
  177. }
  178. public int ParseLines(string[] lines, string separator = "=")
  179. {
  180. int count = 0;
  181. string line = null;
  182. for (int i = 0; i < lines.Length; i++)
  183. {
  184. if (line != null)
  185. {
  186. line += lines[i].Trim();
  187. }
  188. else
  189. {
  190. line = lines[i].Trim();
  191. }
  192. if (line.EndsWith("\\"))
  193. {
  194. line = line.Substring(0, line.Length - 1);
  195. if ((i + 1) < lines.Length)
  196. {
  197. ParseLine(line, separator);
  198. count++;
  199. }
  200. else
  201. {
  202. continue;
  203. }
  204. }
  205. else if (ParseLine(line, separator))
  206. {
  207. count++;
  208. }
  209. line = null;
  210. }
  211. return count;
  212. }
  213. public bool ParseLine(string line, string separator = "=")
  214. {
  215. line = line.Trim();
  216. if (line.StartsWith("#"))
  217. {
  218. return false;
  219. }
  220. int index = line.IndexOf(separator);
  221. if (index >= 0)
  222. {
  223. string key = line.Substring(0, index).Trim();
  224. string val = line.Substring(index + 1).Trim();
  225. this[key] = val;
  226. return true;
  227. }
  228. return false;
  229. }
  230. public string ToParseString(string separator = " = ")
  231. {
  232. StringBuilder sb = new StringBuilder();
  233. foreach (var kv in this)
  234. {
  235. sb.AppendLine(kv.Key + separator + kv.Value);
  236. }
  237. return sb.ToString();
  238. }
  239. /// <summary>
  240. /// 通常载入配置文件
  241. /// </summary>
  242. /// <param name="cfg"></param>
  243. public void LoadFields(object cfg)
  244. {
  245. Type type = cfg.GetType();
  246. foreach (FieldInfo fi in type.GetFields())
  247. {
  248. if (!fi.IsStatic)
  249. {
  250. if (ContainsKey(fi.Name))
  251. {
  252. string value = this.Get(fi.Name);
  253. object vo = Parser.StringToObject(value, fi.FieldType);
  254. fi.SetValue(cfg, vo);
  255. }
  256. }
  257. }
  258. }
  259. public void SaveFields(object cfg)
  260. {
  261. Type type = cfg.GetType();
  262. foreach (FieldInfo fi in type.GetFields())
  263. {
  264. if (!fi.IsStatic)
  265. {
  266. object vo = fi.GetValue(cfg);
  267. this.Put(fi.Name, Parser.ObjectToString(vo));
  268. }
  269. }
  270. }
  271. public void LoadStaticFields(Type type)
  272. {
  273. foreach (FieldInfo fi in type.GetFields())
  274. {
  275. if (fi.IsStatic)
  276. {
  277. if (ContainsKey(fi.Name))
  278. {
  279. string value = this.Get(fi.Name);
  280. object vo = Parser.StringToObject(value, fi.FieldType);
  281. fi.SetValue(null, vo);
  282. }
  283. }
  284. }
  285. }
  286. public void SaveStaticFields(Type type)
  287. {
  288. foreach (FieldInfo fi in type.GetFields())
  289. {
  290. if (fi.IsStatic)
  291. {
  292. object vo = fi.GetValue(null);
  293. this.Put(fi.Name, Parser.ObjectToString(vo));
  294. }
  295. }
  296. }
  297. public Properties SubProperties(string prefix)
  298. {
  299. Properties ret = new Properties();
  300. foreach (string key in Keys)
  301. {
  302. try
  303. {
  304. if (key.StartsWith(prefix))
  305. {
  306. string value = this[key];
  307. string fname = key.Substring(prefix.Length);
  308. ret[fname] = value;
  309. }
  310. }
  311. catch (Exception err)
  312. {
  313. Console.WriteLine("SubProperties : " + prefix + ", catch: " + err);
  314. }
  315. }
  316. return ret;
  317. }
  318. public static void SaveStaticFieldsToFile(string file, Type type)
  319. {
  320. var prop = new CommonLang.Properties();
  321. prop.SaveStaticFields(type);
  322. System.IO.File.WriteAllText(file, prop.ToParseString(), CUtils.UTF8);
  323. }
  324. public static void LoadStaticFieldsFromFile(string file, Type type)
  325. {
  326. if (System.IO.File.Exists(file))
  327. {
  328. var text = System.IO.File.ReadAllText(file, CUtils.UTF8);
  329. if (text != null)
  330. {
  331. var prop = new CommonLang.Properties();
  332. prop.ParseText(text);
  333. prop.LoadStaticFields(type);
  334. }
  335. }
  336. }
  337. }
  338. public class SyncMessageQueue<T>
  339. {
  340. private LinkedList<T> adding = new LinkedList<T>();
  341. private Logger log = LoggerFactory.GetLogger("SyncMessageQueue");
  342. /// <summary>
  343. /// 添加一个消息到队列
  344. /// </summary>
  345. /// <param name="item"></param>
  346. public void Enqueue(T item)
  347. {
  348. lock (adding)
  349. {
  350. adding.AddLast(item);
  351. }
  352. }
  353. /// <summary>
  354. /// 尝试处理队列中所有消息
  355. /// </summary>
  356. /// <param name="action">处理函数</param>
  357. public void ProcessMessages(Action<T> action)
  358. {
  359. var num = adding.Count;
  360. T act;
  361. while (num-- > 0)
  362. {
  363. lock (adding)
  364. {
  365. if (adding.Count <= 0) return;
  366. act = adding.First.Value;
  367. adding.RemoveFirst();
  368. }
  369. action(act);
  370. }
  371. }
  372. public void Clear()
  373. {
  374. lock (adding)
  375. {
  376. this.adding.Clear();
  377. }
  378. }
  379. }
  380. public class SyncMessageQueueAction<T>
  381. {
  382. private LinkedList<Action<T>> adding = new LinkedList<Action<T>>();
  383. /// <summary>
  384. /// 添加一个消息到队列
  385. /// </summary>
  386. /// <param name="item"></param>
  387. public void Enqueue(Action<T> item)
  388. {
  389. lock (adding)
  390. {
  391. adding.AddLast(item);
  392. }
  393. }
  394. /// <summary>
  395. ///
  396. /// </summary>
  397. /// <param name="param"></param>
  398. public void ProcessMessages(T param)
  399. {
  400. var num = adding.Count;
  401. Action<T> act;
  402. while (num-- > 0)
  403. {
  404. lock (adding)
  405. {
  406. if (adding.Count <= 0) return;
  407. act = adding.First.Value;
  408. adding.RemoveFirst();
  409. }
  410. act.Invoke(param);
  411. }
  412. }
  413. public void Clear()
  414. {
  415. lock (adding)
  416. {
  417. adding.Clear();
  418. }
  419. }
  420. }
  421. public class SyncMessageQueue2
  422. {
  423. private readonly LinkedList<Action> adding = new LinkedList<Action>();
  424. private readonly Action<Exception> errorHandler;
  425. public SyncMessageQueue2(Action<Exception> eh = null)
  426. {
  427. this.errorHandler = eh;
  428. }
  429. /// <summary>
  430. /// 添加一个消息到队列
  431. /// </summary>
  432. /// <param name="item"></param>
  433. public void Enqueue(Action item)
  434. {
  435. lock (adding)
  436. {
  437. adding.AddLast(item);
  438. }
  439. }
  440. private static long GetTime()
  441. {
  442. DateTime time197011 = new DateTime(1970, 1, 1);
  443. DateTime time = DateTime.Now;
  444. TimeSpan ts = time - time197011;
  445. TimeZone localZone = TimeZone.CurrentTimeZone;
  446. TimeSpan off = localZone.GetUtcOffset(time);
  447. ts -= off;
  448. return (long)ts.TotalMilliseconds;
  449. }
  450. /// <summary>
  451. /// 尝试处理队列中所有消息
  452. /// </summary>
  453. public void ProcessMessages()
  454. {
  455. lock (adding)
  456. {
  457. if (adding == null || adding.Count <= 0) return;
  458. long Begtime = (long)(DateTime.Now.Ticks * 0.0001);//GetTime();
  459. long curTime = Begtime;
  460. var num = adding.Count;
  461. while (num > 0 && adding.Count > 0)
  462. {
  463. try
  464. {
  465. if (adding.Count <= 0) return;
  466. Action act = adding.First.Value;
  467. adding.RemoveFirst();
  468. act.Invoke();
  469. }
  470. catch (Exception err)
  471. {
  472. errorHandler(err);
  473. break;
  474. }
  475. num--;
  476. curTime = (long)(DateTime.Now.Ticks * 0.0001);
  477. if (curTime - Begtime > 100)
  478. {
  479. break;
  480. }
  481. }
  482. }
  483. }
  484. public void Clear()
  485. {
  486. lock (adding)
  487. {
  488. this.adding.Clear();
  489. }
  490. }
  491. }
  492. public interface IOnceInvoke
  493. {
  494. bool IsDone { get; }
  495. }
  496. public class OnceInvokeList<T>
  497. where T : IOnceInvoke
  498. {
  499. private List<T> mInvokeList = new List<T>();
  500. public int Count { get { return mInvokeList.Count; } }
  501. public void Add(T e) { mInvokeList.Add(e); }
  502. public void Invoke(Action<T> on_invoke)
  503. {
  504. if (mInvokeList.Count > 0)
  505. {
  506. using (var list = ListObjectPool<T>.AllocAutoRelease(mInvokeList))
  507. {
  508. foreach (var e in list)
  509. {
  510. on_invoke(e);
  511. }
  512. }
  513. for (int i = mInvokeList.Count - 1; i >= 0; --i)
  514. {
  515. var e = mInvokeList[i];
  516. if (e.IsDone)
  517. {
  518. mInvokeList.RemoveAt(i);
  519. }
  520. }
  521. }
  522. }
  523. public void Clear()
  524. {
  525. mInvokeList.Clear();
  526. }
  527. }
  528. public abstract class FastLinkNode
  529. {
  530. public FastLinkNode Prev { get { return m_prev; } }
  531. public FastLinkNode Next { get { return m_next; } }
  532. // 当前所在的列表
  533. internal object m_curList;
  534. internal FastLinkNode m_prev = null;
  535. internal FastLinkNode m_next = null;
  536. }
  537. public class FastLinkList<T> : ICollection<T> where T : FastLinkNode
  538. {
  539. private FastLinkNode head = null;
  540. private FastLinkNode last = null;
  541. private int count = 0;
  542. public T Head { get { return (T)head; } }
  543. public T Last { get { return (T)last; } }
  544. public bool IsEmpty { get { return count == 0; } }
  545. public bool IsReadOnly { get { return false; } }
  546. public int Count { get { return count; } }
  547. public void Add(T node)
  548. {
  549. if (node.m_curList == null)
  550. {
  551. if (last == null)
  552. {
  553. head = last = node;
  554. }
  555. else
  556. {
  557. last.m_next = node;
  558. node.m_prev = last;
  559. last = node;
  560. }
  561. node.m_curList = this;
  562. count++;
  563. }
  564. else
  565. {
  566. throw new Exception("Node is already in a List !");
  567. }
  568. }
  569. public bool Remove(T node)
  570. {
  571. if (node.m_curList == this)
  572. {
  573. if (head == node)
  574. {
  575. head = node.m_next;
  576. }
  577. if (last == node)
  578. {
  579. last = node.m_prev;
  580. }
  581. if (node.m_next != null)
  582. {
  583. node.m_next.m_prev = node.m_prev;
  584. }
  585. if (node.m_prev != null)
  586. {
  587. node.m_prev.m_next = node.m_next;
  588. }
  589. node.m_next = null;
  590. node.m_prev = null;
  591. node.m_curList = null;
  592. count--;
  593. return true;
  594. }
  595. else
  596. {
  597. throw new Exception("Node is not contains in this list !");
  598. }
  599. }
  600. public void Clear()
  601. {
  602. if (count > 0)
  603. {
  604. for (FastLinkNode i = head; i != null; i = i.m_next)
  605. {
  606. i.m_curList = null;
  607. }
  608. FastLinkNode p = head;
  609. FastLinkNode q = null;
  610. do
  611. {
  612. q = p.m_next;
  613. p.m_next = null;
  614. p = q;
  615. }
  616. while (p != null);
  617. p = last;
  618. do
  619. {
  620. q = p.m_prev;
  621. p.m_prev = null;
  622. p = q;
  623. }
  624. while (p != null);
  625. head = null;
  626. last = null;
  627. count = 0;
  628. }
  629. }
  630. public bool Contains(T item)
  631. {
  632. return item.m_curList == this;
  633. }
  634. public void CopyTo(T[] array, int arrayIndex)
  635. {
  636. for (FastLinkNode i = head; i != null; i = i.m_next)
  637. {
  638. array[arrayIndex] = (T)i;
  639. arrayIndex++;
  640. }
  641. }
  642. public IEnumerator<T> GetEnumerator()
  643. {
  644. return new Enumerator(this);
  645. }
  646. System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
  647. {
  648. return new Enumerator(this);
  649. }
  650. public struct Enumerator : IEnumerator<T>
  651. {
  652. private FastLinkList<T> list;
  653. private T current;
  654. public Enumerator(FastLinkList<T> list)
  655. {
  656. this.list = list;
  657. this.current = null;
  658. }
  659. public T Current
  660. {
  661. get { return current; }
  662. }
  663. object System.Collections.IEnumerator.Current
  664. {
  665. get { return current; }
  666. }
  667. public void Dispose()
  668. {
  669. current = null;
  670. }
  671. public bool MoveNext()
  672. {
  673. if (current == null)
  674. {
  675. this.current = (T)list.Head;
  676. }
  677. else
  678. {
  679. this.current = (T)current.Next;
  680. }
  681. return current != null;
  682. }
  683. public void Reset()
  684. {
  685. this.current = null;
  686. }
  687. }
  688. }
  689. }