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 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
|
//
// dr.cc : Diffusion Routing Class
// authors : John Heidemann and Fabio Silva
//
// Copyright (C) 2000-2003 by the University of Southern California
// $Id: dr.cc,v 1.20 2011/10/02 22:32:34 tom_henderson Exp $
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License,
// version 2, as published by the Free Software Foundation.
//
// This program 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 this program; if not, write to the Free Software Foundation, Inc.,
// 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
//
// Linking this file statically or dynamically with other modules is making
// a combined work based on this file. Thus, the terms and conditions of
// the GNU General Public License cover the whole combination.
//
// In addition, as a special exception, the copyright holders of this file
// give you permission to combine this file with free software programs or
// libraries that are released under the GNU LGPL and with code included in
// the standard release of ns-2 under the Apache 2.0 license or under
// otherwise-compatible licenses with advertising requirements (or modified
// versions of such code, with unchanged license). You may copy and
// distribute such a system following the terms of the GNU GPL for this
// file and the licenses of the other code concerned, provided that you
// include the source code of that other code when and as the GNU GPL
// requires distribution of source code.
//
// Note that people who make modified versions of this file are not
// obligated to grant this special exception for their modified versions;
// it is their choice whether to do so. The GNU General Public License
// gives permission to release a modified version without this exception;
// this exception also makes it possible to release a modified version
// which carries forward this exception.
//
#include <stdlib.h>
#include <stdio.h>
#include "dr.hh"
class CallbackEntry {
public:
NR::Callback *cb_;
NR::handle subscription_handle_;
CallbackEntry(NR::Callback *cb, NR::handle subscription_handle) :
cb_(cb), subscription_handle_(subscription_handle) {};
};
class HandleEntry {
public:
handle hdl_;
bool valid_;
NRAttrVec *attrs_;
NR::Callback *cb_;
struct timeval exploratory_time_;
int32_t subscription_id_; // Used for One-Phase Pull
HandleEntry()
{
GetTime(&exploratory_time_);
valid_ = true;
cb_ = NULL;
};
~HandleEntry(){
ClearAttrs(attrs_);
delete attrs_;
};
};
int InterestCallback::expire()
{
int retval;
// Call the interestTimeout function
retval = drt_->interestTimeout(handle_entry_);
if (retval < 0)
delete this;
return retval;
}
int FilterKeepaliveCallback::expire()
{
int retval;
// Call the filterTimeout function
retval = drt_->filterKeepaliveTimeout(filter_entry_);
if (retval < 0)
delete this;
return retval;
}
int OldAPITimer::expire()
{
int retval;
// Call the callback function with the provided API
retval = cb_->expire(0, p_);
if (retval < 0)
delete this;
return retval;
}
#ifdef NS_DIFFUSION
class DiffEventQueue;
int DiffusionRouting::getNodeId() {
return node_->address();
}
int DiffusionRouting::getAgentId(int id) {
if (id != -1)
agent_id_ = id;
return agent_id_;
}
NR * NR::create_ns_NR(u_int16_t port, DiffAppAgent *da) {
return(new DiffusionRouting(port, da));
}
#else
NR *dr = NULL;
#ifdef USE_THREADS
void * ReceiveThread(void *dr)
{
// Never returns
((DiffusionRouting *)dr)->run(true, WAIT_FOREVER);
return NULL;
}
#endif // USE_THREADS
NR * NR::createNR(u_int16_t port)
{
// Create Diffusion Routing Class
if (dr)
return dr;
dr = new DiffusionRouting(port);
#ifdef USE_THREADS
int retval;
pthread_t thread;
// Fork a thread for receiving Messages
retval = pthread_create(&thread, NULL, &ReceiveThread, (void *)dr);
if (retval){
DiffPrint(DEBUG_ALWAYS, "Error creating receiving thread ! Aborting...\n");
exit(-1);
}
#endif // USE_THREADS
return dr;
}
#endif // NS_DIFFUSION
#ifdef USE_THREADS
void GetLock(pthread_mutex_t *mutex)
{
pthread_mutex_lock(mutex);
}
#endif // USE_THREADS
#ifndef USE_THREADS
void GetLock(pthread_mutex_t *)
{
}
#endif // USE_THREADS
#ifdef USE_THREADS
void ReleaseLock(pthread_mutex_t *mutex)
{
pthread_mutex_unlock(mutex);
}
#endif // USE_THREADS
#ifndef USE_THREADS
void ReleaseLock(pthread_mutex_t *)
{
}
#endif // USE_THREADS
#ifdef NS_DIFFUSION
DiffusionRouting::DiffusionRouting(u_int16_t port, DiffAppAgent *da)
{
#else
DiffusionRouting::DiffusionRouting(u_int16_t port)
{
#ifdef USE_EMSIM
char *sim_id;
char *sim_group;
#endif // USE_EMSIM
#endif // NS_DIFFUSION
struct timeval tv;
DiffusionIO *device;
// Initialize basic stuff
next_handle_ = 1;
GetTime(&tv);
SetSeed(&tv);
pkt_count_ = GetRand();
random_id_ = GetRand();
agent_id_ = 0;
if (port == 0)
port = DEFAULT_DIFFUSION_PORT;
diffusion_port_ = port;
#ifdef USE_EMSIM
// Check if we are running in the emstar simulator
sim_id = getenv("SIM_ID");
sim_group = getenv("SIM_GROUP");
// Update diffusion port if running inside the simulator
if (sim_id && sim_group){
diffusion_port_ = diffusion_port_ + atoi(sim_id) + (100 * atoi(sim_group));
}
#endif // USE_EMSIM
// Initialize timer manager
timers_manager_ = new TimerManager;
// Initialize input device
#ifdef NS_DIFFUSION
device = new NsLocal(da);
local_out_devices_.push_back(device);
#endif // NS_DIFFUSION
#ifdef UDP
device = new UDPLocal(&agent_id_);
in_devices_.push_back(device);
local_out_devices_.push_back(device);
#endif // UDP
// Print initialization message
DiffPrint(DEBUG_ALWAYS,
"Diffusion Routing Agent initializing... Agent Id = %d\n",
agent_id_);
#ifdef USE_THREADS
// Initialize Semaphores
dr_mtx_ = new pthread_mutex_t;
pthread_mutex_init(dr_mtx_, NULL);
#endif // USE_THREADS
}
DiffusionRouting::~DiffusionRouting()
{
HandleList::iterator itr;
HandleEntry *current;
// Delete all Handles
for (itr = sub_list_.begin(); itr != sub_list_.end(); ++itr){
current = *itr;
delete current;
}
for (itr = pub_list_.begin(); itr != pub_list_.end(); ++itr){
current = *itr;
delete current;
}
}
handle DiffusionRouting::subscribe(NRAttrVec *subscribe_attrs, NR::Callback *cb)
{
NRSimpleAttribute<int> *nr_algorithm = NULL;
TimerCallback *timer_callback;
NRAttribute *scope_attr;
HandleEntry *my_handle;
// Get lock first
GetLock(dr_mtx_);
// Check the published attributes
if (!checkSubscription(subscribe_attrs)){
DiffPrint(DEBUG_ALWAYS, "Error : Invalid class/scope attributes in the subscribe attributes !\n");
ReleaseLock(dr_mtx_);
return FAIL;
}
// Create and Initialize the handle_entry structute
my_handle = new HandleEntry;
my_handle->hdl_ = next_handle_;
next_handle_++;
my_handle->cb_ = (NR::Callback *) cb;
sub_list_.push_back(my_handle);
// Copy the attributes
my_handle->attrs_ = CopyAttrs(subscribe_attrs);
// For subscriptions, scope is global if not specified
if (!hasScope(subscribe_attrs)){
scope_attr = NRScopeAttr.make(NRAttribute::IS, NRAttribute::GLOBAL_SCOPE);
my_handle->attrs_->push_back(scope_attr);
}
// For One-Phase Pull, we need a subscription id
nr_algorithm = NRAlgorithmAttr.find(subscribe_attrs);
if (nr_algorithm &&
nr_algorithm->getVal() == NRAttribute::ONE_PHASE_PULL_ALGORITHM){
my_handle->subscription_id_ = GetRand();
my_handle->attrs_->push_back(NRSubscriptionAttr.make(NRAttribute::IS,
my_handle->subscription_id_));
}
// Create Interest Timer and add it to the queue
timer_callback = new InterestCallback(this, my_handle);
timers_manager_->addTimer(SMALL_TIMEOUT, timer_callback);
// Release lock
ReleaseLock(dr_mtx_);
return my_handle->hdl_;
}
int DiffusionRouting::unsubscribe(handle subscription_handle)
{
HandleEntry *my_handle = NULL;
// Get the lock first
GetLock(dr_mtx_);
my_handle = findHandle(subscription_handle, &sub_list_);
if (!my_handle){
// Handle doesn't exist, return FAIL
ReleaseLock(dr_mtx_);
return FAIL;
}
// Handle will be destroyed when next interest timeout happens
my_handle->valid_ = false;
// Release the lock
ReleaseLock(dr_mtx_);
return OK;
}
handle DiffusionRouting::publish(NRAttrVec *publish_attrs)
{
HandleEntry *my_handle;
NRAttribute *scope_attr;
// Get the lock first
GetLock(dr_mtx_);
// Check the published attributes
if (!checkPublication(publish_attrs)){
DiffPrint(DEBUG_ALWAYS, "Error : Invalid class/scope attributes in the publish attributes !\n");
ReleaseLock(dr_mtx_);
return FAIL;
}
// Create and Initialize the handle_entry structute
my_handle = new HandleEntry;
my_handle->hdl_ = next_handle_;
next_handle_++;
pub_list_.push_back(my_handle);
// Copy the attributes
my_handle->attrs_ = CopyAttrs(publish_attrs);
// For publications, scope is local if not specified
if (!hasScope(publish_attrs)){
scope_attr = NRScopeAttr.make(NRAttribute::IS, NRAttribute::NODE_LOCAL_SCOPE);
my_handle->attrs_->push_back(scope_attr);
}
// Release the lock
ReleaseLock(dr_mtx_);
return my_handle->hdl_;
}
int DiffusionRouting::unpublish(handle publication_handle)
{
HandleEntry *my_handle = NULL;
// Get the lock first
GetLock(dr_mtx_);
my_handle = removeHandle(publication_handle, &pub_list_);
if (!my_handle){
// Handle doesn't exist, return FAIL
ReleaseLock(dr_mtx_);
return FAIL;
}
// Free structures
delete my_handle;
// Release the lock
ReleaseLock(dr_mtx_);
return OK;
}
int DiffusionRouting::send(handle publication_handle,
NRAttrVec *send_attrs)
{
NRSimpleAttribute<int> *nr_algorithm = NULL;
NRSimpleAttribute<int> *rmst_id_attr = NULL;
int8_t send_message_type = DATA;
struct timeval current_time;
HandleEntry *my_handle;
Message *my_message;
// Get the lock first
GetLock(dr_mtx_);
// Get attributes associated with handle
my_handle = findHandle(publication_handle, &pub_list_);
if (!my_handle){
ReleaseLock(dr_mtx_);
return FAIL;
}
// Check the send attributes
if (!checkSend(send_attrs)){
DiffPrint(DEBUG_ALWAYS,
"Error : Invalid class/scope attributes in send attributes !\n");
ReleaseLock(dr_mtx_);
return FAIL;
}
// Check if it is time to send another exploratory data message
GetTime(¤t_time);
// Check algorithms
nr_algorithm = NRAlgorithmAttr.find(my_handle->attrs_);
rmst_id_attr = RmstIdAttr.find(send_attrs);
if ((!nr_algorithm && !rmst_id_attr) || (nr_algorithm &&
nr_algorithm->getVal() != NRAttribute::ONE_PHASE_PULL_ALGORITHM)){
// In One-Phase Pull, there are no exploratory messages
if (TimevalCmp(¤t_time, &(my_handle->exploratory_time_)) >= 0){
// Check if it is a push data message or a regular data message
if (isPushData(my_handle->attrs_)){
// Push data message
// Update time for the next push exploratory message
GetTime(&(my_handle->exploratory_time_));
my_handle->exploratory_time_.tv_sec += PUSH_EXPLORATORY_DELAY;
send_message_type = PUSH_EXPLORATORY_DATA;
}
else{
// Regular data message
// Update time for the next exploratory message
GetTime(&(my_handle->exploratory_time_));
my_handle->exploratory_time_.tv_sec += EXPLORATORY_DATA_DELAY;
send_message_type = EXPLORATORY_DATA;
}
}
}
// Initialize message structure
my_message = new Message(DIFFUSION_VERSION, send_message_type, agent_id_,
0, 0, pkt_count_, random_id_, LOCALHOST_ADDR,
LOCALHOST_ADDR);
// Increment pkt_counter
pkt_count_++;
// First, we duplicate the 'publish' attributes
my_message->msg_attr_vec_ = CopyAttrs(my_handle->attrs_);
// Now, we add the send attributes
AddAttrs(my_message->msg_attr_vec_, send_attrs);
// Compute the total number and size of the joined attribute sets
my_message->num_attr_ = my_message->msg_attr_vec_->size();
my_message->data_len_ = CalculateSize(my_message->msg_attr_vec_);
// Release the lock
ReleaseLock(dr_mtx_);
// Send Packet
sendMessageToDiffusion(my_message);
delete my_message;
return OK;
}
int DiffusionRouting::sendRmst(handle publication_handle,
NRAttrVec *send_attrs, int fragment_size)
{
NRSimpleAttribute<void *> *rmst_data_attr;
NRSimpleAttribute<int> *frag_number_attr;
NRSimpleAttribute<int> *max_frag_attr;
void *frag_ptr, *blob_ptr;
char *blob;
timeval send_interval;
int id = GetRand() % 500;
int size;
int num_frag;
int max_frag_len;
// Find RMST blob to send
rmst_data_attr = RmstDataAttr.find(send_attrs);
// We must have a RMST data attribute to send
if(!rmst_data_attr){
DiffPrint(DEBUG_ALWAYS, "sendRMST - can't find blob to send !\n");
return FAIL;
}
// Copy RMST blob and calculate number of fragments
blob_ptr = rmst_data_attr->getVal();
size = rmst_data_attr->getLen();
blob = new char[size];
memcpy((void *)blob, blob_ptr, size);
num_frag = (size + fragment_size - 1) / fragment_size;
// We index starting at zero
num_frag--;
max_frag_len = size - (num_frag * fragment_size);
DiffPrint(DEBUG_DETAILS,
"sendRMST: rmst num_frag = %d, fragment_size = %d, max_frag_len = %d\n",
num_frag, fragment_size, max_frag_len);
// Prepare attribute vector with RMST attributes
max_frag_attr = RmstMaxFragAttr.make(NRAttribute::IS, num_frag);
send_attrs->push_back(max_frag_attr);
send_attrs->push_back(RmstTsprtCtlAttr.make(NRAttribute::IS, RMST_RESP));
frag_number_attr = RmstFragAttr.make(NRAttribute::IS, 0);
send_attrs->push_back(frag_number_attr);
send_attrs->push_back(RmstIdAttr.make(NRAttribute::IS, id));
// Replace the large blob with a blob fragment
frag_ptr = (void *)&blob[0];
// The call to setVal will delete the original blob!!
if (num_frag == 0)
rmst_data_attr->setVal(frag_ptr, max_frag_len);
else
rmst_data_attr->setVal(frag_ptr, fragment_size);
// Send 1st fragment
send(publication_handle, send_attrs);
// Send other fragments
for (int i = 1; i <= num_frag; i++){
// Small delay between sending fragments
send_interval.tv_sec = 0;
send_interval.tv_usec = 25000;
select(0, NULL, NULL, NULL, &send_interval);
// Send next fragment
frag_number_attr->setVal(i);
frag_ptr = (void *)&blob[i * fragment_size];
if (num_frag == i)
rmst_data_attr->setVal(frag_ptr, max_frag_len);
else
rmst_data_attr->setVal(frag_ptr, fragment_size);
send(publication_handle, send_attrs);
}
ClearAttrs(send_attrs);
delete blob;
return OK;
}
int DiffusionRouting::addToBlacklist(int32_t node)
{
ControlMessage *control_blob;
NRAttribute *ctrl_msg_attr;
Message *my_message;
NRAttrVec *attrs;
control_blob = new ControlMessage(ADD_TO_BLACKLIST, node, 0);
ctrl_msg_attr = ControlMsgAttr.make(NRAttribute::IS,
(void *)control_blob,
sizeof(ControlMessage));
attrs = new NRAttrVec;
attrs->push_back(ctrl_msg_attr);
my_message = new Message(DIFFUSION_VERSION, CONTROL, agent_id_, 0,
0, pkt_count_, random_id_, LOCALHOST_ADDR,
LOCALHOST_ADDR);
// Increment pkt_counter
pkt_count_++;
// Add attributes to the message
my_message->msg_attr_vec_ = attrs;
my_message->num_attr_ = attrs->size();
my_message->data_len_ = CalculateSize(attrs);
// Send Packet
sendMessageToDiffusion(my_message);
// Delete message
delete my_message;
delete control_blob;
return OK;
}
int DiffusionRouting::clearBlacklist()
{
ControlMessage *control_blob;
NRAttribute *ctrl_msg_attr;
Message *my_message;
NRAttrVec *attrs;
control_blob = new ControlMessage(CLEAR_BLACKLIST, 0, 0);
ctrl_msg_attr = ControlMsgAttr.make(NRAttribute::IS,
(void *)control_blob,
sizeof(ControlMessage));
attrs = new NRAttrVec;
attrs->push_back(ctrl_msg_attr);
my_message = new Message(DIFFUSION_VERSION, CONTROL, agent_id_, 0,
0, pkt_count_, random_id_, LOCALHOST_ADDR,
LOCALHOST_ADDR);
// Increment pkt_counter
pkt_count_++;
// Add attributes to the message
my_message->msg_attr_vec_ = attrs;
my_message->num_attr_ = attrs->size();
my_message->data_len_ = CalculateSize(attrs);
// Send Packet
sendMessageToDiffusion(my_message);
// Delete message
delete my_message;
delete control_blob;
return OK;
}
handle DiffusionRouting::addFilter(NRAttrVec *filter_attrs, u_int16_t priority,
FilterCallback *cb)
{
FilterEntry *filter_entry;
NRAttrVec *attrs;
NRAttribute *ctrl_msg_attr;
ControlMessage *control_blob;
Message *my_message;
TimerCallback *timer_callback;
// Check parameters
if (!filter_attrs || !cb || priority < FILTER_MIN_PRIORITY || priority > FILTER_MAX_PRIORITY){
DiffPrint(DEBUG_ALWAYS, "Received invalid parameters when adding filter !\n");
return FAIL;
}
// Get lock first
GetLock(dr_mtx_);
// Create and Initialize the handle_entry structute
filter_entry = new FilterEntry(next_handle_, priority, agent_id_);
next_handle_++;
filter_entry->cb_ = (FilterCallback *) cb;
filter_list_.push_back(filter_entry);
// Copy attributes (keep them for matching later)
filter_entry->filter_attrs_ = CopyAttrs(filter_attrs);
// Copy the attributes (and add the control attr)
attrs = CopyAttrs(filter_attrs);
control_blob = new ControlMessage(ADD_UPDATE_FILTER,
priority, filter_entry->handle_);
ctrl_msg_attr = ControlMsgAttr.make(NRAttribute::IS,
(void *)control_blob,
sizeof(ControlMessage));
attrs->push_back(ctrl_msg_attr);
// Initialize message structure
my_message = new Message(DIFFUSION_VERSION, CONTROL, agent_id_, 0,
0, pkt_count_, random_id_, LOCALHOST_ADDR,
LOCALHOST_ADDR);
// Increment pkt_counter
pkt_count_++;
// Add attributes to the message
my_message->msg_attr_vec_ = attrs;
my_message->num_attr_ = attrs->size();
my_message->data_len_ = CalculateSize(attrs);
// Release the lock
ReleaseLock(dr_mtx_);
// Send Packet
sendMessageToDiffusion(my_message);
// Add keepalive timer to the event queue
timer_callback = new FilterKeepaliveCallback(this, filter_entry);
timers_manager_->addTimer(FILTER_KEEPALIVE_DELAY, timer_callback);
// Delete message, attribute set and controlblob
delete my_message;
delete control_blob;
return filter_entry->handle_;
}
int DiffusionRouting::removeFilter(handle filter_handle)
{
FilterEntry *filter_entry = NULL;
ControlMessage *control_blob;
NRAttribute *ctrl_msg_attr;
NRAttrVec *attrs;
Message *my_message;
// Get lock first
GetLock(dr_mtx_);
filter_entry = findFilter(filter_handle);
if (!filter_entry){
// Handle doesn't exist, return FAIL
ReleaseLock(dr_mtx_);
return FAIL;
}
control_blob = new ControlMessage(REMOVE_FILTER, filter_entry->handle_, 0);
ctrl_msg_attr = ControlMsgAttr.make(NRAttribute::IS,
(void *)control_blob,
sizeof(ControlMessage));
attrs = new NRAttrVec;
attrs->push_back(ctrl_msg_attr);
my_message = new Message(DIFFUSION_VERSION, CONTROL, agent_id_, 0,
0, pkt_count_, random_id_, LOCALHOST_ADDR,
LOCALHOST_ADDR);
// Increment pkt_counter
pkt_count_++;
// Add attributes to the message
my_message->msg_attr_vec_ = attrs;
my_message->num_attr_ = attrs->size();
my_message->data_len_ = CalculateSize(attrs);
// Handle will be destroyed when next keepalive timer happens
filter_entry->valid_ = false;
// Send Packet
sendMessageToDiffusion(my_message);
// Release the lock
ReleaseLock(dr_mtx_);
// Delete message
delete my_message;
delete control_blob;
return OK;
}
handle DiffusionRouting::addTimer(int timeout, TimerCallback *callback)
{
return (timers_manager_->addTimer(timeout, callback));
}
handle DiffusionRouting::addTimer(int timeout, void *p, TimerCallbacks *cb)
{
TimerCallback *callback;
callback = new OldAPITimer(cb, p);
return (addTimer(timeout, callback));
}
bool DiffusionRouting::removeTimer(handle hdl)
{
return (timers_manager_->removeTimer(hdl));
}
int DiffusionRouting::filterKeepaliveTimeout(FilterEntry *filter_entry)
{
FilterEntry *my_entry = NULL;
ControlMessage *control_blob;
NRAttribute *ctrl_msg_attr;
NRAttrVec *attrs;
Message *my_message;
// Acquire lock first
GetLock(dr_mtx_);
if (filter_entry->valid_){
// Send keepalive
control_blob = new ControlMessage(ADD_UPDATE_FILTER,
filter_entry->priority_,
filter_entry->handle_);
ctrl_msg_attr = ControlMsgAttr.make(NRAttribute::IS,
(void *)control_blob,
sizeof(ControlMessage));
attrs = CopyAttrs(filter_entry->filter_attrs_);
attrs->push_back(ctrl_msg_attr);
my_message = new Message(DIFFUSION_VERSION, CONTROL, agent_id_, 0,
0, pkt_count_, random_id_, LOCALHOST_ADDR,
LOCALHOST_ADDR);
// Increment pkt_counter
pkt_count_++;
// Add attributes to the message
my_message->msg_attr_vec_ = attrs;
my_message->num_attr_ = attrs->size();
my_message->data_len_ = CalculateSize(attrs);
// Send Message
sendMessageToDiffusion(my_message);
delete my_message;
delete control_blob;
// Release lock
ReleaseLock(dr_mtx_);
// Reschedule another filter keepalive timer in event queue
return (FILTER_KEEPALIVE_DELAY);
}
else{
// Filter was removed
my_entry = deleteFilter(filter_entry->handle_);
// We should have removed the correct handle
if (my_entry != filter_entry){
DiffPrint(DEBUG_ALWAYS, "DiffusionRouting::KeepaliveTimeout: Handles should match !\n");
exit(-1);
}
delete my_entry;
// Release lock
ReleaseLock(dr_mtx_);
return -1;
}
}
int DiffusionRouting::interestTimeout(HandleEntry *handle_entry)
{
HandleEntry *my_handle = NULL;
Message *my_message;
// Acquire lock first
GetLock(dr_mtx_);
if (handle_entry->valid_){
// Send the interest message if entry is still valid
my_message = new Message(DIFFUSION_VERSION, INTEREST, agent_id_, 0,
0, pkt_count_, random_id_, LOCALHOST_ADDR,
LOCALHOST_ADDR);
// Increment pkt_counter
pkt_count_++;
// Add attributes to the message
my_message->msg_attr_vec_ = CopyAttrs(handle_entry->attrs_);
my_message->num_attr_ = handle_entry->attrs_->size();
my_message->data_len_ = CalculateSize(handle_entry->attrs_);
// Send Packet
sendMessageToDiffusion(my_message);
delete my_message;
// Release lock
ReleaseLock(dr_mtx_);
// Reschedule this timer in the queue
return (int) (floor(-1 * (log(1 - (GetRand() * 1.0 / RAND_MAX))) /
INTEREST_LAMBDA));
}
else{
// Interest was canceled. Just delete it from the handle_list
my_handle = removeHandle(handle_entry->hdl_, &sub_list_);
// We should have removed the correct handle
if (my_handle != handle_entry){
DiffPrint(DEBUG_ALWAYS,
"Error: interestTimeout: Handles should match !\n");
exit(-1);
}
delete my_handle;
// Release lock
ReleaseLock(dr_mtx_);
// Delete timer from the queue
return -1;
}
}
int DiffusionRouting::sendMessage(Message *msg, handle h,
u_int16_t priority)
{
RedirectMessage *original_hdr;
NRAttribute *original_attr, *ctrl_msg_attr;
ControlMessage *control_blob;
NRAttrVec *attrs;
Message *my_message;
if ((priority < FILTER_MIN_PRIORITY) ||
(priority > FILTER_KEEP_PRIORITY))
return FAIL;
// Create an attribute with the original header
original_hdr = new RedirectMessage(msg->new_message_, msg->msg_type_,
msg->source_port_, msg->data_len_,
msg->num_attr_, msg->rdm_id_,
msg->pkt_num_, msg->next_hop_,
msg->last_hop_, 0,
msg->next_port_);
original_attr = OriginalHdrAttr.make(NRAttribute::IS, (void *)original_hdr,
sizeof(RedirectMessage));
// Create the attribute with the control message
control_blob = new ControlMessage(SEND_MESSAGE, h, priority);
ctrl_msg_attr = ControlMsgAttr.make(NRAttribute::IS, (void *)control_blob,
sizeof(ControlMessage));
// Copy Attributes and add originalAttr and controlAttr
attrs = CopyAttrs(msg->msg_attr_vec_);
attrs->push_back(original_attr);
attrs->push_back(ctrl_msg_attr);
my_message = new Message(DIFFUSION_VERSION, CONTROL, agent_id_, 0,
0, pkt_count_, random_id_, LOCALHOST_ADDR,
LOCALHOST_ADDR);
// Increment pkt_counter
pkt_count_++;
// Add attributes to the message
my_message->msg_attr_vec_ = attrs;
my_message->num_attr_ = attrs->size();
my_message->data_len_ = CalculateSize(attrs);
// Send Packet
sendMessageToDiffusion(my_message);
delete my_message;
delete control_blob;
delete original_hdr;
return OK;
}
#ifndef NS_DIFFUSION
void DiffusionRouting::doIt()
{
run(true, WAIT_FOREVER);
}
void DiffusionRouting::doOne(long timeout)
{
run(false, timeout);
}
void DiffusionRouting::run(bool wait_condition, long max_timeout)
{
DeviceList::iterator itr;
int status, max_sock, fd;
bool flag;
DiffPacket in_pkt;
fd_set fds;
struct timeval tv;
struct timeval max_tv;
do{
FD_ZERO(&fds);
max_sock = 0;
// Set the maximum timeout value
max_tv.tv_sec = (int) (max_timeout / 1000);
max_tv.tv_usec = (int) ((max_timeout % 1000) * 1000);
for (itr = in_devices_.begin(); itr != in_devices_.end(); ++itr){
(*itr)->addInFDS(&fds, &max_sock);
}
// Check for the next timer
timers_manager_->nextTimerTime(&tv);
if (tv.tv_sec == MAXVALUE){
// If we don't have any timers, we wait for POLLING_INTERVAL
if (max_timeout == WAIT_FOREVER){
tv.tv_sec = POLLING_INTERVAL;
tv.tv_usec = 0;
}
else{
tv = max_tv;
}
}
else{
if ((max_timeout != WAIT_FOREVER) && (TimevalCmp(&tv, &max_tv) > 0)){
// max_timeout value is smaller than next timer's time, so we
// use themax_timeout value instead
tv = max_tv;
}
}
status = select(max_sock+1, &fds, NULL, NULL, &tv);
if (status == 0){
// Process all timers that have expired
timers_manager_->executeAllExpiredTimers();
}
if (status > 0){
do{
flag = false;
for (itr = in_devices_.begin(); itr != in_devices_.end(); ++itr){
fd = (*itr)->checkInFDS(&fds);
if (fd != -1){
// Message waiting
in_pkt = (*itr)->recvPacket(fd);
recvPacket(in_pkt);
// Clear this fd
FD_CLR(fd, &fds);
status--;
flag = true;
}
}
} while ((status > 0) && (flag == true));
}
else
if (status < 0){
DiffPrint(DEBUG_IMPORTANT, "Select returned %d\n", status);
}
} while (wait_condition);
}
#endif // NS_DIFFUSION
#ifndef NS_DIFFUSION
void DiffusionRouting::sendMessageToDiffusion(Message *msg)
{
DiffPacket out_pkt = NULL;
struct hdr_diff *dfh;
char *pos;
int len;
out_pkt = AllocateBuffer(msg->msg_attr_vec_);
dfh = HDR_DIFF(out_pkt);
pos = (char *) out_pkt;
pos = pos + sizeof(struct hdr_diff);
len = PackAttrs(msg->msg_attr_vec_, pos);
LAST_HOP(dfh) = htonl(msg->last_hop_);
NEXT_HOP(dfh) = htonl(msg->next_hop_);
DIFF_VER(dfh) = msg->version_;
MSG_TYPE(dfh) = msg->msg_type_;
DATA_LEN(dfh) = htons(len);
PKT_NUM(dfh) = htonl(msg->pkt_num_);
RDM_ID(dfh) = htonl(msg->rdm_id_);
NUM_ATTR(dfh) = htons(msg->num_attr_);
SRC_PORT(dfh) = htons(msg->source_port_);
sendPacketToDiffusion(out_pkt, sizeof(struct hdr_diff) + len, diffusion_port_);
delete [] out_pkt;
}
#else
void DiffusionRouting::sendMessageToDiffusion(Message *msg)
{
Message *my_msg;
DeviceList::iterator itr;
int len;
my_msg = CopyMessage(msg);
len = CalculateSize(my_msg->msg_attr_vec_);
len = len + sizeof(struct hdr_diff);
for (itr = local_out_devices_.begin(); itr != local_out_devices_.end(); ++itr){
(*itr)->sendPacket((DiffPacket) my_msg, len, diffusion_port_);
}
}
#endif // !NS_DIFFUSION
void DiffusionRouting::sendPacketToDiffusion(DiffPacket pkt, int len, int dst)
{
DeviceList::iterator itr;
for (itr = local_out_devices_.begin(); itr != local_out_devices_.end(); ++itr){
(*itr)->sendPacket(pkt, len, dst);
}
}
#ifndef NS_DIFFUSION
void DiffusionRouting::recvPacket(DiffPacket pkt)
{
struct hdr_diff *dfh = HDR_DIFF(pkt);
Message *rcv_message = NULL;
int8_t version, msg_type;
u_int16_t data_len, num_attr, source_port;
int32_t pkt_num, rdm_id, next_hop, last_hop;
// Read header
version = DIFF_VER(dfh);
msg_type = MSG_TYPE(dfh);
source_port = ntohs(SRC_PORT(dfh));
pkt_num = ntohl(PKT_NUM(dfh));
rdm_id = ntohl(RDM_ID(dfh));
num_attr = ntohs(NUM_ATTR(dfh));
next_hop = ntohl(NEXT_HOP(dfh));
last_hop = ntohl(LAST_HOP(dfh));
data_len = ntohs(DATA_LEN(dfh));
// Create a message structure from the incoming packet
rcv_message = new Message(version, msg_type, source_port, data_len,
num_attr, pkt_num, rdm_id, next_hop, last_hop);
// Read all attributes into the Message structure
rcv_message->msg_attr_vec_ = UnpackAttrs(pkt, num_attr);
// Process the incoming message
recvMessage(rcv_message);
// We are done
delete rcv_message;
delete [] pkt;
}
#endif // !NS_DIFFUSION
void DiffusionRouting::recvMessage(Message *msg)
{
// Check version
if (msg->version_ != DIFFUSION_VERSION)
return;
// Check destination
if (msg->next_hop_ != LOCALHOST_ADDR)
return;
// Process the incoming message
if (msg->msg_type_ == REDIRECT)
processControlMessage(msg);
else
processMessage(msg);
}
void DiffusionRouting::processControlMessage(Message *msg)
{
NRSimpleAttribute<void *> *original_header_attr = NULL;
NRAttrVec::iterator place = msg->msg_attr_vec_->begin();
RedirectMessage *original_header;
FilterEntry *entry;
handle my_handle;
// Find the attribute containing the original packet header
original_header_attr = OriginalHdrAttr.find_from(msg->msg_attr_vec_,
place, &place);
if (!original_header_attr){
DiffPrint(DEBUG_ALWAYS, "Error: Received an invalid REDIRECT message !\n");
return;
}
// Restore original message header
original_header = (RedirectMessage *) original_header_attr->getVal();
my_handle = original_header->handle_;
msg->msg_type_ = original_header->msg_type_;
msg->source_port_ = original_header->source_port_;
msg->pkt_num_ = original_header->pkt_num_;
msg->rdm_id_ = original_header->rdm_id_;
msg->next_hop_ = original_header->next_hop_;
msg->last_hop_ = original_header->last_hop_;
msg->num_attr_ = original_header->num_attr_;
msg->new_message_ = original_header->new_message_;
msg->next_port_ = original_header->next_port_;
// Delete attribute from the original set
msg->msg_attr_vec_->erase(place);
delete original_header_attr;
// Find the right callback
GetLock(dr_mtx_);
entry = findFilter(my_handle);
if (entry && entry->valid_){
// Just to confirm
if (OneWayMatch(entry->filter_attrs_, msg->msg_attr_vec_)){
ReleaseLock(dr_mtx_);
entry->cb_->recv(msg, my_handle);
return;
}
else{
DiffPrint(DEBUG_ALWAYS,
"Warning: Filter doesn't match incoming message's attributes !\n");
}
}
else{
DiffPrint(DEBUG_IMPORTANT,
"Report: Cannot find filter (possibly deleted ?)\n");
}
ReleaseLock(dr_mtx_);
}
void DiffusionRouting::processMessage(Message *msg)
{
NRSimpleAttribute<int> *rmst_id_attr = NULL;
CallbackList::iterator cbl_itr;
HandleList::iterator sub_itr;
NRAttrVec *callback_attrs;
HandleEntry *entry;
CallbackEntry *aux;
CallbackList cbl;
// First, acquire the lock
GetLock(dr_mtx_);
for (sub_itr = sub_list_.begin(); sub_itr != sub_list_.end(); ++sub_itr){
entry = *sub_itr;
if ((entry->valid_) && (MatchAttrs(msg->msg_attr_vec_, entry->attrs_)))
if (entry->cb_){
aux = new CallbackEntry(entry->cb_, entry->hdl_);
cbl.push_back(aux);
}
}
// We can release the lock now
ReleaseLock(dr_mtx_);
// Check for RMST id attribute
rmst_id_attr = RmstIdAttr.find(msg->msg_attr_vec_);
cbl_itr = cbl.begin();
// Process RMST fragment if we have callbacks and this message has an RmstId
if (rmst_id_attr && (cbl_itr != cbl.end())){
if (!processRmst(msg)){
cbl.clear();
return;
}
}
// Now we just call all callback functions
for (cbl_itr = cbl.begin(); cbl_itr != cbl.end(); ++cbl_itr){
// Copy attributes
callback_attrs = CopyAttrs(msg->msg_attr_vec_);
// Call app-specific callback function
aux = *cbl_itr;
aux->cb_->recv(callback_attrs, aux->subscription_handle_);
delete aux;
// Clean up callback attributes
ClearAttrs(callback_attrs);
delete callback_attrs;
}
// We are done
cbl.clear();
}
bool DiffusionRouting::processRmst(Message *msg)
{
NRSimpleAttribute<void *> *data_buf_attr = NULL;
NRSimpleAttribute<int> *max_frag_attr = NULL;
NRSimpleAttribute<int> *rmst_id_attr = NULL;
NRSimpleAttribute<int> *frag_attr = NULL;
int rmst_no, frag_no, data_buf_len, count;
void *blob_ptr, *tmp_frag_ptr;
Int2RecRmst::iterator rmst_iterator;
Int2Frag::iterator frag_iterator;
char *dstPtr;
int dstSize;
RecRmst *rmst_ptr;
// Read Rmst attributes
data_buf_attr = RmstDataAttr.find(msg->msg_attr_vec_);
rmst_id_attr = RmstIdAttr.find(msg->msg_attr_vec_);
frag_attr = RmstFragAttr.find(msg->msg_attr_vec_);
rmst_no = rmst_id_attr->getVal();
frag_no = frag_attr->getVal();
blob_ptr = data_buf_attr->getVal();
data_buf_len = data_buf_attr->getLen();
// See if we are receiving this blob, if not start a new RecRmst
rmst_iterator = rec_rmst_map_.find(rmst_no);
if (rmst_iterator == rec_rmst_map_.end()){
rmst_ptr = new RecRmst(rmst_no);
rec_rmst_map_.insert(Int2RecRmst::value_type(rmst_no, rmst_ptr));
}
else
rmst_ptr = (*rmst_iterator).second;
if (frag_no == 0){
max_frag_attr = RmstMaxFragAttr.find(msg->msg_attr_vec_);
rmst_ptr->max_frag_ = max_frag_attr->getVal();
rmst_ptr->mtu_len_ = data_buf_len;
}
// Copy fragment to map
tmp_frag_ptr = new char[data_buf_len];
memcpy(tmp_frag_ptr, blob_ptr, data_buf_len);
rmst_ptr->frag_map_.insert(Int2Frag::value_type(frag_no, tmp_frag_ptr));
if (frag_no == rmst_ptr->max_frag_)
rmst_ptr->max_frag_len_ = data_buf_len;
count = rmst_ptr->frag_map_.size();
// If this is the last rmst fragment, create the entire rmst
if (count == (rmst_ptr->max_frag_ + 1)){
DiffPrint(DEBUG_DETAILS,
"RMST #%d is complete, creating big blob !\n", rmst_no);
// Allocate memory for the big blob
dstSize = rmst_ptr->max_frag_ * rmst_ptr->mtu_len_ + rmst_ptr->max_frag_len_;
dstPtr = new char[dstSize];
// Copy all but last fragment to a buffer
for (int i = 0; i < rmst_ptr->max_frag_; i++){
frag_iterator = rmst_ptr->frag_map_.find(i);
tmp_frag_ptr = (*frag_iterator).second;
memcpy((void *)&dstPtr[i * rmst_ptr->mtu_len_],
(void *)tmp_frag_ptr, rmst_ptr->mtu_len_);
}
// Now, copy the last fragment to the buffer
frag_iterator = rmst_ptr->frag_map_.find(rmst_ptr->max_frag_);
tmp_frag_ptr = (*frag_iterator).second;
memcpy((void *)&dstPtr[rmst_ptr->max_frag_ * rmst_ptr->mtu_len_],
(void *)tmp_frag_ptr, rmst_ptr->max_frag_len_);
// Since we copied everything from the map - clean it up
rec_rmst_map_.erase(rmst_iterator);
delete rmst_ptr;
// Now we substitute the last fragment with the reconstructed blob
data_buf_attr->setVal(dstPtr, dstSize);
// Deliver this to the application
return true;
}
// We don't have the entire blob
return false;
}
HandleEntry * DiffusionRouting::removeHandle(handle my_handle, HandleList *hl)
{
HandleList::iterator itr;
HandleEntry *entry;
for (itr = hl->begin(); itr != hl->end(); ++itr){
entry = *itr;
if (entry->hdl_ == my_handle){
hl->erase(itr);
return entry;
}
}
return NULL;
}
HandleEntry * DiffusionRouting::findHandle(handle my_handle, HandleList *hl)
{
HandleList::iterator itr;
HandleEntry *entry;
for (itr = hl->begin(); itr != hl->end(); ++itr){
entry = *itr;
if (entry->hdl_ == my_handle)
return entry;
}
return NULL;
}
FilterEntry * DiffusionRouting::deleteFilter(handle my_handle)
{
FilterList::iterator itr;
FilterEntry *entry;
for (itr = filter_list_.begin(); itr != filter_list_.end(); ++itr){
entry = *itr;
if (entry->handle_ == my_handle){
filter_list_.erase(itr);
return entry;
}
}
return NULL;
}
FilterEntry * DiffusionRouting::findFilter(handle my_handle)
{
FilterList::iterator itr;
FilterEntry *entry;
for (itr = filter_list_.begin(); itr != filter_list_.end(); ++itr){
entry = *itr;
if (entry->handle_ == my_handle)
return entry;
}
return NULL;
}
bool DiffusionRouting::hasScope(NRAttrVec *attrs)
{
NRAttribute *temp = NULL;
temp = NRScopeAttr.find(attrs);
if (temp)
return true;
return false;
}
bool DiffusionRouting::checkSubscription(NRAttrVec *attrs)
{
NRSimpleAttribute<int> *nrclass = NULL;
NRSimpleAttribute<int> *nrscope = NULL;
// We first try to locate both class and scope attributes
nrclass = NRClassAttr.find(attrs);
nrscope = NRScopeAttr.find(attrs);
// There must be a class attribute in subscriptions
if (!nrclass)
return false;
if (nrscope){
// This subcription has both class and scope attribute. So, we
// check if class/scope attributes comply with the Diffusion
// Routing API
// Must check scope's operator. The API requires it to be "IS"
if (nrscope->getOp() != NRAttribute::IS)
return false;
// Ok, so first check if this is a global subscription
if ((nrscope->getVal() == NRAttribute::GLOBAL_SCOPE) &&
(nrclass->getVal() == NRAttribute::INTEREST_CLASS) &&
(nrclass->getOp() == NRAttribute::IS))
return true;
// Check for local subscriptions
if (nrscope->getVal() == NRAttribute::NODE_LOCAL_SCOPE)
return true;
// Just to be sure we did not miss any case
return false;
}
// If there is no scope attribute, we will insert one later if this
// subscription looks like a global subscription
if ((nrclass->getVal() == NRAttribute::INTEREST_CLASS) &&
(nrclass->getOp() == NRAttribute::IS))
return true;
return false;
}
bool DiffusionRouting::checkPublication(NRAttrVec *attrs)
{
NRSimpleAttribute<int> *nrclass = NULL;
NRSimpleAttribute<int> *nrscope = NULL;
// We first try to locate both class and scope attributes
nrclass = NRClassAttr.find(attrs);
nrscope = NRScopeAttr.find(attrs);
// There must be a class attribute in the publication
if (!nrclass)
return false;
// In addition, the Diffusion Routing API requires the class
// attribute to be set to "IS DATA_CLASS"
if ((nrclass->getVal() != NRAttribute::DATA_CLASS) ||
(nrclass->getOp() != NRAttribute::IS))
return false;
if (nrscope){
// Ok, so this publication has both class and scope attributes. We
// now have to check if they comply to the Diffusion Routing API
// semantics for publish
// Must check scope's operator. The API requires it to be "IS"
if (nrscope->getOp() != NRAttribute::IS)
return false;
// We accept both global and local scope data messages
if ((nrscope->getVal() == NRAttribute::GLOBAL_SCOPE) ||
(nrscope->getVal() == NRAttribute::NODE_LOCAL_SCOPE))
return true;
// Just not to miss any case
return false;
}
// A publish without a scope attribute is fine, we will include a
// default NODE_LOCAL_SCOPE attribute later
return true;
}
bool DiffusionRouting::checkSend(NRAttrVec *attrs)
{
NRSimpleAttribute<int> *nrclass = NULL;
NRSimpleAttribute<int> *nrscope = NULL;
// Currently only checks for Class and Scope attributes
nrclass = NRClassAttr.find(attrs);
nrscope = NRScopeAttr.find(attrs);
if (nrclass || nrscope)
return false;
return true;
}
bool DiffusionRouting::isPushData(NRAttrVec *attrs)
{
NRSimpleAttribute<int> *nrclass = NULL;
NRSimpleAttribute<int> *nrscope = NULL;
// Currently only checks for Class and Scope attributes
nrclass = NRClassAttr.find(attrs);
nrscope = NRScopeAttr.find(attrs);
// We should have both class and scope
if (nrclass && nrscope){
if (nrscope->getVal() == NRAttribute::NODE_LOCAL_SCOPE)
return false;
return true;
}
else{
DiffPrint(DEBUG_ALWAYS, "Error: Cannot find class/scope attributes !\n");
return false;
}
}
|