Functions | |
int | drmaa_allocate_job_template (drmaa_job_template_t **jt, char *error_diagnosis, size_t error_diag_len) |
int | drmaa_delete_job_template (drmaa_job_template_t *jt, char *error_diagnosis, size_t error_diag_len) |
int | drmaa_set_attribute (drmaa_job_template_t *jt, const char *name, const char *value, char *error_diagnosis, size_t error_diag_len) |
int | drmaa_get_attribute (drmaa_job_template_t *jt, const char *name, char *value, size_t value_len, char *error_diagnosis, size_t error_diag_len) |
int | drmaa_set_vector_attribute (drmaa_job_template_t *jt, const char *name, const char *value[], char *error_diagnosis, size_t error_diag_len) |
int | drmaa_get_vector_attribute (drmaa_job_template_t *jt, const char *name, drmaa_attr_values_t **values, char *error_diagnosis, size_t error_diag_len) |
int | drmaa_get_attribute_names (drmaa_attr_names_t **values, char *error_diagnosis, size_t error_diag_len) |
int | drmaa_get_vector_attribute_names (drmaa_attr_names_t **values, char *error_diagnosis, size_t error_diag_len) |
int drmaa_allocate_job_template | ( | drmaa_job_template_t ** | jt, | |
char * | error_diagnosis, | |||
size_t | error_diag_len | |||
) |
This function allocates a new job template. This template is used to describe the job to be submitted. This is accomplished by setting the desired scalar and vector attributes to their appropriate values.
jt | Reference to a job template pointer. The DRMAA API runtime library will allocate memory for the new template. This memory MUST be freed with a subsequent call to drmaa_delete_job_template() function | |
error_diagnosis | string of characters with error related diagnosis information. The error diagnosis buffer will be filled in case of error. If the size of error_diagnosis buffer passed is smaller than the error message the resultant string will be truncated. | |
error_diag_len | size of the error_diagnosis buffer. DRMAA_ERROR_STRING_BUFFER can be used for error_diag_len when appropiate. |
int drmaa_delete_job_template | ( | drmaa_job_template_t * | jt, | |
char * | error_diagnosis, | |||
size_t | error_diag_len | |||
) |
This function deallocates a job template.
jt | Pointer to a job_template structure. The job template *jt MUST BE previously allocated with a drmaa_allocate_job_template() function call. | |
error_diagnosis | string of characters with error related diagnosis information. The error diagnosis buffer will be filled in case of error. If the size of error_diagnosis buffer passed is smaller than the error message the resultant string will be truncated. | |
error_diag_len | size of the error_diagnosis buffer. DRMAA_ERROR_STRING_BUFFER can be used for error_diag_len when appropiate. |
int drmaa_get_attribute | ( | drmaa_job_template_t * | jt, | |
const char * | name, | |||
char * | value, | |||
size_t | value_len, | |||
char * | error_diagnosis, | |||
size_t | error_diag_len | |||
) |
This function returns the value of a given attribute name. If the attribute name is not defined in the GridWay system an empty string will be returned with exit code DRMAA_ERRNO_INVALID_ARGUMENT.
jt | Pointer to a job_template structure. The job template *jt MUST BE previously allocated with a drmaa_allocate_job_template() function call. | |
name | Name of the job template attribute to be set. | |
value | Value associated to the given attribute name. | |
value_len | size of the attribute value buffer. The pre-defined | |
error_diagnosis | string of characters with error related diagnosis information. The error diagnosis buffer will be filled in case of error. If the size of error_diagnosis buffer passed is smaller than the error message the resultant string will be truncated. | |
error_diag_len | size of the error_diagnosis buffer. DRMAA_ERROR_STRING_BUFFER can be used for error_diag_len when appropiate. |
int drmaa_get_attribute_names | ( | drmaa_attr_names_t ** | values, | |
char * | error_diagnosis, | |||
size_t | error_diag_len | |||
) |
This function returns the set of supported scalar attribute names by the GridWay DRMAA implementation.
values | The string vector containing the attribute names | |
error_diagnosis | string of characters with error related diagnosis information. | |
error_diag_len | size of the error_diagnosis buffer. |
int drmaa_get_vector_attribute | ( | drmaa_job_template_t * | jt, | |
const char * | name, | |||
drmaa_attr_values_t ** | values, | |||
char * | error_diagnosis, | |||
size_t | error_diag_len | |||
) |
This function stores in values a values string vector containing the values of the vector attribute, name's value in the given job template. If the attribute name is not defined in the GridWay system vector with an empty string will be returned i.e. {'\0',NULL}.
jt | Pointer to a job_template structure. The job template *jt MUST BE previously allocated with a drmaa_allocate_job_template() function call. | |
name | Name of the job attribute whose values will be retrieved. | |
values | A opaque string vector containing the attribute values | |
error_diagnosis | string of characters with error related diagnosis information. The error diagnosis buffer will be filled in case of error. If the size of error_diagnosis buffer passed is smaller than the error message the resultant string will be truncated. | |
error_diag_len | size of the error_diagnosis buffer. DRMAA_ERROR_STRING_BUFFER can be used for error_diag_len when appropiate. |
int drmaa_get_vector_attribute_names | ( | drmaa_attr_names_t ** | values, | |
char * | error_diagnosis, | |||
size_t | error_diag_len | |||
) |
This function returns the set of supported vector attribute names by the GridWay DRMAA implementation.
values | The string vector containing the vector attribute names | |
error_diagnosis | string of characters with error related diagnosis information. | |
error_diag_len | size of the error_diagnosis buffer. |
int drmaa_set_attribute | ( | drmaa_job_template_t * | jt, | |
const char * | name, | |||
const char * | value, | |||
char * | error_diagnosis, | |||
size_t | error_diag_len | |||
) |
The function drmaa_set_attribute() sets an scalar attribute to a given value. Attribute names should be instantiated we the pre-defined attribute names. Several calls to drmaa_set_attribute() with the same attribute name will override its value.
jt | Pointer to a job_template structure. The job template *jt MUST BE previously allocated with a drmaa_allocate_job_template() function call. | |
name | Name of the job template attribute to be set. | |
value | Value associated to the given attribute name. | |
error_diagnosis | string of characters with error related diagnosis information. The error diagnosis buffer will be filled in case of error. If the size of error_diagnosis buffer passed is smaller than the error message the resultant string will be truncated. | |
error_diag_len | size of the error_diagnosis buffer. DRMAA_ERROR_STRING_BUFFER can be used for error_diag_len when appropiate. |
int drmaa_set_vector_attribute | ( | drmaa_job_template_t * | jt, | |
const char * | name, | |||
const char * | value[], | |||
char * | error_diagnosis, | |||
size_t | error_diag_len | |||
) |
This function sets an attribute to a given vector value. Vector attribute names should be instantiated we the pre-defined vector attribute names. Several calls to drmaa_set_vector_attribute() with the same attribute name will override its value.
jt | Pointer to a job_template structure. The job template *jt MUST BE previously allocated with a drmaa_allocate_job_template() function call. | |
name | Name of the job template attribute to be set. The name buffer should be of length DRMAA_ATTR_BUFFER. | |
value[] | A NULL terminated list of values. | |
error_diagnosis | string of characters with error related diagnosis information. The error diagnosis buffer will be filled in case of error. If the size of error_diagnosis buffer passed is smaller than the error message the resultant string will be truncated. | |
error_diag_len | size of the error_diagnosis buffer. DRMAA_ERROR_STRING_BUFFER can be used for error_diag_len when appropiate. |