=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/plugin/file2.c,v retrieving revision 1.10 retrieving revision 1.13 diff -u -p -r1.10 -r1.13 --- OpenXM/src/kan96xx/plugin/file2.c 2004/02/25 23:14:35 1.10 +++ OpenXM/src/kan96xx/plugin/file2.c 2005/07/03 11:08:54 1.13 @@ -1,8 +1,10 @@ -/*$OpenXM: OpenXM/src/kan96xx/plugin/file2.c,v 1.9 2004/02/23 09:03:43 takayama Exp $ */ +/*$OpenXM: OpenXM/src/kan96xx/plugin/file2.c,v 1.12 2005/02/28 12:53:44 takayama Exp $ */ #include +#include #include #include #include +#include #include #include "file2.h" @@ -78,9 +80,15 @@ FILE2 *fp2open(int fd) { fp2->mathcapList = NULL; fp2->log_incomming = NULL; fp2->log_outgoing = NULL; + fp2->popened = 0; + fp2->pfp = NULL; return(fp2); } +void fp2setfp(FILE2 *fp2,FILE *fp,int popened) { + fp2->pfp = fp; + fp2->popened = popened; +} int fp2fflush(FILE2 *fp2) { int r; @@ -92,10 +100,17 @@ int fp2fflush(FILE2 *fp2) { if (checkfp2(fp2,"fp2fflush ") == -1) return(-1); if (fp2->fd == -1) return(0); if (fp2->writepos > 0) { + signal(SIGPIPE,SIG_IGN); r = write(fp2->fd,fp2->writeBuf,fp2->writepos); + signal(SIGPIPE,SIG_DFL); fp2->writepos = 0; if (r <= 0) { fprintf(stderr,"fp2fflush(): write failed on %d.\n",fp2->fd); + if (errno == EPIPE) { + fprintf(stderr,"Your peer is closed --- SIGPIPE. Closing this fp2.\n"); + fp2fclose(fp2); + return r; + } } return(r); }else{ @@ -112,7 +127,12 @@ int fp2fclose(FILE2 *fp2) { fprintf(stderr,"fp2fclose: flush error.\n"); return(-1); } - return(close(fp2->fd)); + if (fp2->pfp != NULL) { + if (fp2->popened) { + return pclose(fp2->pfp); + } else return fclose(fp2->pfp); + } + else return(close(fp2->fd)); } int fp2fputc(int c,FILE2 *fp2) { @@ -384,3 +404,4 @@ int fp2fputs(char *s,FILE2 *fp) { .... } */ +