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
|
static const char *RcsId = "$Id: dserversignal.cpp 15556 2011-02-11 08:25:58Z taurel $\n$Name$";
//+=============================================================================
//
// file : DServerSignal.cpp
//
// description : C++ source for the DServer class and its commands.
// The class is derived from Device. It represents the
// CORBA servant object which will be accessed from the
// network. All commands which can be executed on a
// DServer object are implemented in this file.
//
// project : TANGO
//
// author(s) : A.Gotz + E.Taurel
//
// Copyright (C) : 2004,2005,2006,2007,2008,2009,2010,2011
// European Synchrotron Radiation Facility
// BP 220, Grenoble 38043
// FRANCE
//
// This file is part of Tango.
//
// Tango is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Tango 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Tango. If not, see <http://www.gnu.org/licenses/>.
//
// $Revision: 15556 $
//
// $Log$
// Revision 3.16 2010/09/09 13:45:22 taurel
// - Add year 2010 in Copyright notice
//
// Revision 3.15 2009/01/21 12:49:04 taurel
// - Change CopyRights for 2009
//
// Revision 3.14 2008/10/06 15:01:09 taurel
// - Changed the licensing info from GPL to LGPL
//
// Revision 3.13 2008/10/03 06:52:31 taurel
// - Add some licensing info in each files
//
// Revision 3.12 2008/04/04 14:25:02 jensmeyer
// Added the necessary signal definitions for FreeBSD __freebsd__
//
// Revision 3.11 2008/03/27 16:25:00 jensmeyer
// Changed errno definition for Windows.
//
// Revision 3.10 2008/02/28 12:29:31 jensmeyer
// Added signal definitions for MacOSX (__darwin__).
//
// Revision 3.9 2007/04/20 14:40:33 taurel
// - Ported to Windows 64 bits x64 architecture
//
// Revision 3.8 2007/04/16 14:56:36 taurel
// - Added 3 new attributes data types (DevULong, DevULong64 and DevState)
// - Ported to omniORB4.1
// - Increased the MAX_TRANSFER_SIZE to 256 MBytes
// - Added a new filterable field in the archive event
//
// Revision 3.7 2005/05/09 15:34:11 taurel
// - Fix deadlock when read_attribute_no_cache try to start attribute polling
// - Signal management for Sun
//
// Revision 3.6 2005/04/15 11:34:07 taurel
// - Changes to support Tango on 64 bits computer
// - Support for Linux 2.6 kernel with NPTL (Signal management)
//
// Revision 3.5 2005/01/13 08:29:05 taurel
// - Merge trunk with Release_5_0 from brach Release_5_branch
//
// Revision 3.4.2.1 2004/08/19 07:44:59 taurel
// - Replace server low level database access call by Database class method call
// - Split device monitor in 3 : 1 to protect harware access, 1 to protect cache access and one mutex for device black box
//
// Revision 3.4 2004/07/07 08:40:11 taurel
//
// - Fisrt commit after merge between Trunk and release 4 branch
// - Add EventData copy ctor, asiignement operator and dtor
// - Add Database and DeviceProxy::get_alias() method
// - Add AttributeProxy ctor from "device_alias/attribute_name"
// - Exception thrown when subscribing two times for exactly yhe same event
//
// Revision 3.3 2003/07/03 07:40:51 taurel
// - Change in Tango IDL file : Implement a new way to tranfer data for read_attribute and write_attribute CORBA operation
// - Handle this new IDL release in DeviceProxy class
// - New exception methods in DeviceAttribute class
// - New way to get data out of DeviceAttribute object
// - Fix bugs in DeviceProxy copy constructor and assignement operator
// - Change some method names in DeviceDataHistory and DeviceAttributeHistory classes
// - Change the implementation of the DeviceProxy::write_attribute() method to avoid DeviceAttribute copying
// - Clean-up how a server is killed via a CTRL-C or a dserver device kill command
// - Add a server_cleanup() method in the Util class
// - Win32 : Update debug menu in the server graphical window to support logging feature
// - Win32 : Display library CVS tag in the "Help->About" sub-window
//
// Revision 3.2.2.4 2004/05/17 15:26:48 taurel
// - Add SA_RESTART flag when signals are installed using sigaction()
//
// Revision 3.2.2.3 2004/03/09 16:36:36 taurel
// - Added HP aCC port (thanks to Claudio from Elettra)
// - Some last small bugs fixes
//
// Revision 3.2.2.2 2004/01/20 08:32:37 taurel
// -First commit after merge with the event branch and work on the AttributeProxy class
// - Fix bug in the stream "clear()" method usage when used with gcc 3.3
//
// Revision 3.2.2.1 2003/09/30 11:50:43 taurel
// Add some changes foreseen for release 4.1 and already implemented on
// the trunck into this release 4.0 branch
//
// Revision 3.2 2003/05/28 14:55:09 taurel
// Add the include (conditionally) of the include files generated by autoconf
//
// Revision 3.1 2003/05/16 08:46:16 taurel
// Many changes for release 3.0.1. The most important ones are :
// - Timeout are backs
// - Multiple db servers (change in TANGO_HOST syntax)
// - Added methods to print DeviceData, DeviceDataHistory, DeviceAttribute and DeviceAttributeHistory instances
// - Attributes name stored in blackbox
// - Remove check if a class is created without any device
// - It's now possible to create a DeviceProxy from its alias name
// - Command, attribute names are case insensitive
// - Change parameters of some DeviceProxy logging methods
// - Change parameters of DeviceProxy asynchronous replies calls
// - New serialization model in device server (no serialization model)
// - Win32 (2000) device server service does not exit at loggoff anymore
// - Miscellaneous bug fixes
//
// Revision 3.0 2003/03/25 16:43:21 taurel
// Many changes for Tango release 3.0 including
// - Added full logging features
// - Added asynchronous calls
// - Host name of clients now stored in black-box
// - Three serialization model in DS
// - Fix miscellaneous bugs
// - Ported to gcc 3.2
// - Added ApiUtil::cleanup() and destructor methods
// - Some internal cleanups
// - Change the way how TangoMonitor class is implemented. It's a recursive
// mutex
//
// Revision 2.9 2003/01/09 12:03:16 taurel
// - Ported to gcc 3.2
// - Added ApiUtil::cleanup() and ApiUtil::~ApiUtil() methods
// - Replace some ORB * by ORB_ptr
// - Use CORBA::ORB::is_nil() instead of comparing to NULL
//
// Revision 2.8 2002/12/16 12:07:19 taurel
// No change in code at all but only forgot th emost important line in
// list of updates in the previous release :
// - Change underlying ORB from ORBacus to omniORB
//
// Revision 2.7 2002/12/16 10:16:21 taurel
// - New method get_device_list() in Util class
// - Util::get_class_list takes DServer device into account
// - Util::get_device_by_name() takes DServer device into account
// - Util::get_device_list_by_class() takes DServer device into account
// - New parameter to the attribute::set_value() method to enable CORBA to free
// memory allocated for the attribute
//
// Revision 2.6 2002/10/17 07:43:06 taurel
// Fix bug in history stored by the polling thread :
// - We need one copy of the attribute data to build an history!!! It is true
// also for command which return data created by the DeviceImpl::create_xxx
// methods. Chnage in pollring.cpp/pollring.h/dserverpoll.cpp/pollobj.cpp
// and pollobj.h
//
// Revision 2.5 2002/10/15 11:27:19 taurel
// Fix bugs in device.cpp file :
// - Protect the state and status CORBA attribute with the device monitor
// Add the "TgLibVers" string as a #define in tango_config.h
//
// Revision 2.4 2002/08/12 15:06:54 taurel
// Several big fixes and changes
// - Remove HP-UX specific code
// - Fix bug in polling alogorithm which cause the thread to enter an infinite
// loop (pollthread.cpp)
// - For bug for Win32 device when trying to set attribute config
// (attribute.cpp)
//
// Revision 2.3 2002/07/02 15:22:24 taurel
// Miscellaneous small changes/bug fixes for Tango CPP release 2.1.0
// - classes reference documentation now generated using doxygen instead of doc++
// - A little file added to the library which summarizes version number.
// The RCS/CVS "ident" command will now tells you that release library x.y.z is composed
// by C++ client classes set release a.b and C++ server classes set release c.d
// - Fix incorrect field setting for DevFailed exception re-thrown from a CORBA exception
// - It's now not possible to poll the Init command
// - It's now possible to define a default class doc. per control system
// instance (using property)
// - The test done to check if attribute value has been set before it is
// returned to caller is done only if the attribute quality is set to VALID
// - The JTCInitialize object is now stored in the Util
// - Windows specific : The tango.h file now also include winsock.h
//
// Revision 2.2 2002/04/30 10:50:41 taurel
// Don't check alarm on attribute if attribute quality factor is INVALID
//
// Revision 2.1 2002/04/29 12:24:03 taurel
// Fix bug in attribute::set_value method and on the check against min and max value when writing attributes
//
// Revision 2.0 2002/04/09 14:45:10 taurel
// See Tango WEB pages for list of changes
//
// Revision 1.6 2001/10/08 09:03:13 taurel
// See tango WEB pages for list of changes
//
// Revision 1.5 2001/07/04 12:27:10 taurel
// New methods re_throw_exception(). Read_attributes supports AllAttr mnemonic A new add_attribute()method in DeviceImpl class New way to define attribute properties New pattern to prevent full re-compile For multi-classes DS, it is now possible to use the Util::get_device_by_name() method in device constructor Adding << operator ovebloading Fix devie CORBA ref. number when device constructor sends an excep.
//
// Revision 1.4 2001/05/04 09:28:13 taurel
// Fix bugs in DServer::restart() method and in Util::get_device_by_name() method
//
// Revision 1.3 2001/03/30 08:03:45 taurel
// Fix bugs in attributes. For linux, add signal_handler in its own thread, change the way to kill server. For all system, change DevRestart philosophy.
//
// Revision 1.2 2001/03/09 08:20:16 taurel
// Fix bug in the MultiClassAttribute::init_class_attribute() method. Also remove the DbErr_DeviceNotDefined define.
//
// Revision 1.1.1.1 2001/02/27 08:46:21 taurel
// Imported sources
//
// Revision 1.3 2000/04/13 10:40:41 taurel
// Added attribute support
//
// Revision 1.2 2000/02/04 11:00:15 taurel
// Just update revision number
//
// Revision 1.1.1.1 2000/02/04 10:58:28 taurel
// Imported sources
//
//-=============================================================================
#if HAVE_CONFIG_H
#include <ac_config.h>
#endif
#include <tango.h>
#include <new>
#include <dserversignal.h>
#ifndef _TG_WINDOWS_
extern int errno;
#endif
namespace Tango
{
DServerSignal *DServerSignal::_instance = NULL;
DevSigAction DServerSignal::reg_sig[_NSIG];
string DServerSignal::sig_name[_NSIG];
#ifdef _TG_WINDOWS_
HANDLE DServerSignal::win_ev = NULL;
int DServerSignal::win_signo = 0;
#endif
//+----------------------------------------------------------------------------
//
// method : DServerSignal::Instance()
//
// description : Instance method for DServerSignal object. This class is
// a singleton and this method creates the object the
// first time it is called or simply returns a pointer
// to the already created object for all the other calls.
//
//-----------------------------------------------------------------------------
DServerSignal *DServerSignal::instance()
{
if (_instance == NULL)
{
try
{
_instance = new DServerSignal();
}
catch (bad_alloc)
{
throw;
}
}
return _instance;
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::DServerSignal()
//
// description : constructor for DServerSignal object. As this class is
// a singleton, this method is protected
//
//-----------------------------------------------------------------------------
DServerSignal::DServerSignal():TangoMonitor("signal")
{
cout4 << "Entering DServerSignal constructor" << endl;
//
// Set array of signal name
//
#ifdef _TG_WINDOWS_
sig_name[SIGINT] = "SIGINT";
sig_name[SIGILL] = "SIGILL";
sig_name[SIGFPE] = "SIGFPE";
sig_name[SIGSEGV] = "SIGSEGV";
sig_name[SIGTERM] = "SIGTERM";
sig_name[SIGBREAK] = "SIGBREAK";
sig_name[SIGABRT] = "SIGABRT";
#else
sig_name[SIGHUP] = "SIGHUP";
sig_name[SIGINT] = "SIGINT";
sig_name[SIGQUIT] = "SIGQUIT";
sig_name[SIGILL] = "SIGILL";
sig_name[SIGTRAP] = "SIGTRAP";
sig_name[SIGABRT] = "SIGABRT";
sig_name[SIGFPE] = "SIGFPE";
sig_name[SIGKILL] = "SIGKILL";
sig_name[SIGBUS] = "SIGBUS";
sig_name[SIGSEGV] = "SIGSEGV";
sig_name[SIGPIPE] = "SIGPIPE";
sig_name[SIGALRM] = "SIGALRM";
sig_name[SIGTERM] = "SIGTERM";
sig_name[SIGUSR1] = "SIGUSR1";
sig_name[SIGUSR2] = "SIGUSR2";
sig_name[SIGCHLD] = "SIGCHLD";
sig_name[SIGVTALRM] = "SIGVTALRM";
sig_name[SIGPROF] = "SIGPROF";
sig_name[SIGIO] = "SIGIO";
sig_name[SIGWINCH] = "SIGWINCH";
sig_name[SIGSTOP] = "SIGSTOP";
sig_name[SIGTSTP] = "SIGTSTP";
sig_name[SIGCONT] = "SIGCONT";
sig_name[SIGTTIN] = "SIGTTIN";
sig_name[SIGTTOU] = "SIGTTOU";
sig_name[SIGURG] = "SIGURG";
sig_name[SIGSYS] = "SIGSYS";
#ifdef linux
sig_name[SIGXCPU] = "SIGXCPU";
sig_name[SIGXFSZ] = "SIGXFSZ";
sig_name[SIGCLD] = "SIGCLD";
sig_name[SIGPWR] = "SIGPWR";
#else
#ifdef sun
sig_name[SIGCLD] = "SIGCLD";
sig_name[SIGPWR] = "SIGPWR";
sig_name[SIGLOST] = "SIGLOST";
sig_name[SIGEMT] = "SIGEMT";
#else
#ifdef __darwin__
sig_name[SIGEMT] = "SIGEMT";
sig_name[SIGINFO] = "SIGINFO";
#else
#ifdef __freebsd__
sig_name[SIGXCPU] = "SIGXCPU";
sig_name[SIGXFSZ] = "SIGXFSZ";
#endif /* __freebsd__ */
#endif /* __darwin__ */
#endif /* sun */
#endif /* linux */
#endif /* _TG_WINDOWS_ */
TangoSys_OMemStream o;
for (long i = 0;i < _NSIG;i++)
{
if (sig_name[i].size() == 0)
{
o << i << ends;
sig_name[i] = o.str();
#if ((defined _TG_WINDOWS_) || (defined __SUNPRO_CC) || (defined GCC_STD))
o.seekp(0);
o.clear();
#else
o.rdbuf()->freeze(false);
#endif
}
}
sig_to_install = false;
sig_to_remove = false;
#ifndef _TG_WINDOWS_
//
// With Solaris/Linux, the SIGINT and SIGQUIT default actions are set to SIG_IGN for
// all processes started in the background (POSIX requirement). Signal SIGINT is used by
// Tango in its signal management, reset the default action to default
//
struct sigaction sa;
sa.sa_flags = 0;
sa.sa_handler = SIG_DFL;
sigemptyset(&sa.sa_mask);
if (sigaction(SIGINT,&sa,NULL) == -1)
cerr << "DServerSignal::DServerSignal --> Can't reset default action for SIGINT to SIG_DFL" << endl;
if (sigaction(SIGQUIT,&sa,NULL) == -1)
cerr << "DServerSignal::DServerSignal --> Can't reset default action for SIGQUIT to SIG_DFL" << endl;
//
// Block signals in thread other than the thread dedicated to signal
//
sigset_t sigs_to_block;
sigemptyset(&sigs_to_block);
sigfillset(&sigs_to_block);
sigdelset(&sigs_to_block,SIGABRT);
sigdelset(&sigs_to_block,SIGKILL);
sigdelset(&sigs_to_block,SIGILL);
sigdelset(&sigs_to_block,SIGTRAP);
sigdelset(&sigs_to_block,SIGIOT);
sigdelset(&sigs_to_block,SIGFPE);
sigdelset(&sigs_to_block,SIGBUS);
sigdelset(&sigs_to_block,SIGSEGV);
sigdelset(&sigs_to_block,SIGSYS);
sigdelset(&sigs_to_block,SIGPIPE);
sigdelset(&sigs_to_block,SIGSTOP);
sigdelset(&sigs_to_block,SIGTSTP);
#if (defined __linux)
sigdelset(&sigs_to_block,SIGUSR1);
sigdelset(&sigs_to_block,SIGUSR2);
#endif
#ifdef sun
sigdelset(&sigs_to_block,SIGEMT);
sigprocmask(SIG_BLOCK,&sigs_to_block,NULL);
#endif
sigprocmask(SIG_BLOCK,&sigs_to_block,NULL);
#else /* _TG_WINDOWS_ */
win_ev = CreateEvent(NULL,FALSE,FALSE,NULL);
register_handler(SIGINT);
register_handler(SIGTERM);
register_handler(SIGABRT);
if (Util::_service == false)
register_handler(SIGBREAK);
#endif /* _TG_WINDOWS_ */
//
// Start the thread dedicated to signal
//
sig_th = new ThSig(this);
sig_th->start();
cout4 << "leaving DServerSignal constructor" << endl;
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::register_class_signal()
//
// description : method to register a signal handler at the class
// level
//
// in : long signo - Signal number
// DeviceClass *cl_ptr - Pointer to device class object
//
//-----------------------------------------------------------------------------
#if !(defined __linux)
void DServerSignal::register_class_signal(long signo,DeviceClass *cl_ptr)
#else
void DServerSignal::register_class_signal(long signo,bool handler,DeviceClass *cl_ptr)
#endif
{
//
// Check signal validity
//
if ((signo < 1) || (signo >= _NSIG))
{
TangoSys_OMemStream o;
o << "Signal number " << signo << " out of range" << ends;
Except::throw_exception((const char *)"API_SignalOutOfRange",
o.str(),
(const char *)"DServerSignal::register_class_signal");
}
if (auth_signal(signo) == false)
{
TangoSys_OMemStream o;
o << "Signal " << sig_name[signo] << "is not authorized with your OS" << ends;
Except::throw_exception((const char *)"API_SignalOutOfRange",
o.str(),
(const char *)"DServerSignal::register_class_signal");
}
#if (defined __linux)
if ((auto_signal(signo) == true) && (handler == true))
{
TangoSys_OMemStream o;
o << "Signal " << sig_name[signo] << "is not authorized using your own handler" << ends;
Except::throw_exception((const char *)"API_SignalOutOfRange",
o.str(),
(const char *)"DServerSignal::register_class_signal");
}
#endif
//
// If nothing is registered for this signal, install the OS signal handler
//
bool installed = false;
if (auto_signal(signo) == false)
{
if ((reg_sig[signo].registered_devices.empty() == true) &&
(reg_sig[signo].registered_classes.empty() == true))
{
#if !(defined __linux)
register_handler(signo);
#else
register_handler(signo,handler);
#endif
installed = true;
}
}
//
// Check if class is already registered for this signal. If it is already done,
// leave method. Otherwise, record class pointer
//
vector<DeviceClass *>::iterator f = find_class(signo,cl_ptr);
if (f == reg_sig[signo].registered_classes.end())
{
reg_sig[signo].registered_classes.push_back(cl_ptr);
#if (defined __linux)
reg_sig[signo].own_handler = handler;
#endif
}
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::find_class
//
// description : method to check if a class is already registered for a
// signal. If it is true, this method returns in which
// element of the vector the class is registered
//
// in : long signo - Signal number
// DeviceClass *cl_ptr - Pointer to device class object
//
//-----------------------------------------------------------------------------
vector<DeviceClass *>::iterator DServerSignal::find_class(long signo,DeviceClass *cl_ptr)
{
vector<DeviceClass *>::iterator p;
for (p = reg_sig[signo].registered_classes.begin();p < reg_sig[signo].registered_classes.end();p++)
{
if ((*p) == cl_ptr)
break;
}
return p;
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::register_dev_signal()
//
// description : method to register a signal handler at the device
// level
//
// in : long signo - Signal number
// DeviceImpl *dev_ptr - Pointer to device object
//
//-----------------------------------------------------------------------------
#if !(defined __linux)
void DServerSignal::register_dev_signal(long signo,DeviceImpl *dev_ptr)
#else
void DServerSignal::register_dev_signal(long signo,bool handler,DeviceImpl *dev_ptr)
#endif
{
//
// Check signal validity
//
if ((signo < 1) || (signo >= _NSIG))
{
TangoSys_OMemStream o;
o << "Signal number " << signo << " out of range" << ends;
Except::throw_exception((const char *)"API_SignalOutOfRange",
o.str(),
(const char *)"DServerSignal::register_dev_signal");
}
if (auth_signal(signo) == false)
{
TangoSys_OMemStream o;
o << "Signal " << sig_name[signo] << "is not authorized with your OS" << ends;
Except::throw_exception((const char *)"API_SignalOutOfRange",
o.str(),
(const char *)"DServerSignal::register_dev_signal");
}
#if (defined __linux)
if ((auto_signal(signo) == true) && (handler == true))
{
TangoSys_OMemStream o;
o << "Signal " << sig_name[signo] << "is not authorized using your own handler" << ends;
Except::throw_exception((const char *)"API_SignalOutOfRange",
o.str(),
(const char *)"DServerSignal::register_class_signal");
}
#endif
//
// If nothing is registered for this signal, install the OS signal handler
//
bool installed = false;
if (auto_signal(signo) == false)
{
if ((reg_sig[signo].registered_devices.empty() == true) &&
(reg_sig[signo].registered_classes.empty() == true))
{
#if !(defined __linux)
register_handler(signo);
#else
register_handler(signo,handler);
#endif
installed = true;
}
}
//
// Check if devices is already registered for this signal. If it is already done,
// leave method. Otherwise, record class pointer
//
vector<DeviceImpl *>::iterator f = find_device(signo,dev_ptr);
if (f == reg_sig[signo].registered_devices.end())
{
reg_sig[signo].registered_devices.push_back(dev_ptr);
#if (defined __linux)
reg_sig[signo].own_handler = handler;
#endif
}
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::find_device
//
// description : method to check if a device is already registered for a
// signal. If it is true, this method returns in which
// element of the vector the device is registered
//
// in : long signo - Signal number
// DeviceImpl *dev_ptr - Pointer to device object
//
//-----------------------------------------------------------------------------
vector<DeviceImpl *>::iterator DServerSignal::find_device(long signo,DeviceImpl *dev_ptr)
{
vector<DeviceImpl *>::iterator p;
for (p = reg_sig[signo].registered_devices.begin();p < reg_sig[signo].registered_devices.end();p++)
{
if ((*p) == dev_ptr)
break;
}
return p;
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::unregister_class_signal()
//
// description : method to unregister a signal handler at the class
// level
//
// in : long signo - Signal number
// DeviceClass *cl_ptr - Pointer to device class object
//
//-----------------------------------------------------------------------------
void DServerSignal::unregister_class_signal(long signo,DeviceClass *cl_ptr)
{
//
// Check signal validity
//
if ((signo < 1) || (signo >= _NSIG))
{
TangoSys_OMemStream o;
o << "Signal number " << signo << " out of range" << ends;
Except::throw_exception((const char *)"API_SignalOutOfRange",
o.str(),
(const char *)"DServerSignal::register_proc_signal");
}
//
// Check if class is already registered for this signal. If it is already done,
// leave method. Otherwise, record class pointer
//
vector<DeviceClass *>::iterator f = find_class(signo,cl_ptr);
if (f == reg_sig[signo].registered_classes.end())
return;
else
reg_sig[signo].registered_classes.erase(f);
//
// If nothing is registered for this signal, unregister the OS signal handler
// and (eventually) the event handler
//
if (auto_signal(signo) == false)
{
if ((reg_sig[signo].registered_classes.empty() == true) &&
(reg_sig[signo].registered_devices.empty() == true))
unregister_handler(signo);
}
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::unregister_dev_signal()
//
// description : method to unregister a signal handler at the class
// level
//
// in : long signo - Signal number
// DeviceImpl *dev_ptr - Pointer to device object
//
//-----------------------------------------------------------------------------
void DServerSignal::unregister_dev_signal(long signo,DeviceImpl *dev_ptr)
{
//
// Check signal validity
//
if ((signo < 1) || (signo >= _NSIG))
{
TangoSys_OMemStream o;
o << "Signal number " << signo << " out of range" << ends;
Except::throw_exception((const char *)"API_SignalOutOfRange",
o.str(),
(const char *)"DServerSignal::register_proc_signal");
}
//
// Check if device is already registered for this signal. If yes, remove it.
// Otherwise, leave method
//
vector<DeviceImpl *>::iterator f = find_device(signo,dev_ptr);
if (f == reg_sig[signo].registered_devices.end())
return;
else
reg_sig[signo].registered_devices.erase(f);
//
// If nothing is registered for this signal, unregister the OS signal handler
// and eventually the event handler
//
if (auto_signal(signo) == false)
{
if ((reg_sig[signo].registered_classes.empty() == true) &&
(reg_sig[signo].registered_devices.empty() == true))
{
unregister_handler(signo);
}
}
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::unregister_dev_signal()
//
// description : method to unregister a signal handler at the device
// level for all signals
//
// in : DeviceImpl *dev_ptr - Pointer to device object
//
//-----------------------------------------------------------------------------
void DServerSignal::unregister_dev_signal(DeviceImpl *dev_ptr)
{
long i;
for (i = 0;i < _NSIG;i++)
{
//
// Check if device is registered for this signal. If yes, remove it.
// Otherwise, go to next signal
//
vector<DeviceImpl *>::iterator f = find_device(i,dev_ptr);
if (f == reg_sig[i].registered_devices.end())
continue;
else
reg_sig[i].registered_devices.erase(f);
//
// If nothing is registered for this signal, unregister the OS signal handler
//
if (auto_signal(i) == false)
{
if ((reg_sig[i].registered_classes.empty() == true) &&
(reg_sig[i].registered_devices.empty() == true))
unregister_handler(i);
}
}
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::unregister_class_signal()
//
// description : method to unregister a signal handler at the class
// level for all signals
//
// in : DeviceImpl *cl_ptr - Pointer to device class object
//
//-----------------------------------------------------------------------------
void DServerSignal::unregister_class_signal(DeviceClass *cl_ptr)
{
long i;
for (i = 0;i < _NSIG;i++)
{
//
// Check if classes is registered for this signal. If yes, remove it.
// Otherwise, go to next signal
//
vector<DeviceClass *>::iterator f = find_class(i,cl_ptr);
if (f == reg_sig[i].registered_classes.end())
continue;
else
reg_sig[i].registered_classes.erase(f);
//
// If nothing is registered for this signal, unregister the OS signal handler
//
if (auto_signal(i) == false)
{
if ((reg_sig[i].registered_classes.empty() == true) &&
(reg_sig[i].registered_devices.empty() == true))
unregister_handler(i);
}
}
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::register_handler()
//
// description : method to register in the OS the main signal handler
// for a given signal
//
// in : long signo - Signal number
//
//-----------------------------------------------------------------------------
#if !(defined __linux)
void DServerSignal::register_handler(long signo)
#else
void DServerSignal::register_handler(long signo,bool handler)
#endif
{
cout4 << "Installing OS signal handler for signal " << sig_name[signo] << endl;
#ifdef _TG_WINDOWS_
if (::signal(signo, DServerSignal::main_sig_handler) == SIG_ERR)
{
TangoSys_OMemStream o;
o << "Can't install signal " << signo << ". OS error = " << errno << ends;
Except::throw_exception((const char *)"API_CantInstallSignal",
o.str(),
(const char *)"DServerSignal::register_handler");
}
#else
#ifdef sun
//
// For Solaris, a signal is correctly managed by thread if its not ignored.
// Install a dummy signal handler if the requested signal is one signal with
// default action is to ignore signal. These signals are SIGCHLD, SIGPWR,
// SIGWINCH, SIGURG, SIGCONT and SIGFREEZE
//
if (ign_signal(signo) == true)
{
struct sigaction sa;
sa.sa_flags = SA_RESTART;
sa.sa_handler = DServerSignal::main_sig_handler;
sigemptyset(&sa.sa_mask);
if (sigaction((int)signo,&sa,0) == -1)
{
TangoSys_OMemStream o;
o << "Can't install signal " << signo << ". OS error = " << errno << ends;
Except::throw_exception((const char *)"API_CantInstallSignal",
o.str(),
(const char *)"DServerSignal::register_handler");
}
}
#endif
#if (defined __linux)
if (handler == true)
{
sigset_t sigs_to_unblock;
sigemptyset(&sigs_to_unblock);
sigaddset(&sigs_to_unblock,signo);
if (pthread_sigmask(SIG_UNBLOCK,&sigs_to_unblock,NULL) != 0)
{
TangoSys_OMemStream o;
o << "Can't install signal " << signo << ". OS error = " << errno << ends;
Except::throw_exception((const char *)"API_CantInstallSignal",
o.str(),
(const char *)"DServerSignal::register_handler");
}
struct sigaction sa;
sa.sa_flags = SA_RESTART;
sa.sa_handler = DServerSignal::main_sig_handler;
sigemptyset(&sa.sa_mask);
if (sigaction((int)signo,&sa,0) == -1)
{
TangoSys_OMemStream o;
o << "Can't install signal " << signo << ". OS error = " << errno << ends;
Except::throw_exception((const char *)"API_CantInstallSignal",
o.str(),
(const char *)"DServerSignal::register_handler");
}
}
else
{
#endif
{
omni_mutex_lock sy(*this);
while(sig_to_install == true)
{
wait();
}
sig_to_install = true;
inst_sig = signo;
}
pthread_kill(sig_th->my_thread,SIGINT);
#if (defined __linux)
}
#endif
#endif
}
//+----------------------------------------------------------------------------
//
// method : DServerSignal::unregister_handler()
//
// description : method to unregister from the OS the main signal handler
// for a given signal
//
// in : long signo - Signal number
//
//-----------------------------------------------------------------------------
void DServerSignal::unregister_handler(long signo)
{
cout4 << "Removing OS signal handler for signal " << sig_name[signo] << endl;
#ifdef _TG_WINDOWS_
if (::signal(signo, SIG_DFL) == SIG_ERR)
{
TangoSys_OMemStream o;
o << "Can't install signal " << signo << ". OS error = " << errno << ends;
Except::throw_exception((const char *)"API_CantInstallSignal",
o.str(),
(const char *)"DServerSignal::register_handler");
}
#else
#ifdef sun
if (ign_signal(signo) == true)
{
struct sigaction sa;
sa.sa_flags = 0;
sa.sa_handler = SIG_DFL;
sigemptyset(&sa.sa_mask);
if (sigaction((int)signo,&sa,0) == -1)
{
TangoSys_OMemStream o;
o << "Can't install signal " << signo << ". OS error = " << errno << ends;
Except::throw_exception((const char *)"API_CantInstallSignal",
o.str(),
(const char *)"DServerSignal::register_handler");
}
}
#endif
#if (defined __linux)
if (reg_sig[signo].own_handler == true)
{
struct sigaction sa;
sa.sa_flags = 0;
sa.sa_handler = SIG_DFL;
sigemptyset(&sa.sa_mask);
if (sigaction((int)signo,&sa,0) == -1)
{
TangoSys_OMemStream o;
o << "Can't install signal " << signo << ". OS error = " << errno << ends;
Except::throw_exception((const char *)"API_CantInstallSignal",
o.str(),
(const char *)"DServerSignal::register_handler");
}
}
else
{
#endif
{
omni_mutex_lock sy(*this);
while(sig_to_remove == true)
{
wait();
}
sig_to_remove = true;
rem_sig = signo;
}
pthread_kill(sig_th->my_thread,SIGINT);
#if (defined __linux)
}
#endif
#endif
}
#if (defined __linux)
pid_t DServerSignal::get_sig_thread_pid()
{
omni_mutex_lock syn(*this);
if (sig_th->my_pid == 0)
{
wait(1000);
}
return sig_th->my_pid;
}
#endif
//+----------------------------------------------------------------------------
//
// method : DServerSignal::main_sig_handler()
//
// description : This is a dummy signal handler used only with solaris
// which needs one for signal with a default ignore
// action to work correctly with the sigwait()
// call.
//
// in : int signo - Signal number
//
//-----------------------------------------------------------------------------
#ifndef _TG_WINDOWS_
#if (defined __linux)
void DServerSignal::main_sig_handler(int signo)
{
cout4 << "In main sig_handler !!!!" << endl;
DevSigAction *act_ptr = &(DServerSignal::reg_sig[signo]);
//
// First, execute all the handlers installed at the class level
//
if (act_ptr->registered_classes.empty() == false)
{
long nb_class = act_ptr->registered_classes.size();
for (long j = 0;j < nb_class;j++)
{
act_ptr->registered_classes[j]->signal_handler((long)signo);
}
}
//
// Then, execute all the handlers installed at the device level
//
if (act_ptr->registered_devices.empty() == false)
{
long nb_dev = act_ptr->registered_devices.size();
for (long j = 0;j < nb_dev;j++)
{
act_ptr->registered_devices[j]->signal_handler((long)signo);
}
}
}
#else
void DServerSignal::main_sig_handler(int signo)
{
cout4 << "In main sig_handler !!!!" << endl;
}
#endif
#else
void DServerSignal::main_sig_handler(int signo)
{
cout4 << "In main sig_handler !!!!" << endl;
win_signo = signo;
SetEvent(win_ev);
}
#endif
} // End of Tango namespace
|