Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I dont know where I am going wrong?? I am trying to write on one end of file and read from other end using Anonymous Pipe . I have two files, main.c in which I am creating processes and 2nd file new.c in which I am trying to catch handle and read data. Following are the two files.

main.c

#include <stdio.h>
#include <windows.h>
#include <io.h>

#define BUFSIZE 4096

int main(int argc, char *argv[])
{
   char path[] = "******";
   char buf[BUFSIZE];
   DWORD bytes_written;
   STARTUPINFO si;
   SECURITY_ATTRIBUTES sa;

   PROCESS_INFORMATION pi;
   HANDLE newstdin, newstdout, read_stdout, write_stdin;  //pipe handles

   sa.lpSecurityDescriptor = NULL;
   sa.nLength = sizeof(SECURITY_ATTRIBUTES);
   sa.bInheritHandle = TRUE;         //allow inheritable handles

   if (!CreatePipe(&newstdin, &write_stdin, &sa, 0))   //create stdin pipe
   {
    fprintf(stdout,"ERROR AT CreatePipe");
    exit(1);
   }
   if (!CreatePipe(&read_stdout, &newstdout, &sa, 0))  //create stdout pipe
   {
    fprintf(stdout,"ERROR AT CreatePipe");
    CloseHandle(newstdin);
    CloseHandle(write_stdin);
    exit(1);
   }

   GetStartupInfo(&si);      //set startupinfo for the spawned process

   si.dwFlags = STARTF_USESTDHANDLES;
   si.wShowWindow = SW_HIDE;
   si.hStdOutput = newstdout;
   si.hStdError = newstdout;     //set the new handles for the child process
   si.hStdInput = newstdin;
   char *a[2];
   a[0]="*****";
   a[1]="*****";
   //spawn the child process
   int i;
   for (i = 0; i < 2; i++) {
     if (!CreateProcess(path, a[i], NULL, NULL, TRUE, 0,
            NULL, NULL, &si, &pi)) {
        fprintf(stdout,"ERROR AT CreateProcess");
        CloseHandle(newstdin);
        CloseHandle(newstdout);
        CloseHandle(read_stdout);
        CloseHandle(write_stdin);
        return -1;
     }

     WriteFile(write_stdin,buf,BUFSIZE,&bytes_written,NULL);
   }
   CloseHandle(write_stdin);
   int ret=merge();

   CloseHandle(pi.hProcess);
   CloseHandle(newstdin);            //clean stuff up
   CloseHandle(newstdout);
   CloseHandle(read_stdout);
   CloseHandle(write_stdin);
   return 0;
}

new.c

#include <windows.h>
#include <stdio.h>
#include <io.h>
#include <FCNTL.H>

#define BUFSIZE 4096

 int merge()
 {  
    FILE *file1;
    char buffer[BUFSIZE];
    HANDLE hStdin, hStdout;
    hStdout = GetStdHandle(STD_OUTPUT_HANDLE );
    hStdin = GetStdHandle(STD_INPUT_HANDLE );

    int fd = _open_osfhandle((long) hStdin, _O_RDONLY);
    if ((file1 = _fdopen(fd, "r")) == NULL )
         fprintf(stdout,"Error in opening");
    else {
            fprintf(stdout,"HI");
            unsigned long bread;   //bytes read
            unsigned long avail;

            ReadFile(hStdin, buffer, sizeof(buffer), &bread, NULL);
            printf("%s",buffer);

            CloseHandle(hStdin);
            fclose( file1 );
     }
    return 0;
}
share|improve this question
Improve indentation of the code. – sashoalm Oct 26 '12 at 7:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.