AtmiBrokerSignalHandler.h
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:3k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2010, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. #ifndef _ATMIBROKERSIGNALHANDLER_H
  19. #define _ATMIBROKERSIGNALHANDLER_H
  20. #include <vector>
  21. #include "atmiBrokerCoreMacro.h"
  22. #include "log4cxx/logger.h"
  23. #include "ace/OS_NS_signal.h"
  24. #include "ace/Sig_Handler.h"
  25. extern int default_handlesigs[];
  26. extern int default_blocksigs[];
  27. class BLACKTIE_CORE_DLL AtmiBrokerSignalHandler : public ACE_Event_Handler
  28. {
  29. public:
  30. AtmiBrokerSignalHandler(int* hsignals = default_handlesigs, int* bsignals = default_blocksigs);
  31. virtual ~AtmiBrokerSignalHandler();
  32. virtual int handle_signal(int signum, siginfo_t *, ucontext_t *);
  33. /**
  34.  * Add a handler to be called when one of the signals in the set of handleable signals
  35.  * is raised.
  36.  * @param sigHandler
  37.  *  the function to be called when the signal is raised. If any handler returns -1 then
  38.  *  the process will exit after all handlers have finished
  39.  * @param front
  40.  *  if true the handler is placed at the front of the handler list
  41.  */
  42. void addSignalHandler(int (*sigHandler)(int signum), bool front = false);
  43.     /**
  44.      * If sigRestart is true start blocking signals (ie system calls will not be interrupted
  45.      * by the receipt of a signal). Signals will be blocked until the next call to
  46.      * unblockSignals is made.
  47.      *
  48.      * If sigRestart is false and a signal is received then any system call is interrupted
  49.      * and the condition is notified when the matching call to unblockSignals is made.
  50.      * For XATMI users this translates into tperrno being set to TPEGOTSIG.
  51.      * 
  52.      * @return 0 on success
  53.      */
  54. int blockSignals(bool sigRestart);
  55.     /**
  56.      * Reverses the effect of @see AtmiBrokerSignalHandler::blockSignals.
  57.      * @return
  58.      *  the number of signals delivered since the protected code block was entered or
  59.      *  a negative value if there was an error
  60.      */
  61. int unblockSignals();
  62. private:
  63. sigset_t bss_;
  64. sigset_t hss_;
  65. std::vector<int (*)(int)> handlers_; // the actual signal handlers
  66. int block_sigs(sigset_t*, sigset_t*, bool, bool);
  67. private:
  68. static ACE_Sig_Handler handler_;
  69. static log4cxx::LoggerPtr logger_;
  70. };
  71. #endif // _ATMIBROKERSIGNALHANDLER_H