eea7ec68e35de4ea1c740a6168847a6ce6d25e68
[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 // CLASS HEADER
19 #include "abort-handler.h"
20
21 namespace Dali
22 {
23 namespace Internal
24 {
25 namespace Adaptor
26 {
27
28 AbortHandler* AbortHandler::gInstance(NULL);
29
30 AbortHandler::AbortHandler(boost::function<void(void)> callback)
31 : mSignalMask( 0 ),
32   mCallback( callback )
33 {
34   DALI_ASSERT_ALWAYS( gInstance == NULL && "Only one instance of abort handler allowed" );
35   gInstance = this;
36
37   memset( mSignalOldHandlers, 0, sizeof(SignalHandlerFuncPtr) * (_NSIG-1));
38 }
39
40 AbortHandler::~AbortHandler()
41 {
42   int signum;
43   for ( signum = 1; signum < _NSIG; signum++ )
44   {
45     if ( mSignalMask & (1 << (signum-1) ) )
46     {
47       // set signals back to default handling
48       signal( signum, mSignalOldHandlers[signum-1] );
49     }
50   }
51   gInstance = NULL;
52 }
53
54 bool AbortHandler::AbortOnSignal( int signum )
55 {
56   bool status = false;
57
58   if ( signum < _NSIG )
59   {
60     SignalHandlerFuncPtr signalHandlerPrevious = signal( signum, &AbortHandler::SignalHandler );
61
62     if ( SIG_ERR != signalHandlerPrevious )
63     {
64       mSignalOldHandlers[signum-1] = signalHandlerPrevious;
65       mSignalMask |= ( 1 << (signum-1) );
66       status = true;
67     }
68   }
69   return status;
70 }
71
72 void AbortHandler::SignalHandler( int signum )
73 {
74   if( gInstance )
75   {
76     if( gInstance->mCallback )
77     {
78       gInstance->mCallback();
79     }
80   }
81 }
82
83 } // Adaptor
84 } // Internal
85 } // Dali