using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Linq;
using UnrealBuildTool;
using AutomationTool;
using System.Reflection;
using System.Diagnostics;
using System.Xml.Schema;
namespace AutomationTool
{
///
/// Implementation of XmlDocument which preserves line numbers for its elements
///
class ScriptDocument : XmlDocument
{
///
/// The file being read
///
FileReference File;
///
/// Interface to the LineInfo on the active XmlReader
///
IXmlLineInfo LineInfo;
///
/// Set to true if the reader encounters an error
///
bool bHasErrors;
///
/// Private constructor. Use ScriptDocument.Load to read an XML document.
///
ScriptDocument(FileReference InFile)
{
File = InFile;
}
///
/// Overrides XmlDocument.CreateElement() to construct ScriptElements rather than XmlElements
///
public override XmlElement CreateElement(string Prefix, string LocalName, string NamespaceUri)
{
return new ScriptElement(File, LineInfo.LineNumber, Prefix, LocalName, NamespaceUri, this);
}
///
/// Loads a script document from the given file
///
/// The file to load
/// The schema to validate against
/// If successful, the document that was read
/// True if the document could be read, false otherwise
public static bool TryRead(FileReference File, ScriptSchema Schema, out ScriptDocument OutDocument)
{
ScriptDocument Document = new ScriptDocument(File);
XmlReaderSettings Settings = new XmlReaderSettings();
Settings.Schemas.Add(Schema.CompiledSchema);
Settings.ValidationType = ValidationType.Schema;
Settings.ValidationEventHandler += Document.ValidationEvent;
using(XmlReader Reader = XmlReader.Create(File.FullName, Settings))
{
// Read the document
Document.LineInfo = (IXmlLineInfo)Reader;
Document.Load(Reader);
// If we hit any errors while parsing
if(Document.bHasErrors)
{
OutDocument = null;
return false;
}
// Check that the root element is valid. If not, we didn't actually validate against the schema.
if(Document.DocumentElement.Name != ScriptSchema.RootElementName)
{
CommandUtils.LogError("Script does not have a root element called '{0}'", ScriptSchema.RootElementName);
OutDocument = null;
return false;
}
if(Document.DocumentElement.NamespaceURI != ScriptSchema.NamespaceURI)
{
CommandUtils.LogError("Script root element is not in the '{0}' namespace (add the xmlns=\"{0}\" attribute)", ScriptSchema.NamespaceURI);
OutDocument = null;
return false;
}
}
OutDocument = Document;
return true;
}
///
/// Callback for validation errors in the document
///
/// Standard argument for ValidationEventHandler
/// Standard argument for ValidationEventHandler
void ValidationEvent(object Sender, ValidationEventArgs Args)
{
if(Args.Severity == XmlSeverityType.Warning)
{
CommandUtils.LogWarning("{0}({1}): {2}", File.FullName, Args.Exception.LineNumber, Args.Message);
}
else
{
CommandUtils.LogError("{0}({1}): {2}", File.FullName, Args.Exception.LineNumber, Args.Message);
bHasErrors = true;
}
}
}
///
/// Implementation of XmlElement which preserves line numbers
///
class ScriptElement : XmlElement
{
///
/// The file containing this element
///
public readonly FileReference File;
///
/// The line number containing this element
///
public readonly int LineNumber;
///
/// Constructor
///
public ScriptElement(FileReference InFile, int InLineNumber, string Prefix, string LocalName, string NamespaceUri, ScriptDocument Document)
: base(Prefix, LocalName, NamespaceUri, Document)
{
File = InFile;
LineNumber = InLineNumber;
}
}
///
/// Reader for build graph definitions. Instanced to contain temporary state; public interface is through ScriptReader.TryRead().
///
class ScriptReader
{
///
/// The current graph
///
Graph Graph = new Graph();
///
/// Mapping from name to group
///
Dictionary NameToGroup = new Dictionary(StringComparer.InvariantCultureIgnoreCase);
///
/// Mapping of global property name to values.
///
Dictionary GlobalProperties = new Dictionary();
///
/// List of property name to value lookups. Modifications to properties are scoped to nodes and groups. EnterScope() pushes an empty dictionary onto the end of this list, and LeaveScope() removes one.
/// ExpandProperties() searches from last to first lookup when trying to resolve a property name, and takes the first it finds.
///
List> ScopedProperties = new List>();
///
/// Schema for the script
///
ScriptSchema Schema;
///
/// The number of errors encountered during processing so far
///
int NumErrors;
///
/// Private constructor. Use ScriptReader.TryRead() to read a script file.
///
/// Predefined property name to value mapping
/// Schema for the script
private ScriptReader(IDictionary Properties, ScriptSchema InSchema)
{
GlobalProperties = new Dictionary(Properties, StringComparer.InvariantCultureIgnoreCase);
ScopedProperties.Add(GlobalProperties);
Schema = InSchema;
}
///
/// Try to read a script file from the given file.
///
/// File to read from
/// Manually defined properties to parse the graph with
/// Schema for the script
/// If successful, the graph constructed from the given script
/// True if the graph was read, false if there were errors
public static bool TryRead(FileReference File, IDictionary DefaultProperties, ScriptSchema Schema, out Graph Graph)
{
// Check the file exists before doing anything.
if(!File.Exists())
{
CommandUtils.LogError("Cannot open '{0}'", File.FullName);
Graph = null;
return false;
}
// Read the file and build the graph
ScriptReader Reader = new ScriptReader(DefaultProperties, Schema);
if(Reader.TryRead(File) && Reader.NumErrors == 0)
{
Graph = Reader.Graph;
return true;
}
else
{
Graph = null;
return false;
}
}
///
/// Read the script from the given file
///
/// File to read from
bool TryRead(FileReference File)
{
// Read the document and validate it against the schema
ScriptDocument Document;
if(!ScriptDocument.TryRead(File, Schema, out Document))
{
NumErrors++;
return false;
}
// Read the root BuildGraph element
EnterScope();
foreach(ScriptElement Element in Document.DocumentElement.ChildNodes.OfType())
{
switch(Element.Name)
{
case "Include":
ReadInclude(Element, File.Directory);
break;
case "Property":
ReadProperty(Element);
break;
case "Local":
ReadLocalProperty(Element);
break;
case "Group":
ReadGroup(Element, null);
break;
case "Aggregate":
ReadAggregate(Element);
break;
case "Notify":
ReadNotifier(Element);
break;
case "Trigger":
ReadTrigger(Element);
break;
default:
LogError(Element, "Invalid element '{0}'", Element.Name);
break;
}
}
LeaveScope();
return true;
}
///
/// Handles validation messages from validating the document against its schema
///
/// The source of the event
/// Event arguments
void ValidationHandler(object Sender, ValidationEventArgs Args)
{
if(Args.Severity == XmlSeverityType.Warning)
{
CommandUtils.LogWarning("Script: {0}", Args.Message);
}
else
{
CommandUtils.LogError("Script: {0}", Args.Message);
NumErrors++;
}
}
///
/// Push a new property scope onto the stack
///
void EnterScope()
{
ScopedProperties.Add(new Dictionary(StringComparer.InvariantCultureIgnoreCase));
}
///
/// Pop a property scope from the stack
///
void LeaveScope()
{
ScopedProperties.RemoveAt(ScopedProperties.Count - 1);
}
///
/// Reads the definition for an agent group.
///
/// Xml element to read the definition from
void ReadTrigger(ScriptElement Element)
{
string[] QualifiedName;
if(EvaluateCondition(Element) && TryReadQualifiedObjectName(Element, out QualifiedName))
{
// Validate all the parent triggers
ManualTrigger ParentTrigger = null;
for(int Idx = 0; Idx < QualifiedName.Length - 1; Idx++)
{
ManualTrigger NextTrigger;
if(!Graph.NameToTrigger.TryGetValue(QualifiedName[Idx], out NextTrigger))
{
LogError(Element, "Unknown trigger '{0}'", QualifiedName[Idx]);
return;
}
if(NextTrigger.Parent != ParentTrigger)
{
LogError(Element, "Qualified name of trigger '{0}' is '{1}'", NextTrigger.Name, NextTrigger.QualifiedName);
return;
}
ParentTrigger = NextTrigger;
}
// Get the name of the new trigger
string Name = QualifiedName[QualifiedName.Length - 1];
// Create the new trigger
ManualTrigger Trigger;
if(!Graph.NameToTrigger.TryGetValue(Name, out Trigger))
{
Trigger = new ManualTrigger(ParentTrigger, Name);
Graph.NameToTrigger.Add(Name, Trigger);
}
else if(Trigger.Parent != ParentTrigger)
{
LogError(Element, "Conflicting parent for '{0}' - previously declared as '{1}', now '{2}'", Name, Trigger.QualifiedName, new ManualTrigger(ParentTrigger, Name).QualifiedName);
return;
}
// Read the root BuildGraph element
EnterScope();
foreach(ScriptElement ChildElement in Element.ChildNodes.OfType())
{
switch(ChildElement.Name)
{
case "Property":
ReadProperty(ChildElement);
break;
case "Local":
ReadLocalProperty(ChildElement);
break;
case "Group":
ReadGroup(ChildElement, Trigger);
break;
case "Aggregate":
ReadAggregate(ChildElement);
break;
case "Notifier":
ReadNotifier(ChildElement);
break;
default:
LogError(ChildElement, "Invalid element '{0}'", ChildElement.Name);
break;
}
}
LeaveScope();
}
}
///
/// Read an include directive, and the contents of the target file
///
/// Xml element to read the definition from
/// Base directory to resolve relative include paths from
void ReadInclude(ScriptElement Element, DirectoryReference BaseDir)
{
if(EvaluateCondition(Element))
{
FileReference Script = FileReference.Combine(BaseDir, Element.GetAttribute("Script"));
if(Script.Exists())
{
TryRead(Script);
}
else
{
LogError(Element, "Cannot find included script '{0}'", Script.FullName);
}
}
}
///
/// Reads a property assignment.
///
/// Xml element to read the definition from
void ReadProperty(ScriptElement Element)
{
if(EvaluateCondition(Element))
{
string Name = Element.GetAttribute("Name");
GlobalProperties[Name] = ReadAttribute(Element, "Value");
}
}
///
/// Reads a local property assignment.
///
/// Xml element to read the definition from
void ReadLocalProperty(ScriptElement Element)
{
if(EvaluateCondition(Element))
{
string Name = Element.GetAttribute("Name");
ScopedProperties[ScopedProperties.Count - 1][Name] = ReadAttribute(Element, "Value");
}
}
///
/// Reads the definition for an agent group.
///
/// Xml element to read the definition from
/// The controlling trigger for nodes in this group
void ReadGroup(ScriptElement Element, ManualTrigger Trigger)
{
string Name;
if(EvaluateCondition(Element) && TryReadObjectName(Element, out Name))
{
// Create the group object, or continue an existing one
AgentGroup Group;
if(NameToGroup.TryGetValue(Name, out Group))
{
if(Element.HasAttribute("Agent"))
{
LogError(Element, "Agent may only be specified for first definition of a group");
}
}
else
{
string[] AgentTypes = ReadListAttribute(Element, "Agent");
if(AgentTypes.Length == 0)
{
LogError(Element, "Missing agent type for group '{0}'", Name);
}
Group = new AgentGroup(Name, AgentTypes);
NameToGroup.Add(Name, Group);
Graph.Groups.Add(Group);
}
// Process all the child elements.
EnterScope();
foreach(ScriptElement ChildElement in Element.ChildNodes.OfType())
{
switch(ChildElement.Name)
{
case "Property":
ReadProperty(ChildElement);
break;
case "Local":
ReadLocalProperty(ChildElement);
break;
case "Node":
ReadNode(ChildElement, Group, Trigger);
break;
case "Aggregate":
ReadAggregate(ChildElement);
break;
default:
LogError(ChildElement, "Unexpected element type '{0}'", ChildElement.Name);
break;
}
}
LeaveScope();
}
}
///
/// Reads the definition for an aggregate, and adds it to the given agent group
///
/// Xml element to read the definition from
void ReadAggregate(ScriptElement Element)
{
string Name;
if(EvaluateCondition(Element) && TryReadObjectName(Element, out Name) && CheckNameIsUnique(Element, Name))
{
string[] RequiredNames = ReadTagListAttribute(Element, "Requires");
Graph.AggregateNameToNodes.Add(Name, ResolveReferences(Element, RequiredNames).ToArray());
}
}
///
/// Reads the definition for a node, and adds it to the given agent group
///
/// Xml element to read the definition from
/// Group for the node to be added to
/// The controlling trigger for this node
void ReadNode(ScriptElement Element, AgentGroup Group, ManualTrigger ControllingTrigger)
{
string Name;
if(EvaluateCondition(Element) && TryReadObjectName(Element, out Name))
{
string[] InputNames = ReadTagListAttribute(Element, "Requires");
string[] OutputNames = ReadTagListAttribute(Element, "Produces");
string[] AfterNames = ReadTagListAttribute(Element, "After");
// Add all the tasks
EnterScope();
List Tasks = new List();
foreach(ScriptElement ChildElement in Element.ChildNodes.OfType())
{
switch(ChildElement.Name)
{
case "Property":
ReadProperty(ChildElement);
break;
case "Local":
ReadLocalProperty(ChildElement);
break;
default:
ReadTask(ChildElement, Tasks);
break;
}
}
LeaveScope();
// Expand every node name in the list of inputs to include all of that node's inputs, recursively, plus its named outputs.
HashSet ExpandedInputNames = new HashSet(InputNames, StringComparer.InvariantCultureIgnoreCase);
foreach(string InputName in InputNames)
{
Node InputNode;
if(Graph.NameToNode.TryGetValue(InputName, out InputNode))
{
ExpandedInputNames.UnionWith(InputNode.InputNames);
ExpandedInputNames.UnionWith(InputNode.OutputNames);
}
}
InputNames = ExpandedInputNames.ToArray();
// Add the name of the node itself to the list of outputs.
OutputNames = OutputNames.Union(new string[]{ Name }, StringComparer.InvariantCultureIgnoreCase).ToArray();
// Gather up all the input dependencies
HashSet InputDependencies = ResolveReferences(Element, InputNames);
// Check they're all upstream of the current node
foreach(Node InputDependency in InputDependencies)
{
if(InputDependency.ControllingTrigger != null && InputDependency.ControllingTrigger != ControllingTrigger && !InputDependency.ControllingTrigger.IsUpstreamFrom(ControllingTrigger))
{
LogError(Element, "'{0}' is dependent on '{1}', which is behind a different controlling trigger ({2})", Name, InputDependency.Name, InputDependency.ControllingTrigger.QualifiedName);
}
}
// Recursively include all their dependencies too
foreach(Node InputDependency in InputDependencies.ToArray())
{
InputDependencies.UnionWith(InputDependency.InputDependencies);
}
// Gather up all the order dependencies
HashSet OrderDependencies = ResolveReferences(Element, AfterNames);
OrderDependencies.UnionWith(InputDependencies);
// Construct and register the node
if(CheckNameIsUnique(Element, Name))
{
// Add it to the node lookup
Node NewNode = new Node(Name, InputNames, OutputNames, InputDependencies.ToArray(), OrderDependencies.ToArray(), ControllingTrigger, Tasks);
Graph.NameToNode.Add(Name, NewNode);
// Register each of the outputs as a reference to this node
foreach(string OutputName in OutputNames)
{
if(String.Compare(OutputName, Name, StringComparison.InvariantCultureIgnoreCase) == 0 || CheckNameIsUnique(Element, OutputName))
{
Graph.OutputNameToNode.Add(OutputName, NewNode);
}
}
// Add it to the current agent group
Group.Nodes.Add(NewNode);
}
}
}
///
/// Reads a task definition from the given element, and add it to the given list
///
/// Xml element to read the definition from
/// List of tasks to add to
void ReadTask(ScriptElement Element, List Tasks)
{
// Get the reflection info for this element
ScriptTask Task;
if(!Schema.TryGetTask(Element.Name, out Task))
{
LogError(Element, "Unknown task '{0}'", Element.Name);
return;
}
// Check all the required parameters are present
bool bHasRequiredAttributes = true;
foreach(ScriptTaskParameter Parameter in Task.NameToParameter.Values)
{
if(!Parameter.bOptional && !Element.HasAttribute(Parameter.Name))
{
LogError(Element, "Missing required attribute - {0}", Parameter.Name);
bHasRequiredAttributes = false;
}
}
// Read all the attributes into a parameters object for this task
object ParametersObject = Activator.CreateInstance(Task.ParametersClass);
foreach(XmlAttribute Attribute in Element.Attributes)
{
// Get the field that this attribute should be written to in the parameters object
ScriptTaskParameter Parameter;
if(!Task.NameToParameter.TryGetValue(Attribute.Name, out Parameter))
{
LogError(Element, "Unknown attribute '{0}'", Attribute.Name);
continue;
}
// Expand variables in the value
string ExpandedValue = ExpandProperties(Attribute.Value);
// Parse it and assign it to the parameters object
object Value;
if(Parameter.FieldInfo.FieldType.IsEnum)
{
Value = Enum.Parse(Parameter.FieldInfo.FieldType, ExpandedValue);
}
else if(Parameter.FieldInfo.FieldType == typeof(Boolean))
{
Value = Condition.Evaluate(ExpandedValue);
}
else
{
Value = Convert.ChangeType(ExpandedValue, Parameter.FieldInfo.FieldType);
}
Parameter.FieldInfo.SetValue(ParametersObject, Value);
}
// Construct the task
if(bHasRequiredAttributes)
{
Tasks.Add((CustomTask)Activator.CreateInstance(Task.TaskClass, ParametersObject));
}
}
///
/// Reads the definition for an email notifier
///
/// Xml element to read the definition from
void ReadNotifier(ScriptElement Element)
{
if(EvaluateCondition(Element))
{
string[] TargetNames = ReadTagListAttribute(Element, "Targets");
string[] ExceptNames = ReadTagListAttribute(Element, "Except");
string[] IndividualNodeNames = ReadTagListAttribute(Element, "Nodes");
string[] TriggerNames = ReadTagListAttribute(Element, "Triggers");
string[] Users = ReadListAttribute(Element, "Users");
string[] Submitters = ReadListAttribute(Element, "Submitters");
bool? bWarnings = Element.HasAttribute("Warnings")? (bool?)ReadBooleanAttribute(Element, "Warnings", true) : null;
// Find the list of targets which are included, and recurse through all their dependencies
HashSet Nodes = new HashSet();
if(TargetNames != null)
{
HashSet TargetNodes = ResolveReferences(Element, TargetNames);
foreach(Node Node in TargetNodes)
{
Nodes.Add(Node);
Nodes.UnionWith(Node.InputDependencies);
}
}
// Add all the individually referenced nodes
if(IndividualNodeNames != null)
{
HashSet IndividualNodes = ResolveReferences(Element, IndividualNodeNames);
Nodes.UnionWith(IndividualNodes);
}
// Exclude all the exceptions
if(ExceptNames != null)
{
HashSet ExceptNodes = ResolveReferences(Element, ExceptNames);
Nodes.ExceptWith(ExceptNodes);
}
// Update all the referenced nodes with the settings
foreach(Node Node in Nodes)
{
if(Users != null)
{
Node.NotifyUsers.UnionWith(Users);
}
if(Submitters != null)
{
Node.NotifySubmitters.UnionWith(Submitters);
}
if(bWarnings.HasValue)
{
Node.bNotifyOnWarnings = bWarnings.Value;
}
}
// Add the users to the list of triggers
if(TriggerNames != null)
{
foreach(string TriggerName in TriggerNames)
{
ManualTrigger Trigger;
if(Graph.NameToTrigger.TryGetValue(TriggerName, out Trigger))
{
Trigger.NotifyUsers.UnionWith(Users);
}
else
{
LogError(Element, "Trigger '{0}' has not been defined", TriggerName);
}
}
}
}
}
///
/// Checks that the given name does not already used to refer to a node, and print an error if it is.
///
/// Xml element to read from
/// Name of the alias
/// Array of nodes that this name should resolve to
/// True if the name was registered correctly, false otherwise.
bool CheckNameIsUnique(ScriptElement Element, string Name)
{
// Get the nodes that it maps to
Node[] OtherNodes;
if(Graph.TryResolveReference(Name, out OtherNodes))
{
LogError(Element, "'{0}' is already defined; cannot add a second time", Name);
return false;
}
return true;
}
///
/// Resolve a list of references to a set of nodes
///
/// Element used to locate any errors
/// Sequence of names to look up
/// Hashset of all the nodes included by the given names
HashSet ResolveReferences(ScriptElement Element, IEnumerable ReferencedNames)
{
HashSet Nodes = new HashSet();
foreach(string ReferencedName in ReferencedNames)
{
Node[] OtherNodes;
if(Graph.TryResolveReference(ReferencedName, out OtherNodes))
{
Nodes.UnionWith(OtherNodes);
}
else
{
LogError(Element, "Reference to '{0}' cannot be resolved; check it has been defined.", ReferencedName);
}
}
return Nodes;
}
///
/// Reads an object name from its defining element. Outputs an error if the name is missing.
///
/// Element to read the name for
/// Output variable to receive the name of the object
/// True if the object had a valid name (assigned to the Name variable), false if the name was invalid or missing.
bool TryReadObjectName(ScriptElement Element, out string Name)
{
// Check the name attribute is present
if(!Element.HasAttribute("Name"))
{
LogError(Element, "Missing 'Name' attribute");
Name = null;
return false;
}
// Get the value of it, strip any leading or trailing whitespace, and make sure it's not empty
string Value = ReadAttribute(Element, "Name");
if(!ValidateName(Element, Value))
{
Name = null;
return false;
}
// Return it
Name = Value;
return true;
}
///
/// Reads an qualified object name from its defining element. Outputs an error if the name is missing.
///
/// Element to read the name for
/// Output variable to receive the name of the object
/// True if the object had a valid name (assigned to the Name variable), false if the name was invalid or missing.
bool TryReadQualifiedObjectName(ScriptElement Element, out string[] QualifiedName)
{
// Check the name attribute is present
if(!Element.HasAttribute("Name"))
{
LogError(Element, "Missing 'Name' attribute");
QualifiedName = null;
return false;
}
// Get the value of it, strip any leading or trailing whitespace, and make sure it's not empty
string[] Values = ReadAttribute(Element, "Name").Split('.');
foreach(string Value in Values)
{
if(!ValidateName(Element, Value))
{
QualifiedName = null;
return false;
}
}
// Return it
QualifiedName = Values;
return true;
}
///
/// Checks that the given name is valid syntax
///
/// The element that contains the name
/// The name to check
/// True if the name is valid
bool ValidateName(ScriptElement Element, string Name)
{
// Check it's not empty
if(Name.Length == 0)
{
LogError(Element, "Name is empty");
return false;
}
// Check there are no invalid characters
for(int Idx = 0; Idx < Name.Length; Idx++)
{
if(Idx > 0 && Name[Idx] == ' ' && Name[Idx - 1] == ' ')
{
LogError(Element, "Consecutive spaces in object name");
return false;
}
if(!Char.IsLetterOrDigit(Name[Idx]) && Name[Idx] != '_' && Name[Idx] != ' ')
{
LogError(Element, "Invalid character in object name - '{0}'", Name[Idx]);
return false;
}
}
return true;
}
///
/// Expands any properties and reads an attribute.
///
/// Element to read the attribute from
/// Name of the attribute
/// Array of names, with all leading and trailing whitespace removed
string ReadAttribute(ScriptElement Element, string Name)
{
return ExpandProperties(Element.GetAttribute(Name));
}
///
/// Expands any properties and reads a list of strings from an attribute, separated by semi-colon characters
///
///
///
/// Array of names, with all leading and trailing whitespace removed
string[] ReadListAttribute(ScriptElement Element, string Name)
{
string Value = ReadAttribute(Element, Name);
return Value.Split(new char[]{ ';' }).Select(x => x.Trim()).Where(x => x.Length > 0).ToArray();
}
///
/// Expands any properties and reads a list of tag names from an attribute, separated by semi-colon characters. Strips leading '#' characters from each name.
///
/// Element to read the attribute from
/// Name of the attribute
/// Array of tag names, with all leading and trailing whitespace, and any initial '#' character removed
string[] ReadTagListAttribute(ScriptElement Element, string Name)
{
string[] Values = ReadListAttribute(Element, Name);
return Values.Select(x => x.StartsWith("#")? x.Substring(1) : x).ToArray();
}
///
/// Reads an attribute from the given XML element, expands any properties in it, and parses it as a boolean.
///
/// Element to read the attribute from
/// Name of the attribute
/// Default value if the attribute is missing
/// The value of the attribute field
bool ReadBooleanAttribute(ScriptElement Element, string Name, bool bDefaultValue)
{
bool bResult = bDefaultValue;
if(Element.HasAttribute(Name))
{
string Value = ReadAttribute(Element, Name).Trim();
if(Value.Equals("true", StringComparison.InvariantCultureIgnoreCase))
{
bResult = true;
}
else if(Value.Equals("false", StringComparison.InvariantCultureIgnoreCase))
{
bResult = false;
}
else
{
LogError(Element, "Invalid boolean value '{0}' - expected 'true' or 'false'", Value);
}
}
return bResult;
}
///
/// Reads an attribute from the given XML element, expands any properties in it, and parses it as an enum of the given type.
///
/// The enum type to parse the attribute as
/// Element to read the attribute from
/// Name of the attribute
/// Default value for the enum, if the attribute is missing
/// The value of the attribute field
T ReadEnumAttribute(ScriptElement Element, string Name, T DefaultValue) where T : struct
{
T Result = DefaultValue;
if(Element.HasAttribute(Name))
{
string Value = ReadAttribute(Element, Name).Trim();
T EnumValue;
if(Enum.TryParse(Value, true, out EnumValue))
{
Result = EnumValue;
}
else
{
LogError(Element, "Invalid value '{0}' - expected {1}", Value, String.Join("/", Enum.GetNames(typeof(T))));
}
}
return Result;
}
///
/// Outputs an error message to the log and increments the number of errors, referencing the file and line number of the element that caused it.
///
/// The script element causing the error
/// Standard String.Format()-style format string
/// Optional arguments
void LogError(ScriptElement Element, string Format, params object[] Args)
{
CommandUtils.LogError("{0}({1}): {2}", Element.File.FullName, Element.LineNumber, String.Format(Format, Args));
NumErrors++;
}
///
/// Evaluates the (optional) conditional expression on a given XML element via the If="..." attribute, and returns true if the element is enabled.
///
/// The element to check
/// True if the element's condition evaluates to true (or doesn't have a conditional expression), false otherwise
bool EvaluateCondition(ScriptElement Element)
{
// Check if the element has a conditional attribute
const string AttributeName = "If";
if(!Element.HasAttribute(AttributeName))
{
return true;
}
// If it does, try to evaluate it.
try
{
string Text = ExpandProperties(Element.GetAttribute("If"));
return Condition.Evaluate(Text);
}
catch(ConditionException Ex)
{
LogError(Element, "Error in condition: {0}", Ex.Message);
return false;
}
}
///
/// Expand all the property references (of the form $(PropertyName)) in a string.
///
/// The input string to expand properties in
/// The expanded string
string ExpandProperties(string Text)
{
string Result = Text;
for (int Idx = Result.IndexOf("$("); Idx != -1; Idx = Result.IndexOf("$(", Idx))
{
// Find the end of the variable name
int EndIdx = Result.IndexOf(')', Idx + 2);
if (EndIdx == -1)
{
break;
}
// Extract the variable name from the string
string Name = Result.Substring(Idx + 2, EndIdx - (Idx + 2));
// Find the value for it, either from the dictionary or the environment block
string Value = null;
for(int ScopeIdx = ScopedProperties.Count - 1; ScopeIdx >= 0; ScopeIdx--)
{
if(ScopedProperties[ScopeIdx].TryGetValue(Name, out Value))
{
break;
}
}
Value = Value ?? "";
// Replace the variable, or skip past it
Result = Result.Substring(0, Idx) + Value + Result.Substring(EndIdx + 1);
// Make sure we skip over the expanded variable; we don't want to recurse on it.
Idx += Value.Length;
}
return Result;
}
}
}