#include <stdlib.h>
#include <string.h>
+/* open/read/write/close */
+#include <fcntl.h>
+
/** If buffer is too small to hold entire string, it is incremented by this value */
#define BUFFER_STEP 16
/**
- * Program reads entire lines of text from the standard input and returns them
- * on the standard output without changing anything.
+ * Program reads entire lines of text from the standard input and pass them
+ * to the process2 using created pipe.
*/
int main(void) {
/** Currently fetched from stdin character */
/** Current buffer length*/
int buffer_length = 0;
- /* Index of the current character */
+ /** Index of the current character */
int i = 0;
-
- /** Temporary buffer used as a proxy between
+
+ /**
+ * Temporary buffer used as a proxy between
* checking memory allocation and copying data to real buffer
*/
- char *tmp = NULL;
+ char * tmp = NULL;
+
+ /** Named pipe used to communnicate with process2 */
+ char * fifo = "/tmp/process1fifo";
+
+ /** File descriptor of pipe */
+ int file_descriptor;
+ mkfifo(fifo, 0666);
+
+ file_descriptor = open(fifo, O_WRONLY);
+
do {
c = fgetc(stdin);
* return entire string and release the memory
*/
if (c == 10) {
- fprintf(stdout, "%s\n", buffer);
+ buffer[i] = '\n';
+ write(file_descriptor, buffer, ++buffer_length);
+ /*fprintf(stdout, "%s\n", buffer);*/
buffer_length = 0;
i = 0;
}
}
} while(c != EOF);
-
+
+ close(fifo);
+ unlink(fifo);
+
if (buffer) {
free(buffer);
buffer = NULL;