MD_Getc.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #include <errno.h>
  2. #include <stdio.h>
  3. #if defined(_MSC_VER) || defined(WIN32)
  4. #include <winsock2.h>
  5. #else
  6. #include <sys/socket.h>
  7. #endif
  8. #include <unistd.h>
  9. #include <time.h>
  10. #include <string.h>
  11. #include "MagiDoor.h"
  12. extern time_t mdtimeout;
  13. extern time_t mdtimeremaining;
  14. char md_getc() {
  15. char c;
  16. ssize_t ret;
  17. while (1) {
  18. if (mdcontrol.socket == -1) {
  19. ret = read(STDIN_FILENO, &c, 1);
  20. } else {
  21. ret = recv(mdcontrol.socket, &c, 1, 0);
  22. }
  23. if (ret == 0) {
  24. md_exit(0);
  25. }
  26. #if defined(_MSC_VER) || defined(WIN32)
  27. if (ret == SOCKET_ERROR && WSAGetLastError() == WSAEWOULDBLOCK) {
  28. #else
  29. if (ret == -1 && (errno == EAGAIN || errno == EWOULDBLOCK)) {
  30. #endif
  31. if (mdtimeout <= time(NULL)) {
  32. md_printf("\r\nIdle timeout!\r\n");
  33. md_exit(0);
  34. }
  35. if (mdtimeremaining <= time(NULL)) {
  36. md_printf("\r\nOut of time!\r\n");
  37. md_exit(0);
  38. }
  39. usleep(100);
  40. continue;
  41. }
  42. mdtimeout = time(NULL) + 900;
  43. return c;
  44. }
  45. }
  46. char md_get_answer(char *options) {
  47. char c;
  48. c = md_getc();
  49. while (strchr(options, c) == NULL) {
  50. c = md_getc();
  51. }
  52. return c;
  53. }
  54. int md_getstring(char *ptr, int maxlen, char minchar, char maxchar) {
  55. char c;
  56. int len = 0;
  57. static char lastc = 'x';
  58. *ptr = '\0';
  59. while (len < maxlen) {
  60. c = md_getc();
  61. if (c == '\n' || c == '\0') {
  62. lastc = c;
  63. if (lastc == '\r') {
  64. continue;
  65. } else {
  66. return len;
  67. }
  68. }
  69. if (c == '\r') {
  70. lastc = c;
  71. return len;
  72. }
  73. if (c == '\b' || c == 127) {
  74. if (len > 0) {
  75. md_printf("\b \b");
  76. len--;
  77. ptr[len] = '\0';
  78. }
  79. lastc = c;
  80. continue;
  81. }
  82. if (c >= minchar && c <= maxchar) {
  83. ptr[len++] = c;
  84. ptr[len] = '\0';
  85. md_putchar(c);
  86. }
  87. lastc = c;
  88. }
  89. return len;
  90. }