Grid Community Toolkit  6.2.1705709074 (tag: v6.2.20240202)
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Typedefs | Functions
Job state callbacks

Job state callbacks. More...

Data Structures

struct  globus_gram_client_job_info_s
 Extensible job information structure. More...
 

Typedefs

typedef void(* globus_gram_client_callback_func_t )(void *user_callback_arg, char *job_contact, int state, int errorcode)
 Signature for GRAM state notification callback functions. More...
 
typedef struct
globus_gram_client_job_info_s 
globus_gram_client_job_info_t
 Extensible job information structure. More...
 
typedef void(* globus_gram_client_info_callback_func_t )(void *user_callback_arg, const char *job_contact, globus_gram_client_job_info_t *job_info)
 Signature for GRAM state notification callback functions with extension support. More...
 
typedef void(* globus_gram_client_nonblocking_func_t )(void *user_callback_arg, globus_gram_protocol_error_t operation_failure_code, const char *job_contact, globus_gram_protocol_job_state_t job_state, globus_gram_protocol_error_t job_failure_code)
 Signature for callbacks signalling completion of non-blocking GRAM requests. More...
 

Functions

int globus_gram_client_callback_allow (globus_gram_client_callback_func_t callback_func, void *user_callback_arg, char **callback_contact)
 Begin listening for job state change callbacks. More...
 
int globus_gram_client_info_callback_allow (globus_gram_client_info_callback_func_t callback_func, void *user_callback_arg, char **callback_contact)
 Begin listening for job state change callbacks. More...
 
int globus_gram_client_callback_disallow (char *callback_contact)
 Stop listening for job state change callbacks. More...
 

Detailed Description

Job state callbacks.

Typedef Documentation

typedef void(* globus_gram_client_callback_func_t)(void *user_callback_arg, char *job_contact, int state, int errorcode)

Signature for GRAM state notification callback functions.

The globus_gram_client_callback_func_t type describes the function signature for job state callbacks. A pointer to a function of this type is passed to the globus_gram_client_callback_allow() function to create a callback contact. The contact string can be passed to globus_gram_client_job_request() or globus_gram_client_job_callback_register() to let the job management service know to where to send information on GRAM job state changes.

Parameters
user_callback_argA pointer to application-specific data.
job_contactA string containing the job contact. This string indicates which job this callback is referring to. It should in most cases match the return value job_contact from a call to globus_gram_client_job_request() or in the job_contact parameter to the globus_gram_client_nonblocking_func_t used with globus_gram_client_register_job_request(). However, in some cases, the port number in the job contact URL may change if the job manager is restarted.
stateThe new state (one of the globus_gram_protocol_job_state_t values) of the job.
errorcodeThe error code if the state parameter is equal to GLOBUS_GRAM_PROTOCOL_JOB_STATE_FAILED.
typedef void(* globus_gram_client_info_callback_func_t)(void *user_callback_arg, const char *job_contact, globus_gram_client_job_info_t *job_info)

Signature for GRAM state notification callback functions with extension support.

The globus_gram_client_info_callback_func_t type describes the function signature for job state callbacks that carry any GRAM protocol extensions beyond the set used in GRAM2. A pointer to a function of this type is passed to the globus_gram_client_info_callback_allow() function to create a callback contact that can handle extensions. The contact string can be passed to globus_gram_client_job_request() or globus_gram_client_job_callback_register() to let the job management service know to where to send information on GRAM job state changes.

Parameters
user_callback_argApplication-specific callback information.
job_contactJob this information is related to
job_infoJob state and extensions
See Also
globus_gram_client_info_callback_allow()

Extensible job information structure.

The globus_gram_client_job_info_t data type is used to pass protocol extensions along with the standard job status information included in the GRAM2 protocol. This structure contains the information returned in job state callbacks plus a hash table of extension entries that contain globus_gram_protocol_extension_t name-value pairs.

typedef void(* globus_gram_client_nonblocking_func_t)(void *user_callback_arg, globus_gram_protocol_error_t operation_failure_code, const char *job_contact, globus_gram_protocol_job_state_t job_state, globus_gram_protocol_error_t job_failure_code)

Signature for callbacks signalling completion of non-blocking GRAM requests.

The globus_gram_client_info_callback_func_t type describes the function signature for callbacks which indicate that a GRAM operation has completed. A pointer to a function of this type is passed to the following functions:

Parameters
user_callback_argApplication-specific callback information.
operation_failure_codeThe result of the nonblocking operation , indicating whether the operation was processed by the job manager successfully or not.
job_contactA string containing the job contact associated with this non-blocking operation.
job_stateThe state (one of the globus_gram_protocol_job_state_t values) of the job related to this non-blocking operation.
job_failure_codeThe error code of the job request if the job_state parameter is GLOBUS_GRAM_PROTOCOL_JOB_STATE_FAILED. Otherwise, its value is undefined.

Function Documentation

int globus_gram_client_callback_allow ( globus_gram_client_callback_func_t  callback_func,
void *  user_callback_arg,
char **  callback_contact 
)

Begin listening for job state change callbacks.

The globus_gram_client_callback_allow() function initializes a GRAM protocol service in the current process which will process job state updates from GRAM Job Managers. The URL to contact this service is returned and may be used with the globus_gram_client_job_request() or globus_gram_client_callback_register() family of functions.

Parameters
callback_funcA pointer to a function to call when a new job state update is received.
user_callback_argA pointer to application-specific data which is passed to the function pointed to by callback_func as its user_callback_arg parameter.
callback_contactAn output parameter that points to a string that will be allocated and set to the URL that the GRAM callback listener is waiting on.
Returns
Upon success, globus_gram_client_callback_allow() returns GLOBUS_SUCCESS opens a TCP port to accept job state updates and modifies the value pointed to by the callback_contact parameter as described above. If an error occurs, globus_gram_client_callback_allow() returns an integer error code.
Return values
GLOBUS_SUCCESSSuccess
GLOBUS_GRAM_PROTOCOL_ERROR_NULL_PARAMETERNull parameter
GLOBUS_GRAM_PROTOCOL_ERROR_INVALID_REQUESTInvalid request
GLOBUS_GRAM_PROTOCOL_ERROR_MALLOC_FAILEDOut of memory
GLOBUS_GRAM_PROTOCOL_ERROR_NO_RESOURCESNo resources
int globus_gram_client_callback_disallow ( char *  callback_contact)

Stop listening for job state change callbacks.

The globus_gram_client_callback_disallow() function stops the GRAM protocol handler associated with a callback contact from receiving further messages. After this function returns, no further callbacks for this contact will be called. Furthermore, the network port associated with the protocol handler will be released.

This function can only be used to disable a callback contact created in the current process.

Parameters
callback_contactA callback contact string that refers to a protocol handler in the current process.
Returns
Upon success, globus_gram_client_callback_disallow() returns GLOBUS_SUCCESS, closes the network port associated with the callback_contact parameter and stops further callbacks from occurring. If an error occurs, globus_gram_client_callback_disallow() returns an integer error code.
Return values
GLOBUS_SUCCESSSuccess
GLOBUS_GRAM_PROTOCOL_ERROR_CALLBACK_NOT_FOUNDCallback not found
int globus_gram_client_info_callback_allow ( globus_gram_client_info_callback_func_t  callback_func,
void *  user_callback_arg,
char **  callback_contact 
)

Begin listening for job state change callbacks.

The globus_gram_client_info_callback_allow() function initializes a GRAM protocol service in the current process which will process job state updates from GRAM Job Managers. The URL to contact this service is returned and may be used with the globus_gram_client_job_request_with_info() or globus_gram_client_register_job_status_with_info() family of functions.

Parameters
callback_funcA pointer to a function to call when a new job state update is received. The function signature of this parameter supports GRAM protocol extensions.
user_callback_argA pointer to application-specific data which is passed to the function pointed to by callback_func as its user_callback_arg parameter.
callback_contactAn output parameter that points to a string that will be allocated and set to the URL that the GRAM callback listener is waiting on.
Returns
Upon success, globus_gram_client_callback_allow() returns GLOBUS_SUCCESS opens a TCP port to accept job state updates and modifies the value pointed to by the callback_contact parameter as described above. If an error occurs, globus_gram_client_callback_allow() returns an integer error code.
Return values
GLOBUS_SUCCESSSuccess
GLOBUS_GRAM_PROTOCOL_ERROR_NULL_PARAMETERNull parameter
GLOBUS_GRAM_PROTOCOL_ERROR_INVALID_REQUESTInvalid request
GLOBUS_GRAM_PROTOCOL_ERROR_MALLOC_FAILEDOut of memory
GLOBUS_GRAM_PROTOCOL_ERROR_NO_RESOURCESNo resources