HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PDG_NodeInterface Class Reference

#include <PDG_NodeInterface.h>

+ Inheritance diagram for PDG_NodeInterface:

Classes

struct  AutoFileDependency
 
struct  ParameterGroup
 

Public Types

using ParameterGroupArray = UT_Array< ParameterGroup >
 
using DependencyArray = UT_Array< AutoFileDependency >
 

Public Member Functions

 PDG_NodeInterface (UT_StringHolder name="", UT_StringHolder data_type="")
 
virtual ~PDG_NodeInterface ()
 
int64 getMemoryUsage (bool inclusive) const
 
void cloneFrom (const PDG_NodeInterface &interface)
 
void addBuiltinPorts (PDG_NodeType type, PDG_NodeSubtype sub_type)
 Adds builtin ports for the specified node type and subtype. More...
 
PDG_WorkItemDataTypeworkItemDataType ()
 Queries the work item data type associated with this node. More...
 
const PDG_WorkItemDataTypeworkItemDataType () const
 
bool resolveWorkItemDataType (UT_WorkBuffer &errors)
 Resolves and caches the work item data type. More...
 
const PDG_PortArrayports (PDG_PortType type) const
 Returns the list of all ports of the specified type. More...
 
const PDG_PortArrayinputPorts () const
 
const PDG_PortArrayoutputPorts () const
 
const PDG_PortArrayparameters () const
 
const ParameterGroupArrayparameterGroups () const
 Returns the list of parameter groups for the node. More...
 
bool parametersForTag (const UT_StringHolder &tag, PDG_PortArray &parameters) const
 Returns the list of parameters with the specified tag. More...
 
const PDG_PortArraycustomParameters () const
 Returns the list of custom parameter ports. More...
 
PDG_Portport (PDG_PortType type, int index) const
 
PDG_Portport (PDG_PortType type, const UT_StringHolder &name) const
 
PDG_Portport (const UT_StringHolder &name) const
 
PDG_PortinputPort (int index) const
 Specialized functions for finding input ports by name or index. More...
 
PDG_PortinputPort (const UT_StringHolder &name) const
 
bool inputPortsForNode (PDG_Node *node, PDG_PortArray &ports) const
 
bool inputPortsForWorkItem (const PDG_WorkItem *work_item, PDG_PortArray &ports) const
 
bool isWorkItemFromInputPort (const PDG_WorkItem *work_item, const UT_StringHolder &name) const
 
PDG_PortoutputPort (int index) const
 Sepcialized functions for finding output ports by name or index. More...
 
PDG_PortoutputPort (const UT_StringHolder &name) const
 
PDG_Portparameter (const UT_StringHolder &name, int multi=-1) const
 
PDGT_ValueparamValue (const UT_StringHolder &name, int index=0) const
 
PDGT_ValuedefaultParamValue (const UT_StringHolder &name, int index=0) const
 
int portCount (PDG_PortType type) const
 
int inputCount () const
 
int outputCount () const
 
int parameterCount () const
 
bool hasUnorderedPorts () const
 
int numOrderedPorts () const
 
PDG_PortaddPort (PDG_PortType type, const PDG_WorkItemDataType *data_type, const UT_StringHolder &name, const UT_StringHolder &label, const UT_StringArray &tags=UT_StringArray(), int size=0, bool ordered=true, bool custom=false)
 
PDG_PortaddParameter (PDGT_Value::DataType data_type, const UT_StringHolder &name, const UT_StringHolder &label, const UT_StringArray &tags, int size=1, bool custom=false)
 
PDG_PortaddParameter (PDGT_Value::DataType data_type, const UT_StringHolder &name, const UT_StringHolder &label, int size=1, bool custom=false)
 Adds a parameter with a data type, name, label and optional size. More...
 
bool removeParameter (const UT_StringHolder &name)
 
void addFileDependency (const UT_StringHolder &file_path)
 Adds a new file dependency to the node interface. More...
 
void addParameterGroup (const UT_StringHolder &name, bool root=true, bool multiparm=false)
 Adds a new parameter group to the node interface. More...
 
void endParameterGroup ()
 Ends the current parameter group. More...
 
const UT_StringHoldertemplateName () const
 
bool isValid () const
 Returns true if the node interface is valid. More...
 
const DependencyArrayautoDependencies () const
 Returns the list of external files that this node depends on. More...
 
const PDG_Port::ExpressionVarscommonVars () const
 
PDG_ApplicationShim::NodeappNode () const
 
template<typename T , typename... Args>
void setAppNode (Args &&...args)
 Sets the underlying app node. More...
 
const PDG_AttributeInfoattributeInfo () const
 
void setAttributeInfo (const PDG_AttributeInfo &info)
 Clears and sets the attribute info for this interface. More...
 
const PDG_JobScriptInfoscriptInfo () const
 Returns the script info for this node interface. More...
 
void setScriptInfo (const PDG_JobScriptInfo &info)
 Sets the script info for the interface. More...
 
void setServiceCompatibility (const UT_StringHolder &service_type_name, bool compatible)
 
virtual void addError (const UT_StringHolder &message) const
 Adds an error to the node interface – implemented in subclasses. More...
 
template<typename... Args>
void addErrorFmt (const char *fmt, Args &&...args) const
 Adds an error using a format string, instead of plain string. More...
 
virtual void addWarning (const UT_StringHolder &message) const
 Adds a warning to the node interface – implemented in subclasses. More...
 
template<typename... Args>
void addWarningFmt (const char *fmt, Args &&...args) const
 Adds a warning using a format string, instead of plain string. More...
 
template<typename T >
bool evaluate (T &result, const UT_StringHolder &name, const PDG_WorkItem *work_item=nullptr, int index=0, int multi=-1) const
 Evaluates a parameter and reports errors if desired. More...
 
bool evaluateRaw (UT_StringHolder &result, const UT_StringHolder &name, const PDG_WorkItem *work_item=nullptr, int index=0, int multi=-1) const
 
template<typename T >
bool evaluateArray (T &result, const UT_StringHolder &name, const PDG_WorkItem *work_item=nullptr, int multi=-1) const
 Evaluates a parameter as an array and reports errors if desired. More...
 

Static Public Attributes

static const UT_StringHolder theProcessorCommandParm
 
static const UT_StringHolder theProcessorWorkItemGenerationParm
 
static const UT_StringHolder theProcessorCacheModeParm
 
static const UT_StringHolder theProcessorCookTypeParm
 
static const UT_StringHolder theProcessorServiceNameParm
 
static const UT_StringHolder theProcessorServiceResetWhenParm
 
static const UT_StringHolder theProcessorServiceResetTypeParm
 
static const UT_StringHolder theProcessorUseServiceBlockParm
 
static const UT_StringHolder theProcessorPriorityTypeParm
 
static const UT_StringHolder theProcessorPriorityExpressionParm
 
static const UT_StringHolder theProcessorLabelTypeParm
 
static const UT_StringHolder theProcessorLabelExpressionParm
 
static const UT_StringHolder theProcessorUseScheduleWhenParm
 
static const UT_StringHolder theProcessorScheduleWhenParm
 
static const UT_StringHolder theFeedbackBeginParm
 
static const UT_StringHolder theFeedbackFilesParm
 
static const UT_StringHolder theFeedbackAttribsParm
 
static const UT_StringHolder theFeedbackAttribPatternParm
 
static const UT_StringHolder thePartitionerSortParm
 
static const UT_StringHolder thePartitionerSortAttribParm
 
static const UT_StringHolder thePartitionerSortDirectionParm
 
static const UT_StringHolder thePartitionerSortRequiredParm
 
static const UT_StringHolder thePartitionerWhenParm
 
static const UT_StringHolder thePartitionerIgnoreFailures
 
static const UT_StringHolder thePartitionerSplitEnabledParm
 
static const UT_StringHolder thePartitionerSplitAttributeParm
 
static const UT_StringHolder thePartitionerSplitMissingParm
 
static const UT_StringHolder thePartitionerSplitDefaultParm
 
static const UT_StringHolder thePartitionerSplitPartialParm
 
static const UT_StringHolder thePartitionerTargetTypeParm
 
static const UT_StringHolder thePartitionerTargetParm
 
static const UT_StringHolder thePartitionerMergeParm
 
static const UT_StringHolder thePartitionerMergeOutputsParm
 
static const UT_StringHolder thePartitionerMergeAttribsParm
 
static const UT_StringHolder thePartitionerMergeOpParm
 
static const UT_StringHolder thePartitionerMergePatternParm
 
static const UT_StringHolder thePartitionerMergePreserveParm
 
static const UT_StringHolder thePartitionerStoreIDsParm
 
static const UT_StringHolder thePartitionerIDAttribParm
 
static const UT_StringHolder thePartitionerSetFrameParm
 
static const UT_StringHolder theSchedulerWorkingDirParm
 
static const UT_StringHolder theSchedulerDataSourceParm
 
static const UT_StringHolder theSchedulerValidateOutputsParm
 
static const UT_StringHolder theSchedulerCheckExpectedOutputsParm
 
static const UT_StringHolder theSchedulerCompressWorkItemDataParm
 
static const UT_StringHolder theSchedulerTickPeriodParm
 
static const UT_StringHolder theSchedulerMaxItemsParm
 
static const UT_StringHolder theSchedulerUseMaxTasksParm
 
static const UT_StringHolder theSchedulerMaxTasksParm
 
static const UT_StringHolder theSchedulerMapModeParm
 
static const UT_StringHolder theSchedulerMapZoneParm
 
static const UT_StringHolder theSchedulerUseMapZoneParm
 
static const UT_StringHolder theSchedulerWaitForFailures
 
static const UT_StringHolder theSchedulerDeleteTempDir
 
static const UT_StringHolder theSchedulerRpcTimeout
 
static const UT_StringHolder theSchedulerRpcRetries
 
static const UT_StringHolder theSchedulerRpcBackoff
 
static const UT_StringHolder theSchedulerRpcBatch
 
static const UT_StringHolder theSchedulerRpcRelease
 
static const UT_StringHolder theSchedulerRpcIgnoreErrors
 
static const UT_StringHolder theSchedulerRpcMaxErrors
 
static const UT_StringHolder theTagExpandName
 
static const UT_StringHolder theTagOpDepDirty
 
static const UT_StringHolder theTagOpDepRegen
 
static const UT_StringHolder theTagExtraInput
 
static const UT_StringHolder theSeparatorLabel
 
static const UT_StringHolder theGenerateMenuScript
 
static const UT_StringHolder theCacheModeMenuScript
 

Protected Attributes

PDG_AttributeInfo myAttributeInfo
 

Friends

class PDG_NodeTemplate
 

Detailed Description

Member Typedef Documentation

Constructor & Destructor Documentation

PDG_NodeInterface::PDG_NodeInterface ( UT_StringHolder  name = "",
UT_StringHolder  data_type = "" 
)
virtual PDG_NodeInterface::~PDG_NodeInterface ( )
virtual

Member Function Documentation

void PDG_NodeInterface::addBuiltinPorts ( PDG_NodeType  type,
PDG_NodeSubtype  sub_type 
)

Adds builtin ports for the specified node type and subtype.

virtual void PDG_NodeInterface::addError ( const UT_StringHolder message) const
inlinevirtual

Adds an error to the node interface – implemented in subclasses.

Reimplemented in PDG_Scheduler, and PDG_Node.

Definition at line 359 of file PDG_NodeInterface.h.

template<typename... Args>
void PDG_NodeInterface::addErrorFmt ( const char *  fmt,
Args &&...  args 
) const
inline

Adds an error using a format string, instead of plain string.

Definition at line 364 of file PDG_NodeInterface.h.

void PDG_NodeInterface::addFileDependency ( const UT_StringHolder file_path)

Adds a new file dependency to the node interface.

PDG_Port* PDG_NodeInterface::addParameter ( PDGT_Value::DataType  data_type,
const UT_StringHolder name,
const UT_StringHolder label,
const UT_StringArray tags,
int  size = 1,
bool  custom = false 
)

Adds a parameter with the specified data type, size, name, label and tag list. Returns the parameter on success, or nullptr on failure.

Examples:
PDG/PDG_PartitionByParity.C, and PDG/PDG_ProcessorRandom.C.
PDG_Port* PDG_NodeInterface::addParameter ( PDGT_Value::DataType  data_type,
const UT_StringHolder name,
const UT_StringHolder label,
int  size = 1,
bool  custom = false 
)

Adds a parameter with a data type, name, label and optional size.

void PDG_NodeInterface::addParameterGroup ( const UT_StringHolder name,
bool  root = true,
bool  multiparm = false 
)

Adds a new parameter group to the node interface.

PDG_Port* PDG_NodeInterface::addPort ( PDG_PortType  type,
const PDG_WorkItemDataType data_type,
const UT_StringHolder name,
const UT_StringHolder label,
const UT_StringArray tags = UT_StringArray(),
int  size = 0,
bool  ordered = true,
bool  custom = false 
)

Adds the specified port, which can be an input, output or a parameter. Returns the new port on success, else returns failure.

virtual void PDG_NodeInterface::addWarning ( const UT_StringHolder message) const
inlinevirtual

Adds a warning to the node interface – implemented in subclasses.

Reimplemented in PDG_Scheduler, and PDG_Node.

Definition at line 375 of file PDG_NodeInterface.h.

template<typename... Args>
void PDG_NodeInterface::addWarningFmt ( const char *  fmt,
Args &&...  args 
) const
inline

Adds a warning using a format string, instead of plain string.

Definition at line 380 of file PDG_NodeInterface.h.

PDG_ApplicationShim::Node* PDG_NodeInterface::appNode ( ) const
inline

Returns the underlying application node associated with this PDG node, for example a TOP node or TOP scheduler. This may be null.

Definition at line 321 of file PDG_NodeInterface.h.

const PDG_AttributeInfo& PDG_NodeInterface::attributeInfo ( ) const
inline

Returns the attribute info object for this node interface. If this is a template loaded from .json, the attribute info object contains the definition as it was specified in the template. Otherwise, if this is a cooked node, then it contains the evaluated attribute info from the last cook.

Definition at line 337 of file PDG_NodeInterface.h.

const DependencyArray& PDG_NodeInterface::autoDependencies ( ) const
inline

Returns the list of external files that this node depends on.

Definition at line 310 of file PDG_NodeInterface.h.

void PDG_NodeInterface::cloneFrom ( const PDG_NodeInterface interface)

Clones the template interface into the ports/parameters on this interface.

const PDG_Port::ExpressionVars& PDG_NodeInterface::commonVars ( ) const
inline

Returns the list of common expression variables, available on all parameters on this node interface.

Definition at line 316 of file PDG_NodeInterface.h.

const PDG_PortArray& PDG_NodeInterface::customParameters ( ) const

Returns the list of custom parameter ports.

PDGT_Value* PDG_NodeInterface::defaultParamValue ( const UT_StringHolder name,
int  index = 0 
) const
void PDG_NodeInterface::endParameterGroup ( )

Ends the current parameter group.

template<typename T >
bool PDG_NodeInterface::evaluate ( T result,
const UT_StringHolder name,
const PDG_WorkItem work_item = nullptr,
int  index = 0,
int  multi = -1 
) const
inline

Evaluates a parameter and reports errors if desired.

Definition at line 392 of file PDG_NodeInterface.h.

template<typename T >
bool PDG_NodeInterface::evaluateArray ( T result,
const UT_StringHolder name,
const PDG_WorkItem work_item = nullptr,
int  multi = -1 
) const
inline

Evaluates a parameter as an array and reports errors if desired.

Definition at line 433 of file PDG_NodeInterface.h.

bool PDG_NodeInterface::evaluateRaw ( UT_StringHolder result,
const UT_StringHolder name,
const PDG_WorkItem work_item = nullptr,
int  index = 0,
int  multi = -1 
) const
inline

Evaluates a string parameter as a raw string, and reports errors if desired.

Definition at line 412 of file PDG_NodeInterface.h.

int64 PDG_NodeInterface::getMemoryUsage ( bool  inclusive) const
bool PDG_NodeInterface::hasUnorderedPorts ( ) const

Returns information about the number of ordered vs. unordered input ports on this node.

int PDG_NodeInterface::inputCount ( ) const
PDG_Port* PDG_NodeInterface::inputPort ( int  index) const

Specialized functions for finding input ports by name or index.

PDG_Port* PDG_NodeInterface::inputPort ( const UT_StringHolder name) const
const PDG_PortArray& PDG_NodeInterface::inputPorts ( ) const
bool PDG_NodeInterface::inputPortsForNode ( PDG_Node node,
PDG_PortArray ports 
) const
bool PDG_NodeInterface::inputPortsForWorkItem ( const PDG_WorkItem work_item,
PDG_PortArray ports 
) const
bool PDG_NodeInterface::isValid ( ) const
inline

Returns true if the node interface is valid.

Definition at line 306 of file PDG_NodeInterface.h.

bool PDG_NodeInterface::isWorkItemFromInputPort ( const PDG_WorkItem work_item,
const UT_StringHolder name 
) const
int PDG_NodeInterface::numOrderedPorts ( ) const
int PDG_NodeInterface::outputCount ( ) const
PDG_Port* PDG_NodeInterface::outputPort ( int  index) const

Sepcialized functions for finding output ports by name or index.

PDG_Port* PDG_NodeInterface::outputPort ( const UT_StringHolder name) const
const PDG_PortArray& PDG_NodeInterface::outputPorts ( ) const
PDG_Port* PDG_NodeInterface::parameter ( const UT_StringHolder name,
int  multi = -1 
) const

Returns the parameter with the specified name, or nullptr if no such parameter exists.

int PDG_NodeInterface::parameterCount ( ) const
const ParameterGroupArray& PDG_NodeInterface::parameterGroups ( ) const
inline

Returns the list of parameter groups for the node.

Definition at line 189 of file PDG_NodeInterface.h.

const PDG_PortArray& PDG_NodeInterface::parameters ( ) const
bool PDG_NodeInterface::parametersForTag ( const UT_StringHolder tag,
PDG_PortArray parameters 
) const

Returns the list of parameters with the specified tag.

PDGT_Value* PDG_NodeInterface::paramValue ( const UT_StringHolder name,
int  index = 0 
) const

Returns the value and default value of the parameter with the specified name and index. If no parameter is found or the index is out of range, nullptr is returned.

PDG_Port* PDG_NodeInterface::port ( PDG_PortType  type,
int  index 
) const

Find a port by type, index and/or name. If no matching port is found, nullptr is returned.

PDG_Port* PDG_NodeInterface::port ( PDG_PortType  type,
const UT_StringHolder name 
) const
PDG_Port* PDG_NodeInterface::port ( const UT_StringHolder name) const
int PDG_NodeInterface::portCount ( PDG_PortType  type) const

Returns the numbers of ports with the specified type (input, output, etc).

const PDG_PortArray& PDG_NodeInterface::ports ( PDG_PortType  type) const

Returns the list of all ports of the specified type.

bool PDG_NodeInterface::removeParameter ( const UT_StringHolder name)

Removes the specified parameter by name, and returns true if the parameter was found and successfully removed.

bool PDG_NodeInterface::resolveWorkItemDataType ( UT_WorkBuffer errors)

Resolves and caches the work item data type.

const PDG_JobScriptInfo& PDG_NodeInterface::scriptInfo ( ) const
inline

Returns the script info for this node interface.

Definition at line 345 of file PDG_NodeInterface.h.

template<typename T , typename... Args>
void PDG_NodeInterface::setAppNode ( Args &&...  args)
inline

Sets the underlying app node.

Definition at line 326 of file PDG_NodeInterface.h.

void PDG_NodeInterface::setAttributeInfo ( const PDG_AttributeInfo info)
inline

Clears and sets the attribute info for this interface.

Definition at line 341 of file PDG_NodeInterface.h.

void PDG_NodeInterface::setScriptInfo ( const PDG_JobScriptInfo info)
inline

Sets the script info for the interface.

Definition at line 349 of file PDG_NodeInterface.h.

void PDG_NodeInterface::setServiceCompatibility ( const UT_StringHolder service_type_name,
bool  compatible 
)

Adds a single entry to the job script info's service compatiblity list

const UT_StringHolder& PDG_NodeInterface::templateName ( ) const
inline

If this interface represents a template, returns the name of that template

Definition at line 302 of file PDG_NodeInterface.h.

PDG_WorkItemDataType* PDG_NodeInterface::workItemDataType ( )
inline

Queries the work item data type associated with this node.

Definition at line 174 of file PDG_NodeInterface.h.

const PDG_WorkItemDataType* PDG_NodeInterface::workItemDataType ( ) const
inline

Definition at line 176 of file PDG_NodeInterface.h.

Friends And Related Function Documentation

friend class PDG_NodeTemplate
friend

Definition at line 465 of file PDG_NodeInterface.h.

Member Data Documentation

PDG_AttributeInfo PDG_NodeInterface::myAttributeInfo
protected

Definition at line 452 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theCacheModeMenuScript
static

Definition at line 154 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theFeedbackAttribPatternParm
static

Definition at line 93 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theFeedbackAttribsParm
static

Definition at line 92 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theFeedbackBeginParm
static

Definition at line 90 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theFeedbackFilesParm
static

Definition at line 91 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theGenerateMenuScript
static

Definition at line 153 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerIDAttribParm
static

Definition at line 119 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerIgnoreFailures
static

Definition at line 100 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerMergeAttribsParm
static

Definition at line 113 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerMergeOpParm
static

Definition at line 114 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerMergeOutputsParm
static

Definition at line 112 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerMergeParm
static

Definition at line 110 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerMergePatternParm
static

Definition at line 115 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerMergePreserveParm
static

Definition at line 116 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSetFrameParm
static

Definition at line 121 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSortAttribParm
static

Definition at line 96 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSortDirectionParm
static

Definition at line 97 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSortParm
static

Definition at line 95 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSortRequiredParm
static

Definition at line 98 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSplitAttributeParm
static

Definition at line 103 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSplitDefaultParm
static

Definition at line 105 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSplitEnabledParm
static

Definition at line 102 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSplitMissingParm
static

Definition at line 104 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerSplitPartialParm
static

Definition at line 106 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerStoreIDsParm
static

Definition at line 118 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerTargetParm
static

Definition at line 109 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerTargetTypeParm
static

Definition at line 108 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::thePartitionerWhenParm
static

Definition at line 99 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorCacheModeParm
static

Definition at line 75 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorCommandParm
static

UT_StringHolder instances for built in PDG parm/data field names. Since some of these are used during the cook, it's advantageous to store them as static instances and refer to them using PDG_NodeInterace::theXYZX rather just referring to them with a const char* to avoid rehashing for map lookups.

Definition at line 73 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorCookTypeParm
static

Definition at line 76 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorLabelExpressionParm
static

Definition at line 85 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorLabelTypeParm
static

Definition at line 84 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorPriorityExpressionParm
static

Definition at line 82 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorPriorityTypeParm
static

Definition at line 81 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorScheduleWhenParm
static

Definition at line 88 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorServiceNameParm
static

Definition at line 77 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorServiceResetTypeParm
static

Definition at line 79 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorServiceResetWhenParm
static

Definition at line 78 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorUseScheduleWhenParm
static

Definition at line 87 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorUseServiceBlockParm
static

Definition at line 80 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theProcessorWorkItemGenerationParm
static

Definition at line 74 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerCheckExpectedOutputsParm
static

Definition at line 126 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerCompressWorkItemDataParm
static

Definition at line 127 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerDataSourceParm
static

Definition at line 124 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerDeleteTempDir
static

Definition at line 136 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerMapModeParm
static

Definition at line 132 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerMapZoneParm
static

Definition at line 133 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerMaxItemsParm
static

Definition at line 129 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerMaxTasksParm
static

Definition at line 131 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerRpcBackoff
static

Definition at line 140 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerRpcBatch
static

Definition at line 141 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerRpcIgnoreErrors
static

Definition at line 143 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerRpcMaxErrors
static

Definition at line 144 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerRpcRelease
static

Definition at line 142 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerRpcRetries
static

Definition at line 139 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerRpcTimeout
static

Definition at line 138 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerTickPeriodParm
static

Definition at line 128 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerUseMapZoneParm
static

Definition at line 134 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerUseMaxTasksParm
static

Definition at line 130 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerValidateOutputsParm
static

Definition at line 125 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerWaitForFailures
static

Definition at line 135 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSchedulerWorkingDirParm
static

Definition at line 123 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theSeparatorLabel
static

Definition at line 151 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theTagExpandName
static

Definition at line 146 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theTagExtraInput
static

Definition at line 149 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theTagOpDepDirty
static

Definition at line 147 of file PDG_NodeInterface.h.

const UT_StringHolder PDG_NodeInterface::theTagOpDepRegen
static

Definition at line 148 of file PDG_NodeInterface.h.


The documentation for this class was generated from the following file: