3 changed files
Shell | ||
QueueEx.cs + | ||
Shell.csproj | ||
SyncQueue.cs | ||
Add comment 1 Plus namespace BExplorer.Shell {
Add comment 2 Plus using System;
Add comment 3 Plus using System.Collections.Generic;
Add comment 4 Plus
Add comment 5 Plus /// <summary>
Add comment 6 Plus /// An enhanced Queue
Add comment 7 Plus /// </summary>
Add comment 8 Plus /// <typeparam name="T">The type of the elements in queue</typeparam>
Add comment 9 Plus public class QueueEx<T> {
Add comment 10 Plus private readonly Queue<T> _Queue = new Queue<T>();
Add comment 11 Plus
Add comment 12 Plus /// <summary>Removes all objects</summary>
Add comment 13 Plus public void Clear() => this._Queue.Clear();
Add comment 14 Plus
Add comment 15 Plus /// <summary>Gets the number of elements contained</summary>
Add comment 16 Plus /// <returns>Returns the number of elements in queue</returns>
Add comment 17 Plus public Int32 Count() => this._Queue.Count;
Add comment 18 Plus
Add comment 19 Plus /// <summary>
Add comment 20 Plus /// Determines whether an element is in the System.Collections.Generic.Queue`1.
Add comment 21 Plus /// </summary>
Add comment 22 Plus /// <param name="item">The object to locate in the System.Collections.Generic.Queue`1. The value can be null for reference types.</param>
Add comment 23 Plus /// <returns>true if item is found in the System.Collections.Generic.Queue`1; otherwise, false.</returns>
Add comment 24 Plus public Boolean Contains(T item) => this._Queue.Contains(item);
Add comment 25 Plus
Add comment 26 Plus /// <summary>
Add comment 27 Plus /// Removes and returns the object at the beginning of the System.Collections.Generic.Queue(Of T). while (queue.Count == 0) System.Threading.Monitor.Wait(queue);
Add comment 28 Plus /// </summary>
Add comment 29 Plus /// <returns>
Add comment 30 Plus /// The object that is removed from the beginning of the System.Collections.Generic.Queue(Of T).
Add comment 31 Plus /// </returns>
Add comment 32 Plus /// <Exceptions>
Add comment 33 Plus /// System.InvalidOperationException: The System.Collections.Generic.Queue(Of T) is empty.
Add comment 34 Plus /// </Exceptions>
Add comment 35 Plus public T Dequeue() => this._Queue.Dequeue();
Add comment 36 Plus
Add comment 37 Plus /// <summary>
Add comment 38 Plus /// Adds an object to the end of the System.Collections.Generic.Queue[T] then runs System.Threading.Monitor.PulseAll(queue) when queue.Count == 1;
Add comment 39 Plus /// </summary>
Add comment 40 Plus /// <param name="item">The object to add to the System.Collections.Generic.Queue[T]. The value can be null for reference types.</param>
Add comment 41 Plus /// <param name="force">Force the item to update even if it has queue already contains it</param>
Add comment 42 Plus /// <returns>Returns in the item enqued</returns>
Add comment 43 Plus public Boolean Enqueue(T item, Boolean force = false) {
Add comment 44 Plus if (!this._Queue.Contains(item) || force) {
Add comment 45 Plus this._Queue.Enqueue(item);
Add comment 46 Plus return true;
Add comment 47 Plus } else {
Add comment 48 Plus return false;
Add comment 49 Plus }
Add comment 50 Plus }
Add comment 51 Plus }
Add comment 52 Plus }
Add comment 109 <Compile Include="GlobalSuppressions.cs" />
Add comment 110 <Compile Include="ImageListEx.cs" />
Add comment 111 <Compile Include="Interop\IListView.cs" />
Add comment 112 Plus <Compile Include="QueueEx.cs" />
Add comment 112 113 <Compile Include="TooltipDataTemplateSelector.cs" />
Add comment 113 114 <Compile Include="ThreadSafeListWithLock.cs" />
Add comment 114 115 <Compile Include="ListViewEditor.cs" />
Add comment 1 Minus #define ConcurrentQueue
Add comment 1 Plus namespace BExplorer.Shell {
Add comment 2
Add comment 3 using System;
Add comment 4 Minus using System.Collections.Concurrent;
Add comment 5 4 using System.Collections.Generic;
Add comment 6 Minus using System.Linq;
Add comment 7 Minus using System.Text;
Add comment 8 Minus using System.Threading.Tasks;
Add comment 9 5
Add comment 10 Minus namespace BExplorer.Shell {
Add comment 11 Minus
Add comment 6 Plus /// <summary>
Add comment 7 Plus /// A Queue for sync actions
Add comment 8 Plus /// </summary>
Add comment 9 Plus /// <typeparam name="T">The type of the elements in queue</typeparam>
Add comment 12 10 [System.Diagnostics.DebuggerStepThrough]
Add comment 13 11 public class SyncQueue<T> {
Add comment 14 Minus private readonly Queue<T> queue = new Queue<T>();
Add comment 15 Minus public void Clear() => this.queue.Clear();
Add comment 16 Minus public int Count() => this.queue.Count;
Add comment 17 Minus public Boolean Contains(T item) => queue.Contains(item);
Add comment 12 Plus private readonly Queue<T> _Queue = new Queue<T>();
Add comment 18 13
Add comment 14 Plus public void Clear() => this._Queue.Clear();
Add comment 19 15
Add comment 16 Plus public Int32 Count() => this._Queue.Count;
Add comment 17 Plus
Add comment 18 Plus public Boolean Contains(T item) => this._Queue.Contains(item);
Add comment 19 Plus
Add comment 20 /// <summary>
Add comment 21 /// Adds an object to the end of the System.Collections.Generic.Queue[T] then runs System.Threading.Monitor.PulseAll(queue) when queue.Count == 1;
Add comment 22 /// </summary>
Add comment 23 /// <param name="item">The object to add to the System.Collections.Generic.Queue[T]. The value can be null for reference types.</param>
Add comment 24 /// <param name="force">Force the item to update even if it has queue already contains it</param>
Add comment 25 public void Enqueue(T item, Boolean force = false) {
Add comment 26 Minus lock (queue) {
Add comment 27 Minus if (force || !queue.Contains(item)) {
Add comment 28 Minus queue.Enqueue(item);
Add comment 26 Plus lock (this._Queue) {
Add comment 27 Plus if (force || !this._Queue.Contains(item)) {
Add comment 28 Plus this._Queue.Enqueue(item);
Add comment 29
Add comment 30 Minus if (queue.Count == 1) {
Add comment 30 Plus if (this._Queue.Count == 1) {
Add comment 31 // wake up any blocked dequeue
Add comment 32 Minus System.Threading.Monitor.PulseAll(queue);
Add comment 32 Plus System.Threading.Monitor.PulseAll(this._Queue);
Add comment 33 }
Add comment 34 }
Add comment 35 }
Add comment 46 /// System.InvalidOperationException: The System.Collections.Generic.Queue(Of T) is empty.
Add comment 47 /// </Exceptions>
Add comment 48 public T Dequeue() {
Add comment 49 Minus lock (queue) {
Add comment 50 Minus while (queue.Count == 0) {
Add comment 49 Plus lock (this._Queue) {
Add comment 50 Plus while (this._Queue.Count == 0) {
Add comment 51 // wait for item
Add comment 52 Minus System.Threading.Monitor.Wait(queue);
Add comment 52 Plus System.Threading.Monitor.Wait(this._Queue);
Add comment 53 }
Add comment 54
Add comment 55 Minus return queue.Dequeue();
Add comment 55 Plus return this._Queue.Dequeue();
Add comment 56 }
Add comment 57 }
Add comment 58 }
Add comment 59 Minus
Add comment 60 Minus public class QueueEx<T> {
Add comment 61 Minus private readonly Queue<T> queue = new Queue<T>();
Add comment 62 Minus /// <summary>Removes all objects</summary>
Add comment 63 Minus public void Clear() => this.queue.Clear();
Add comment 64 Minus
Add comment 65 Minus /// <summary>Gets the number of elements contained</summary>
Add comment 66 Minus public int Count() => this.queue.Count;
Add comment 67 Minus
Add comment 68 Minus /// <summary>
Add comment 69 Minus /// Determines whether an element is in the System.Collections.Generic.Queue`1.
Add comment 70 Minus /// </summary>
Add comment 71 Minus /// <param name="item">The object to locate in the System.Collections.Generic.Queue`1. The value can be null for reference types.</param>
Add comment 72 Minus /// <returns>true if item is found in the System.Collections.Generic.Queue`1; otherwise, false.</returns>
Add comment 73 Minus public Boolean Contains(T item) => queue.Contains(item);
Add comment 74 Minus
Add comment 75 Minus /// <summary>
Add comment 76 Minus /// Removes and returns the object at the beginning of the System.Collections.Generic.Queue(Of T). while (queue.Count == 0) System.Threading.Monitor.Wait(queue);
Add comment 77 Minus /// </summary>
Add comment 78 Minus /// <returns>
Add comment 79 Minus /// The object that is removed from the beginning of the System.Collections.Generic.Queue(Of T).
Add comment 80 Minus /// </returns>
Add comment 81 Minus /// <Exceptions>
Add comment 82 Minus /// System.InvalidOperationException: The System.Collections.Generic.Queue(Of T) is empty.
Add comment 83 Minus /// </Exceptions>
Add comment 84 Minus public T Dequeue() => queue.Dequeue();
Add comment 85 Minus
Add comment 86 Minus /// <summary>
Add comment 87 Minus /// Adds an object to the end of the System.Collections.Generic.Queue[T] then runs System.Threading.Monitor.PulseAll(queue) when queue.Count == 1;
Add comment 88 Minus /// </summary>
Add comment 89 Minus /// <param name="item">The object to add to the System.Collections.Generic.Queue[T]. The value can be null for reference types.</param>
Add comment 90 Minus /// <param name="force">Force the item to update even if it has queue already contains it</param>
Add comment 91 Minus public Boolean Enqueue(T item, Boolean force = false) {
Add comment 92 Minus if (!queue.Contains(item) || force) {
Add comment 93 Minus queue.Enqueue(item);
Add comment 94 Minus return true;
Add comment 95 Minus } else {
Add comment 96 Minus return false;
Add comment 97 Minus }
Add comment 98 Minus }
Add comment 99 Minus
Add comment 100 Minus
Add comment 101 Minus }
Add comment 102 Minus
Add comment 103 Minus // public class ConQueue<T> {
Add comment 104 Minus //#if ConcurrentQueue
Add comment 105 Minus
Add comment 106 Minus // private readonly ConcurrentQueue<T> queue = new ConcurrentQueue<T>();
Add comment 107 Minus
Add comment 108 Minus // public void Clear() {
Add comment 109 Minus // T Item;
Add comment 110 Minus // while (queue.TryDequeue(out Item)) {
Add comment 111 Minus
Add comment 112 Minus // }
Add comment 113 Minus // }
Add comment 114 Minus
Add comment 115 Minus // /// <summary>
Add comment 116 Minus // /// Adds an object to the end of the System.Collections.Generic.Queue[T] then runs System.Threading.Monitor.PulseAll(queue) when queue.Count == 1;
Add comment 117 Minus // /// </summary>
Add comment 118 Minus // /// <param name="item">The object to add to the System.Collections.Generic.Queue[T]. The value can be null for reference types.</param>
Add comment 119 Minus // public void Enqueue(T item) {
Add comment 120 Minus // lock (queue) {
Add comment 121 Minus // queue.Enqueue(item);
Add comment 122 Minus // if (queue.Count == 1) {
Add comment 123 Minus // // wake up any blocked dequeue
Add comment 124 Minus // System.Threading.Monitor.PulseAll(queue);
Add comment 125 Minus // }
Add comment 126 Minus // }
Add comment 127 Minus // }
Add comment 128 Minus
Add comment 129 Minus // /// <summary>
Add comment 130 Minus // /// Removes and returns the object at the beginning of the System.Collections.Generic.Queue(Of T). while (queue.Count == 0) System.Threading.Monitor.Wait(queue);
Add comment 131 Minus // /// </summary>
Add comment 132 Minus // /// <returns>
Add comment 133 Minus // /// The object that is removed from the beginning of the System.Collections.Generic.Queue(Of T).
Add comment 134 Minus // /// </returns>
Add comment 135 Minus // /// <Exceptions>
Add comment 136 Minus // /// System.InvalidOperationException: The System.Collections.Generic.Queue(Of T) is empty.
Add comment 137 Minus // /// </Exceptions>
Add comment 138 Minus // public T Dequeue() {
Add comment 139 Minus // T Result;
Add comment 140 Minus // lock (queue) {
Add comment 141 Minus // if (queue.Count == 0) {
Add comment 142 Minus // System.Threading.Monitor.Wait(queue);
Add comment 143 Minus // }
Add comment 144 Minus // if (!queue.TryDequeue(out Result)) {
Add comment 145 Minus // //this.ToString();
Add comment 146 Minus
Add comment 147 Minus // //throw new ApplicationException("Why!!");
Add comment 148 Minus // }
Add comment 149 Minus // }
Add comment 150 Minus
Add comment 151 Minus // return Result;
Add comment 152 Minus // }
Add comment 153 Minus
Add comment 154 Minus //#else
Add comment 155 Minus // public readonly Queue<T> queue = new Queue<T>();
Add comment 156 Minus
Add comment 157 Minus // public void Clear() {
Add comment 158 Minus // this.queue.Clear();
Add comment 159 Minus // }
Add comment 160 Minus
Add comment 161 Minus // /// <summary>
Add comment 162 Minus // /// Adds an object to the end of the System.Collections.Generic.Queue<T> then runs System.Threading.Monitor.PulseAll(queue) when queue.Count == 1;
Add comment 163 Minus // /// </summary>
Add comment 164 Minus // /// <param name="item">The object to add to the System.Collections.Generic.Queue<T>. The value can be null for reference types.</param>
Add comment 165 Minus // public void Enqueue(T item) {
Add comment 166 Minus // lock (queue) {
Add comment 167 Minus // queue.Enqueue(item);
Add comment 168 Minus
Add comment 169 Minus // if (queue.Count == 1) {
Add comment 170 Minus // // wake up any blocked dequeue
Add comment 171 Minus // System.Threading.Monitor.PulseAll(queue);
Add comment 172 Minus // }
Add comment 173 Minus // }
Add comment 174 Minus // }
Add comment 175 Minus
Add comment 176 Minus // /// <summary>
Add comment 177 Minus // /// Removes and returns the object at the beginning of the System.Collections.Generic.Queue(Of T). while (queue.Count == 0) System.Threading.Monitor.Wait(queue);
Add comment 178 Minus // /// </summary>
Add comment 179 Minus // /// <returns>
Add comment 180 Minus // /// The object that is removed from the beginning of the System.Collections.Generic.Queue(Of T).
Add comment 181 Minus // /// </returns>
Add comment 182 Minus // /// <Exceptions>
Add comment 183 Minus // /// System.InvalidOperationException: The System.Collections.Generic.Queue(Of T) is empty.
Add comment 184 Minus // /// </Exceptions>
Add comment 185 Minus // public T Dequeue() {
Add comment 186 Minus // lock (queue) {
Add comment 187 Minus // while (queue.Count == 0) {
Add comment 188 Minus // // wait for item
Add comment 189 Minus // System.Threading.Monitor.Wait(queue);
Add comment 190 Minus // }
Add comment 191 Minus
Add comment 192 Minus // return queue.Dequeue();
Add comment 193 Minus // }
Add comment 194 Minus // }
Add comment 195 Minus //#endif
Add comment 196 Minus // }
Add comment 197 Minus
Add comment 198 59 }
Add comment 199 60