SolutionNode.cs :  » Build-Systems » NET-Pre-Build » Prebuild » Core » Nodes » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Build Systems » NET Pre Build 
NET Pre Build » Prebuild » Core » Nodes » SolutionNode.cs
#region BSD License
/*
Copyright (c) 2004-2005 Matthew Holmes (matthew@wildfiregames.com), Dan Moorehead (dan05a@gmail.com)

Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions 
  and the following disclaimer. 
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions 
  and the following disclaimer in the documentation and/or other materials provided with the 
  distribution. 
* The name of the author may not be used to endorse or promote products derived from this software 
  without specific prior written permission. 

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, 
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#endregion

#region CVS Information
/*
 * $Source$
 * $Author: sontek $
 * $Date: 2008-04-30 18:36:53 -0500 (Wed, 30 Apr 2008) $
 * $Revision: 267 $
 */
#endregion

using System;
using System.Collections;
using System.Diagnostics;
using System.IO;
using System.Xml;

using Prebuild.Core.Attributes;
using Prebuild.Core.Interfaces;
using Prebuild.Core.Utilities;

namespace Prebuild.Core.Nodes{
  /// <summary>
  /// 
  /// </summary>
  [DataNode("Solution")]
    [DataNode("EmbeddedSolution")]
    [DebuggerDisplay("{Name}")]
  public class SolutionNode : DataNode
  {
    #region Fields

        private Guid m_Guid = Guid.NewGuid();
    private string m_Name = "unknown";
    private string m_Path = "";
    private string m_FullPath = "";
    private string m_ActiveConfig = "Debug";
        
    private OptionsNode m_Options;
    private FilesNode m_Files;
    private Hashtable m_Configurations;
    private Hashtable m_Projects;
        private Hashtable m_DatabaseProjects;
    private ArrayList m_ProjectsOrder;
        private Hashtable m_Solutions;

    #endregion

    #region Constructors

    /// <summary>
    /// Initializes a new instance of the <see cref="SolutionNode"/> class.
    /// </summary>
    public SolutionNode()
    {
      m_Configurations = new Hashtable();
      m_Projects = new Hashtable();
      m_ProjectsOrder = new ArrayList();
            m_DatabaseProjects = new Hashtable();
            m_Solutions = new Hashtable();
    }

    #endregion

    #region Properties
        public override IDataNode Parent
        {
            get
            {
                return base.Parent;
            }
            set
            {
                if (value is SolutionNode)
                {
                    SolutionNode solution = (SolutionNode)value;
                    foreach (ConfigurationNode conf in solution.Configurations)
                    {
                        m_Configurations[conf.Name] = conf.Clone();
                    }
                }

                base.Parent = value;
            }
        }

        public Guid Guid
        {
            get 
            { 
                return m_Guid; 
            }
            set
            {
                m_Guid = value; 
            }
        }
    /// <summary>
    /// Gets or sets the active config.
    /// </summary>
    /// <value>The active config.</value>
    public string ActiveConfig 
    { 
      get 
      { 
        return m_ActiveConfig; 
      } 
      set 
      { 
        m_ActiveConfig = value; 
      } 
    }

    /// <summary>
    /// Gets the name.
    /// </summary>
    /// <value>The name.</value>
    public string Name 
    {
      get 
      {
        return m_Name;
      }
    }

    /// <summary>
    /// Gets the path.
    /// </summary>
    /// <value>The path.</value>
    public string Path 
    {
      get 
      {
        return m_Path;
      }
    }

    /// <summary>
    /// Gets the full path.
    /// </summary>
    /// <value>The full path.</value>
    public string FullPath
    {
      get
      {
        return m_FullPath;
      }
    }

    /// <summary>
    /// Gets the options.
    /// </summary>
    /// <value>The options.</value>
    public OptionsNode Options
    {
      get
      {
        return m_Options;
      }
    }

    /// <summary>
    /// Gets the files.
    /// </summary>
    /// <value>The files.</value>
    public FilesNode Files
    {
      get
      {
        return m_Files;
      }
    }

    /// <summary>
    /// Gets the configurations.
    /// </summary>
    /// <value>The configurations.</value>
    public ICollection Configurations
    {
      get
      {
        return m_Configurations.Values;
      }
    }

    /// <summary>
    /// Gets the configurations table.
    /// </summary>
    /// <value>The configurations table.</value>
    public Hashtable ConfigurationsTable
    {
      get
      {
        return m_Configurations;
      }
    }
        /// <summary>
        /// Gets the database projects.
        /// </summary>
        public ICollection DatabaseProjects
        {
            get
            {
                return m_DatabaseProjects.Values;
            }
        }
        /// <summary>
        /// Gets the nested solutions.
        /// </summary>
        public ICollection Solutions
        {
            get
            {
                return m_Solutions.Values;
            }
        }
        /// <summary>
        /// Gets the nested solutions hash table.
        /// </summary>
        public Hashtable SolutionsTable
        {
            get
            {
                return this.m_Solutions;
            }
        }
    /// <summary>
    /// Gets the projects.
    /// </summary>
    /// <value>The projects.</value>
    public ICollection Projects
    {
      get
      {
        return m_Projects.Values;
      }
    }

    /// <summary>
    /// Gets the projects table.
    /// </summary>
    /// <value>The projects table.</value>
    public Hashtable ProjectsTable
    {
      get
      {
        return m_Projects;
      }
    }

    /// <summary>
    /// Gets the projects table.
    /// </summary>
    /// <value>The projects table.</value>
    public ArrayList ProjectsTableOrder
    {
      get
      {
        return m_ProjectsOrder;
      }
    }

    #endregion

    #region Public Methods

    /// <summary>
    /// Parses the specified node.
    /// </summary>
    /// <param name="node">The node.</param>
    public override void Parse(XmlNode node)
    {
      m_Name = Helper.AttributeValue(node, "name", m_Name);
      m_ActiveConfig = Helper.AttributeValue(node, "activeConfig", m_ActiveConfig);
      m_Path = Helper.AttributeValue(node, "path", m_Path);

      m_FullPath = m_Path;
      try
      {
        m_FullPath = Helper.ResolvePath(m_FullPath);
      }
      catch
      {
        throw new WarningException("Could not resolve solution path: {0}", m_Path);
      }

      Kernel.Instance.CurrentWorkingDirectory.Push();
      try
      {
        Helper.SetCurrentDir(m_FullPath);

        if( node == null )
        {
          throw new ArgumentNullException("node");
        }

        foreach(XmlNode child in node.ChildNodes)
        {
          IDataNode dataNode = Kernel.Instance.ParseNode(child, this);
          if(dataNode is OptionsNode)
          {
            m_Options = (OptionsNode)dataNode;
          }
          else if(dataNode is FilesNode)
          {
            m_Files = (FilesNode)dataNode;
          }
          else if(dataNode is ConfigurationNode)
          {
            m_Configurations[((ConfigurationNode)dataNode).Name] = dataNode;
          }
          else if(dataNode is ProjectNode)
          {
            m_Projects[((ProjectNode)dataNode).Name] = dataNode;
            m_ProjectsOrder.Add(dataNode);
          }
                    else if(dataNode is SolutionNode)
                    {
                        m_Solutions[((SolutionNode)dataNode).Name] = dataNode;
                    }
                    else if (dataNode is ProcessNode)
                    {
                        ProcessNode p = (ProcessNode)dataNode;
                        Kernel.Instance.ProcessFile(p, this);
                    }
                    else if (dataNode is DatabaseProjectNode)
                    {
                        m_DatabaseProjects[((DatabaseProjectNode)dataNode).Name] = dataNode;
                    }
        }
      }
      finally
      {
        Kernel.Instance.CurrentWorkingDirectory.Pop();
      }
    }

    #endregion
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.