Click here to Skip to main content
15,895,142 members
Articles / Web Development / ASP.NET

Using Silverlight in Enterprise: RAD of User Friendly Database Access

Rate me:
Please Sign up or sign in to vote.
4.81/5 (19 votes)
31 Jul 2009CPOL8 min read 58.2K   7K   80  
This article introduces FulcrumWeb RAD Framework - A Silverlight UI Engine to build user friendly database driven applications
/********************************************************************
 *  FulcrumWeb RAD Framework - Fulcrum of your business             *
 *  Copyright (c) 2002-2009 FulcrumWeb, ALL RIGHTS RESERVED         *
 *                                                                  *
 *  THE SOURCE CODE CONTAINED WITHIN THIS FILE AND ALL RELATED      *
 *  FILES OR ANY PORTION OF ITS CONTENTS SHALL AT NO TIME BE        *
 *  COPIED, TRANSFERRED, SOLD, DISTRIBUTED, OR OTHERWISE MADE       *
 *  AVAILABLE TO OTHER INDIVIDUALS WITHOUT EXPRESS WRITTEN CONSENT  *
 *  AND PERMISSION FROM FULCRUMWEB. CONSULT THE END USER LICENSE    *
 *  AGREEMENT FOR INFORMATION ON ADDITIONAL RESTRICTIONS.           *
 ********************************************************************/

using System;

namespace Framework.Utils
{
	/// <summary>
	/// Class to use for logging code block execution time
	/// </summary>
	public class CxProfiler : IDisposable
	{
    //--------------------------------------------------------------------------
    static protected int m_Level = 0; // Current level of nesting
    //--------------------------------------------------------------------------
    protected DateTime m_StartTime; // Moment when execution started
    protected string m_Name = ""; // Name of the code block
    protected bool m_LogMoments = false; // true if start and ent moment should be also logged
    //--------------------------------------------------------------------------
    /// <summary>
    /// Constructor.
    /// </summary>
    /// <param name="name">name of the code block</param>
    /// <param name="logMoments">true if start and ent moment should be also logged</param>
		public CxProfiler(string name, bool logMoments)
		{
      m_Name = name;
      m_StartTime = DateTime.Now;
      m_LogMoments = logMoments;
      if (m_LogMoments)
      {
        CxLogger.SafeWrite(GetIndent() + m_Name + " started at " + m_StartTime.ToString("HH:mm:ss.fff"));
      }
      m_Level++;
    }
    //--------------------------------------------------------------------------
    /// <summary>
    /// Constructor.
    /// </summary>
    /// <param name="name">name of the code block</param>
		public CxProfiler(string name) : this(name, false)
		{
    }
    //--------------------------------------------------------------------------
    /// <summary>
    /// Logs execution time.
    /// </summary>
    public void Dispose()
    {
      m_Level--;
      DateTime endTime = DateTime.Now;
      if (m_LogMoments)
      {
        CxLogger.SafeWrite(GetIndent() + m_Name + " finished at " + endTime.ToString("HH:mm:ss.fff"));
      }
      CxLogger.SafeWrite(GetIndent() + m_Name + " took " + endTime.Subtract(m_StartTime));
    }
    //--------------------------------------------------------------------------
    /// <summary>
    /// Returns some number of spaces to indent profiler output.
    /// </summary>
    /// <returns>some number of spaces to indent profiler output</returns>
    static protected string GetIndent()
    {
      return new string(' ', m_Level * 3);
    }
    //--------------------------------------------------------------------------
  }
}

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

Comments and Discussions