utils.cpp 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. #include "utils.h"
  2. #include <fstream>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <string>
  7. #include <time.h>
  8. // http://c-faq.com/lib/randrange.html
  9. int randint(int N) { return rand() / (RAND_MAX / N + 1); }
  10. // http://c-faq.com/lib/randrange.html
  11. // numbers in the range [M, N] could be generated with something like
  12. int randrange(int M, int N) {
  13. return M + rand() / (RAND_MAX / (N - M + 1) + 1);
  14. }
  15. /**
  16. * random_activate()
  17. *
  18. * Is a weight (1-10),
  19. * tests if random number is < weight * 10.
  20. *
  21. * So random_activate(9) happens more frequently
  22. * then random_activate(8) or lower.
  23. *
  24. * This probably needs to be fixed.
  25. * We need a better randint(RANGE) code.
  26. */
  27. int random_activate(int w) {
  28. int r = randint(100);
  29. if (r <= (w * 10)) {
  30. return 1;
  31. };
  32. return 0;
  33. }
  34. /**
  35. * Display a repr of the given string.
  36. *
  37. * This converts most \n\r\v\f\t codes,
  38. * defaults to \xHH (hex value).
  39. */
  40. char *repr(const char *data) {
  41. static char buffer[40960];
  42. char *cp;
  43. strcpy(buffer, data);
  44. cp = buffer;
  45. while (*cp != 0) {
  46. char c = *cp;
  47. if (c == ' ') {
  48. cp++;
  49. continue;
  50. };
  51. /* Ok, it's form-feed ('\f'), newline ('\n'), carriage return ('\r'),
  52. * horizontal tab ('\t'), and vertical tab ('\v') */
  53. if (strchr("\f\n\r\t\v\?", c) != NULL) {
  54. memmove(cp + 1, cp, strlen(cp) + 1);
  55. *cp = '\\';
  56. cp++;
  57. switch (c) {
  58. case '\f':
  59. *cp = 'f';
  60. cp++;
  61. break;
  62. case '\n':
  63. *cp = 'n';
  64. cp++;
  65. break;
  66. case '\r':
  67. *cp = 'r';
  68. cp++;
  69. break;
  70. case '\t':
  71. *cp = 't';
  72. cp++;
  73. break;
  74. case '\v':
  75. *cp = 'v';
  76. cp++;
  77. break;
  78. default:
  79. *cp = '?';
  80. cp++;
  81. break;
  82. }
  83. continue;
  84. }
  85. if (c == '\\') {
  86. memmove(cp + 1, cp, strlen(cp) + 1);
  87. *cp = '\\';
  88. cp += 2;
  89. continue;
  90. }
  91. if (c == '"') {
  92. memmove(cp + 1, cp, strlen(cp) + 1);
  93. *cp = '\\';
  94. cp += 2;
  95. continue;
  96. }
  97. if (strchr("[()]{}:;,.<>?!@#$%^&*", c) != NULL) {
  98. cp++;
  99. continue;
  100. }
  101. if (strchr("0123456789", c) != NULL) {
  102. cp++;
  103. continue;
  104. }
  105. if (strchr("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", c) !=
  106. NULL) {
  107. cp++;
  108. continue;
  109. }
  110. // Ok, default to \xHH output.
  111. memmove(cp + 3, cp, strlen(cp) + 1);
  112. char buffer[10];
  113. int slen;
  114. slen = snprintf(buffer, sizeof(buffer), "\\x%02x", (int)c & 0xff);
  115. /*
  116. if (slen >= sizeof(buffer)) {
  117. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  118. }
  119. */
  120. strncpy(cp, buffer, 4);
  121. cp += 4;
  122. continue;
  123. }
  124. return buffer;
  125. }
  126. /*
  127. * strnstr()
  128. *
  129. * buffer safe version that looks for a string.
  130. */
  131. const char *strnstr(const char *source, int len, const char *needle) {
  132. int pos;
  133. for (pos = 0; pos < len; pos++) {
  134. if (source[pos] == needle[0]) {
  135. if (strncmp(source + pos, needle, strlen(needle)) == 0) {
  136. return source + pos;
  137. }
  138. }
  139. }
  140. return NULL;
  141. }
  142. /*
  143. * rstrnstr() Reverse string find in a string
  144. *
  145. * This obeys the len, and handles nulls in buffer.
  146. * find is a c-string (null terminated)
  147. */
  148. int rstrnstr(const char *buffer, int len, const char *find) {
  149. int flen = strlen(find);
  150. if (len < flen) {
  151. // I can't find a string in a buffer smaller then it is!
  152. return -1;
  153. }
  154. int pos = len - flen;
  155. while (pos > 0) {
  156. if (buffer[pos] == find[0]) {
  157. // First chars match, check them all.
  158. if (strncmp(buffer + pos, find, flen) == 0) {
  159. return pos;
  160. }
  161. }
  162. pos--;
  163. }
  164. return -1;
  165. }
  166. /*
  167. * string_insert()
  168. * Inserts a string into a given position.
  169. * This safely checks to make sure the buffer isn't overrun.
  170. *
  171. * buffer is a c null terminated string.
  172. */
  173. int string_insert(char *buffer, int max_length, int pos, const char *insert) {
  174. /*
  175. assert(max_length > pos);
  176. assert(buffer != NULL);
  177. assert(insert != NULL);
  178. */
  179. if (pos >= max_length)
  180. return 0;
  181. if (buffer == NULL)
  182. return 0;
  183. if (insert == NULL)
  184. return 0;
  185. if (strlen(insert) == 0)
  186. return 0;
  187. if (pos > strlen(buffer))
  188. return 0;
  189. if (strlen(buffer) + strlen(insert) >= max_length) {
  190. /*
  191. ZF_LOGD("string_insert() failed inserting [%s]", repr(insert));
  192. */
  193. return 0;
  194. }
  195. memmove(buffer + pos + strlen(insert), buffer + pos,
  196. strlen(buffer + pos) + 1);
  197. // cp + strlen(display), cp, strlen(cp) + 1);
  198. strncpy(buffer + pos, insert, strlen(insert));
  199. // (cp, display, strlen(display));
  200. return 1; // success
  201. }
  202. /*
  203. Pascal String Copy. Copy from pascal string, to C String.
  204. First char is pascal string length. (Max 255).
  205. */
  206. void pcopy(char *pstring, char *str) {
  207. int len = (int)*pstring;
  208. strncpy(str, pstring + 1, len);
  209. str[len] = 0;
  210. }
  211. /*
  212. * tail file, return new lines of text.
  213. *
  214. * Only handles lines < 256 chars.
  215. * Does not handle if the file is closed/unlinked/...
  216. *
  217. */
  218. std::string &find_new_text(std::ifstream &infile,
  219. std::streampos &last_position) {
  220. static std::string line;
  221. line.clear();
  222. infile.seekg(0, std::ios::end);
  223. std::streampos filesize = infile.tellg();
  224. if (filesize == -1) {
  225. // Ok, we've failed somehow. Now what?
  226. // cout << "SNAP!";
  227. return line;
  228. }
  229. // check if the new file started
  230. // we don't detect if the file has been unlinked/reset
  231. if (filesize < last_position) {
  232. // cout << "reset! " << filesize << endl;
  233. last_position = 0;
  234. }
  235. while (last_position < filesize) {
  236. // this loop -- seems broken.
  237. // for (long n = last_position; n < filesize; n++) {
  238. infile.seekg(last_position, std::ios::beg);
  239. char test[256];
  240. infile.getline(test, sizeof(test));
  241. if (infile.eof()) {
  242. // We got EOF instead of something.
  243. // Seek back to our last, good, known position
  244. // and exit (wait for the rest of the line)
  245. infile.seekg(last_position, std::ios::beg);
  246. return line;
  247. }
  248. std::streampos new_pos = infile.tellg();
  249. if (new_pos == -1)
  250. return line;
  251. last_position = new_pos;
  252. line.assign(test);
  253. return line;
  254. }
  255. return line;
  256. }
  257. IConv::IConv(const char *to, const char *from) : ic(iconv_open(to, from)) {}
  258. IConv::~IConv() { iconv_close(ic); }
  259. int IConv::convert(char *input, char *output, size_t outbufsize) {
  260. size_t inbufsize = strlen(input);
  261. size_t orig_size = outbufsize;
  262. // memset(output, 0, outbufsize);
  263. // https://www.gnu.org/savannah-checkouts/gnu/libiconv/documentation/libiconv-1.15/iconv.3.html
  264. int r = iconv(ic, &input, &inbufsize, &output, &outbufsize);
  265. *output = 0;
  266. return r;
  267. }
  268. static IConv converter("UTF-8", "CP437");
  269. static time_t last_time = 0;
  270. /*
  271. * harry_level:
  272. *
  273. * 0 - inactive
  274. * 1 - Week 1 (1-7)
  275. * 2 - Week 2 (8-14)
  276. * 3 - Week 3 (15-21)
  277. * 4 - Week 4 (22-31)
  278. */
  279. int harry_level(void) {
  280. struct tm *tmp;
  281. time_t now = time(NULL);
  282. if (last_time < now + 10) {
  283. last_time = now;
  284. // Do our every 10 second checks here
  285. tmp = gmtime(&now);
  286. if (tmp->tm_mon != 9)
  287. return 0;
  288. if (tmp->tm_mday < 8)
  289. return 1;
  290. if (tmp->tm_mday < 15)
  291. return 2;
  292. if (tmp->tm_mday < 22)
  293. return 3;
  294. return 4;
  295. }
  296. }
  297. /*
  298. * This is similar to repr, but --
  299. *
  300. * It converts high ASCII to UTF8, so it will display correctly
  301. * in the logfiles!
  302. */
  303. const char *logrepr(const char *input) {
  304. static char buffer[10240];
  305. char *cp;
  306. strcpy(buffer, input);
  307. cp = buffer;
  308. while (*cp != 0) {
  309. unsigned char c = *cp;
  310. if (c == ' ') {
  311. cp++;
  312. continue;
  313. };
  314. /* Ok, it's form-feed ('\f'), newline ('\n'), carriage return ('\r'),
  315. * horizontal tab ('\t'), and vertical tab ('\v') */
  316. if (strchr("\f\n\r\t\v", c) != NULL) {
  317. memmove(cp + 1, cp, strlen(cp) + 1);
  318. *cp = '\\';
  319. cp++;
  320. switch (c) {
  321. case '\f':
  322. *cp = 'f';
  323. cp++;
  324. break;
  325. case '\n':
  326. *cp = 'n';
  327. cp++;
  328. break;
  329. case '\r':
  330. *cp = 'r';
  331. cp++;
  332. break;
  333. case '\t':
  334. *cp = 't';
  335. cp++;
  336. break;
  337. case '\v':
  338. *cp = 'v';
  339. cp++;
  340. break;
  341. /* default:
  342. *cp = '?';
  343. cp++;
  344. break; */
  345. }
  346. continue;
  347. }
  348. if (c == '\\') {
  349. memmove(cp + 1, cp, strlen(cp) + 1);
  350. *cp = '\\';
  351. cp += 2;
  352. continue;
  353. }
  354. if (c == '"') {
  355. memmove(cp + 1, cp, strlen(cp) + 1);
  356. *cp = '\\';
  357. cp += 2;
  358. continue;
  359. }
  360. if (strchr("[()]{}:;,.<>?!@#$%^&*", c) != NULL) {
  361. cp++;
  362. continue;
  363. }
  364. if (strchr("0123456789", c) != NULL) {
  365. cp++;
  366. continue;
  367. }
  368. if (strchr("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", c) !=
  369. NULL) {
  370. cp++;
  371. continue;
  372. }
  373. if ((int)c < 0x20) {
  374. // Ok, default to \xHH output.
  375. memmove(cp + 3, cp, strlen(cp) + 1);
  376. char buffer[10];
  377. int slen;
  378. slen = snprintf(buffer, sizeof(buffer), "\\x%02x", (int)c & 0xff);
  379. strncpy(cp, buffer, 4);
  380. cp += 4;
  381. continue;
  382. };
  383. cp++;
  384. continue;
  385. }
  386. static char fancybuffer[16384];
  387. converter.convert(buffer, fancybuffer, sizeof(fancybuffer));
  388. return fancybuffer;
  389. }