04f92f67c48764f94d60b7c854ebba2cbb236344
[platform/core/messaging/msg-service.git] / plugin / sms_cdma_plugin / include / SmsCdmaPluginUAManager.h
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd. All rights reserved
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 #ifndef SMS_CDMA_PLUGIN_UA_MANAGER_H
18 #define SMS_CDMA_PLUGIN_UA_MANAGER_H
19
20
21 /*==================================================================================================
22                                          INCLUDE FILES
23 ==================================================================================================*/
24 #include "MsgMutex.h"
25 #include "MsgQueue.h"
26 #include "MsgThread.h"
27 #include "SmsCdmaPluginTypes.h"
28
29
30 /*==================================================================================================
31                                      CLASS DEFINITIONS
32 ==================================================================================================*/
33 class SmsPluginUAManager : public MsgThread
34 {
35 public:
36         static SmsPluginUAManager* instance();
37
38         /* virtual void start(); */
39
40         void addReqEntity(sms_request_info_s *request);
41
42 private:
43         SmsPluginUAManager();
44         ~SmsPluginUAManager();
45         void lock()     { mx.lock(); };
46         void unlock()   { mx.unlock(); };
47         void wait()     { cv.wait(mx.pMutex()); };
48         void signal()   { cv.signal(); };
49
50         virtual void run();
51
52         static SmsPluginUAManager* pInstance;
53
54         bool bRunning;
55
56         MsgSimpleQ <sms_request_info_s> smsTranQ;
57
58         Mutex mx;
59         CndVar cv;
60 };
61
62 #endif /* SMS_CDMA_PLUGIN_UA_MANAGER_H */