sprog.c 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #include <stdarg.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <errno.h>
  5. #include <stdio.h>
  6. #include <unistd.h>
  7. #include <sprog.h>
  8. void sprog_process(const struct sprog_family *fam, void *arg, int nstdin, int nstdout);
  9. void sprog_error(const char *text, ...) {
  10. va_list l;
  11. va_start(l, text);
  12. vfprintf(stderr, text, l);
  13. va_end(l);
  14. }
  15. void sprog_sleep(int msec) {
  16. usleep(msec * 1000);
  17. }
  18. void sprog_communicate(const struct sprog_family *fam, const char *port, int baud) {
  19. int pstdin[2];
  20. int pstdout[2];
  21. int pid;
  22. void *arg;
  23. struct serial_device dev;
  24. serial_open(&dev, port, baud);
  25. arg = fam->setup(&dev);
  26. pipe(pstdin);
  27. pipe(pstdout);
  28. pid = fork();
  29. if(pid<0)
  30. sprog_error("Unable to fork: %s\n", strerror(errno));
  31. else {
  32. if(pid==0) {
  33. serial_communicate(&dev, pstdout[0], pstdin[1]);
  34. fam->close(arg);
  35. } else
  36. sprog_process(fam, arg, pstdin[0], pstdout[1]);
  37. }
  38. }
  39. void sprog_process(const struct sprog_family *fam, void *arg, int nstdin, int nstdout) {
  40. dup2(nstdin, 0);
  41. dup2(nstdout, 1);
  42. fam->init(arg);
  43. exit(0);
  44. }