/usr/include/ns3.27/ns3/make-event.h is in libns3-dev 3.27+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2008 INRIA
*
* 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
*
*/
#ifndef MAKE_EVENT_H
#define MAKE_EVENT_H
/**
* \file
* \ingroup events
* ns3::MakeEvent function declarations and template implementation.
*/
namespace ns3 {
class EventImpl;
/**
* \ingroup events
* \defgroup makeeventmemptr MakeEvent from Member Function Pointer.
*
* Create EventImpl instances from class member functions which take
* varying numbers of arguments.
*/
/**
* \ingroup makeeventmemptr
* @{
*/
/**
* Make an EventImpl from class method members which take
* varying numbers of arguments.
*
* \tparam MEM \deduced The class method function signature.
* \tparam OBJ \deduced The class type holding the method.
* \param [in] mem_ptr Class method member function pointer
* \param [in] obj Class instance.
* \returns The constructed EventImpl.
*/
template <typename MEM, typename OBJ>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj);
/**
* \copybrief MakeEvent(MEM,OBJ)
* \tparam MEM \deduced The class method function signature.
* \tparam OBJ \deduced The class type holding the method.
* \tparam T1 \deduced Type of the argument to the underlying function.
* \param [in] mem_ptr Class method member function pointer
* \param [in] obj Class instance.
* \param [in] a1 Argument value to be bound to the underlying function.
* \returns The constructed EventImpl.
*/
template <typename MEM, typename OBJ,
typename T1>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj, T1 a1);
/**
* \copybrief MakeEvent(MEM,OBJ)
* \tparam MEM \deduced The class method function signature.
* \tparam OBJ \deduced The class type holding the method.
* \tparam T1 \deduced Type of the first argument to the underlying function.
* \tparam T2 \deduced Type of the second argument to the underlying function.
* \param [in] mem_ptr Class method member function pointer
* \param [in] obj Class instance.
* \param [in] a1 First argument value to be bound to the underlying function.
* \param [in] a2 Second argument value to be bound to the underlying function.
* \returns The constructed EventImpl.
*/
template <typename MEM, typename OBJ,
typename T1, typename T2>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj, T1 a1, T2 a2);
/**
* \copybrief MakeEvent(MEM,OBJ)
* \tparam MEM \deduced The class method function signature.
* \tparam OBJ \deduced The class type holding the method.
* \tparam T1 \deduced Type of the first argument to the underlying function.
* \tparam T2 \deduced Type of the second argument to the underlying function.
* \tparam T3 \deduced Type of the third argument to the underlying function.
* \param [in] mem_ptr Class method member function pointer
* \param [in] obj Class instance.
* \param [in] a1 First argument value to be bound to the underlying function.
* \param [in] a2 Second argument value to be bound to the underlying function.
* \param [in] a3 Third argument value to be bound to the underlying function.
* \returns The constructed EventImpl.
*/
template <typename MEM, typename OBJ,
typename T1, typename T2, typename T3>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj, T1 a1, T2 a2, T3 a3);
/**
* \copybrief MakeEvent(MEM,OBJ)
* \tparam MEM \deduced The class method function signature.
* \tparam OBJ \deduced The class type holding the method.
* \tparam T1 \deduced Type of the first argument to the underlying function.
* \tparam T2 \deduced Type of the second argument to the underlying function.
* \tparam T3 \deduced Type of the third argument to the underlying function.
* \tparam T4 \deduced Type of the fourth argument to the underlying function.
* \param [in] mem_ptr Class method member function pointer
* \param [in] obj Class instance.
* \param [in] a1 First argument value to be bound to the underlying function.
* \param [in] a2 Second argument value to be bound to the underlying function.
* \param [in] a3 Third argument value to be bound to the underlying function.
* \param [in] a4 Fourth argument value to be bound to the underlying function.
* \returns The constructed EventImpl.
*/
template <typename MEM, typename OBJ,
typename T1, typename T2, typename T3, typename T4>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj, T1 a1, T2 a2, T3 a3, T4 a4);
/**
* \copybrief MakeEvent(MEM,OBJ)
* \tparam MEM \deduced The class method function signature.
* \tparam OBJ \deduced The class type holding the method.
* \tparam T1 \deduced Type of the first argument to the underlying function.
* \tparam T2 \deduced Type of the second argument to the underlying function.
* \tparam T3 \deduced Type of the third argument to the underlying function.
* \tparam T4 \deduced Type of the fourth argument to the underlying function.
* \tparam T5 \deduced Type of the fifth argument to the underlying function.
* \param [in] mem_ptr Class method member function pointer
* \param [in] obj Class instance.
* \param [in] a1 First argument value to be bound to the underlying function.
* \param [in] a2 Second argument value to be bound to the underlying function.
* \param [in] a3 Third argument value to be bound to the underlying function.
* \param [in] a4 Fourth argument value to be bound to the underlying function.
* \param [in] a5 Fifh argument value to be bound to the underlying function.
* \returns The constructed EventImpl.
*/
template <typename MEM, typename OBJ,
typename T1, typename T2, typename T3, typename T4, typename T5>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj,
T1 a1, T2 a2, T3 a3, T4 a4, T5 a5);
/**
* \copybrief MakeEvent(MEM,OBJ)
* \tparam MEM The class method function signature.
* \tparam OBJ The class type holding the method.
* \tparam T1 Type of the first argument to the underlying function.
* \tparam T2 Type of the second argument to the underlying function.
* \tparam T3 Type of the third argument to the underlying function.
* \tparam T4 Type of the fourth argument to the underlying function.
* \tparam T5 Type of the fifth argument to the underlying function.
* \tparam T6 Type of the sixth argument to the underlying function.
* \param mem_ptr Class method member function pointer
* \param obj Class instance.
* \param a1 First argument value to be bound to the underlying function.
* \param a2 Second argument value to be bound to the underlying function.
* \param a3 Third argument value to be bound to the underlying function.
* \param a4 Fourth argument value to be bound to the underlying function.
* \param a5 Fifth argument value to be bound to the underlying function.
* \param a6 Sixth argument value to be bound to the underlying function.
* \returns The constructed EventImpl.
*/
template <typename MEM, typename OBJ,
typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj,
T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6);
/**@}*/
/**
* \ingroup events
* \defgroup makeeventfnptr MakeEvent from Function Pointers.
*
* Create EventImpl instances from function pointers which take
* varying numbers of arguments.
*
* @{
*/
/**
* Make an EventImpl from a function pointer taking varying numbers
* of arguments.
*
* \param [in] f The function pointer.
* \returns The constructed EventImpl.
*/
EventImpl * MakeEvent (void (*f)(void));
/**
* \copybrief MakeEvent(void(*f)(void))
* \tparam U1 \deduced Formal type of the argument to the function.
* \tparam T1 \deduced Actual type of the argument to the function.
* \param [in] f The function pointer.
* \param [in] a1 Argument to be bound to the function.
* \returns The constructed EventImpl.
*/
template <typename U1,
typename T1>
EventImpl * MakeEvent (void (*f)(U1), T1 a1);
/**
* \copybrief MakeEvent(void(*f)(void))
* \tparam U1 \deduced Formal type of the first argument to the function.
* \tparam U2 \deduced Formal type of the second argument to the function.
* \tparam T1 \deduced Actual type of the first argument to the function.
* \tparam T2 \deduced Actual type of the second argument to the function.
* \param [in] f The function pointer.
* \param [in] a1 First argument to be bound to the function.
* \param [in] a2 Second argument to be bound to the function.
* \returns The constructed EventImpl.
*/
template <typename U1, typename U2,
typename T1, typename T2>
EventImpl * MakeEvent (void (*f)(U1,U2), T1 a1, T2 a2);
/**
* \copybrief MakeEvent(void(*f)(void))
* \tparam U1 \deduced Formal type of the first argument to the function.
* \tparam U2 \deduced Formal type of the second argument to the function.
* \tparam U3 \deduced Formal type of the third argument to the function.
* \tparam T1 \deduced Actual type of the first argument to the function.
* \tparam T2 \deduced Actual type of the second argument to the function.
* \tparam T3 \deduced Actual type of the third argument to the function.
* \param [in] f The function pointer.
* \param [in] a1 First argument to be bound to the function.
* \param [in] a2 Second argument to be bound to the function.
* \param [in] a3 Third argument to be bound to the function.
* \returns The constructed EventImpl.
*/
template <typename U1, typename U2, typename U3,
typename T1, typename T2, typename T3>
EventImpl * MakeEvent (void (*f)(U1,U2,U3), T1 a1, T2 a2, T3 a3);
/**
* \copybrief MakeEvent(void(*f)(void))
* \tparam U1 \deduced Formal type of the first argument to the function.
* \tparam U2 \deduced Formal type of the second argument to the function.
* \tparam U3 \deduced Formal type of the third argument to the function.
* \tparam U4 \deduced Formal type of the fourth argument to the function.
* \tparam T1 \deduced Actual type of the first argument to the function.
* \tparam T2 \deduced Actual type of the second argument to the function.
* \tparam T3 \deduced Actual type of the third argument to the function.
* \tparam T4 \deduced Actual type of the fourth argument to the function.
* \param [in] f The function pointer.
* \param [in] a1 First argument to be bound to the function.
* \param [in] a2 Second argument to be bound to the function.
* \param [in] a3 Third argument to be bound to the function.
* \param [in] a4 Fourth argument to be bound to the function.
* \returns The constructed EventImpl.
*/
template <typename U1, typename U2, typename U3, typename U4,
typename T1, typename T2, typename T3, typename T4>
EventImpl * MakeEvent (void (*f)(U1,U2,U3,U4), T1 a1, T2 a2, T3 a3, T4 a4);
/**
* \copybrief MakeEvent(void(*f)(void))
* \tparam U1 \deduced Formal type of the first argument to the function.
* \tparam U2 \deduced Formal type of the second argument to the function.
* \tparam U3 \deduced Formal type of the third argument to the function.
* \tparam U4 \deduced Formal type of the fourth argument to the function.
* \tparam U5 \deduced Formal type of the fifth argument to the function.
* \tparam T1 \deduced Actual type of the first argument to the function.
* \tparam T2 \deduced Actual type of the second argument to the function.
* \tparam T3 \deduced Actual type of the third argument to the function.
* \tparam T4 \deduced Actual type of the fourth argument to the function.
* \tparam T5 \deduced Actual type of the fifth argument to the function.
* \param [in] f The function pointer.
* \param [in] a1 First argument to be bound to the function.
* \param [in] a2 Second argument to be bound to the function.
* \param [in] a3 Third argument to be bound to the function.
* \param [in] a4 Fourth argument to be bound to the function.
* \param [in] a5 Fifth argument to be bound to the function.
* \returns The constructed EventImpl.
*/
template <typename U1, typename U2, typename U3, typename U4, typename U5,
typename T1, typename T2, typename T3, typename T4, typename T5>
EventImpl * MakeEvent (void (*f)(U1,U2,U3,U4,U5), T1 a1, T2 a2, T3 a3, T4 a4, T5 a5);
/**
* \copybrief MakeEvent(void(*f)(void))
* \tparam U1 Formal type of the first argument to the function.
* \tparam U2 Formal type of the second argument to the function.
* \tparam U3 Formal type of the third argument to the function.
* \tparam U4 Formal type of the fourth argument to the function.
* \tparam U5 Formal type of the fifth argument to the function.
* \tparam U6 Formal type of the sixth argument to the function.
* \tparam T1 Actual type of the first argument to the function.
* \tparam T2 Actual type of the second argument to the function.
* \tparam T3 Actual type of the third argument to the function.
* \tparam T4 Actual type of the fourth argument to the function.
* \tparam T5 Actual type of the fifth argument to the function.
* \tparam T6 Actual type of the sixth argument to the function.
* \param f The function pointer.
* \param a1 First argument to be bound to the function.
* \param a2 Second argument to be bound to the function.
* \param a3 Third argument to be bound to the function.
* \param a4 Fourth argument to be bound to the function.
* \param a5 Fifth argument to be bound to the function.
* \param a6 Sixth argument to be bound to the function.
* \returns The constructed EventImpl.
*/
template <typename U1, typename U2, typename U3, typename U4, typename U5, typename U6,
typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
EventImpl * MakeEvent (void (*f)(U1,U2,U3,U4,U5,U6), T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6);
/**@}*/
} // namespace ns3
/********************************************************************
* Implementation of the templates declared above.
********************************************************************/
#include "event-impl.h"
#include "type-traits.h"
namespace ns3 {
/**
* \ingroup makeeventmemptr
* Helper for the MakeEvent functions which take a class method.
*
* This helper converts a pointer to a reference.
*
* This is the generic template declaration (with empty body).
*
* \tparam T \explicit The class type.
*/
template <typename T>
struct EventMemberImplObjTraits;
/**
* \ingroup makeeventmemptr
* Helper for the MakeEvent functions which take a class method.
*
* This helper converts a pointer to a reference.
*
* This is the specialization for pointer types.
*
* \tparam T \explicit The class type.
*/
template <typename T>
struct EventMemberImplObjTraits<T *>
{
/**
* \param [in] p Object pointer.
* \return A reference to the object pointed to by p.
*/
static T &GetReference (T *p)
{
return *p;
}
};
template <typename MEM, typename OBJ>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj)
{
// zero argument version
class EventMemberImpl0 : public EventImpl
{
public:
EventMemberImpl0 (OBJ obj, MEM function)
: m_obj (obj),
m_function (function)
{
}
virtual ~EventMemberImpl0 ()
{
}
private:
virtual void Notify (void)
{
(EventMemberImplObjTraits<OBJ>::GetReference (m_obj).*m_function)();
}
OBJ m_obj;
MEM m_function;
} *ev = new EventMemberImpl0 (obj, mem_ptr);
return ev;
}
template <typename MEM, typename OBJ,
typename T1>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj, T1 a1)
{
// one argument version
class EventMemberImpl1 : public EventImpl
{
public:
EventMemberImpl1 (OBJ obj, MEM function, T1 a1)
: m_obj (obj),
m_function (function),
m_a1 (a1)
{
}
protected:
virtual ~EventMemberImpl1 ()
{
}
private:
virtual void Notify (void)
{
(EventMemberImplObjTraits<OBJ>::GetReference (m_obj).*m_function)(m_a1);
}
OBJ m_obj;
MEM m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
} *ev = new EventMemberImpl1 (obj, mem_ptr, a1);
return ev;
}
template <typename MEM, typename OBJ,
typename T1, typename T2>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj, T1 a1, T2 a2)
{
// two argument version
class EventMemberImpl2 : public EventImpl
{
public:
EventMemberImpl2 (OBJ obj, MEM function, T1 a1, T2 a2)
: m_obj (obj),
m_function (function),
m_a1 (a1),
m_a2 (a2)
{
}
protected:
virtual ~EventMemberImpl2 ()
{
}
private:
virtual void Notify (void)
{
(EventMemberImplObjTraits<OBJ>::GetReference (m_obj).*m_function)(m_a1, m_a2);
}
OBJ m_obj;
MEM m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
} *ev = new EventMemberImpl2 (obj, mem_ptr, a1, a2);
return ev;
}
template <typename MEM, typename OBJ,
typename T1, typename T2, typename T3>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj, T1 a1, T2 a2, T3 a3)
{
// three argument version
class EventMemberImpl3 : public EventImpl
{
public:
EventMemberImpl3 (OBJ obj, MEM function, T1 a1, T2 a2, T3 a3)
: m_obj (obj),
m_function (function),
m_a1 (a1),
m_a2 (a2),
m_a3 (a3)
{
}
protected:
virtual ~EventMemberImpl3 ()
{
}
private:
virtual void Notify (void)
{
(EventMemberImplObjTraits<OBJ>::GetReference (m_obj).*m_function)(m_a1, m_a2, m_a3);
}
OBJ m_obj;
MEM m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
typename TypeTraits<T3>::ReferencedType m_a3;
} *ev = new EventMemberImpl3 (obj, mem_ptr, a1, a2, a3);
return ev;
}
template <typename MEM, typename OBJ,
typename T1, typename T2, typename T3, typename T4>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj, T1 a1, T2 a2, T3 a3, T4 a4)
{
// four argument version
class EventMemberImpl4 : public EventImpl
{
public:
EventMemberImpl4 (OBJ obj, MEM function, T1 a1, T2 a2, T3 a3, T4 a4)
: m_obj (obj),
m_function (function),
m_a1 (a1),
m_a2 (a2),
m_a3 (a3),
m_a4 (a4)
{
}
protected:
virtual ~EventMemberImpl4 ()
{
}
private:
virtual void Notify (void)
{
(EventMemberImplObjTraits<OBJ>::GetReference (m_obj).*m_function)(m_a1, m_a2, m_a3, m_a4);
}
OBJ m_obj;
MEM m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
typename TypeTraits<T3>::ReferencedType m_a3;
typename TypeTraits<T4>::ReferencedType m_a4;
} *ev = new EventMemberImpl4 (obj, mem_ptr, a1, a2, a3, a4);
return ev;
}
template <typename MEM, typename OBJ,
typename T1, typename T2, typename T3, typename T4, typename T5>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj,
T1 a1, T2 a2, T3 a3, T4 a4, T5 a5)
{
// five argument version
class EventMemberImpl5 : public EventImpl
{
public:
EventMemberImpl5 (OBJ obj, MEM function, T1 a1, T2 a2, T3 a3, T4 a4, T5 a5)
: m_obj (obj),
m_function (function),
m_a1 (a1),
m_a2 (a2),
m_a3 (a3),
m_a4 (a4),
m_a5 (a5)
{
}
protected:
virtual ~EventMemberImpl5 ()
{
}
private:
virtual void Notify (void)
{
(EventMemberImplObjTraits<OBJ>::GetReference (m_obj).*m_function)(m_a1, m_a2, m_a3, m_a4, m_a5);
}
OBJ m_obj;
MEM m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
typename TypeTraits<T3>::ReferencedType m_a3;
typename TypeTraits<T4>::ReferencedType m_a4;
typename TypeTraits<T5>::ReferencedType m_a5;
} *ev = new EventMemberImpl5 (obj, mem_ptr, a1, a2, a3, a4, a5);
return ev;
}
template <typename MEM, typename OBJ,
typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
EventImpl * MakeEvent (MEM mem_ptr, OBJ obj,
T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6)
{
// six argument version
class EventMemberImpl6 : public EventImpl
{
public:
EventMemberImpl6 (OBJ obj, MEM function, T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6)
: m_obj (obj),
m_function (function),
m_a1 (a1),
m_a2 (a2),
m_a3 (a3),
m_a4 (a4),
m_a5 (a5),
m_a6 (a6)
{
}
protected:
virtual ~EventMemberImpl6 ()
{
}
private:
virtual void Notify (void)
{
(EventMemberImplObjTraits<OBJ>::GetReference (m_obj).*m_function)(m_a1, m_a2, m_a3, m_a4, m_a5, m_a6);
}
OBJ m_obj;
MEM m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
typename TypeTraits<T3>::ReferencedType m_a3;
typename TypeTraits<T4>::ReferencedType m_a4;
typename TypeTraits<T5>::ReferencedType m_a5;
typename TypeTraits<T6>::ReferencedType m_a6;
} *ev = new EventMemberImpl6 (obj, mem_ptr, a1, a2, a3, a4, a5, a6);
return ev;
}
template <typename U1, typename T1>
EventImpl * MakeEvent (void (*f)(U1), T1 a1)
{
// one arg version
class EventFunctionImpl1 : public EventImpl
{
public:
typedef void (*F)(U1);
EventFunctionImpl1 (F function, T1 a1)
: m_function (function),
m_a1 (a1)
{
}
protected:
virtual ~EventFunctionImpl1 ()
{
}
private:
virtual void Notify (void)
{
(*m_function)(m_a1);
}
F m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
} *ev = new EventFunctionImpl1 (f, a1);
return ev;
}
template <typename U1, typename U2, typename T1, typename T2>
EventImpl * MakeEvent (void (*f)(U1,U2), T1 a1, T2 a2)
{
// two arg version
class EventFunctionImpl2 : public EventImpl
{
public:
typedef void (*F)(U1, U2);
EventFunctionImpl2 (F function, T1 a1, T2 a2)
: m_function (function),
m_a1 (a1),
m_a2 (a2)
{
}
protected:
virtual ~EventFunctionImpl2 ()
{
}
private:
virtual void Notify (void)
{
(*m_function)(m_a1, m_a2);
}
F m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
} *ev = new EventFunctionImpl2 (f, a1, a2);
return ev;
}
template <typename U1, typename U2, typename U3,
typename T1, typename T2, typename T3>
EventImpl * MakeEvent (void (*f)(U1,U2,U3), T1 a1, T2 a2, T3 a3)
{
// three arg version
class EventFunctionImpl3 : public EventImpl
{
public:
typedef void (*F)(U1, U2, U3);
EventFunctionImpl3 (F function, T1 a1, T2 a2, T3 a3)
: m_function (function),
m_a1 (a1),
m_a2 (a2),
m_a3 (a3)
{
}
protected:
virtual ~EventFunctionImpl3 ()
{
}
private:
virtual void Notify (void)
{
(*m_function)(m_a1, m_a2, m_a3);
}
F m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
typename TypeTraits<T3>::ReferencedType m_a3;
} *ev = new EventFunctionImpl3 (f, a1, a2, a3);
return ev;
}
template <typename U1, typename U2, typename U3, typename U4,
typename T1, typename T2, typename T3, typename T4>
EventImpl * MakeEvent (void (*f)(U1,U2,U3,U4), T1 a1, T2 a2, T3 a3, T4 a4)
{
// four arg version
class EventFunctionImpl4 : public EventImpl
{
public:
typedef void (*F)(U1, U2, U3, U4);
EventFunctionImpl4 (F function, T1 a1, T2 a2, T3 a3, T4 a4)
: m_function (function),
m_a1 (a1),
m_a2 (a2),
m_a3 (a3),
m_a4 (a4)
{
}
protected:
virtual ~EventFunctionImpl4 ()
{
}
private:
virtual void Notify (void)
{
(*m_function)(m_a1, m_a2, m_a3, m_a4);
}
F m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
typename TypeTraits<T3>::ReferencedType m_a3;
typename TypeTraits<T4>::ReferencedType m_a4;
} *ev = new EventFunctionImpl4 (f, a1, a2, a3, a4);
return ev;
}
template <typename U1, typename U2, typename U3, typename U4, typename U5,
typename T1, typename T2, typename T3, typename T4, typename T5>
EventImpl * MakeEvent (void (*f)(U1,U2,U3,U4,U5), T1 a1, T2 a2, T3 a3, T4 a4, T5 a5)
{
// five arg version
class EventFunctionImpl5 : public EventImpl
{
public:
typedef void (*F)(U1,U2,U3,U4,U5);
EventFunctionImpl5 (F function, T1 a1, T2 a2, T3 a3, T4 a4, T5 a5)
: m_function (function),
m_a1 (a1),
m_a2 (a2),
m_a3 (a3),
m_a4 (a4),
m_a5 (a5)
{
}
protected:
virtual ~EventFunctionImpl5 ()
{
}
private:
virtual void Notify (void)
{
(*m_function)(m_a1, m_a2, m_a3, m_a4, m_a5);
}
F m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
typename TypeTraits<T3>::ReferencedType m_a3;
typename TypeTraits<T4>::ReferencedType m_a4;
typename TypeTraits<T5>::ReferencedType m_a5;
} *ev = new EventFunctionImpl5 (f, a1, a2, a3, a4, a5);
return ev;
}
template <typename U1, typename U2, typename U3, typename U4, typename U5, typename U6,
typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
EventImpl * MakeEvent (void (*f)(U1,U2,U3,U4,U5,U6), T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6)
{
// six arg version
class EventFunctionImpl6 : public EventImpl
{
public:
typedef void (*F)(U1,U2,U3,U4,U5,U6);
EventFunctionImpl6 (F function, T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6)
: m_function (function),
m_a1 (a1),
m_a2 (a2),
m_a3 (a3),
m_a4 (a4),
m_a5 (a5),
m_a6 (a6)
{
}
protected:
virtual ~EventFunctionImpl6 ()
{
}
private:
virtual void Notify (void)
{
(*m_function)(m_a1, m_a2, m_a3, m_a4, m_a5, m_a6);
}
F m_function;
typename TypeTraits<T1>::ReferencedType m_a1;
typename TypeTraits<T2>::ReferencedType m_a2;
typename TypeTraits<T3>::ReferencedType m_a3;
typename TypeTraits<T4>::ReferencedType m_a4;
typename TypeTraits<T5>::ReferencedType m_a5;
typename TypeTraits<T6>::ReferencedType m_a6;
} *ev = new EventFunctionImpl6 (f, a1, a2, a3, a4, a5, a6);
return ev;
}
} // namespace ns3
#endif /* MAKE_EVENT_H */
|