Click here to Skip to main content
15,895,142 members
Articles / Programming Languages / C#

Dealing with Progressive Operations

Rate me:
Please Sign up or sign in to vote.
4.92/5 (26 votes)
10 May 2010CPOL30 min read 38.6K   319   60  
Through a clean OOP solution to deal with progressive operations, I will implicitly show you how OOP principles can work together to make a full, clean solution.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Erik.Utilities.Bases;
using Erik.Utilities.Interfaces;

namespace Erik.Utilities.Bases
{
    public class CompositePO :
        BaseProgressiveOperation, ICompositeProgressiveOperation
    {
        protected List<IProgressiveOperation> _operations;
        protected IProgressiveOperation _currentOperation;

        protected CompositePO() { }

        public CompositePO(List<IProgressiveOperation> operations)
        {
            _operations = operations;

            _totalSteps = _operations.Sum<IProgressiveOperation>(po => po.TotalSteps);
        }

        public override void Start()
        {
            _currentStep = 0;
            OnOperationStart(EventArgs.Empty);

            foreach (IProgressiveOperation po in _operations)
            {
                _currentOperation = po;

                po.OperationProgress += 
                    (sender, e) =>
                    {
                        _currentStep++;
                        OnOperationProgress(EventArgs.Empty);
                    };

                OnNewOperation(EventArgs.Empty);

                po.Start();
            }

            OnOperationEnd(EventArgs.Empty);
        }

        protected virtual void OnNewOperation(EventArgs e)
        {
            if (NewOperation != null)
                NewOperation(this, EventArgs.Empty);
        }

        #region ICompositeProgressiveOperation Members

        public virtual IProgressiveOperation CurrentOperation
        {
            get { return _currentOperation; }
        }

        public event EventHandler NewOperation;

        #endregion
    }
}

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
Technical Lead
Spain Spain
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions