sprog.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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 <fcntl.h>
  8. #include <sys/select.h>
  9. #include <sys/wait.h>
  10. #include <sprog.h>
  11. void sprog_process(const struct sprog_family *fam, void *arg, const struct sprog_data *d, int nstdin, int nstdout);
  12. void sprog_error(const char *text, ...) {
  13. va_list l;
  14. va_start(l, text);
  15. vfprintf(stderr, text, l);
  16. va_end(l);
  17. }
  18. void sprog_sleep(int msec) {
  19. usleep(msec * 1000);
  20. }
  21. void sprog_communicate(const struct sprog_family *fam, const struct sprog_data *d, const char *port, int baud) {
  22. void *arg;
  23. struct serial_device dev;
  24. serial_open(&dev, port, baud);
  25. arg = fam->setup(&dev);
  26. sprog_process(fam, arg, d, dev.fd, dev.fd);
  27. }
  28. int sprog_waitdata(int timeout) {
  29. fd_set read_set;
  30. struct timeval tval;
  31. FD_ZERO(&read_set);
  32. FD_SET(1, &read_set);
  33. tval.tv_sec = timeout/1000;
  34. tval.tv_usec = (timeout%1000)*1000;
  35. if(select(1+1, &read_set, NULL, NULL, &tval)!=1)
  36. return 0;
  37. return 1;
  38. }
  39. void sprog_process(const struct sprog_family *fam, void *arg, const struct sprog_data *d, int nstdin, int nstdout) {
  40. int oldstdin;
  41. int oldstdout;
  42. oldstdin = dup(0);
  43. oldstdout = dup(1);
  44. dup2(nstdin, 0);
  45. dup2(nstdout, 1);
  46. fam->init(arg);
  47. if(d->data)
  48. fam->exec(arg, d);
  49. dup2(oldstdin, 0);
  50. dup2(oldstdout, 1);
  51. }
  52. void sprog_load(struct sprog_data *d, const char *path) {
  53. char buf[4096];
  54. int fd;
  55. int n;
  56. fd = open(path, O_RDONLY);
  57. if(fd<0) {
  58. sprog_error("Unable to open '%s': %s\n", path, strerror(errno));
  59. return;
  60. }
  61. d->size = 0;
  62. while((n = read(fd, buf, sizeof(buf)))>0)
  63. sprog_append_data(d, buf, n);
  64. if(n<0) {
  65. sprog_error("Error while reading from '%s': %s\n", path, strerror(errno));
  66. free(d->data);
  67. d->size = 0;
  68. d->data = NULL;
  69. return;
  70. }
  71. }
  72. void sprog_append_data(struct sprog_data *d, const char *data, int len) {
  73. int i;
  74. int alloc;
  75. alloc = d->alloc;
  76. if(!d->data)
  77. alloc = 4096;
  78. while((d->size+len+128)<alloc)
  79. alloc *= 2;
  80. if(d->data)
  81. d->data = realloc(d->data, alloc);
  82. else
  83. d->data = malloc(alloc);
  84. for(i=0; i<len; i++)
  85. d->data[i+d->size] = data[i];
  86. d->alloc = alloc;
  87. d->size = len;
  88. }
  89. void sprog_progress(int progress) {
  90. char buf[80];
  91. int i;
  92. int w;
  93. w = (progress*7)/10;
  94. for(i=0; i<70; i++) {
  95. if(i<=w)
  96. buf[i] = ':';
  97. else
  98. buf[i] = ' ';
  99. }
  100. buf[i] = 0;
  101. sprog_error("\r[%s] %3d%%", buf, progress);
  102. }