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 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
|
/* IcedTeaPluginUtils.cc
Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
IcedTea is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
IcedTea is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with IcedTea; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
#include "IcedTeaNPPlugin.h"
#include "IcedTeaScriptablePluginObject.h"
#include "IcedTeaPluginUtils.h"
#include <fstream>
/**
* Misc. utility functions used by the plugin
*/
/***********************************************
* Begin IcedTeaPluginUtilities implementation *
************************************************/
// Initialize static variables
int IcedTeaPluginUtilities::reference = -1;
pthread_mutex_t IcedTeaPluginUtilities::reference_mutex = PTHREAD_MUTEX_INITIALIZER;
std::map<void*, NPP>* IcedTeaPluginUtilities::instance_map = new std::map<void*, NPP>();
std::map<std::string, NPObject*>* IcedTeaPluginUtilities::object_map = new std::map<std::string, NPObject*>();
std::queue<std::string> pre_jvm_message;
/* Plugin async call queue */
static std::vector< PluginThreadCall* >* pendingPluginThreadRequests = new std::vector< PluginThreadCall* >();
bool
IcedTeaPluginUtilities::create_dir(std::string dir)
{
if (file_exists(dir))
{
if (!is_directory(dir))
{
PLUGIN_ERROR("WARNING: Needed to create directory %s but there is already a file of the same name at this location.\n", dir.c_str());
return false;
}
PLUGIN_DEBUG("Directory %s already exists\n", dir.c_str());
} else
{
PLUGIN_DEBUG("Directory %s does not yet exist\n", dir.c_str());
const int PERMISSIONS_MASK = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; // 0755
bool created_directory = (g_mkdir(dir.c_str(), PERMISSIONS_MASK) == 0);
int err = errno;
if (!created_directory)
{
PLUGIN_ERROR("WARNING: Failed to create new directory %s. Reason: %s\n", dir.c_str(), strerror(err));
return false;
}
PLUGIN_DEBUG("Directory %s created\n", dir.c_str());
}
return true;
}
void *flush_pre_init_messages(void* data) {
while (true){
struct timespec ts;
ts.tv_sec = 1;
ts.tv_nsec = 0;
nanosleep(&ts ,0);
if (jvm_up) {
while (!pre_jvm_message.empty()) {
pthread_mutex_lock(&debug_pipe_lock);
std::string message = pre_jvm_message.front();
pre_jvm_message.pop();
pthread_mutex_unlock(&debug_pipe_lock);
plugin_send_message_to_appletviewer_console(message.c_str());
}
flush_plugin_send_message_to_appletviewer_console();
}
}
return NULL;
}
void push_pre_init_messages(char * ldm){
pthread_mutex_lock(&debug_pipe_lock);
pre_jvm_message.push(std::string(ldm));
pthread_mutex_unlock(&debug_pipe_lock);
}
void reset_pre_init_messages(){
pre_jvm_message = std::queue<std::string>();
}
/**
* Given a context number, constructs a message prefix to send to Java
*
* @param context The context of the request
* @return The string prefix (allocated on heap)
*/
void
IcedTeaPluginUtilities::constructMessagePrefix(int context, std::string *result)
{
std::string context_str = std::string();
itoa(context, &context_str);
result->append("context ");
result->append(context_str);
result->append(" reference -1");
}
/**
* Given a context number, and reference number, constructs a message prefix to
* send to Java
*
* @param context The context of the request
* @param rerefence The reference number of the request
* @param result The message
*/
void
IcedTeaPluginUtilities::constructMessagePrefix(int context, int reference, std::string* result)
{
// Until security is implemented, use file:// source for _everything_
std::string context_str = std::string();
std::string reference_str = std::string();
itoa(context, &context_str);
itoa(reference, &reference_str);
*result += "context ";
result->append(context_str);
*result += " reference ";
result->append(reference_str);
}
/**
* Given a context number, reference number, and source location, constructs
* a message prefix to send to Java
*
* @param context The context of the request
* @param rerefence The reference number of the request
* @param address The address for the script that made the request
* @param result The message
*/
void
IcedTeaPluginUtilities::constructMessagePrefix(int context, int reference,
std::string address,
std::string* result)
{
std::string context_str = std::string();
std::string reference_str = std::string();
itoa(context, &context_str);
itoa(reference, &reference_str);
*result += "context ";
result->append(context_str);
*result += " reference ";
result->append(reference_str);
if (address.length() > 0)
{
*result += " src ";
result->append(address);
}
}
/**
* Returns a string representation of a void pointer
*
* @param id The pointer
* @param result The string representation
*/
void
IcedTeaPluginUtilities::JSIDToString(void* id, std::string* result)
{
char id_str[NUM_STR_BUFFER_SIZE];
if (sizeof(void*) == sizeof(long long))
{
snprintf(id_str, NUM_STR_BUFFER_SIZE, "%llu", id);
}
else
{
snprintf(id_str, NUM_STR_BUFFER_SIZE, "%lu", id); // else use long
}
result->append(id_str);
PLUGIN_DEBUG("Converting pointer %p to %s\n", id, id_str);
}
/**
* Returns a void pointer from a string representation
*
* @param id_str The string representation
* @return The pointer
*/
void*
IcedTeaPluginUtilities::stringToJSID(std::string id_str)
{
void* ptr;
if (sizeof(void*) == sizeof(long long))
{
PLUGIN_DEBUG("Casting (long long) \"%s\" -- %llu\n", id_str.c_str(), strtoull(id_str.c_str(), NULL, 0));
ptr = reinterpret_cast <void*> ((unsigned long long) strtoull(id_str.c_str(), NULL, 0));
} else
{
PLUGIN_DEBUG("Casting (long) \"%s\" -- %lu\n", id_str.c_str(), strtoul(id_str.c_str(), NULL, 0));
ptr = reinterpret_cast <void*> ((unsigned long) strtoul(id_str.c_str(), NULL, 0));
}
PLUGIN_DEBUG("Casted: %p\n", ptr);
return ptr;
}
/**
* Returns a void pointer from a string representation
*
* @param id_str The pointer to the string representation
* @return The pointer
*/
void*
IcedTeaPluginUtilities::stringToJSID(std::string* id_str)
{
void* ptr;
if (sizeof(void*) == sizeof(long long))
{
PLUGIN_DEBUG("Casting (long long) \"%s\" -- %llu\n", id_str->c_str(), strtoull(id_str->c_str(), NULL, 0));
ptr = reinterpret_cast <void*> ((unsigned long long) strtoull(id_str->c_str(), NULL, 0));
} else
{
PLUGIN_DEBUG("Casting (long) \"%s\" -- %lu\n", id_str->c_str(), strtoul(id_str->c_str(), NULL, 0));
ptr = reinterpret_cast <void*> ((unsigned long) strtoul(id_str->c_str(), NULL, 0));
}
PLUGIN_DEBUG("Casted: %p\n", ptr);
return ptr;
}
/**
* Increments the global reference number and returns it.
*
* This function is thread-safe.
*/
int
IcedTeaPluginUtilities::getReference()
{
pthread_mutex_lock(&reference_mutex);
// If we are nearing the max, reset
if (reference < -0x7FFFFFFF + 10) {
reference = -1;
}
reference--;
pthread_mutex_unlock(&reference_mutex);
return reference;
}
/**
* Decrements the global reference number.
*
* This function is thread-safe.
*/
void
IcedTeaPluginUtilities::releaseReference()
{
// do nothing for now
}
/**
* Converts integer to char*
*
* @param i The integer to convert to ascii
* @param result The resulting string
*/
void
IcedTeaPluginUtilities::itoa(int i, std::string* result)
{
char int_str[NUM_STR_BUFFER_SIZE];
snprintf(int_str, NUM_STR_BUFFER_SIZE, "%d", i);
result->append(int_str);
}
/**
* Frees memory from a string* vector
*
* The vector deconstructor will only delete string pointers upon being
* called. This function frees the associated string memory as well.
*
* @param v The vector whose strings are to be freed
*/
void
IcedTeaPluginUtilities::freeStringPtrVector(std::vector<std::string*>* v)
{
if (v)
{
for (int i=0; i < v->size(); i++) {
delete v->at(i);
}
delete v;
}
}
/**
* Given a string, splits it on the given delimiters.
*
* @param str The string to split
* @param The delimiters to split on
* @return A string vector containing the split components
*/
std::vector<std::string*>*
IcedTeaPluginUtilities::strSplit(const char* str, const char* delim)
{
std::vector<std::string*>* v = new std::vector<std::string*>();
v->reserve(strlen(str)/2);
char* copy;
// Tokenization is done on a copy
copy = (char*) malloc (sizeof(char)*strlen(str) + 1);
strcpy(copy, str);
char* tok_ptr;
tok_ptr = strtok (copy, delim);
while (tok_ptr != NULL)
{
// Allocation on heap since caller has no way to knowing how much will
// be needed. Make sure caller cleans up!
std::string* s = new std::string();
s->append(tok_ptr);
v->push_back(s);
tok_ptr = strtok (NULL, delim);
}
free(copy);
return v;
}
/**
* Given a unicode byte array, converts it to a UTF8 string
*
* The actual contents in the array may be surrounded by other data.
*
* e.g. with length 5, begin = 3,
* unicode_byte_array = "37 28 5 48 45 4c 4c 4f 9e 47":
*
* We'd start at 3 i.e. "48" and go on for 5 i.e. upto and including "4f".
* So we convert "48 45 4c 4c 4f" which is "hello"
*
* @param length The length of the string
* @param begin Where in the array to begin conversion
* @param result_unicode_str The return variable in which the
* converted string is placed
*/
void
IcedTeaPluginUtilities::getUTF8String(int length, int begin, std::vector<std::string*>* unicode_byte_array, std::string* result_unicode_str)
{
result_unicode_str->clear();
result_unicode_str->reserve(unicode_byte_array->size()/2);
for (int i = begin; i < begin+length; i++)
result_unicode_str->push_back((char) strtol(unicode_byte_array->at(i)->c_str(), NULL, 16));
PLUGIN_DEBUG("Converted UTF-8 string: %s. Length=%d\n", result_unicode_str->c_str(), result_unicode_str->length());
}
/**
* Given a UTF8 string, converts it to a space delimited string of hex characters
*
* The first element in the return array is the length of the string
*
* e.g. "hello" would convert to: "5 48 45 4c 4c 4f"
*
* @param str The string to convert
* @param urt_str The result
*/
void
IcedTeaPluginUtilities::convertStringToUTF8(std::string* str, std::string* utf_str)
{
std::ostringstream ostream;
std::string length = std::string();
itoa(str->length(), &length);
ostream << length;
char hex_value[NUM_STR_BUFFER_SIZE];
for (int i = 0; i < str->length(); i++)
{
snprintf(hex_value, NUM_STR_BUFFER_SIZE," %hx", str->at(i));
ostream << hex_value;
}
utf_str->clear();
*utf_str = ostream.str();
PLUGIN_DEBUG("Converted %s to UTF-8 string %s\n", str->c_str(), utf_str->c_str());
}
/**
* Given a unicode byte array, converts it to a UTF16LE/UCS-2 string
*
* This works in a manner similar to getUTF8String, except that it reads 2
* slots for each byte.
*
* @param length The length of the string
* @param begin Where in the array to begin conversion
* @param result_unicode_str The return variable in which the
* converted string is placed
*/
void
IcedTeaPluginUtilities::getUTF16LEString(int length, int begin, std::vector<std::string*>* unicode_byte_array, std::wstring* result_unicode_str)
{
wchar_t c;
PLUGIN_DEBUG("Converted UTF-16LE string: \n");
result_unicode_str->clear();
for (int i = begin; i < begin+length; i+=2)
{
int low = strtol(unicode_byte_array->at(i)->c_str(), NULL, 16);
int high = strtol(unicode_byte_array->at(i+1)->c_str(), NULL, 16);
c = ((high << 8) | low);
if ((c >= 'a' && c <= 'z') ||
(c >= 'A' && c <= 'Z') ||
(c >= '0' && c <= '9'))
{
PLUGIN_DEBUG("%c\n", c);
}
result_unicode_str->push_back(c);
}
// not routing via debug print macros due to wide-string issues
PLUGIN_DEBUG(". Length=%d\n", result_unicode_str->length());
}
/*
* Prints the given string vector (if debug is true)
*
* @param prefix The prefix to print before printing the vector contents
* @param cv The string vector whose contents are to be printed
*/
void
IcedTeaPluginUtilities::printStringVector(const char* prefix, std::vector<std::string>* str_vector)
{
// This is a CPU intensive function. Run only if debugging
if (!plugin_debug)
return;
std::string* str = new std::string();
*str += "{ ";
for (int i=0; i < str_vector->size(); i++)
{
*str += str_vector->at(i);
if (i != str_vector->size() - 1)
*str += ", ";
}
*str += " }";
PLUGIN_DEBUG("%s %s\n", prefix, str->c_str());
delete str;
}
const gchar*
IcedTeaPluginUtilities::getSourceFromInstance(NPP instance)
{
// At the moment, src cannot be securely fetched via NPAPI
// See:
// http://www.mail-archive.com/chromium-dev@googlegroups.com/msg04872.html
// Since we use the insecure window.location.href attribute to compute
// source, we cannot use it to make security decisions. Therefore,
// instance associated source will always return empty
//ITNPPluginData* data = (ITNPPluginData*) instance->pdata;
//return (data->source) ? data->source : "";
return "http://null.null";
}
/**
* Stores a window pointer <-> instance mapping
*
* @param member_ptr The pointer key
* @param instance The instance to associate with this pointer
*/
void
IcedTeaPluginUtilities::storeInstanceID(void* member_ptr, NPP instance)
{
PLUGIN_DEBUG("Storing instance %p with key %p\n", instance, member_ptr);
instance_map->insert(std::make_pair(member_ptr, instance));
}
/**
* Removes a window pointer <-> instance mapping
*
* @param member_ptr The key to remove
*/
void
IcedTeaPluginUtilities::removeInstanceID(void* member_ptr)
{
PLUGIN_DEBUG("Removing key %p from instance map\n", member_ptr);
instance_map->erase(member_ptr);
}
/* Clear instance_map. Useful for tests. */
void
IcedTeaPluginUtilities::clearInstanceIDs()
{
delete instance_map;
instance_map = new std::map<void*, NPP>();
}
/**
* Removes all mappings to a given instance, and all associated objects
*/
void
IcedTeaPluginUtilities::invalidateInstance(NPP instance)
{
PLUGIN_DEBUG("Invalidating instance %p\n", instance);
std::map<void*,NPP>::iterator iterator;
for (iterator = instance_map->begin(); iterator != instance_map->end(); )
{
if ((*iterator).second == instance)
{
instance_map->erase(iterator++);
}
else
{
++iterator;
}
}
}
/**
* Given the window pointer, returns the instance associated with it
*
* @param member_ptr The pointer key
* @return The associated instance
*/
NPP
IcedTeaPluginUtilities::getInstanceFromMemberPtr(void* member_ptr)
{
NPP instance = NULL;
PLUGIN_DEBUG("getInstanceFromMemberPtr looking for %p\n", member_ptr);
std::map<void*, NPP>::iterator iterator = instance_map->find(member_ptr);
if (iterator != instance_map->end())
{
instance = instance_map->find(member_ptr)->second;
PLUGIN_DEBUG("getInstanceFromMemberPtr found %p. Instance = %p\n", member_ptr, instance);
}
return instance;
}
/**
* Given a java id key ('classid:instanceid'), returns the associated valid NPObject, if any
*
* @param key the key
* @return The associated active NPObject, NULL otherwise
*/
NPObject*
IcedTeaPluginUtilities::getNPObjectFromJavaKey(std::string key)
{
NPObject* object = NULL;
PLUGIN_DEBUG("getNPObjectFromJavaKey looking for %s\n", key.c_str());
std::map<std::string, NPObject*>::iterator iterator = object_map->find(key);
if (iterator != object_map->end())
{
NPObject* mapped_object = object_map->find(key)->second;
if (getInstanceFromMemberPtr(mapped_object) != NULL)
{
object = mapped_object;
PLUGIN_DEBUG("getNPObjectFromJavaKey found %s. NPObject = %p\n", key.c_str(), object);
}
}
return object;
}
/**
* Stores a java id key <-> NPObject mapping
*
* @param key The Java ID Key
* @param object The object to map to
*/
void
IcedTeaPluginUtilities::storeObjectMapping(std::string key, NPObject* object)
{
PLUGIN_DEBUG("Storing object %p with key %s\n", object, key.c_str());
object_map->insert(std::make_pair(key, object));
}
/**
* Removes a java id key <-> NPObject mapping
*
* @param key The key to remove
*/
void
IcedTeaPluginUtilities::removeObjectMapping(std::string key)
{
PLUGIN_DEBUG("Removing key %s from object map\n", key.c_str());
object_map->erase(key);
}
/* Clear object_map. Useful for tests. */
void
IcedTeaPluginUtilities::clearObjectMapping()
{
std::map<std::string, NPObject*>::iterator iter = object_map->begin();
for (; iter != object_map->end(); ++iter) {
browser_functions.releaseobject(iter->second);
}
delete object_map;
object_map = new std::map<std::string, NPObject*>();
}
/*
* Similar to printStringVector, but takes a vector of string pointers instead
*
* @param prefix The prefix to print before printing the vector contents
* @param cv The string* vector whose contents are to be printed
*/
void
IcedTeaPluginUtilities::printStringPtrVector(const char* prefix, std::vector<std::string*>* str_ptr_vector)
{
// This is a CPU intensive function. Run only if debugging
if (!plugin_debug)
return;
std::string* str = new std::string();
*str += "{ ";
for (int i=0; i < str_ptr_vector->size(); i++)
{
*str += *(str_ptr_vector->at(i));
if (i != str_ptr_vector->size() - 1)
*str += ", ";
}
*str += " }";
PLUGIN_DEBUG("%s %s\n", prefix, str->c_str());
delete str;
}
void
IcedTeaPluginUtilities::printNPVariant(NPVariant variant)
{
// This is a CPU intensive function. Run only if debugging
if (!plugin_debug)
return;
if (NPVARIANT_IS_VOID(variant))
{
PLUGIN_DEBUG("VOID %d\n", variant);
}
else if (NPVARIANT_IS_NULL(variant))
{
PLUGIN_DEBUG("NULL\n", variant);
}
else if (NPVARIANT_IS_BOOLEAN(variant))
{
PLUGIN_DEBUG("BOOL: %d\n", NPVARIANT_TO_BOOLEAN(variant));
}
else if (NPVARIANT_IS_INT32(variant))
{
PLUGIN_DEBUG("INT32: %d\n", NPVARIANT_TO_INT32(variant));
}
else if (NPVARIANT_IS_DOUBLE(variant))
{
PLUGIN_DEBUG("DOUBLE: %f\n", NPVARIANT_TO_DOUBLE(variant));
}
else if (NPVARIANT_IS_STRING(variant))
{
std::string str = IcedTeaPluginUtilities::NPVariantAsString(variant);
PLUGIN_DEBUG("STRING: %s (length=%d)\n", str.c_str(), str.size());
}
else
{
PLUGIN_DEBUG("OBJ: %p\n", NPVARIANT_TO_OBJECT(variant));
}
}
void
IcedTeaPluginUtilities::NPVariantToString(NPVariant variant, std::string* result)
{
char conv_str[NUM_STR_BUFFER_SIZE]; // conversion buffer
bool was_string_already = false;
if (NPVARIANT_IS_STRING(variant))
{
result->append(IcedTeaPluginUtilities::NPVariantAsString(variant));
was_string_already = true;
}
else if (NPVARIANT_IS_VOID(variant))
{
snprintf(conv_str, NUM_STR_BUFFER_SIZE, "%p", variant);
}
else if (NPVARIANT_IS_NULL(variant))
{
snprintf(conv_str, NUM_STR_BUFFER_SIZE, "NULL");
}
else if (NPVARIANT_IS_BOOLEAN(variant))
{
if (NPVARIANT_TO_BOOLEAN(variant))
snprintf(conv_str, NUM_STR_BUFFER_SIZE, "true");
else
snprintf(conv_str, NUM_STR_BUFFER_SIZE, "false");
}
else if (NPVARIANT_IS_INT32(variant))
{
snprintf(conv_str, NUM_STR_BUFFER_SIZE, "%d", NPVARIANT_TO_INT32(variant));
}
else if (NPVARIANT_IS_DOUBLE(variant))
{
snprintf(conv_str, NUM_STR_BUFFER_SIZE, "%f", NPVARIANT_TO_DOUBLE(variant));
}
else
{
snprintf(conv_str, NUM_STR_BUFFER_SIZE, "[Object %p]", variant);
}
if (!was_string_already){
result->append(conv_str);
}
}
/**
* Convert either a void, boolean, or a number
*/
static void
javaPrimitiveResultToNPVariant(const std::string& value, NPVariant* variant)
{
if (value == "void")
{
PLUGIN_DEBUG("Method call returned void\n");
VOID_TO_NPVARIANT(*variant);
} else if (value == "null")
{
PLUGIN_DEBUG("Method call returned null\n");
NULL_TO_NPVARIANT(*variant);
} else if (value == "true")
{
PLUGIN_DEBUG("Method call returned a boolean (true)\n");
BOOLEAN_TO_NPVARIANT(true, *variant);
} else if (value == "false")
{
PLUGIN_DEBUG("Method call returned a boolean (false)\n");
BOOLEAN_TO_NPVARIANT(false, *variant);
} else
{
double d = strtod(value.c_str(), NULL);
// See if it is convertible to int
if (value.find(".") != std::string::npos || d < -(0x7fffffffL - 1L) || d > 0x7fffffffL)
{
PLUGIN_DEBUG("Method call returned a double %f\n", d);
DOUBLE_TO_NPVARIANT(d, *variant);
} else
{
int32_t i = (int32_t) d;
PLUGIN_DEBUG("Method call returned an int %d\n", i);
INT32_TO_NPVARIANT(i, *variant);
}
}
}
static bool
javaStringResultToNPVariant(const std::string& jobject_id, NPVariant* variant)
{
JavaRequestProcessor jrequest_processor;
JavaResultData* jstring_result = jrequest_processor.getString(jobject_id);
if (jstring_result->error_occurred)
{
return false;
}
std::string str = *jstring_result->return_string;
PLUGIN_DEBUG( "Method call returned a string:\"%s\"\n", str.c_str());
*variant = IcedTeaPluginUtilities::NPVariantStringCopy(str);
return true;
}
static bool
javaJSObjectResultToNPVariant(const std::string& js_id, NPVariant* variant)
{
NPVariant* result_variant = (NPVariant*) IcedTeaPluginUtilities::stringToJSID(js_id);
*variant = *result_variant;
return true;
}
static bool
javaObjectResultToNPVariant(NPP instance, const std::string& jclass_name, const std::string& jobject_id, NPVariant* variant)
{
// Reference the class object so we can construct an NPObject with it and the instance
JavaRequestProcessor jrequest_processor;
JavaResultData* jclass_result = jrequest_processor.getClassID(jobject_id);
if (jclass_result->error_occurred)
{
return false;
}
std::string jclass_id = *jclass_result->return_string;
NPObject* obj;
if (jclass_name.at(0) == '[') // array
{
PLUGIN_DEBUG( "javaObjectResultToNPVariant Array detected: \"%s\"\n", jclass_name.c_str());
obj = IcedTeaScriptableJavaObject::get_scriptable_java_object(instance, jclass_id,
jobject_id, true);
} else
{
PLUGIN_DEBUG( "javaObjectResultToNPVariant Scalar object: \"%s\"\n", jclass_name.c_str());
obj = IcedTeaScriptableJavaObject::get_scriptable_java_object(instance, jclass_id,
jobject_id, false);
}
OBJECT_TO_NPVARIANT(obj, *variant);
return true;
}
bool
IcedTeaPluginUtilities::javaResultToNPVariant(NPP instance,
std::string* java_value, NPVariant* variant)
{
int literal_n = sizeof("literalreturn"); // Accounts for one space char
int jsobject_n = sizeof("jsobject"); // Accounts for one space char
if (strncmp("literalreturn ", java_value->c_str(), literal_n) == 0)
{
javaPrimitiveResultToNPVariant(java_value->substr(literal_n), variant);
} else if (strncmp("jsobject ", java_value->c_str(), jsobject_n) == 0)
{
javaJSObjectResultToNPVariant(java_value->substr(jsobject_n), variant);
} else
{
std::string jobject_id = *java_value;
JavaRequestProcessor jrequest_processor;
JavaResultData* jclassname_result = jrequest_processor.getClassName(jobject_id);
if (jclassname_result->error_occurred)
{
return false;
}
// Special-case for NPString if string
if (*jclassname_result->return_string == "java.lang.String")
{
return javaStringResultToNPVariant(jobject_id, variant);
} else // Else this needs a java object wrapper
{
return javaObjectResultToNPVariant(instance, *jclassname_result->return_string,
jobject_id, variant);
}
}
return true;
}
bool
IcedTeaPluginUtilities::isObjectJSArray(NPP instance, NPObject* object)
{
NPVariant constructor_v = NPVariant();
NPIdentifier constructor_id = browser_functions.getstringidentifier("constructor");
browser_functions.getproperty(instance, object, constructor_id, &constructor_v);
IcedTeaPluginUtilities::printNPVariant(constructor_v);
// void constructor => not an array
if (NPVARIANT_IS_VOID(constructor_v))
return false;
NPObject* constructor = NPVARIANT_TO_OBJECT(constructor_v);
NPVariant constructor_str;
NPIdentifier toString = browser_functions.getstringidentifier("toString");
browser_functions.invoke(instance, constructor, toString, NULL, 0, &constructor_str);
IcedTeaPluginUtilities::printNPVariant(constructor_str);
std::string constructor_name = IcedTeaPluginUtilities::NPVariantAsString(constructor_str);
PLUGIN_DEBUG("Constructor for NPObject is %s\n", constructor_name.c_str());
return constructor_name.find("function Array") == 0;
}
void
IcedTeaPluginUtilities::decodeURL(const gchar* url, gchar** decoded_url)
{
PLUGIN_DEBUG("GOT URL: %s -- %s\n", url, *decoded_url);
int length = strlen(url);
for (int i=0; i < length; i++)
{
if (url[i] == '%' && i < length - 2)
{
unsigned char code1 = (unsigned char) url[i+1];
unsigned char code2 = (unsigned char) url[i+2];
if (!IS_VALID_HEX(&code1) || !IS_VALID_HEX(&code2))
continue;
// Convert hex value to integer
int converted1 = HEX_TO_INT(&code1);
int converted2 = HEX_TO_INT(&code2);
// bitshift 4 to simulate *16
int value = (converted1 << 4) + converted2;
char decoded = value;
strncat(*decoded_url, &decoded, 1);
i += 2;
} else
{
strncat(*decoded_url, &url[i], 1);
}
}
PLUGIN_DEBUG("SENDING URL: %s\n", *decoded_url);
}
/* Copies a variant data type into a C++ string */
std::string
IcedTeaPluginUtilities::NPVariantAsString(NPVariant variant)
{
return std::string(
NPVARIANT_TO_STRING(variant).UTF8Characters,
NPVARIANT_TO_STRING(variant).UTF8Length);
}
/**
* Posts a function for execution on the plug-in thread and wait for result.
*
* @param instance The NPP instance
* @param func The function to post
* @param data Arguments to *func
*/
NPString IcedTeaPluginUtilities::NPStringCopy(const std::string& result) {
char* utf8 = (char*)browser_functions.memalloc(result.size() + 1);
strncpy(utf8, result.c_str(), result.size() + 1);
NPString npstr = {utf8, result.size()};
return npstr;
}
NPVariant IcedTeaPluginUtilities::NPVariantStringCopy(const std::string& result) {
NPString npstr = NPStringCopy(result);
NPVariant npvar;
STRINGN_TO_NPVARIANT(npstr.UTF8Characters, npstr.UTF8Length, npvar);
return npvar;
}
void
IcedTeaPluginUtilities::callAndWaitForResult(NPP instance, void (*func) (void *), AsyncCallThreadData* data)
{
struct timespec t;
struct timespec curr_t;
clock_gettime(CLOCK_REALTIME, &t);
t.tv_sec += REQUESTTIMEOUT; // timeout
// post request
postPluginThreadAsyncCall(instance, func, data);
do
{
clock_gettime(CLOCK_REALTIME, &curr_t);
if (data != NULL && !data->result_ready && (curr_t.tv_sec < t.tv_sec))
{
usleep(2000);
} else
{
break;
}
} while (1);
}
/**
* Posts a request that needs to be handled in a plugin thread.
*
* @param instance The plugin instance
* @param func The function to execute
* @param userData The userData for the function to consume/write to
* @return if the call was posted successfully
*/
bool
IcedTeaPluginUtilities::postPluginThreadAsyncCall(NPP instance, void (*func) (void *), void* data)
{
if (instance)
{
PluginThreadCall* call = new PluginThreadCall();
call->instance = instance;
call->func = func;
call->userData = data;
pthread_mutex_lock(&pluginAsyncCallMutex);
pendingPluginThreadRequests->push_back(call);
pthread_mutex_unlock(&pluginAsyncCallMutex);
browser_functions.pluginthreadasynccall(instance, &processAsyncCallQueue, NULL); // Always returns immediately
PLUGIN_DEBUG("Pushed back call evt %p\n", call);
return true;
}
// Else
PLUGIN_DEBUG("Instance is not active. Call rejected.\n");
return false;
}
/**
* Returns a vector of gchar* pointing to the elements of the vector string passed in.
* @param stringVec The vector of strings reference.
*/
std::vector<gchar*>
IcedTeaPluginUtilities::vectorStringToVectorGchar(const std::vector<std::string>* stringVec)
{
std::vector<gchar*> charVec;
for (int i = 0; i < stringVec->size(); i++)
{
gchar* element = (gchar*) stringVec->at(i).c_str(); //cast from const char
charVec.push_back(element);
}
charVec.push_back(NULL);
return charVec;
}
/**
* Runs through the async call wait queue and executes all calls
*
* @param param Ignored -- required to conform to NPN_PluginThreadAsynCall API
*/
void
processAsyncCallQueue(void* param /* ignored */)
{
do {
PluginThreadCall* call = NULL;
pthread_mutex_lock(&pluginAsyncCallMutex);
if (pendingPluginThreadRequests->size() > 0)
{
call = pendingPluginThreadRequests->front();
pendingPluginThreadRequests->erase(pendingPluginThreadRequests->begin());
}
pthread_mutex_unlock(&pluginAsyncCallMutex);
if (call)
{
PLUGIN_DEBUG("Processing call evt %p\n", call);
call->func(call->userData);
PLUGIN_DEBUG("Call evt %p processed\n", call);
delete call;
} else
{
break;
}
} while(1);
}
void IcedTeaPluginUtilities::trim(std::string& str) {
size_t start = str.find_first_not_of(" \t\n"), end = str.find_last_not_of(" \t\n");
if (start == std::string::npos) {
return;
}
str = str.substr(start, end - start + 1);
}
/*Unescape various escaped chars like \\ -> \ or \= -> = or \: -> , \t -> TAB , \n -> NwLine\*/
/* examples
* \\= -> \=
* \= -> =
* \\ -> \
* \e -> \e
* \: -> :
* \ -> \
* \\ -> \
*/
void IcedTeaPluginUtilities::unescape(std::string& str) {
std::string result = "";
int len = str.length();
for (unsigned int i = 0; i < len; i++) {
bool processed = false;
char c1 = str[i];
if (c1 == '\\') {
if (i < len - 1) {
char c2 = str[i + 1];
if (c2 == '=' || c2 == '\\' || c2 == ':') {
result += c2;
i++;
processed = true;
}
if (c2 == 't') {
result += '\t';
i++;
processed = true;
}
if (c2 == 'n') {
result += '\n';
i++;
processed = true;
}
if (c2 == 'r') {
result += '\r';
i++;
processed = true;
}
}
}
if (!processed) {
result += c1;
}
}
str = result;
}
std::string IcedTeaPluginUtilities::NPIdentifierAsString(NPIdentifier id) {
NPUTF8* cstr = browser_functions.utf8fromidentifier(id);
if (cstr == NULL) {
/* Treat not-existing strings as empty. To tell if it was a valid string,
* use browser_functions.identifierisstring. */
return std::string();
}
std::string str = cstr;
browser_functions.memfree(cstr);
return str;
}
bool IcedTeaPluginUtilities::file_exists(std::string filename)
{
std::ifstream infile(filename.c_str());
return infile.good();
}
bool IcedTeaPluginUtilities::is_directory(std::string filename)
{
if (!file_exists)
{
return false;
}
struct stat buf;
stat(filename.c_str(), &buf);
return S_ISDIR(buf.st_mode);
}
void IcedTeaPluginUtilities::initFileLog(){
if (plugin_file_log != NULL ) {
//reusing
return;
}
plugin_file_log_name = get_log_dir() + "/" + IcedTeaPluginUtilities::generateLogFileName();
int plugin_file_log_fd = open(plugin_file_log_name.c_str(), O_WRONLY | O_CREAT | O_EXCL, 0600);
if (plugin_file_log_fd <=0 ) {
plugin_debug_to_file = false;
} else {
plugin_file_log = fdopen(plugin_file_log_fd, "w");
}
if (plugin_file_log == NULL ) {
plugin_debug_to_file = false;
}
}
std::string IcedTeaPluginUtilities::generateLogFileName(){
char times[96];
char result[100];
time_t t = time(NULL);
struct tm p;
localtime_r(&t, &p);
struct timeval current_time; \
gettimeofday (¤t_time, NULL);\
strftime(times, 96, "%Y-%m-%d_%H:%M:%S", &p);
snprintf(result, 100, "%s.%i",times, current_time.tv_usec/1000);
return "itw-cplugin-"+std::string(result)+".log";
}
void IcedTeaPluginUtilities::printDebugStatus(){
if (plugin_debug){
PLUGIN_DEBUG("plugin_debug: true, initialised\n");
if (plugin_debug_headers){
PLUGIN_DEBUG("plugin_debug_headers: true\n");
} else {
PLUGIN_DEBUG("plugin_debug_headers: false\n");
}
if (plugin_debug_to_file){
PLUGIN_DEBUG("plugin_debug_to_file: true, using %s\n", plugin_file_log_name.c_str());
} else {
PLUGIN_DEBUG("plugin_debug_to_file: false\n");
}
if (plugin_debug_to_streams){
PLUGIN_DEBUG("plugin_debug_to_streams: true\n");
} else {
PLUGIN_DEBUG("plugin_debug_to_streams: false\n");
}
if (plugin_debug_to_system){
PLUGIN_DEBUG("plugin_debug_to_system: true\n");
} else {
PLUGIN_DEBUG("plugin_debug_to_system: false\n");
}
if (plugin_debug_to_console){
if (debug_pipe_name){
PLUGIN_DEBUG("plugin_debug_to_console: true, pipe %s\n", debug_pipe_name);
} else {
PLUGIN_DEBUG("plugin_debug_to_console: true, pipe not yet known or broken\n");
}
} else {
PLUGIN_DEBUG("plugin_debug_to_console: false\n");
}
}
}
std::string IcedTeaPluginUtilities::getTmpPath(){
const char* tmpdir_env = getenv("TMPDIR");
if (tmpdir_env != NULL && g_file_test (tmpdir_env,
(GFileTest) (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
{
return std::string(tmpdir_env);
}
else if (g_file_test (P_tmpdir,
(GFileTest) (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
{
return std::string(P_tmpdir);
}
else
{
// If TMPDIR and P_tmpdir do not exist, try /tmp directly
return "/tmp";
}
}
std::string IcedTeaPluginUtilities::getRuntimePath(){
const char* rntdir_env = getenv("XDG_RUNTIME_DIR");
if (rntdir_env != NULL && g_file_test (rntdir_env,
(GFileTest) (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
{
return std::string(rntdir_env);
}
return IcedTeaPluginUtilities::getTmpPath();
}
/******************************************
* Begin JavaMessageSender implementation *
******************************************
*
* This implementation is very simple and is therefore folded into this file
* rather than a new one.
*/
/**
* Sends to the Java side
*
* @param message The message to send.
* @param returns whether the message was consumable (always true)
*/
bool
JavaMessageSender::newMessageOnBus(const char* message)
{
char* msg = (char*) malloc(sizeof(char)*strlen(message) + 1);
strcpy(msg, message);
plugin_send_message_to_appletviewer(msg);
free(msg);
msg = NULL;
// Always successful
return true;
}
/***********************************
* Begin MessageBus implementation *
***********************************/
/**
* Constructor.
*
* Initializes the mutexes needed by the other functions.
*/
MessageBus::MessageBus()
{
int ret;
ret = pthread_mutex_init(&subscriber_mutex, NULL);
if(ret)
PLUGIN_DEBUG("Error: Unable to initialize subscriber mutex: %d\n", ret);
ret = pthread_mutex_init(&msg_queue_mutex, NULL);
if(ret)
PLUGIN_DEBUG("Error: Unable to initialize message queue mutex: %d\n", ret);
PLUGIN_DEBUG("Mutexes %p and %p initialized\n", &subscriber_mutex, &msg_queue_mutex);
}
/**
* Destructor.
*
* Destroy the mutexes initialized by the constructor.
*/
MessageBus::~MessageBus()
{
PLUGIN_DEBUG("MessageBus::~MessageBus\n");
int ret;
ret = pthread_mutex_destroy(&subscriber_mutex);
if(ret)
PLUGIN_DEBUG("Error: Unable to destroy subscriber mutex: %d\n", ret);
ret = pthread_mutex_destroy(&msg_queue_mutex);
if(ret)
PLUGIN_DEBUG("Error: Unable to destroy message queue mutex: %d\n", ret);
}
/**
* Adds the given BusSubscriber as a subscriber to self
*
* @param b The BusSubscriber to subscribe
*/
void
MessageBus::subscribe(BusSubscriber* b)
{
// Applets may initialize in parallel. So lock before pushing.
PLUGIN_DEBUG("Subscribing %p to bus %p\n", b, this);
pthread_mutex_lock(&subscriber_mutex);
subscribers.push_back(b);
pthread_mutex_unlock(&subscriber_mutex);
}
/**
* Removes the given BusSubscriber from the subscriber list
*
* @param b The BusSubscriber to ubsubscribe
*/
void
MessageBus::unSubscribe(BusSubscriber* b)
{
// Applets may initialize in parallel. So lock before pushing.
PLUGIN_DEBUG("Un-subscribing %p from bus %p\n", b, this);
pthread_mutex_lock(&subscriber_mutex);
subscribers.remove(b);
pthread_mutex_unlock(&subscriber_mutex);
}
/**
* Notifies all subscribers with the given message
*
* @param message The message to send to the subscribers
*/
void
MessageBus::post(const char* message)
{
bool message_consumed = false;
PLUGIN_DEBUG("Trying to lock %p...\n", &msg_queue_mutex);
pthread_mutex_lock(&subscriber_mutex);
PLUGIN_DEBUG("Message %s received on bus. Notifying subscribers.\n", message);
std::list<BusSubscriber*>::const_iterator i;
for( i = subscribers.begin(); i != subscribers.end() && !message_consumed; ++i ) {
PLUGIN_DEBUG("Notifying subscriber %p of %s\n", *i, message);
message_consumed = ((BusSubscriber*) *i)->newMessageOnBus(message);
}
pthread_mutex_unlock(&subscriber_mutex);
if (!message_consumed)
PLUGIN_DEBUG("Warning: No consumer found for message %s\n", message);
PLUGIN_DEBUG("%p unlocked...\n", &msg_queue_mutex);
}
|