Vuo  2.0.0
Public Member Functions | List of all members
VuoCompilerInputDataClass Class Reference

Description

The data type for a data-and-event input port.

Definition at line 19 of file VuoCompilerInputDataClass.hh.

Public Member Functions

 VuoCompilerInputDataClass (string name, Type *type, bool twoParameters)
 True if this event function parameter in the node class implementation is lowered to two parameters in the LLVM bitcode. More...
 
VuoCompilerDatanewData (void)
 Creates a data instance based on this data type. More...
 
string getDefaultValue (void)
 Returns the string representation of the default initial value of port data instantiated from this data type. More...
 
string getAutoValue (void)
 Returns the string representation of auto value for port data instantiated from this data type. More...
 
bool getAutoSupersedesDefaultValue (void)
 Returns the boolean autoSupersedesDefault value for port data instantiated from this data type. More...
 
bool isLoweredToTwoParameters (void)
 Returns true if, in the node event function, Clang converts this one parameter in source code to two parameters in the compiled bitcode. More...
 
- Public Member Functions inherited from VuoCompilerDataClass
 ~VuoCompilerDataClass (void)
 Destructor. More...
 
VuoTypegetVuoType (void)
 Returns the VuoType for this port data, as set in setVuoType. More...
 
void setVuoType (VuoType *vuoType)
 Sets the VuoType for this port data. More...
 
Type * getType (void)
 Returns the LLVM type for this port data's Vuo type. More...
 
void setDetails (struct json_object *details)
 Sets details for this port data. More...
 
json_objectgetDetails (void)
 Returns details for this port data, set in setDetails(). More...
 
- Public Member Functions inherited from VuoCompilerNodeArgumentClass
virtual ~VuoCompilerNodeArgumentClass (void)
 to make this class dynamic_cast-able More...
 
bool isInEventFunction (void)
 Returns true if this is known to be one of the parameters in its node class's event function. More...
 
size_t getIndexInEventFunction (void)
 Returns the index of this port's parameter in its node class's event function. More...
 
void setIndexInEventFunction (size_t indexInEventFunction)
 Indicates that this is the parameter at index indexInEventFunction in its node class's event function. More...
 
bool isInInitFunction (void)
 Returns true if this is known to be one of the parameters in its node class's init function. More...
 
size_t getIndexInInitFunction (void)
 Returns the index of this port's parameter in its node class's init function. More...
 
void setIndexInInitFunction (size_t indexInInitFunction)
 Indicates that this is the parameter at index indexInInitFunction in its node class's init function. More...
 
bool isInCallbackStartFunction (void)
 Returns true if this is known to be one of the parameters in its node class's callback start function. More...
 
size_t getIndexInCallbackStartFunction (void)
 Returns the index of this port's parameter in its node class's callback start function. More...
 
void setIndexInCallbackStartFunction (size_t indexInCallbackStartFunction)
 Indicates that this is the parameter at index indexInCallbackStartFunction in its node class's callback start function. More...
 
bool isInCallbackUpdateFunction (void)
 Returns true if this is known to be one of the parameters in its node class's callback update function. More...
 
size_t getIndexInCallbackUpdateFunction (void)
 Returns the index of this port's parameter in its node class's callback update function. More...
 
void setIndexInCallbackUpdateFunction (size_t indexInCallbackUpdateFunction)
 Indicates that this is the parameter at index indexInCallbackUpdateFunction in its node class's callback update function. More...
 
bool isInCallbackStopFunction (void)
 Returns true if this is known to be one of the parameters in its node class's callback stop function. More...
 
size_t getIndexInCallbackStopFunction (void)
 Returns the index of this port's parameter in its node class's callback stop function. More...
 
void setIndexInCallbackStopFunction (size_t indexInCallbackStopFunction)
 Indicates that this is the parameter at index indexInCallbackStopFunction in its node class's callback stop function. More...
 
- Public Member Functions inherited from VuoBaseDetail< VuoPortClass >
 VuoBaseDetail (string description, VuoPortClass *base)
 Creates a detail class. More...
 
VuoPortClassgetBase (void) const
 Returns the detail class instance's base class instance. More...
 
void setBase (VuoPortClass *base)
 Sets the detail class instance's base class instance. More...
 

Additional Inherited Members

- Protected Member Functions inherited from VuoCompilerDataClass
 VuoCompilerDataClass (string name, Type *type)
 Creates a data type for a data-and-event port. More...
 
- Protected Member Functions inherited from VuoCompilerNodeArgumentClass
 VuoCompilerNodeArgumentClass (string name, VuoPortClass::PortType portType, Type *type)
 Creates a parameter for calling a node's event or init function, and creates its corresponding base VuoPortClass. More...
 
- Protected Attributes inherited from VuoCompilerDataClass
struct json_objectdetails
 Metadata specified in the node class implementation, such as the default value. More...
 
- Protected Attributes inherited from VuoCompilerNodeArgumentClass
Type * type
 The parameter's type. More...
 
bool inEventFunction
 Does this parameter appear in the node's event function? More...
 
size_t indexInEventFunction
 Where this parameter appears in the node's event function's parameter list. More...
 
bool inInitFunction
 Does this parameter appear in the node's init function? More...
 
size_t indexInInitFunction
 Where this parameter appears in the node's init function's parameter list. More...
 
bool inCallbackStartFunction
 Does this parameter appear in the node's callback start function? More...
 
size_t indexInCallbackStartFunction
 Where this parameter appears in the node's callback start function's parameter list. More...
 
bool inCallbackUpdateFunction
 Does this parameter appear in the node's callback update function? More...
 
size_t indexInCallbackUpdateFunction
 Where this parameter appears in the node's callback update function's parameter list. More...
 
bool inCallbackStopFunction
 Does this parameter appear in the node's callback stop function? More...
 
size_t indexInCallbackStopFunction
 Where this parameter appears in the node's callback stop function's parameter list. More...
 

Constructor & Destructor Documentation

◆ VuoCompilerInputDataClass()

VuoCompilerInputDataClass::VuoCompilerInputDataClass ( string  name,
Type *  type,
bool  twoParameters 
)

True if this event function parameter in the node class implementation is lowered to two parameters in the LLVM bitcode.

Creates a data type for a data-and-event input port.

The default data value for instances of this data type is not set. Set it with setDefaultValue.

Definition at line 19 of file VuoCompilerInputDataClass.cc.

Member Function Documentation

◆ getAutoSupersedesDefaultValue()

bool VuoCompilerInputDataClass::getAutoSupersedesDefaultValue ( void  )

Returns the boolean autoSupersedesDefault value for port data instantiated from this data type.

Definition at line 77 of file VuoCompilerInputDataClass.cc.

◆ getAutoValue()

string VuoCompilerInputDataClass::getAutoValue ( void  )

Returns the string representation of auto value for port data instantiated from this data type.

Definition at line 61 of file VuoCompilerInputDataClass.cc.

◆ getDefaultValue()

string VuoCompilerInputDataClass::getDefaultValue ( void  )

Returns the string representation of the default initial value of port data instantiated from this data type.

Definition at line 37 of file VuoCompilerInputDataClass.cc.

◆ isLoweredToTwoParameters()

bool VuoCompilerInputDataClass::isLoweredToTwoParameters ( void  )

Returns true if, in the node event function, Clang converts this one parameter in source code to two parameters in the compiled bitcode.

Definition at line 93 of file VuoCompilerInputDataClass.cc.

◆ newData()

VuoCompilerData * VuoCompilerInputDataClass::newData ( void  )
virtual

Creates a data instance based on this data type.

Implements VuoCompilerDataClass.

Definition at line 28 of file VuoCompilerInputDataClass.cc.


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