Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
DynamoNodeModelsEssentials/src/Essentials/NodeModelsEssentials/EssentialsError.cs
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
58 lines (52 sloc)
1.73 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using Dynamo.Graph.Nodes; | |
using ProtoCore.AST.AssociativeAST; | |
using NodeModelsEssentials.Functions; | |
using System.Linq; | |
using Newtonsoft.Json; | |
namespace NodeModelsEssentials | |
{ | |
// <summary> | |
// Sample Node Model called MultiplyMulti. | |
// It returns the product of two numbers and a verbose string. | |
// </summary> | |
[NodeName("Essentials.Error")] | |
[NodeDescription("Throw a custom warning when something fails.")] | |
[NodeCategory("NodeModelsEssentials")] | |
[InPortNames("In")] | |
[InPortTypes("string")] | |
[InPortDescriptions("A string.")] | |
[OutPortNames("Out")] | |
[OutPortTypes("string")] | |
[OutPortDescriptions( | |
"Resulting string.")] | |
[IsDesignScriptCompatible] | |
public class Error : NodeModel | |
{ | |
[JsonConstructor] | |
private Error(IEnumerable<PortModel> inPorts, IEnumerable<PortModel> outPorts) : base(inPorts, outPorts) | |
{ | |
} | |
public Error() | |
{ | |
RegisterAllPorts(); | |
} | |
public override IEnumerable<AssociativeNode> BuildOutputAst(List<AssociativeNode> inputAsNodes) | |
{ | |
if (!InPorts[0].Connectors.Any()) | |
{ | |
return new[] { | |
AstFactory.BuildAssignment(GetAstIdentifierForOutputIndex(0), AstFactory.BuildNullNode()) | |
}; | |
} | |
var errorFunctionNode = | |
AstFactory.BuildFunctionCall( | |
new Func<string, string>(NodeModelsEssentialsFunctions.Error), | |
new List<AssociativeNode> { inputAsNodes[0] }); | |
return new[] { | |
AstFactory.BuildAssignment(GetAstIdentifierForOutputIndex(0), errorFunctionNode) | |
}; | |
} | |
} | |
} |