1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "drmaa.h"
static drmaa_job_template_t *create_job_template(const char *job_path);
int main(int argc, char *argv[])
{
char diagnosis[DRMAA_ERROR_STRING_BUFFER + 1];
char jobid[DRMAA_JOBNAME_BUFFER + 1];
int drmaa_errno = DRMAA_ERRNO_SUCCESS;
const char *job_path = NULL;
void *buffer = NULL;
size_t buffer_size = 0;
drmaa_job_template_t *jt = NULL;
int exit_code = 0;
drmaa_job_ids_t *jobids = NULL;
int status = 0;
job_path = argv[1];
if (drmaa_init("", diagnosis, DRMAA_ERROR_STRING_BUFFER) != DRMAA_ERRNO_SUCCESS) {
fprintf(stderr, "drmaa_init() failed: %s\n", diagnosis);
return 1;
}
/* Submit a job to find out what the current job id is. */
jt = create_job_template(job_path);
if (jt == NULL) {
fprintf(stderr, "create_job_template() failed\n");
exit_code = 1;
goto error;
}
/* Make sure the next available block of memory contains something other than
* NULL. */
buffer_size = 256 * sizeof(void*);
buffer = malloc(buffer_size);
memset(buffer, 255, buffer_size);
free(buffer);
drmaa_errno = drmaa_run_bulk_jobs(&jobids, jt, 1, 1, 1, diagnosis,
DRMAA_ERROR_STRING_BUFFER);
if (drmaa_errno != DRMAA_ERRNO_SUCCESS) {
fprintf(stderr, "drmaa_run_bulk_jobs() failed: %s %s\n", diagnosis,
drmaa_strerror(drmaa_errno));
exit_code = 1;
goto error;
}
drmaa_delete_job_template(jt, diagnosis, DRMAA_ERROR_STRING_BUFFER);
drmaa_get_next_job_id(jobids, jobid, DRMAA_JOBNAME_BUFFER);
strcat(jobid, "1");
drmaa_errno = drmaa_job_ps(jobid, &status, diagnosis,
DRMAA_ERROR_STRING_BUFFER);
if (drmaa_errno != DRMAA_ERRNO_INVALID_JOB) {
fprintf(stderr, "invalid call to drmaa_job_ps() succeeded\n");
exit_code = 1;
goto error;
}
error:
if (drmaa_exit(diagnosis, DRMAA_ERROR_STRING_BUFFER) != DRMAA_ERRNO_SUCCESS) {
fprintf(stderr, "drmaa_exit() failed: %s\n", diagnosis);
exit_code = 1;
}
return exit_code;
}
static drmaa_job_template_t *create_job_template(const char *job_path)
{
drmaa_job_template_t *jt = NULL;
if (drmaa_allocate_job_template(&jt, NULL, 0) != DRMAA_ERRNO_SUCCESS)
return NULL;
/* the job to be run */
drmaa_set_attribute(jt, DRMAA_REMOTE_COMMAND, job_path, NULL, 0);
/* join output/error file */
drmaa_set_attribute(jt, DRMAA_JOIN_FILES, "y", NULL, 0);
/* path for output */
drmaa_set_attribute(jt, DRMAA_OUTPUT_PATH, ":/dev/null", NULL, 0);
return jt;
}
|