Vuo  1.2.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Typedefs | Functions | Variables
VuoRuntime.h File Reference

Description

VuoRuntime interface.

Typedefs

typedef void( VuoInitInProcessType )(void *ZMQContext, const char *controlURL, const char *telemetryURL, bool isPaused, pid_t runnerPid, int runnerPipe, bool continueIfRunnerDies, bool trialRestrictionsEnabled, const char *workingDirectory, void *compositionBinaryHandle, void *runtimePersistentState, bool doAppInit)
 Type for vuoInitInProcess.
 
typedef void *( VuoFiniType )(void)
 Type for vuoFini.
 
typedef void( VuoFiniRuntimeStateType )(void *)
 Type for vuoFiniRuntimeState.
 
typedef void( VuoSendErrorType )(struct VuoCompositionState *, const char *)
 Type for vuoSendError.
 
typedef bool( VuoIsCurrentCompositionStoppedType )(void)
 Type for vuoIsCurrentCompositionStopped.
 

Functions

void vuoInit (int argc, char **argv)
 Parses command-line arguments, then calls vuoInitInProcess().
 
void vuoInitInProcess (void *ZMQContext, const char *controlURL, const char *telemetryURL, bool isPaused, pid_t runnerPid, int runnerPipe, bool continueIfRunnerDies, bool trialRestrictionsEnabled, const char *workingDirectory, void *compositionBinaryHandle, void *previousRuntimeState, bool doAppInit)
 Starts a composition running in the current process.
 
void * vuoFini (void)
 Cleans up the ØMQ connections.
 

Variables

VuoSendErrorType vuoSendError
 Sends a telemetry message indicating that an error has occurred.
 
VuoIsCurrentCompositionStoppedType vuoIsCurrentCompositionStopped
 Returns true if the composition has not yet started or if it has stopped.
 

Typedef Documentation

typedef void( VuoFiniRuntimeStateType)(void *)
typedef void*( VuoFiniType)(void)

Type for vuoFini.

typedef void( VuoInitInProcessType)(void *ZMQContext, const char *controlURL, const char *telemetryURL, bool isPaused, pid_t runnerPid, int runnerPipe, bool continueIfRunnerDies, bool trialRestrictionsEnabled, const char *workingDirectory, void *compositionBinaryHandle, void *runtimePersistentState, bool doAppInit)

Type for vuoInitInProcess.

typedef bool( VuoIsCurrentCompositionStoppedType)(void)
typedef void( VuoSendErrorType)(struct VuoCompositionState *, const char *)

Type for vuoSendError.

Function Documentation

void* vuoFini ( void  )

Cleans up the ØMQ connections.

To be called after the composition has stopped.

Returns a data structure containing runtime state that should persist across a live-coding reload. If this function is called for a live-coding reload, pass the return value to the next call to vuoInitInProcess(). Otherwise, pass it to vuoFiniRuntimeState().

void vuoInit ( int  argc,
char **  argv 
)

Parses command-line arguments, then calls vuoInitInProcess().

void vuoInitInProcess ( void *  ZMQContext,
const char *  controlURL,
const char *  telemetryURL,
bool  isPaused,
pid_t  runnerPid,
int  runnerPipe,
bool  continueIfRunnerDies,
bool  trialRestrictionsEnabled,
const char *  workingDirectory,
void *  compositionBinaryHandle,
void *  previousRuntimeState,
bool  doAppInit 
)

Starts a composition running in the current process.

Parameters
ZMQContextA ØMQ context shared with the runner (since ØMQ only allows one context per process). If not needed, pass null.
controlURLThe URL to which the runtime should bind the ØMQ socket that it uses to receive control requests and send replies.
telemetryURLThe URL to which the runtime should bind the ØMQ socket that it uses to publish telemetry.
isPausedIf true, the composition starts out paused, and it's up to the runner to unpause it.
runnerPidThe process ID of the runner.
runnerPipeThe file descriptor of the pipe that the runtime should use to check if the runner process has ended. If not needed, pass -1.
continueIfRunnerDiesIf true, the runtime should allow the composition to keep running if runnerPipe indicates that the runner process has ended. If false, the runtime should instead stop the composition.
trialRestrictionsEnabledIf true, the composition should run in free-trial mode.
workingDirectoryThe directory that the composition should use to resolve relative paths.
compositionBinaryHandleThe handle of the composition's dynamic library or executable returned by dlopen().
previousRuntimeStateIf the composition is restarting for a live-coding reload, pass the value returned by the previous call to vuoFini(). Otherwise, pass null.
doAppInitShould we call VuoApp_init()?

Variable Documentation

VuoIsCurrentCompositionStoppedType vuoIsCurrentCompositionStopped

Returns true if the composition has not yet started or if it has stopped.

Assumes that just one composition is running in the process.

VuoSendErrorType vuoSendError

Sends a telemetry message indicating that an error has occurred.