Cleaned up code and fixed a few issues.

This commit is contained in:
MattMo 2023-07-24 11:46:58 -07:00
parent ffaee93aa6
commit 779ceee2c1
4 changed files with 41 additions and 17 deletions

View File

@ -2,9 +2,8 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>disable</Nullable>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject> <IsTestProject>true</IsTestProject>
<AssemblyName>MontoyaTech.Parallel.Net.Tests</AssemblyName> <AssemblyName>MontoyaTech.Parallel.Net.Tests</AssemblyName>

View File

@ -2,8 +2,8 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>disable</Nullable>
<AssemblyName>MontoyaTech.Parallel.Net</AssemblyName> <AssemblyName>MontoyaTech.Parallel.Net</AssemblyName>
<RootNamespace>MontoyaTech.Parallel.Net</RootNamespace> <RootNamespace>MontoyaTech.Parallel.Net</RootNamespace>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> <GeneratePackageOnBuild>True</GeneratePackageOnBuild>

View File

@ -2,6 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace MontoyaTech.Parallel.Net namespace MontoyaTech.Parallel.Net
@ -55,16 +56,24 @@ namespace MontoyaTech.Parallel.Net
} }
} }
/// <summary>
/// Whether or not this parallel task is running.
/// </summary>
protected bool running = false; protected bool running = false;
/// <summary>
/// Whether or not this parallel task has completed successfully.
/// </summary>
protected bool completed = false; protected bool completed = false;
/// <summary>
/// Whether or not this parallel task failed due to an exception.
/// </summary>
protected bool failed = false; protected bool failed = false;
protected bool exceptionStopped = false; /// <summary>
/// The thrown exception for this parallel task if any.
protected ManualResetEvent handle; /// </summary>
protected Exception thrownException = null; protected Exception thrownException = null;
/// <summary> /// <summary>

View File

@ -2,6 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace MontoyaTech.Parallel.Net namespace MontoyaTech.Parallel.Net
@ -24,10 +25,19 @@ namespace MontoyaTech.Parallel.Net
} }
} }
/// <summary>
/// The result of this parallel task.
/// </summary>
protected ResultT result = default(ResultT); protected ResultT result = default(ResultT);
/// <summary>
/// The function to run when this task is ran.
/// </summary>
protected Func<InputT, ResultT> func = null; protected Func<InputT, ResultT> func = null;
/// <summary>
/// The input to pass to the function when this task is ran.
/// </summary>
protected InputT input = default(InputT); protected InputT input = default(InputT);
/// <summary> /// <summary>
@ -55,7 +65,7 @@ namespace MontoyaTech.Parallel.Net
{ {
this.running = true; this.running = true;
this.handle = new ManualResetEvent(false); var handle = new ManualResetEvent(false);
ThreadPool.QueueUserWorkItem((object state) => ThreadPool.QueueUserWorkItem((object state) =>
{ {
@ -72,7 +82,7 @@ namespace MontoyaTech.Parallel.Net
this.thrownException = ex; this.thrownException = ex;
} }
this.handle.Set(); handle.Set();
if (countDown != null) if (countDown != null)
countDown.Signal(); countDown.Signal();
@ -82,8 +92,8 @@ namespace MontoyaTech.Parallel.Net
if (blocking) if (blocking)
{ {
if (!timeout.HasValue) if (!timeout.HasValue)
this.handle.WaitOne(); handle.WaitOne();
else if (!this.handle.WaitOne(timeout.Value) && throwOnTimeout) else if (!handle.WaitOne(timeout.Value) && throwOnTimeout)
throw new Exception($"ParallelTask did not complete within {timeout.Value.TotalMilliseconds} miliseconds"); throw new Exception($"ParallelTask did not complete within {timeout.Value.TotalMilliseconds} miliseconds");
} }
@ -97,8 +107,14 @@ namespace MontoyaTech.Parallel.Net
/// <typeparam name="InputT"></typeparam> /// <typeparam name="InputT"></typeparam>
public class ParallelTask<InputT> : ParallelTask public class ParallelTask<InputT> : ParallelTask
{ {
/// <summary>
/// The action to be ran when this task is run.
/// </summary>
protected Action<InputT> action = null; protected Action<InputT> action = null;
/// <summary>
/// The input to pass to the action when ran.
/// </summary>
protected InputT input = default(InputT); protected InputT input = default(InputT);
/// <summary> /// <summary>
@ -125,7 +141,7 @@ namespace MontoyaTech.Parallel.Net
{ {
this.running = true; this.running = true;
this.handle = new ManualResetEvent(false); var handle = new ManualResetEvent(false);
ThreadPool.QueueUserWorkItem((object state) => ThreadPool.QueueUserWorkItem((object state) =>
{ {
@ -142,7 +158,7 @@ namespace MontoyaTech.Parallel.Net
this.thrownException = ex; this.thrownException = ex;
} }
this.handle.Set(); handle.Set();
if (countDown != null) if (countDown != null)
countDown.Signal(); countDown.Signal();
@ -152,8 +168,8 @@ namespace MontoyaTech.Parallel.Net
if (blocking) if (blocking)
{ {
if (!timeout.HasValue) if (!timeout.HasValue)
this.handle.WaitOne(); handle.WaitOne();
else if (!this.handle.WaitOne(timeout.Value) && throwOnTimeout) else if (!handle.WaitOne(timeout.Value) && throwOnTimeout)
throw new Exception($"ParallelTask did not complete within {timeout.Value.TotalMilliseconds} miliseconds"); throw new Exception($"ParallelTask did not complete within {timeout.Value.TotalMilliseconds} miliseconds");
} }
} }