1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976
|
#include <utils.h>
#include <logger.h>
#include <config.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <iconv.h>
#include <errno.h>
#include <pwd.h>
#include <libgen.h>
#include <sys/utsname.h>
#include <unistd.h>
#include <sstream>
#include <locale>
#include <cwchar>
#include <cstring>
#include <cstdlib>
#include <cstdarg>
#include <curl/curl.h>
#include <langinfo.h>
#include <stfl.h>
#include <libxml/uri.h>
#if HAVE_GCRYPT
#include <gnutls/gnutls.h>
#include <gcrypt.h>
#include <errno.h>
#include <pthread.h>
GCRY_THREAD_OPTION_PTHREAD_IMPL;
#endif
#if HAVE_OPENSSL
#include <openssl/crypto.h>
#endif
namespace newsbeuter {
std::vector<std::string> utils::tokenize_quoted(const std::string& str, std::string delimiters) {
/*
* This function tokenizes strings, obeying quotes and throwing away comments that start
* with a '#'.
*
* e.g. line: foo bar "foo bar" "a test"
* is parsed to 4 elements:
* [0]: foo
* [1]: bar
* [2]: foo bar
* [3]: a test
*
* e.g. line: yes great "x\ny" # comment
* is parsed to 3 elements:
* [0]: yes
* [1]: great
* [2]: x
* y
*
* \", \r, \n, \t and \v are replaced with the literals that you know from C/C++ strings.
*
*/
bool attach_backslash = true;
std::vector<std::string> tokens;
std::string::size_type last_pos = str.find_first_not_of(delimiters, 0);
std::string::size_type pos = last_pos;
while (pos != std::string::npos && last_pos != std::string::npos) {
if (str[last_pos] == '#') // stop as soon as we found a comment
break;
if (str[last_pos] == '"') {
++last_pos;
pos = last_pos;
int backslash_count = 0;
while (pos < str.length() && (str[pos] != '"' || (backslash_count%2))) {
if (str[pos] == '\\') {
++backslash_count;
} else {
backslash_count = 0;
}
++pos;
}
if (pos >= str.length()) {
pos = std::string::npos;
std::string token;
while (last_pos < str.length()) {
if (str[last_pos] == '\\') {
if (str[last_pos-1] == '\\') {
if (attach_backslash) {
token.append("\\");
}
attach_backslash = !attach_backslash;
}
} else {
if (str[last_pos-1] == '\\') {
append_escapes(token, str[last_pos]);
} else {
token.append(1, str[last_pos]);
}
}
++last_pos;
}
tokens.push_back(token);
} else {
std::string token;
while (last_pos < pos) {
if (str[last_pos] == '\\') {
if (str[last_pos-1] == '\\') {
if (attach_backslash) {
token.append("\\");
}
attach_backslash = !attach_backslash;
}
} else {
if (str[last_pos-1] == '\\') {
append_escapes(token, str[last_pos]);
} else {
token.append(1, str[last_pos]);
}
}
++last_pos;
}
tokens.push_back(token);
++pos;
}
} else {
pos = str.find_first_of(delimiters, last_pos);
tokens.push_back(str.substr(last_pos, pos - last_pos));
}
last_pos = str.find_first_not_of(delimiters, pos);
}
return tokens;
}
std::vector<std::string> utils::tokenize(const std::string& str, std::string delimiters) {
/*
* This function tokenizes a string by the delimiters. Plain and simple.
*/
std::vector<std::string> tokens;
std::string::size_type last_pos = str.find_first_not_of(delimiters, 0);
std::string::size_type pos = str.find_first_of(delimiters, last_pos);
while (std::string::npos != pos || std::string::npos != last_pos) {
tokens.push_back(str.substr(last_pos, pos - last_pos));
last_pos = str.find_first_not_of(delimiters, pos);
pos = str.find_first_of(delimiters, last_pos);
}
return tokens;
}
std::vector<std::wstring> utils::wtokenize(const std::wstring& str, std::wstring delimiters) {
/*
* This function tokenizes a string by the delimiters. Plain and simple.
*/
std::vector<std::wstring> tokens;
std::wstring::size_type last_pos = str.find_first_not_of(delimiters, 0);
std::wstring::size_type pos = str.find_first_of(delimiters, last_pos);
while (std::string::npos != pos || std::string::npos != last_pos) {
tokens.push_back(str.substr(last_pos, pos - last_pos));
last_pos = str.find_first_not_of(delimiters, pos);
pos = str.find_first_of(delimiters, last_pos);
}
return tokens;
}
std::vector<std::string> utils::tokenize_spaced(const std::string& str, std::string delimiters) {
std::vector<std::string> tokens;
std::string::size_type last_pos = str.find_first_not_of(delimiters, 0);
std::string::size_type pos = str.find_first_of(delimiters, last_pos);
if (last_pos != 0) {
tokens.push_back(std::string(" "));
}
while (std::string::npos != pos || std::string::npos != last_pos) {
tokens.push_back(str.substr(last_pos, pos - last_pos));
last_pos = str.find_first_not_of(delimiters, pos);
if (last_pos > pos)
tokens.push_back(std::string(" "));
pos = str.find_first_of(delimiters, last_pos);
}
return tokens;
}
std::vector<std::string> utils::tokenize_nl(const std::string& str, std::string delimiters) {
std::vector<std::string> tokens;
std::string::size_type last_pos = str.find_first_not_of(delimiters, 0);
std::string::size_type pos = str.find_first_of(delimiters, last_pos);
unsigned int i;
LOG(LOG_DEBUG,"utils::tokenize_nl: last_pos = %u",last_pos);
if (last_pos != std::string::npos) {
for (i=0; i<last_pos; ++i) {
tokens.push_back(std::string("\n"));
}
}
while (std::string::npos != pos || std::string::npos != last_pos) {
tokens.push_back(str.substr(last_pos, pos - last_pos));
LOG(LOG_DEBUG,"utils::tokenize_nl: substr = %s", str.substr(last_pos, pos - last_pos).c_str());
last_pos = str.find_first_not_of(delimiters, pos);
LOG(LOG_DEBUG,"utils::tokenize_nl: pos - last_pos = %u", last_pos - pos);
for (i=0; last_pos != std::string::npos && pos != std::string::npos && i<(last_pos - pos); ++i) {
tokens.push_back(std::string("\n"));
}
pos = str.find_first_of(delimiters, last_pos);
}
return tokens;
}
void utils::remove_fs_lock(const std::string& lock_file) {
LOG(LOG_DEBUG, "utils::remove_fs_lock: removed lockfile %s", lock_file.c_str());
::unlink(lock_file.c_str());
}
bool utils::try_fs_lock(const std::string& lock_file, pid_t & pid) {
int fd;
// pid == 0 indicates that something went majorly wrong during locking
pid = 0;
LOG(LOG_DEBUG, "utils::try_fs_lock: trying to lock %s", lock_file.c_str());
// first, we open (and possibly create) the lock file
fd = ::open(lock_file.c_str(), O_RDWR | O_CREAT, 0600);
if (fd < 0)
return false;
// then we lock it (T_LOCK returns immediately if locking is not possible)
if (lockf(fd, F_TLOCK, 0) == 0) {
std::string pidtext = utils::to_string<unsigned int>(getpid());
// locking successful -> truncate file and write own PID into it
ftruncate(fd, 0);
write(fd, pidtext.c_str(), pidtext.length());
return true;
}
// locking was not successful -> read PID of locking process from it
fd = ::open(lock_file.c_str(), O_RDONLY);
if (fd >= 0) {
char buf[32];
int len = read(fd, buf, sizeof(buf)-1);
unsigned int upid = 0;
buf[len] = '\0';
sscanf(buf, "%u", &upid);
pid = upid;
close(fd);
}
return false;
}
std::string utils::convert_text(const std::string& text, const std::string& tocode, const std::string& fromcode) {
std::string result;
if (strcasecmp(tocode.c_str(), fromcode.c_str())==0)
return text;
iconv_t cd = ::iconv_open((tocode + "//TRANSLIT").c_str(), fromcode.c_str());
if (cd == reinterpret_cast<iconv_t>(-1))
return result;
size_t inbytesleft;
size_t outbytesleft;
/*
* of all the Unix-like systems around there, only Linux/glibc seems to
* come with a SuSv3-conforming iconv implementation.
*/
#if !(__linux) && !defined(__GLIBC__) && !defined(__APPLE__) && !defined(__OpenBSD__)
const char * inbufp;
#else
char * inbufp;
#endif
char outbuf[16];
char * outbufp = outbuf;
outbytesleft = sizeof(outbuf);
inbufp = const_cast<char *>(text.c_str()); // evil, but spares us some trouble
inbytesleft = strlen(inbufp);
do {
char * old_outbufp = outbufp;
int rc = ::iconv(cd, &inbufp, &inbytesleft, &outbufp, &outbytesleft);
if (-1 == rc) {
switch (errno) {
case E2BIG:
result.append(old_outbufp, outbufp - old_outbufp);
outbufp = outbuf;
outbytesleft = sizeof(outbuf);
inbufp += strlen(inbufp) - inbytesleft;
inbytesleft = strlen(inbufp);
break;
case EILSEQ:
case EINVAL:
result.append(old_outbufp, outbufp - old_outbufp);
result.append("?");
inbufp += strlen(inbufp) - inbytesleft + 1;
inbytesleft = strlen(inbufp);
break;
default:
break;
}
} else {
result.append(old_outbufp, outbufp - old_outbufp);
}
} while (inbytesleft > 0);
iconv_close(cd);
return result;
}
std::string utils::get_command_output(const std::string& cmd) {
FILE * f = popen(cmd.c_str(), "r");
std::string buf;
char cbuf[1024];
if (f) {
size_t s;
while ((s = fread(cbuf, 1, sizeof(cbuf), f)) > 0) {
buf.append(cbuf, s);
}
pclose(f);
}
return buf;
}
void utils::extract_filter(const std::string& line, std::string& filter, std::string& url) {
std::string::size_type pos = line.find_first_of(":", 0);
std::string::size_type pos1 = line.find_first_of(":", pos + 1);
filter = line.substr(pos+1, pos1 - pos - 1);
pos = pos1;
url = line.substr(pos+1, line.length() - pos);
LOG(LOG_DEBUG, "utils::extract_filter: %s -> filter: %s url: %s", line.c_str(), filter.c_str(), url.c_str());
}
static size_t my_write_data(void *buffer, size_t size, size_t nmemb, void *userp) {
std::string * pbuf = static_cast<std::string *>(userp);
pbuf->append(static_cast<const char *>(buffer), size * nmemb);
return size * nmemb;
}
std::string utils::retrieve_url(const std::string& url, configcontainer * cfgcont, const char * authinfo, const std::string* postdata) {
std::string buf;
CURL * easyhandle = curl_easy_init();
set_common_curl_options(easyhandle, cfgcont);
curl_easy_setopt(easyhandle, CURLOPT_URL, url.c_str());
curl_easy_setopt(easyhandle, CURLOPT_WRITEFUNCTION, my_write_data);
curl_easy_setopt(easyhandle, CURLOPT_WRITEDATA, &buf);
if(postdata != NULL) {
curl_easy_setopt(easyhandle, CURLOPT_POST, 1);
curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDS, postdata->c_str());
}
if (authinfo) {
curl_easy_setopt(easyhandle, CURLOPT_HTTPAUTH, get_auth_method(cfgcont->get_configvalue("http-auth-method")));
curl_easy_setopt(easyhandle, CURLOPT_USERPWD, authinfo);
}
curl_easy_perform(easyhandle);
curl_easy_cleanup(easyhandle);
if(postdata != NULL) {
LOG(LOG_DEBUG, "utils::retrieve_url(%s)[%s]: %s", url.c_str(), postdata->c_str(), buf.c_str());
} else {
LOG(LOG_DEBUG, "utils::retrieve_url(%s)[-]: %s", url.c_str(), buf.c_str());
}
return buf;
}
void utils::run_command(const std::string& cmd, const std::string& input) {
int rc = fork();
switch (rc) {
case -1:
break;
case 0: { // child:
int fd = ::open("/dev/null", O_RDWR);
close(0);
close(1);
close(2);
dup2(fd, 0);
dup2(fd, 1);
dup2(fd, 2);
LOG(LOG_DEBUG, "utils::run_command: %s '%s'", cmd.c_str(), input.c_str());
execlp(cmd.c_str(), cmd.c_str(), input.c_str(), NULL);
LOG(LOG_DEBUG, "utils::run_command: execlp of %s failed: %s", cmd.c_str(), strerror(errno));
exit(1);
}
default:
break;
}
}
std::string utils::run_program(char * argv[], const std::string& input) {
std::string buf;
int ipipe[2];
int opipe[2];
pipe(ipipe);
pipe(opipe);
int rc = fork();
switch (rc) {
case -1:
break;
case 0: { // child:
close(ipipe[1]);
close(opipe[0]);
dup2(ipipe[0], 0);
dup2(opipe[1], 1);
close(2);
int errfd = ::open("/dev/null", O_WRONLY);
if (errfd != -1) dup2(errfd, 2);
execvp(argv[0], argv);
exit(1);
}
default: {
close(ipipe[0]);
close(opipe[1]);
write(ipipe[1], input.c_str(), input.length());
close(ipipe[1]);
char cbuf[1024];
int rc2;
while ((rc2 = read(opipe[0], cbuf, sizeof(cbuf))) > 0) {
buf.append(cbuf, rc2);
}
close(opipe[0]);
}
break;
}
return buf;
}
std::string utils::resolve_tilde(const std::string& str) {
const char * homedir;
std::string filepath;
if (!(homedir = ::getenv("HOME"))) {
struct passwd * spw = ::getpwuid(::getuid());
if (spw) {
homedir = spw->pw_dir;
} else {
homedir = "";
}
}
if (strcmp(homedir,"")!=0) {
if (str == "~") {
filepath.append(homedir);
} else if (str.substr(0,2) == "~/") {
filepath.append(homedir);
filepath.append(1,'/');
filepath.append(str.substr(2,str.length()-2));
} else {
filepath.append(str);
}
} else {
filepath.append(str);
}
return filepath;
}
std::string utils::replace_all(std::string str, const std::string& from, const std::string& to) {
std::string::size_type s = str.find(from);
while (s != std::string::npos) {
str.replace(s,from.length(), to);
s = str.find(from, s + to.length());
}
return str;
}
std::wstring utils::utf8str2wstr(const std::string& utf8str) {
stfl_ipool * pool = stfl_ipool_create("utf-8");
std::wstring wstr = stfl_ipool_towc(pool, utf8str.c_str());
stfl_ipool_destroy(pool);
return wstr;
}
std::wstring utils::str2wstr(const std::string& str) {
const char * codeset = nl_langinfo(CODESET);
struct stfl_ipool * ipool = stfl_ipool_create(codeset);
std::wstring result = stfl_ipool_towc(ipool, str.c_str());
stfl_ipool_destroy(ipool);
return result;
}
std::string utils::wstr2str(const std::wstring& wstr) {
std::string codeset = nl_langinfo(CODESET);
codeset.append("//TRANSLIT");
struct stfl_ipool * ipool = stfl_ipool_create(codeset.c_str());
std::string result = stfl_ipool_fromwc(ipool, wstr.c_str());
stfl_ipool_destroy(ipool);
return result;
}
template<class T> std::string utils::to_string(T var) {
std::stringstream ret;
ret << var;
return ret.str();
}
// to avoid linker errors
template std::string utils::to_string<int>(int var);
template std::string utils::to_string<unsigned long>(unsigned long var);
template std::string utils::to_string<unsigned int>(unsigned int var);
std::string utils::absolute_url(const std::string& url, const std::string& link) {
xmlChar * newurl = xmlBuildURI((const xmlChar *)link.c_str(), (const xmlChar *)url.c_str());
std::string retval;
if (newurl) {
retval = (const char *)newurl;
xmlFree(newurl);
} else {
retval = link;
}
return retval;
}
std::string utils::strprintf(const char * format, ...) {
if (!format)
return std::string();
char buffer[1024];
va_list ap;
va_start(ap, format);
unsigned int len = vsnprintf(buffer, sizeof(buffer), format, ap)+1;
va_end(ap);
if (len <= sizeof(buffer))
return buffer;
va_start(ap, format);
char * buf = new char[len];
vsnprintf(buf, len, format, ap);
va_end(ap);
std::string ret(buf);
delete[] buf;
return ret;
}
std::string utils::get_useragent(configcontainer * cfgcont) {
std::string ua_pref = cfgcont->get_configvalue("user-agent");
if (ua_pref.length() == 0) {
struct utsname buf;
uname(&buf);
if (strcmp(buf.sysname, "Darwin") == 0) {
/* Assume it is a Mac from the last decade or at least Mac-like */
const char* PROCESSOR = "";
if (strcmp(buf.machine, "x86_64") == 0 || strcmp(buf.machine, "i386") == 0) {
PROCESSOR = "Intel ";
}
return utils::strprintf("%s/%s (Macintosh; %sMac OS X)", PROGRAM_NAME, PROGRAM_VERSION, PROCESSOR);
}
return utils::strprintf("%s/%s (%s %s)", PROGRAM_NAME, PROGRAM_VERSION, buf.sysname, buf.machine);
}
return ua_pref;
}
unsigned int utils::to_u(const std::string& str) {
std::istringstream is(str);
unsigned int u = 0;
is >> u;
return u;
}
scope_measure::scope_measure(const std::string& func, loglevel ll) : lvl(ll) {
funcname = func;
gettimeofday(&tv1, NULL);
}
void scope_measure::stopover(const std::string& son) {
gettimeofday(&tv2, NULL);
unsigned long diff = (((tv2.tv_sec - tv1.tv_sec) * 1000000) + tv2.tv_usec) - tv1.tv_usec;
LOG(lvl, "scope_measure: function `%s' (stop over `%s') took %lu.%06lu s so far", funcname.c_str(), son.c_str(), diff / 1000000, diff % 1000000);
}
scope_measure::~scope_measure() {
gettimeofday(&tv2, NULL);
unsigned long diff = (((tv2.tv_sec - tv1.tv_sec) * 1000000) + tv2.tv_usec) - tv1.tv_usec;
LOG(LOG_INFO, "scope_measure: function `%s' took %lu.%06lu s", funcname.c_str(), diff / 1000000, diff % 1000000);
}
void utils::append_escapes(std::string& str, char c) {
switch (c) {
case 'n':
str.append("\n");
break;
case 'r':
str.append("\r");
break;
case 't':
str.append("\t");
break;
case '"':
str.append("\"");
break;
case '\\':
break;
default:
str.append(1, c);
break;
}
}
bool utils::is_valid_color(const std::string& color) {
const char * colors[] = { "black", "red", "green", "yellow", "blue", "magenta", "cyan", "white", "default", NULL };
for (unsigned int i=0; colors[i]; i++) {
if (color == colors[i])
return true;
}
if (strncmp(color.c_str(), "color", 5)==0)
return true;
return false;
}
bool utils::is_valid_attribute(const std::string& attrib) {
const char * attribs[] = { "standout", "underline", "reverse", "blink", "dim", "bold", "protect", "invis", "default", NULL };
for (unsigned int i=0; attribs[i]; i++) {
if (attrib == attribs[i])
return true;
}
return false;
}
std::vector<std::pair<unsigned int, unsigned int>> utils::partition_indexes(unsigned int start, unsigned int end, unsigned int parts) {
std::vector<std::pair<unsigned int, unsigned int>> partitions;
unsigned int count = end - start + 1;
unsigned int size = count / parts;
for (unsigned int i=0; i<parts-1; i++) {
partitions.push_back(std::pair<unsigned int, unsigned int>(start, start + size - 1));
start += size;
}
partitions.push_back(std::pair<unsigned int, unsigned int>(start, end));
return partitions;
}
size_t utils::strwidth(const std::string& str) {
std::wstring wstr = str2wstr(str);
int width = wcswidth(wstr.c_str(), wstr.length());
if (width < 1) // a non-printable character found?
return wstr.length(); // return a sane width (which might be larger than necessary)
return width; // exact width
}
size_t utils::strwidth_stfl(const std::string& str) {
size_t reduce_count = 0;
size_t len = str.length();
if (len > 1) {
for (size_t idx=0; idx<len-1; ++idx) {
if (str[idx] == '<' && str[idx+1] != '>') {
reduce_count += 3;
idx += 3;
}
}
}
return strwidth(str) - reduce_count;
}
size_t utils::wcswidth_stfl(const std::wstring& str, size_t size) {
size_t reduce_count = 0;
size_t len = std::min(str.length(), size);
if (len > 1) {
for (size_t idx=0; idx<len-1; ++idx) {
if (str[idx] == L'<' && str[idx+1] != L'>') {
reduce_count += 3;
idx += 3;
}
}
}
int width = wcswidth(str.c_str(), size);
if (width < 0) {
LOG(LOG_ERROR, "oh, oh, wcswidth just failed"); // : %ls", str.c_str());
return str.length() - reduce_count;
}
return width - reduce_count;
}
std::string utils::join(const std::vector<std::string>& strings, const std::string& separator) {
std::string result;
for (auto str : strings) {
result.append(str);
result.append(separator);
}
if (result.length() > 0)
result.erase(result.length()-separator.length(), result.length());
return result;
}
bool utils::is_special_url(const std::string& url) {
return url.substr(0,6) == "query:" || url.substr(0,7) == "filter:" || url.substr(0,5) == "exec:";
}
bool utils::is_http_url(const std::string& url) {
return url.substr(0,7) == "http://" || url.substr(0,8) == "https://";
}
std::string utils::censor_url(const std::string& url) {
std::string rv;
if (url.length() > 0 && !utils::is_special_url(url)) {
const char * myuri = url.c_str();
xmlURIPtr uri = xmlParseURI(myuri);
if (uri) {
if (uri->user) {
xmlFree(uri->user);
uri->user = (char *)xmlStrdup((const xmlChar *)"*:*");
}
xmlChar * uristr = xmlSaveUri(uri);
rv = (const char *)uristr;
xmlFree(uristr);
xmlFreeURI(uri);
} else
return url;
} else {
rv = url;
}
return rv;
}
std::string utils::quote_for_stfl(std::string str) {
unsigned int len = str.length();
for (unsigned int i=0; i<len; ++i) {
if (str[i] == '<') {
str.insert(i+1, ">");
++len;
}
}
return str;
}
void utils::trim(std::string& str) {
while (str.length() > 0 && ::isspace(str[0])) {
str.erase(0,1);
}
trim_end(str);
}
void utils::trim_end(std::string& str) {
std::string::size_type pos = str.length()-1;
while (str.length()>0 && (str[pos] == '\n' || str[pos] == '\r')) {
str.erase(pos);
pos--;
}
}
std::string utils::quote(const std::string& str) {
std::string rv = replace_all(str, "\"", "\\\"");
rv.insert(0, "\"");
rv.append("\"");
return rv;
}
unsigned int utils::get_random_value(unsigned int max) {
static bool initialized = false;
if (!initialized) {
initialized = true;
srand(~(time(NULL) ^ getpid() ^ getppid()));
}
return static_cast<unsigned int>(rand() % max);
}
std::string utils::quote_if_necessary(const std::string& str) {
std::string result;
if (str.find_first_of(" ", 0) == std::string::npos) {
result = str;
} else {
result = utils::replace_all(str, "\"", "\\\"");
result.insert(0, "\"");
result.append("\"");
}
return result;
}
void utils::set_common_curl_options(CURL * handle, configcontainer * cfg) {
std::string proxy;
std::string proxyauth;
std::string proxyauthmethod;
std::string proxytype;
std::string useragent;
std::string cookie_cache;
unsigned int dl_timeout = 0;
if (cfg) {
if (cfg->get_configvalue_as_bool("use-proxy")) {
proxy = cfg->get_configvalue("proxy");
proxyauth = cfg->get_configvalue("proxy-auth");
proxyauthmethod = cfg->get_configvalue("proxy-auth-method");
proxytype = cfg->get_configvalue("proxy-type");
}
useragent = utils::get_useragent(cfg);
dl_timeout = cfg->get_configvalue_as_int("download-timeout");
cookie_cache = cfg->get_configvalue("cookie-cache");
}
curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, cfg->get_configvalue_as_bool("ssl-verify"));
curl_easy_setopt(handle, CURLOPT_NOSIGNAL, 1);
curl_easy_setopt(handle, CURLOPT_ENCODING, "gzip, deflate");
curl_easy_setopt(handle, CURLOPT_TIMEOUT, dl_timeout);
if (proxy != "")
curl_easy_setopt(handle, CURLOPT_PROXY, proxy.c_str());
if (proxyauth != "") {
curl_easy_setopt(handle, CURLOPT_PROXYAUTH, get_auth_method(proxyauthmethod));
curl_easy_setopt(handle, CURLOPT_PROXYUSERPWD, proxyauth.c_str());
}
if (proxytype != "") {
LOG(LOG_DEBUG, "utils::set_common_curl_options: proxytype = %s", proxytype.c_str());
curl_easy_setopt(handle, CURLOPT_PROXYTYPE, get_proxy_type(proxytype));
}
curl_easy_setopt(handle, CURLOPT_USERAGENT, useragent.c_str());
curl_easy_setopt(handle, CURLOPT_FOLLOWLOCATION, 1);
curl_easy_setopt(handle, CURLOPT_MAXREDIRS, 10);
curl_easy_setopt(handle, CURLOPT_FAILONERROR, 1);
if (cookie_cache != "") {
curl_easy_setopt(handle, CURLOPT_COOKIEFILE, cookie_cache.c_str());
curl_easy_setopt(handle, CURLOPT_COOKIEJAR, cookie_cache.c_str());
}
}
std::string utils::get_content(xmlNode * node) {
std::string retval;
if (node) {
xmlChar * content = xmlNodeGetContent(node);
if (content) {
retval = (const char *)content;
xmlFree(content);
}
}
return retval;
}
std::string utils::get_prop(xmlNode * node, const char * prop, const char * ns) {
std::string retval;
if (node) {
xmlChar * value;
if (ns)
value = xmlGetProp(node, (xmlChar *)prop);
else
value = xmlGetNsProp(node, (xmlChar *)prop, (xmlChar *)ns);
if (value) {
retval = (const char*)value;
xmlFree(value);
}
}
return retval;
}
unsigned long utils::get_auth_method(const std::string& type) {
if (type == "any")
return CURLAUTH_ANY;
if (type == "basic")
return CURLAUTH_BASIC;
if (type == "digest")
return CURLAUTH_DIGEST;
#ifdef CURLAUTH_DIGEST_IE
if (type == "digest_ie")
return CURLAUTH_DIGEST_IE;
#else
# warning "proxy-auth-method digest_ie not added due to libcurl older than 7.19.3"
#endif
if (type == "gssnegotiate")
return CURLAUTH_GSSNEGOTIATE;
if (type == "ntlm")
return CURLAUTH_NTLM;
if (type == "anysafe")
return CURLAUTH_ANYSAFE;
if (type != "") {
LOG(LOG_USERERROR, "you configured an invalid proxy authentication method: %s", type.c_str());
}
return CURLAUTH_ANY;
}
curl_proxytype utils::get_proxy_type(const std::string& type) {
if (type == "http")
return CURLPROXY_HTTP;
if (type == "socks4")
return CURLPROXY_SOCKS4;
if (type == "socks5")
return CURLPROXY_SOCKS5;
#ifdef CURLPROXY_SOCKS4A
if (type == "socks4a")
return CURLPROXY_SOCKS4A;
#endif
if (type != "") {
LOG(LOG_USERERROR, "you configured an invalid proxy type: %s", type.c_str());
}
return CURLPROXY_HTTP;
}
std::string utils::escape_url(const std::string& url) {
return replace_all(replace_all(url,"?","%3F"), "&", "%26");
}
std::string utils::unescape_url(const std::string& url) {
return replace_all(replace_all(url,"%3F","?"), "%26", "&");
}
std::wstring utils::clean_nonprintable_characters(std::wstring text) {
for (size_t idx=0; idx<text.size(); ++idx) {
if (!iswprint(text[idx]))
text[idx] = L'\uFFFD';
}
return text;
}
/*
* See http://curl.haxx.se/libcurl/c/libcurl-tutorial.html#Multi-threading for a reason why we do this.
*/
#if HAVE_OPENSSL
static std::mutex * openssl_mutexes = NULL;
static int openssl_mutexes_size = 0;
static void openssl_mth_locking_function(int mode, int n, const char * file, int line) {
if (n < 0 || n >= openssl_mutexes_size) {
LOG(LOG_ERROR,"openssl_mth_locking_function: index is out of bounds (called by %s:%d)", file, line);
return;
}
if (mode & CRYPTO_LOCK) {
LOG(LOG_DEBUG, "OpenSSL lock %d: %s:%d", n, file, line);
openssl_mutexes[n].lock();
} else {
LOG(LOG_DEBUG, "OpenSSL unlock %d: %s:%d", n, file, line);
openssl_mutexes[n].unlock();
}
}
static unsigned long openssl_mth_id_function(void) {
return (unsigned long)pthread_self();
}
#endif
void utils::initialize_ssl_implementation(void) {
#if HAVE_OPENSSL
openssl_mutexes_size = CRYPTO_num_locks();
openssl_mutexes = new std::mutex[openssl_mutexes_size];
CRYPTO_set_id_callback(openssl_mth_id_function);
CRYPTO_set_locking_callback(openssl_mth_locking_function);
#endif
#if HAVE_GCRYPT
gcry_control (GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
gnutls_global_init();
#endif
}
}
|