123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonLang.Concurrent
- {
- public class AtomicInteger
- {
- private int mValue;
- public AtomicInteger(int v)
- {
- this.mValue = v;
- }
- public int Value
- {
- get
- {
- lock (this)
- {
- return mValue;
- }
- }
- set
- {
- lock (this)
- {
- mValue = value;
- }
- }
- }
- public int GetAndSet(int val)
- {
- lock (this)
- {
- int ret = mValue;
- mValue = val;
- return ret;
- }
- }
- public int GetAndIncrement()
- {
- lock (this)
- {
- int ret = mValue;
- mValue++;
- return ret;
- }
- }
- public int GetAndDecrement()
- {
- lock (this)
- {
- int ret = mValue;
- mValue--;
- return ret;
- }
- }
- public int GetAndAdd(int delta)
- {
- lock (this)
- {
- int ret = mValue;
- mValue += delta;
- return ret;
- }
- }
- public int IncrementAndGet()
- {
- lock (this)
- {
- mValue++;
- return mValue;
- }
- }
- public int DecrementAndGet()
- {
- lock (this)
- {
- mValue--;
- return mValue;
- }
- }
- public int AddAndGet(int delta)
- {
- lock (this)
- {
- mValue += delta;
- return mValue;
- }
- }
- public bool CompareAndSet(int expect, int update)
- {
- lock (this)
- {
- if (expect == mValue)
- {
- mValue = update;
- return true;
- }
- return false;
- }
- }
- public static AtomicInteger operator +(AtomicInteger value1, int value2)
- {
- lock (value1)
- {
- value1.Value += value2;
- }
- return value1;
- }
- public static AtomicInteger operator -(AtomicInteger value1, int value2)
- {
- lock (value1)
- {
- value1.Value -= value2;
- }
- return value1;
- }
- public static AtomicInteger operator *(AtomicInteger value1, int value2)
- {
- lock (value1)
- {
- value1.Value *= value2;
- }
- return value1;
- }
- public static AtomicInteger operator /(AtomicInteger value1, int value2)
- {
- lock (value1)
- {
- value1.Value /= value2;
- }
- return value1;
- }
- public static AtomicInteger operator ++(AtomicInteger value1)
- {
- lock (value1)
- {
- value1.Value += 1;
- }
- return value1;
- }
- public static AtomicInteger operator --(AtomicInteger value1)
- {
- lock (value1)
- {
- value1.Value -= 1;
- }
- return value1;
- }
- }
- public class AtomicLong
- {
- private long mValue;
- public AtomicLong(long v)
- {
- this.mValue = v;
- }
- public long Value
- {
- get
- {
- lock (this)
- {
- return mValue;
- }
- }
- set
- {
- lock (this)
- {
- mValue = value;
- }
- }
- }
- public long GetAndSet(long val)
- {
- lock (this)
- {
- long ret = mValue;
- mValue = val;
- return ret;
- }
- }
- public long GetAndIncrement()
- {
- lock (this)
- {
- long ret = mValue;
- mValue++;
- return ret;
- }
- }
- public long GetAndDecrement()
- {
- lock (this)
- {
- long ret = mValue;
- mValue--;
- return ret;
- }
- }
- public long GetAndAdd(long delta)
- {
- lock (this)
- {
- long ret = mValue;
- mValue += delta;
- return ret;
- }
- }
- public long IncrementAndGet()
- {
- lock (this)
- {
- mValue++;
- return mValue;
- }
- }
- public long DecrementAndGet()
- {
- lock (this)
- {
- mValue--;
- return mValue;
- }
- }
- public long AddAndGet(long delta)
- {
- lock (this)
- {
- mValue += delta;
- return mValue;
- }
- }
- public bool CompareAndSet(long expect, long update)
- {
- lock (this)
- {
- if (expect == mValue)
- {
- mValue = update;
- return true;
- }
- return false;
- }
- }
- public static AtomicLong operator +(AtomicLong value1, long value2)
- {
- lock (value1)
- {
- value1.Value += value2;
- }
- return value1;
- }
- public static AtomicLong operator -(AtomicLong value1, long value2)
- {
- lock (value1)
- {
- value1.Value -= value2;
- }
- return value1;
- }
- public static AtomicLong operator *(AtomicLong value1, long value2)
- {
- lock (value1)
- {
- value1.Value *= value2;
- }
- return value1;
- }
- public static AtomicLong operator /(AtomicLong value1, long value2)
- {
- lock (value1)
- {
- value1.Value /= value2;
- }
- return value1;
- }
- public static AtomicLong operator ++(AtomicLong value1)
- {
- lock (value1)
- {
- value1.Value += 1;
- }
- return value1;
- }
- public static AtomicLong operator --(AtomicLong value1)
- {
- lock (value1)
- {
- value1.Value -= 1;
- }
- return value1;
- }
- }
- public class AtomicUInt
- {
- private uint mValue;
- public AtomicUInt(uint v)
- {
- this.mValue = v;
- }
- public uint Value
- {
- get
- {
- lock (this)
- {
- return mValue;
- }
- }
- set
- {
- lock (this)
- {
- mValue = value;
- }
- }
- }
- public uint GetAndSet(uint val)
- {
- lock (this)
- {
- uint ret = mValue;
- mValue = val;
- return ret;
- }
- }
- public uint GetAndIncrement()
- {
- lock (this)
- {
- uint ret = mValue;
- mValue++;
- return ret;
- }
- }
- public uint GetAndDecrement()
- {
- lock (this)
- {
- uint ret = mValue;
- mValue--;
- return ret;
- }
- }
- public uint GetAndAdd(uint delta)
- {
- lock (this)
- {
- uint ret = mValue;
- mValue += delta;
- return ret;
- }
- }
- public uint IncrementAndGet()
- {
- lock (this)
- {
- mValue++;
- return mValue;
- }
- }
- public uint DecrementAndGet()
- {
- lock (this)
- {
- mValue--;
- return mValue;
- }
- }
- public uint AddAndGet(uint delta)
- {
- lock (this)
- {
- mValue += delta;
- return mValue;
- }
- }
- public bool CompareAndSet(uint expect, uint update)
- {
- lock (this)
- {
- if (expect == mValue)
- {
- mValue = update;
- return true;
- }
- return false;
- }
- }
- public static AtomicUInt operator +(AtomicUInt value1, uint value2)
- {
- lock (value1)
- {
- value1.Value += value2;
- }
- return value1;
- }
- public static AtomicUInt operator -(AtomicUInt value1, uint value2)
- {
- lock (value1)
- {
- value1.Value -= value2;
- }
- return value1;
- }
- public static AtomicUInt operator *(AtomicUInt value1, uint value2)
- {
- lock (value1)
- {
- value1.Value *= value2;
- }
- return value1;
- }
- public static AtomicUInt operator /(AtomicUInt value1, uint value2)
- {
- lock (value1)
- {
- value1.Value /= value2;
- }
- return value1;
- }
- public static AtomicUInt operator ++(AtomicUInt value1)
- {
- lock (value1)
- {
- value1.Value += 1;
- }
- return value1;
- }
- public static AtomicUInt operator --(AtomicUInt value1)
- {
- lock (value1)
- {
- value1.Value -= 1;
- }
- return value1;
- }
- }
- public class AtomicFloat
- {
- private float mValue;
- public AtomicFloat(float v)
- {
- this.mValue = v;
- }
- public float Value
- {
- get
- {
- lock (this)
- {
- return mValue;
- }
- }
- set
- {
- lock (this)
- {
- mValue = value;
- }
- }
- }
- public float GetAndSet(float val)
- {
- lock (this)
- {
- float ret = mValue;
- mValue = val;
- return ret;
- }
- }
- public float GetAndIncrement()
- {
- lock (this)
- {
- float ret = mValue;
- mValue++;
- return ret;
- }
- }
- public float GetAndDecrement()
- {
- lock (this)
- {
- float ret = mValue;
- mValue--;
- return ret;
- }
- }
- public float GetAndAdd(float delta)
- {
- lock (this)
- {
- float ret = mValue;
- mValue += delta;
- return ret;
- }
- }
- public float AddAndGet(float delta)
- {
- lock (this)
- {
- mValue += delta;
- return mValue;
- }
- }
- public bool CompareAndSet(float expect, float update)
- {
- lock (this)
- {
- if (expect == mValue)
- {
- mValue = update;
- return true;
- }
- return false;
- }
- }
- public static AtomicFloat operator +(AtomicFloat value1, float value2)
- {
- lock (value1)
- {
- value1.Value += value2;
- }
- return value1;
- }
- public static AtomicFloat operator -(AtomicFloat value1, float value2)
- {
- lock (value1)
- {
- value1.Value -= value2;
- }
- return value1;
- }
- public static AtomicFloat operator *(AtomicFloat value1, float value2)
- {
- lock (value1)
- {
- value1.Value *= value2;
- }
- return value1;
- }
- public static AtomicFloat operator /(AtomicFloat value1, float value2)
- {
- lock (value1)
- {
- value1.Value /= value2;
- }
- return value1;
- }
- public static AtomicFloat operator ++(AtomicFloat value1)
- {
- lock (value1)
- {
- value1.Value += 1;
- }
- return value1;
- }
- public static AtomicFloat operator --(AtomicFloat value1)
- {
- lock (value1)
- {
- value1.Value -= 1;
- }
- return value1;
- }
- }
- public class AtomicReference<T>
- {
- private T mData;
- public AtomicReference(T data)
- {
- this.mData = data;
- }
- public T Value
- {
- get
- {
- lock (this)
- {
- return mData;
- }
- }
- set
- {
- lock (this)
- {
- mData = value;
- }
- }
- }
- public bool Update(T data)
- {
- lock (this)
- {
-
- if (!mData.Equals(data))
- {
- mData = data;
- return true;
- }
- return false;
- }
- }
- public T GetAndSet(T data)
- {
- lock (this)
- {
- T ret = mData;
- mData = data;
- return ret;
- }
- }
- public bool CompareAndSet(Predicate<T> expect, T update)
- {
- lock (this)
- {
- if (expect(mData))
- {
- mData = update;
- return true;
- }
- return false;
- }
- }
- public bool CompareAndSet(T expect, T update)
- {
- lock (this)
- {
- if (expect.Equals(mData))
- {
- mData = update;
- return true;
- }
- return false;
- }
- }
- public bool CompareNotAndSet(T expect, T update)
- {
- lock (this)
- {
- if (!expect.Equals(mData))
- {
- mData = update;
- return true;
- }
- return false;
- }
- }
- }
- public class IDGenerator
- {
- private uint indexer = 0;
- public uint NextID()
- {
- lock (this)
- {
- indexer++;
- uint ret = indexer;
- return ret;
- }
- }
- public uint Regist(uint value)
- {
- lock (this)
- {
- indexer = Math.Max(indexer, value);
- }
- return value;
- }
- }
- }
|