sprog.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. void *arg;
  22. struct serial_device dev;
  23. serial_open(&dev, port, baud);
  24. arg = fam->setup(&dev);
  25. sprog_process(fam, arg, dev.fd, dev.fd);
  26. }
  27. int sprog_waitdata(int timeout) {
  28. fd_set read_set;
  29. struct timeval tval;
  30. FD_ZERO(&read_set);
  31. FD_SET(1, &read_set);
  32. tval.tv_sec = timeout/1000;
  33. tval.tv_usec = (timeout%1000)*1000;
  34. if(select(1+1, &read_set, NULL, NULL, &tval)!=1)
  35. return 0;
  36. return 1;
  37. }
  38. void sprog_process(const struct sprog_family *fam, void *arg, int nstdin, int nstdout) {
  39. int oldstdin;
  40. int oldstdout;
  41. oldstdin = dup(0);
  42. oldstdout = dup(1);
  43. dup2(nstdin, 0);
  44. dup2(nstdout, 1);
  45. fam->init(arg);
  46. dup2(oldstdin, 0);
  47. dup2(oldstdout, 1);
  48. }