127 lines
3.9 KiB
C#
127 lines
3.9 KiB
C#
//
|
|
// ProjectTaskAction.cs - represents a build action to be executed as part of a ProjectTask
|
|
//
|
|
// Author:
|
|
// Michael Becker <alcexhim@gmail.com>
|
|
//
|
|
// Copyright (c) 2011-2020 Mike Becker's Software
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using UniversalEditor.ObjectModels.Markup;
|
|
|
|
namespace UniversalEditor
|
|
{
|
|
/// <summary>
|
|
/// Represents a build action to be executed as part of a <see cref="ProjectTask" />.
|
|
/// </summary>
|
|
public abstract class ProjectTaskAction : References<ProjectTaskActionReference>
|
|
{
|
|
public abstract string Title { get; }
|
|
protected abstract void ExecuteInternal(ExpandedStringVariableStore variables);
|
|
|
|
public void Execute(ExpandedStringVariableStore variables)
|
|
{
|
|
ExecuteInternal(variables);
|
|
}
|
|
|
|
public class ProjectTaskActionCollection
|
|
: System.Collections.ObjectModel.Collection<ProjectTaskAction>
|
|
{
|
|
|
|
}
|
|
|
|
public ProjectTaskActionReference MakeReference()
|
|
{
|
|
return MakeReferenceInternal();
|
|
}
|
|
protected virtual ProjectTaskActionReference MakeReferenceInternal()
|
|
{
|
|
return new ProjectTaskActionReference(GetType());
|
|
}
|
|
|
|
public void LoadFromMarkup(MarkupTagElement tag)
|
|
{
|
|
if (tag == null) return;
|
|
if (tag.FullName != "Action") return;
|
|
LoadFromMarkupInternal(tag);
|
|
}
|
|
protected abstract void LoadFromMarkupInternal(MarkupTagElement tag);
|
|
}
|
|
public class ProjectTaskActionReference : ReferencedBy<ProjectTaskAction>
|
|
{
|
|
private Guid mvarProjectTaskActionTypeID = Guid.Empty;
|
|
public Guid ProjectTaskActionTypeID { get { return mvarProjectTaskActionTypeID; } set { mvarProjectTaskActionTypeID = value; } }
|
|
|
|
private string mvarProjectTaskActionTypeName = String.Empty;
|
|
public string ProjectTaskActionTypeName { get { return mvarProjectTaskActionTypeName; } set { mvarProjectTaskActionTypeName = value; } }
|
|
|
|
private Type mvarProjectTaskActionType = null;
|
|
public ProjectTaskActionReference(Type type)
|
|
{
|
|
mvarProjectTaskActionType = type;
|
|
mvarProjectTaskActionTypeName = type.FullName;
|
|
}
|
|
public ProjectTaskActionReference(Guid id)
|
|
{
|
|
mvarProjectTaskActionTypeID = id;
|
|
}
|
|
public ProjectTaskActionReference(string typeName)
|
|
{
|
|
mvarProjectTaskActionTypeName = typeName;
|
|
}
|
|
public ProjectTaskAction Create()
|
|
{
|
|
if (mvarProjectTaskActionType != null)
|
|
{
|
|
return (ProjectTaskAction)mvarProjectTaskActionType.Assembly.CreateInstance(mvarProjectTaskActionType.FullName);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public string[] GetDetails()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool ShouldFilterObject(string filter)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
private static Dictionary<Guid, ProjectTaskActionReference> _dict = null;
|
|
|
|
public static ProjectTaskActionReference GetByTypeID(Guid id)
|
|
{
|
|
if (_dict == null)
|
|
{
|
|
_dict = new Dictionary<Guid, ProjectTaskActionReference>();
|
|
Type[] types = MBS.Framework.Reflection.GetAvailableTypes(new Type[] { typeof(ProjectTaskAction) });
|
|
foreach (Type type in types)
|
|
{
|
|
if (!type.IsAbstract)
|
|
{
|
|
ProjectTaskAction action = (ProjectTaskAction)type.Assembly.CreateInstance(type.FullName);
|
|
ProjectTaskActionReference actionref = action.MakeReference();
|
|
_dict[actionref.ProjectTaskActionTypeID] = actionref;
|
|
}
|
|
}
|
|
}
|
|
return _dict[id];
|
|
}
|
|
}
|
|
}
|