Click here to Skip to main content
15,886,806 members
Articles / Programming Languages / C#

Building an MVP Framework for .NET. Part 4: Strongly Typed Associations

Rate me:
Please Sign up or sign in to vote.
4.86/5 (4 votes)
25 Apr 2008Ms-PL2 min read 27.5K   339   31  
In this article we continue developing a Model-View-Presenter framework for .NET platform. The new features we are implementing here are strongly typed asscoiations between controllers, views and tasks for higher convenience and type safety.
//===========================================
// MVC# Framework | www.MVCSharp.org        |
// ------------------------------------------
// Copyright (C) 2008 www.MVCSharp.org      |
// All rights reserved.                     |
//===========================================

using System;
using System.Text;
using MVCSharp.Core.Configuration;
using MVCSharp.Core.Configuration.Tasks;
using MVCSharp.Core.Views;

namespace MVCSharp.Core.Tasks
{
    #region Documentation
    /// <summary>
    /// TasksManager class is responsible for starting tasks. Task
    /// descriptions are obtained from the associated
    /// <see cref="TasksManager.Config">TasksManager.Config</see> object.
    /// </summary>
    #endregion
    public class TasksManager
    {
        private MVCConfiguration config;

        #region Documentation
        /// <summary>
        /// Parameterless constructor.
        /// </summary>
        #endregion
        public TasksManager() { }

        #region Documentation
        /// <summary>
        /// Creates a tasks manager and links it to the MVCConfiguration
        /// instance passed as parameter.
        /// </summary>
        #endregion
        public TasksManager(MVCConfiguration mvcConfig)
        {
            this.Config = mvcConfig;
        }

        #region Documentation
        /// <summary>
        /// Gets or sets the associated <see cref="MVCConfiguration"/> object.
        /// </summary>
        #endregion
        public MVCConfiguration Config
        {
            get { return config; }
            set { config = value; }
        }

        #region Documentation
        /// <summary>
        /// Starts a task passing null to the <see cref="ITask.OnStart"/> method.
        /// </summary>
        #endregion
        public ITask StartTask(Type taskType)
        {
            return StartTask(taskType, null);
        }

        #region Documentation
        /// <summary>
        /// Starts a task passing <c>param</c> to the <see cref="ITask.OnStart">
        /// ITask.OnStart</see> operation. Task description (<see cref="TaskInfo"/>
        /// instance) and views manager type are taken from the
        /// associated <see cref="TasksManager.Config">TasksManager.Config</see>
        /// object.</summary>
        /// <param name="taskType">The type of the task to start.</param>
        /// <param name="param">Parameter passed to the <see cref="ITask.OnStart">
        /// ITask.OnStart</see> method.</param>
        #endregion
        public ITask StartTask(Type taskType, object param)
        {
            TaskInfo ti = GetTaskInfo(taskType);
            Navigator n = new Navigator();
            IViewsManager vm = CreateHelper.Create(Config.ViewsManagerType) as IViewsManager;
            ITask t = CreateHelper.Create(taskType) as ITask;

            n.TaskInfo = ti;
            n.ViewsManager = vm;
            n.Task = t;
            vm.Navigator = n;
            vm.ViewInfos = ti.ViewInfos;
            t.TasksManager = this;
            t.Navigator = n;
            t.OnStart(param);
            return t;
        }

        private TaskInfo GetTaskInfo(Type taskType)
        {
            return Config.TaskInfos[taskType];
        }
    }
}

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 Microsoft Public License (Ms-PL)


Written By
Team Leader
Russian Federation Russian Federation
Oleg Zhukov, born and living in Russia is Lead Engineer and Project Manager in a company which provides business software solutions. He has graduated from Moscow Institute of Physics and Technology (MIPT) (department of system programming) and has got a M.S. degree in applied physics and mathematics. His research and development work concerns architectural patterns, domain-driven development and systems analysis. Being the adherent of agile methods he applies them extensively in the projects managed by him.

Comments and Discussions