Merge "Delete checking if strlen() is 0 in ConvertWcsToMbsN()" into tizen_2.1
[platform/framework/native/appfw.git] / src / app / FApp_DataControlManager.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        FApp_DataControlManager.h
20  * @brief       This is the header file for the _DataControlManager class.
21  */
22
23 #ifndef _FAPP_INTERNAL_DATA_CONTROL_MANAGER_H_
24 #define _FAPP_INTERNAL_DATA_CONTROL_MANAGER_H_
25
26 #include <FBaseObject.h>
27 #include <FBaseColHashMap.h>
28 #include <FBaseRtEvent.h>
29
30 namespace Tizen { namespace App
31 {
32
33 class _DataControlRequestInfo
34         : public Tizen::Base::Object
35 {
36 public:
37         _DataControlRequestInfo(Tizen::Base::Runtime::Event* pEvent)
38         {
39                 __pEvent = pEvent;
40         }
41
42         virtual ~_DataControlRequestInfo(void)
43         {
44         }
45
46         Tizen::Base::Runtime::Event* GetEvent(void)
47         {
48                 return __pEvent;
49         }
50 private:
51         _DataControlRequestInfo(void)
52                 : __pEvent(null)
53         {
54         }
55 private:
56         Tizen::Base::Runtime::Event* __pEvent;
57 };
58
59 class _DataControlManager
60         : public Tizen::Base::Object
61 {
62 public:
63         static _DataControlManager* GetInstance(void);
64
65         result AddRequestInfo(Tizen::Base::Integer* pReqId, _DataControlRequestInfo* pReqInfo);
66
67         _DataControlRequestInfo* GetRequestInfo(Tizen::Base::Integer& reqId);
68
69         void RemoveRequestInfo(Tizen::Base::Integer& reqId);
70
71 private:
72         _DataControlManager(void);
73
74         virtual ~_DataControlManager(void);
75
76         static void InitSingleton(void);
77
78         static void DestroySingleton(void);
79
80 private:
81         static _DataControlManager* __pDataControlManagerInstance;
82         Tizen::Base::Collection::HashMap* __pDataControlRequestList;
83
84 }; // _DataControlManager
85
86 }} // Tizen::App
87
88 #endif // _FAPP_INTERNAL_DATA_CONTROL_MANAGER_H_
89