Merge "Fix build errors with GCC4.8." into tizen
[platform/core/uifw/dali-adaptor.git] / adaptors / common / abort-handler.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include "abort-handler.h"
19
20 namespace Dali
21 {
22 namespace Internal
23 {
24 namespace Adaptor
25 {
26
27 AbortHandler* AbortHandler::gInstance(NULL);
28
29 AbortHandler::AbortHandler(boost::function<void(void)> callback)
30 : mSignalMask( 0 ),
31   mCallback( callback )
32 {
33   DALI_ASSERT_ALWAYS( gInstance == NULL && "Only one instance of abort handler allowed" );
34   gInstance = this;
35
36   memset( mSignalOldHandlers, 0, sizeof(SignalHandlerFuncPtr) * (_NSIG-1));
37 }
38
39 AbortHandler::~AbortHandler()
40 {
41   int signum;
42   for ( signum = 1; signum < _NSIG; signum++ )
43   {
44     if ( mSignalMask & (1 << (signum-1) ) )
45     {
46       // set signals back to default handling
47       signal( signum, mSignalOldHandlers[signum-1] );
48     }
49   }
50   gInstance = NULL;
51 }
52
53 bool AbortHandler::AbortOnSignal( int signum )
54 {
55   bool status = false;
56
57   if ( signum < _NSIG )
58   {
59     SignalHandlerFuncPtr signalHandlerPrevious = signal( signum, &AbortHandler::SignalHandler );
60
61     if ( SIG_ERR != signalHandlerPrevious )
62     {
63       mSignalOldHandlers[signum-1] = signalHandlerPrevious;
64       mSignalMask |= ( 1 << (signum-1) );
65       status = true;
66     }
67   }
68   return status;
69 }
70
71 void AbortHandler::SignalHandler( int signum )
72 {
73   if( gInstance )
74   {
75     if( gInstance->mCallback )
76     {
77       gInstance->mCallback();
78     }
79   }
80 }
81
82 } // Adaptor
83 } // Internal
84 } // Dali