test_read_pipe.cpp

00001 /*
00002 Copyright 2007, 2008, 2009, 2010, 2011 Instituto de Sistemas e Robotica, Instituto Superior Tecnico
00003 
00004 This file is part of MeRMaID.
00005 
00006 MeRMaID is free software: you can redistribute it and/or modify
00007 it under the terms of the GNU Lesser General Public License as published by
00008 the Free Software Foundation, either version 3 of the License, or
00009 (at your option) any later version.
00010 
00011 MeRMaID is distributed in the hope that it will be useful,
00012 but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014 GNU Lesser General Public License for more details.
00015 
00016 You should have received a copy of the GNU Lesser General Public License
00017 along with MeRMaID.  If not, see <http://www.gnu.org/licenses/>.
00018 */
00019 
00020 
00021 
00022 #include "config.h"
00023 
00024 #include <sys/types.h>
00025 #include <sys/stat.h>
00026 #include <fcntl.h>
00027 #include <assert.h>
00028 #include <stdio.h>
00029 #include <unistd.h>
00030 #include <errno.h>
00031 #include <string.h>
00032 
00033 #define PIPE_NAME "/tmp/test_read_pipe"
00034 #define TEST_FILE "test_file.txt"
00035 #define SIZE 1000
00036 
00037 int main()
00038 {
00039   // create named pipe
00040   mkfifo (PIPE_NAME, S_IWUSR);
00041   
00042 #ifdef DEBUG
00043   fprintf (stderr, "Named pipe created with name: %s.\n", PIPE_NAME);
00044 #endif
00045   
00046   // open named pipe
00047   int fd_pipe = open (PIPE_NAME, O_WRONLY | O_CREAT, S_IWUSR);
00048   FILE* fd_file = fopen (TEST_FILE, "r");
00049   
00050   if (fd_pipe == -1 || fd_file == 0) {
00051     // Error opening pipe or file
00052     return -1;
00053   }
00054   
00055 #ifdef DEBUG
00056   fprintf (stderr, "Named pipe opened sucessfully.");
00057 #endif
00058   
00059   char buf[SIZE];
00060   while (1) {
00061     int bytes_read = fread (buf, 1, SIZE, fd_file);
00062 #ifdef DEBUG
00063     int bytes_written = write (fd_pipe, buf, bytes_read);
00064 #else
00065     write (fd_pipe, buf, bytes_read);
00066 #endif
00067     
00068 #ifdef DEBUG
00069     fprintf (stderr, "%d bytes written\n", bytes_written);
00070 #endif
00071     
00072     if (bytes_read < SIZE) break;
00073   }
00074   
00075   close (fd_pipe);
00076   fclose (fd_file);
00077   return 0;
00078 }
00079 
Generated on Fri Mar 4 22:14:58 2011 for MeRMaID::support by  doxygen 1.6.3