Concurrent.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CommonLang.Concurrent
  5. {
  6. public class AtomicInteger
  7. {
  8. private int mValue;
  9. public AtomicInteger(int v)
  10. {
  11. this.mValue = v;
  12. }
  13. public int Value
  14. {
  15. get
  16. {
  17. lock (this)
  18. {
  19. return mValue;
  20. }
  21. }
  22. set
  23. {
  24. lock (this)
  25. {
  26. mValue = value;
  27. }
  28. }
  29. }
  30. public int GetAndSet(int val)
  31. {
  32. lock (this)
  33. {
  34. int ret = mValue;
  35. mValue = val;
  36. return ret;
  37. }
  38. }
  39. public int GetAndIncrement()
  40. {
  41. lock (this)
  42. {
  43. int ret = mValue;
  44. mValue++;
  45. return ret;
  46. }
  47. }
  48. public int GetAndDecrement()
  49. {
  50. lock (this)
  51. {
  52. int ret = mValue;
  53. mValue--;
  54. return ret;
  55. }
  56. }
  57. public int GetAndAdd(int delta)
  58. {
  59. lock (this)
  60. {
  61. int ret = mValue;
  62. mValue += delta;
  63. return ret;
  64. }
  65. }
  66. public int IncrementAndGet()
  67. {
  68. lock (this)
  69. {
  70. mValue++;
  71. return mValue;
  72. }
  73. }
  74. public int DecrementAndGet()
  75. {
  76. lock (this)
  77. {
  78. mValue--;
  79. return mValue;
  80. }
  81. }
  82. public int AddAndGet(int delta)
  83. {
  84. lock (this)
  85. {
  86. mValue += delta;
  87. return mValue;
  88. }
  89. }
  90. public bool CompareAndSet(int expect, int update)
  91. {
  92. lock (this)
  93. {
  94. if (expect == mValue)
  95. {
  96. mValue = update;
  97. return true;
  98. }
  99. return false;
  100. }
  101. }
  102. public static AtomicInteger operator +(AtomicInteger value1, int value2)
  103. {
  104. lock (value1)
  105. {
  106. value1.Value += value2;
  107. }
  108. return value1;
  109. }
  110. public static AtomicInteger operator -(AtomicInteger value1, int value2)
  111. {
  112. lock (value1)
  113. {
  114. value1.Value -= value2;
  115. }
  116. return value1;
  117. }
  118. public static AtomicInteger operator *(AtomicInteger value1, int value2)
  119. {
  120. lock (value1)
  121. {
  122. value1.Value *= value2;
  123. }
  124. return value1;
  125. }
  126. public static AtomicInteger operator /(AtomicInteger value1, int value2)
  127. {
  128. lock (value1)
  129. {
  130. value1.Value /= value2;
  131. }
  132. return value1;
  133. }
  134. public static AtomicInteger operator ++(AtomicInteger value1)
  135. {
  136. lock (value1)
  137. {
  138. value1.Value += 1;
  139. }
  140. return value1;
  141. }
  142. public static AtomicInteger operator --(AtomicInteger value1)
  143. {
  144. lock (value1)
  145. {
  146. value1.Value -= 1;
  147. }
  148. return value1;
  149. }
  150. }
  151. public class AtomicLong
  152. {
  153. private long mValue;
  154. public AtomicLong(long v)
  155. {
  156. this.mValue = v;
  157. }
  158. public long Value
  159. {
  160. get
  161. {
  162. lock (this)
  163. {
  164. return mValue;
  165. }
  166. }
  167. set
  168. {
  169. lock (this)
  170. {
  171. mValue = value;
  172. }
  173. }
  174. }
  175. public long GetAndSet(long val)
  176. {
  177. lock (this)
  178. {
  179. long ret = mValue;
  180. mValue = val;
  181. return ret;
  182. }
  183. }
  184. public long GetAndIncrement()
  185. {
  186. lock (this)
  187. {
  188. long ret = mValue;
  189. mValue++;
  190. return ret;
  191. }
  192. }
  193. public long GetAndDecrement()
  194. {
  195. lock (this)
  196. {
  197. long ret = mValue;
  198. mValue--;
  199. return ret;
  200. }
  201. }
  202. public long GetAndAdd(long delta)
  203. {
  204. lock (this)
  205. {
  206. long ret = mValue;
  207. mValue += delta;
  208. return ret;
  209. }
  210. }
  211. public long IncrementAndGet()
  212. {
  213. lock (this)
  214. {
  215. mValue++;
  216. return mValue;
  217. }
  218. }
  219. public long DecrementAndGet()
  220. {
  221. lock (this)
  222. {
  223. mValue--;
  224. return mValue;
  225. }
  226. }
  227. public long AddAndGet(long delta)
  228. {
  229. lock (this)
  230. {
  231. mValue += delta;
  232. return mValue;
  233. }
  234. }
  235. public bool CompareAndSet(long expect, long update)
  236. {
  237. lock (this)
  238. {
  239. if (expect == mValue)
  240. {
  241. mValue = update;
  242. return true;
  243. }
  244. return false;
  245. }
  246. }
  247. public static AtomicLong operator +(AtomicLong value1, long value2)
  248. {
  249. lock (value1)
  250. {
  251. value1.Value += value2;
  252. }
  253. return value1;
  254. }
  255. public static AtomicLong operator -(AtomicLong value1, long value2)
  256. {
  257. lock (value1)
  258. {
  259. value1.Value -= value2;
  260. }
  261. return value1;
  262. }
  263. public static AtomicLong operator *(AtomicLong value1, long value2)
  264. {
  265. lock (value1)
  266. {
  267. value1.Value *= value2;
  268. }
  269. return value1;
  270. }
  271. public static AtomicLong operator /(AtomicLong value1, long value2)
  272. {
  273. lock (value1)
  274. {
  275. value1.Value /= value2;
  276. }
  277. return value1;
  278. }
  279. public static AtomicLong operator ++(AtomicLong value1)
  280. {
  281. lock (value1)
  282. {
  283. value1.Value += 1;
  284. }
  285. return value1;
  286. }
  287. public static AtomicLong operator --(AtomicLong value1)
  288. {
  289. lock (value1)
  290. {
  291. value1.Value -= 1;
  292. }
  293. return value1;
  294. }
  295. }
  296. public class AtomicUInt
  297. {
  298. private uint mValue;
  299. public AtomicUInt(uint v)
  300. {
  301. this.mValue = v;
  302. }
  303. public uint Value
  304. {
  305. get
  306. {
  307. lock (this)
  308. {
  309. return mValue;
  310. }
  311. }
  312. set
  313. {
  314. lock (this)
  315. {
  316. mValue = value;
  317. }
  318. }
  319. }
  320. public uint GetAndSet(uint val)
  321. {
  322. lock (this)
  323. {
  324. uint ret = mValue;
  325. mValue = val;
  326. return ret;
  327. }
  328. }
  329. public uint GetAndIncrement()
  330. {
  331. lock (this)
  332. {
  333. uint ret = mValue;
  334. mValue++;
  335. return ret;
  336. }
  337. }
  338. public uint GetAndDecrement()
  339. {
  340. lock (this)
  341. {
  342. uint ret = mValue;
  343. mValue--;
  344. return ret;
  345. }
  346. }
  347. public uint GetAndAdd(uint delta)
  348. {
  349. lock (this)
  350. {
  351. uint ret = mValue;
  352. mValue += delta;
  353. return ret;
  354. }
  355. }
  356. public uint IncrementAndGet()
  357. {
  358. lock (this)
  359. {
  360. mValue++;
  361. return mValue;
  362. }
  363. }
  364. public uint DecrementAndGet()
  365. {
  366. lock (this)
  367. {
  368. mValue--;
  369. return mValue;
  370. }
  371. }
  372. public uint AddAndGet(uint delta)
  373. {
  374. lock (this)
  375. {
  376. mValue += delta;
  377. return mValue;
  378. }
  379. }
  380. public bool CompareAndSet(uint expect, uint update)
  381. {
  382. lock (this)
  383. {
  384. if (expect == mValue)
  385. {
  386. mValue = update;
  387. return true;
  388. }
  389. return false;
  390. }
  391. }
  392. public static AtomicUInt operator +(AtomicUInt value1, uint value2)
  393. {
  394. lock (value1)
  395. {
  396. value1.Value += value2;
  397. }
  398. return value1;
  399. }
  400. public static AtomicUInt operator -(AtomicUInt value1, uint value2)
  401. {
  402. lock (value1)
  403. {
  404. value1.Value -= value2;
  405. }
  406. return value1;
  407. }
  408. public static AtomicUInt operator *(AtomicUInt value1, uint value2)
  409. {
  410. lock (value1)
  411. {
  412. value1.Value *= value2;
  413. }
  414. return value1;
  415. }
  416. public static AtomicUInt operator /(AtomicUInt value1, uint value2)
  417. {
  418. lock (value1)
  419. {
  420. value1.Value /= value2;
  421. }
  422. return value1;
  423. }
  424. public static AtomicUInt operator ++(AtomicUInt value1)
  425. {
  426. lock (value1)
  427. {
  428. value1.Value += 1;
  429. }
  430. return value1;
  431. }
  432. public static AtomicUInt operator --(AtomicUInt value1)
  433. {
  434. lock (value1)
  435. {
  436. value1.Value -= 1;
  437. }
  438. return value1;
  439. }
  440. }
  441. public class AtomicFloat
  442. {
  443. private float mValue;
  444. public AtomicFloat(float v)
  445. {
  446. this.mValue = v;
  447. }
  448. public float Value
  449. {
  450. get
  451. {
  452. lock (this)
  453. {
  454. return mValue;
  455. }
  456. }
  457. set
  458. {
  459. lock (this)
  460. {
  461. mValue = value;
  462. }
  463. }
  464. }
  465. public float GetAndSet(float val)
  466. {
  467. lock (this)
  468. {
  469. float ret = mValue;
  470. mValue = val;
  471. return ret;
  472. }
  473. }
  474. public float GetAndIncrement()
  475. {
  476. lock (this)
  477. {
  478. float ret = mValue;
  479. mValue++;
  480. return ret;
  481. }
  482. }
  483. public float GetAndDecrement()
  484. {
  485. lock (this)
  486. {
  487. float ret = mValue;
  488. mValue--;
  489. return ret;
  490. }
  491. }
  492. public float GetAndAdd(float delta)
  493. {
  494. lock (this)
  495. {
  496. float ret = mValue;
  497. mValue += delta;
  498. return ret;
  499. }
  500. }
  501. public float AddAndGet(float delta)
  502. {
  503. lock (this)
  504. {
  505. mValue += delta;
  506. return mValue;
  507. }
  508. }
  509. public bool CompareAndSet(float expect, float update)
  510. {
  511. lock (this)
  512. {
  513. if (expect == mValue)
  514. {
  515. mValue = update;
  516. return true;
  517. }
  518. return false;
  519. }
  520. }
  521. public static AtomicFloat operator +(AtomicFloat value1, float value2)
  522. {
  523. lock (value1)
  524. {
  525. value1.Value += value2;
  526. }
  527. return value1;
  528. }
  529. public static AtomicFloat operator -(AtomicFloat value1, float value2)
  530. {
  531. lock (value1)
  532. {
  533. value1.Value -= value2;
  534. }
  535. return value1;
  536. }
  537. public static AtomicFloat operator *(AtomicFloat value1, float value2)
  538. {
  539. lock (value1)
  540. {
  541. value1.Value *= value2;
  542. }
  543. return value1;
  544. }
  545. public static AtomicFloat operator /(AtomicFloat value1, float value2)
  546. {
  547. lock (value1)
  548. {
  549. value1.Value /= value2;
  550. }
  551. return value1;
  552. }
  553. public static AtomicFloat operator ++(AtomicFloat value1)
  554. {
  555. lock (value1)
  556. {
  557. value1.Value += 1;
  558. }
  559. return value1;
  560. }
  561. public static AtomicFloat operator --(AtomicFloat value1)
  562. {
  563. lock (value1)
  564. {
  565. value1.Value -= 1;
  566. }
  567. return value1;
  568. }
  569. }
  570. public class AtomicReference<T>
  571. {
  572. private T mData;
  573. public AtomicReference(T data)
  574. {
  575. this.mData = data;
  576. }
  577. public T Value
  578. {
  579. get
  580. {
  581. lock (this)
  582. {
  583. return mData;
  584. }
  585. }
  586. set
  587. {
  588. lock (this)
  589. {
  590. mData = value;
  591. }
  592. }
  593. }
  594. public bool Update(T data)
  595. {
  596. lock (this)
  597. {
  598. if (!mData.Equals(data))
  599. {
  600. mData = data;
  601. return true;
  602. }
  603. return false;
  604. }
  605. }
  606. public T GetAndSet(T data)
  607. {
  608. lock (this)
  609. {
  610. T ret = mData;
  611. mData = data;
  612. return ret;
  613. }
  614. }
  615. public bool CompareAndSet(Predicate<T> expect, T update)
  616. {
  617. lock (this)
  618. {
  619. if (expect(mData))
  620. {
  621. mData = update;
  622. return true;
  623. }
  624. return false;
  625. }
  626. }
  627. public bool CompareAndSet(T expect, T update)
  628. {
  629. lock (this)
  630. {
  631. if (expect.Equals(mData))
  632. {
  633. mData = update;
  634. return true;
  635. }
  636. return false;
  637. }
  638. }
  639. public bool CompareNotAndSet(T expect, T update)
  640. {
  641. lock (this)
  642. {
  643. if (!expect.Equals(mData))
  644. {
  645. mData = update;
  646. return true;
  647. }
  648. return false;
  649. }
  650. }
  651. }
  652. public class IDGenerator
  653. {
  654. private uint indexer = 0;
  655. public uint NextID()
  656. {
  657. lock (this)
  658. {
  659. indexer++;
  660. uint ret = indexer;
  661. return ret;
  662. }
  663. }
  664. public uint Regist(uint value)
  665. {
  666. lock (this)
  667. {
  668. indexer = Math.Max(indexer, value);
  669. }
  670. return value;
  671. }
  672. }
  673. }