Fix issue : fail to make thumbnail
[platform/core/messaging/msg-service.git] / plugin / sms_plugin / include / SmsPluginUAManager.h
1 /*
2  * Copyright (c) 2014 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_PLUGIN_UA_MANAGER_H
18 #define SMS_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 "SmsPluginTypes.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.pMsgMutex()); };
48         void signal()   { cv.signal(); };
49
50         virtual void run();
51
52         static SmsPluginUAManager* pInstance;
53
54         MsgSimpleQ <SMS_REQUEST_INFO_S> smsTranQ;
55
56         MsgMutex mx;
57         MsgCndVar cv;
58 };
59
60 #endif /* SMS_PLUGIN_UA_MANAGER_H */
61