]> git.jsancho.org Git - gacela.git/blobdiff - src/gacela.c
(no commit message)
[gacela.git] / src / gacela.c
index 3357b0c1e05d6d76c0461c4ef4e330d9a2f4b434..10aee8d38a58c38ac485c2a015357c46c588a874 100644 (file)
@@ -270,6 +270,10 @@ main (int argc, char *argv[])
   SCM pipes;
   int pid;
 
+  char *string = "prueba\n";
+  int p[2];
+  char buffer[150];
+
   // Checking arguments
   for (i = 1; i < argc; i++) {
     if (strcmp (argv[i], "--shell-mode") == 0)
@@ -304,11 +308,46 @@ main (int argc, char *argv[])
     //start_remote_client (host, port);
     return;
   else {
+    /*
     pipes = scm_pipe ();
     pid = fork ();
+
     if (pid == 0)
       start_local_server (dirname (argv[0]), pipes);
     else
       gacela_client (SCM_CAR (pipes), SCM_CDR (pipes));
+    */
+    /*
+    if (pid == 0) {
+      scm_write (scm_from_locale_string ("prueba"), SCM_CDR (pipes));
+      sleep (10);
+    }
+    else {
+      while (scm_char_ready_p (SCM_CAR (pipes)) == SCM_BOOL_F) {
+       sleep (1);
+       printf ("1\n");
+      }
+      SCM buffer;
+      buffer = scm_read_line (SCM_CAR (pipes));
+      printf ("%s\n", scm_to_locale_string (buffer));
+    }
+    */
+    FILE *stream;
+    pipe (p);
+    if (pid == 0) {
+      close (p[1]);
+      stream = fdopen (p[0], "w");
+      fprintf (stream, "prueba\n");
+      fclose (stream);
+      printf ("1\n");
+      sleep (10);
+    }
+    else {
+      int c;
+      close (p[0]);
+      stream = fdopen (p[1], "r");
+      while ((c = fgetc (stream)) != EOF)
+       putchar (c);
+    }
   }
 }