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
|
#include <getopt.h>
#include <unistd.h>
#include <setjmp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "@pysam@.pysam.h"
FILE * @pysam@_stderr = NULL;
FILE * @pysam@_stdout = NULL;
const char * @pysam@_stdout_fn = NULL;
FILE * @pysam@_set_stderr(int fd)
{
if (@pysam@_stderr != NULL)
fclose(@pysam@_stderr);
@pysam@_stderr = fdopen(fd, "w");
return @pysam@_stderr;
}
void @pysam@_close_stderr(void)
{
fclose(@pysam@_stderr);
@pysam@_stderr = NULL;
}
FILE * @pysam@_set_stdout(int fd)
{
if (@pysam@_stdout != NULL)
fclose(@pysam@_stdout);
@pysam@_stdout = fdopen(fd, "w");
if (@pysam@_stdout == NULL)
{
fprintf(@pysam@_stderr, "could not set stdout to fd %i", fd);
}
return @pysam@_stdout;
}
void @pysam@_set_stdout_fn(const char *fn)
{
@pysam@_stdout_fn = fn;
}
void @pysam@_close_stdout(void)
{
fclose(@pysam@_stdout);
@pysam@_stdout = NULL;
}
int @pysam@_puts(const char *s)
{
if (fputs(s, @pysam@_stdout) == EOF) return EOF;
return putc('\n', @pysam@_stdout);
}
static jmp_buf @pysam@_jmpbuf;
static int @pysam@_status = 0;
int @pysam@_dispatch(int argc, char *argv[])
{
/* Reset getopt()/getopt_long() processing. */
#if defined __GLIBC__
optind = 0;
#elif defined _OPTRESET || defined _OPTRESET_DECLARED
optreset = optind = 1;
#else
optind = 1;
#endif
if (setjmp(@pysam@_jmpbuf) == 0)
return @pysam@_main(argc, argv);
else
return @pysam@_status;
}
void @pysam@_exit(int status)
{
@pysam@_status = status;
longjmp(@pysam@_jmpbuf, 1);
}
|