utils.cpp 11 KB

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