=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/plugin/file2.c,v retrieving revision 1.9 retrieving revision 1.17 diff -u -p -r1.9 -r1.17 --- OpenXM/src/kan96xx/plugin/file2.c 2004/02/23 09:03:43 1.9 +++ OpenXM/src/kan96xx/plugin/file2.c 2020/10/06 11:33:47 1.17 @@ -1,9 +1,15 @@ -/*$OpenXM: OpenXM/src/kan96xx/plugin/file2.c,v 1.8 2003/11/24 08:16:13 takayama Exp $ */ +/*$OpenXM: OpenXM/src/kan96xx/plugin/file2.c,v 1.16 2016/03/31 03:22:55 takayama Exp $ */ #include +#include #include #include #include +#include +#include +#include #include "file2.h" +#include "mysig.h" +#include "sm1Socket.h" /* If you use file2 standalone to output string, make the following dummy definition; @@ -77,24 +83,37 @@ 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; if (debug1) { - printf("fp2fflush is called with FILE2 *%x.\n", (int )fp2); + printf("fp2fflush is called with FILE2 *%lx.\n", (long)fp2); fp2dumpBuffer(fp2); printf("--------------------------\n"); } if (checkfp2(fp2,"fp2fflush ") == -1) return(-1); if (fp2->fd == -1) return(0); if (fp2->writepos > 0) { + mysignal(SIGPIPE,SIG_IGN); r = write(fp2->fd,fp2->writeBuf,fp2->writepos); + mysignal(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{ @@ -111,14 +130,19 @@ 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) { FILE *fp; if (debug1) { printf("fp2fputc is called with %2x, fp2->writepos=%d, ",c,fp2->writepos); - printf("fp2 = %x.\n",(int) fp2); + printf("fp2 = %lx.\n",(long) fp2); } if (fp2->watch || WatchStream) { if (fp2->watch) fp = fp2->watchFile; @@ -224,7 +248,6 @@ int fp2dumpBuffer(FILE2 *fp2) { int fp2clearReadBuf(FILE2 *fp2) { fd_set readfds; struct timeval timeout; - extern int errno; int fd; #define TMP00SIZE 2000 char tmp00[TMP00SIZE]; @@ -265,7 +288,7 @@ int fp2clearReadBuf(FILE2 *fp2) { int fp2write(FILE2 *os, char *data, int size) { int i,r; for (i=0; i