sprog.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 <sys/select.h>
  8. #include <sys/wait.h>
  9. #include <sprog.h>
  10. void sprog_process(const struct sprog_family *fam, void *arg, int nstdin, int nstdout);
  11. void sprog_error(const char *text, ...) {
  12. va_list l;
  13. va_start(l, text);
  14. vfprintf(stderr, text, l);
  15. va_end(l);
  16. }
  17. void sprog_sleep(int msec) {
  18. usleep(msec * 1000);
  19. }
  20. void sprog_communicate(const struct sprog_family *fam, const char *port, int baud) {
  21. int pstdin[2];
  22. int pstdout[2];
  23. int pid;
  24. void *arg;
  25. struct serial_device dev;
  26. serial_open(&dev, port, baud);
  27. arg = fam->setup(&dev);
  28. pipe(pstdin);
  29. pipe(pstdout);
  30. pid = fork();
  31. if(pid<0)
  32. sprog_error("Unable to fork: %s\n", strerror(errno));
  33. else {
  34. if(pid!=0) {
  35. close(pstdin[0]);
  36. close(pstdout[1]);
  37. /* serial_communicate(&dev, pstdout[0], pstdin[1]); */
  38. waitpid(pid, NULL, 0);
  39. fam->close(arg);
  40. } else {
  41. close(pstdin[1]);
  42. close(pstdout[0]);
  43. /* sprog_process(fam, arg, pstdin[0], pstdout[1]); */
  44. sprog_process(fam, arg, dev.fd, dev.fd);
  45. }
  46. }
  47. }
  48. int sprog_waitdata(int timeout) {
  49. fd_set read_set;
  50. struct timeval tval;
  51. FD_ZERO(&read_set);
  52. FD_SET(1, &read_set);
  53. tval.tv_sec = timeout/1000;
  54. tval.tv_usec = (timeout%1000)*1000;
  55. if(select(1+1, &read_set, NULL, NULL, &tval)!=1)
  56. return 0;
  57. return 1;
  58. }
  59. void sprog_process(const struct sprog_family *fam, void *arg, int nstdin, int nstdout) {
  60. dup2(nstdin, 0);
  61. dup2(nstdout, 1);
  62. fam->init(arg);
  63. exit(0);
  64. }