Click here to Skip to main content
15,884,237 members
Articles / Programming Languages / C#

NParallel, A Small Parallel Execution Library

Rate me:
Please Sign up or sign in to vote.
4.06/5 (30 votes)
19 Dec 2007CPOL9 min read 68.4K   606   60  
A Simple Library which allows you to write asynchronous code easily, almost in a synchronous pattern.
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;

namespace Leaf.Parallel
{
    internal class NDefaultStrategy : IParallelStrategy
    {
        NExceptionDel exceptionRoutine = null;
        
        public NDefaultStrategy()
        {
        }

        #region IMPL of the parallel invocation
        NResult<T> ExecuteImpl<T>(NFunc<T> asyncRoutine, NResultDel<T> callbackRoutine, NExceptionDel exceptionRoutine, CallbackMode callbackMode)
        {
            NResultDefault<NFunc<T>, NResultDel<T>, T> result =
                new NResultDefault<NFunc<T>, NResultDel<T>, T>(asyncRoutine, callbackRoutine, exceptionRoutine);

            NQueue.Instance.EnQueue(result);
            IAsyncResult ar = asyncRoutine.BeginInvoke(result.AutoCallback, null);
            result.CallbackMode = callbackMode;
            result.AsyncHandle = ar;
            Debug.Assert(ar != null);

            return result;
        }

        NResult<NVoid> ExecuteImpl(NVoidCallDel asyncRoutine, NVoidCallDel callback, NExceptionDel exceptionRoutine, CallbackMode marshal)
        {
            NResultDefault<NVoidCallDel, NVoidCallDel, NVoid> result =
                new NResultDefault<NVoidCallDel, NVoidCallDel, NVoid>(asyncRoutine, callback, exceptionRoutine);

            result.CallbackMode = marshal;
            NQueue.Instance.EnQueue(result);
            IAsyncResult ar = asyncRoutine.BeginInvoke(result.AutoCallback, null);
            result.AsyncHandle = ar;
            Debug.Assert(ar != null && result != null);

            return result;
        }
        #endregion

        #region IParallelStrategy Members
        public NResult<T> Execute<T>(NFunc<T> asyncRoutine, NResultDel<T> callbackRoutine, NExceptionDel exceptionRoutine, CallbackMode callbackMode)
        {
            if (exceptionRoutine == null)
            {
                exceptionRoutine = this.exceptionRoutine;
            }

            return ExecuteImpl<T>(asyncRoutine, callbackRoutine,exceptionRoutine, callbackMode);
        }

        public NResult<NVoid> Execute(NVoidCallDel asyncRoutine, NVoidCallDel callbackRoutine, NExceptionDel exceptionRoutine, CallbackMode callbackMode)
        {
            if (exceptionRoutine == null)
            {
                exceptionRoutine = this.exceptionRoutine;
            }
            return ExecuteImpl(asyncRoutine, callbackRoutine, exceptionRoutine, callbackMode);
        }

        public NExceptionDel ExceptionDel { 
            get
            {
                return exceptionRoutine;
            }
            set 
            {
                exceptionRoutine = value;
            }
        }

        #endregion

        void DumpException(Exception exc) 
        {
            Console.WriteLine("Exception : {0}" , exc.Message);
            Console.WriteLine("CallStack : {0}", exc.StackTrace);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
China China
Leaf is a software developer based in ShangHai China.
My major programming languages are C#/C++.
I am very interested in distributed system design and rich client development.
Current I am working on NParallel.

Comments and Discussions