tizen 2.3 release
[framework/web/wearable/wrt-plugins-tizen.git] / src / Badge / BadgeManager.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2014 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 #ifndef _BADGE_MANAGER_H_
19 #define _BADGE_MANAGER_H_
20
21 #include <string>
22 #include <vector>
23 #include <map>
24 #include <CallbackUserData.h>
25 #include <JavaScriptCore/JavaScript.h>
26 #include <badge.h>
27 #include "BadgeUtil.h"
28
29 using namespace DeviceAPI::Common;
30
31 namespace DeviceAPI {
32 namespace Badge {
33
34 typedef std::map<std::string, CallbackUserData*> BadgeCallbackMapT;
35
36 class BadgeManager
37 {
38     public:
39         long getBadgeCount(const char* appId);
40         void addChangeListener(BadgeCallbackMapT& badgeCallback);
41         void removeChangeListener(std::vector<std::string>& appIdList);
42         bool checkPermisionForCreatingBadge(const char* appId);
43
44         static BadgeManager* getInstance();
45
46         // internal function
47         void setCallbackToMap(std::string appId, CallbackUserData *callback);
48         CallbackUserData* getCallbackFromMap(std::string appId);
49         void removeCallbackFromMap(std::string appId);
50
51     private:
52         BadgeManager();
53         virtual ~BadgeManager();
54
55         char* _badge_get_pkgname_by_appid(const char* appId);
56         int _badge_is_same_certinfo(const char *caller, const char *pkgname);
57         char* _badge_get_pkgname_by_pid();
58
59         BadgeCallbackMapT mBadgeCallbacks;
60
61 };
62
63 }
64 }
65
66 #endif
67
68