Update privilege string, PackageAppInfo for wgt
[platform/framework/native/appfw.git] / src / app / FApp_AppControlEventArg.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 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_AppControlEventArg.cpp
20  * @brief       This is the implementation for the _AppControlEventArg.cpp class.
21  */
22
23 #include <unique_ptr.h>
24
25 #include <FBaseString.h>
26 #include <FBaseColIMap.h>
27 #include <FBaseColHashMap.h>
28 #include <FBaseSysLog.h>
29
30 #include "FApp_AppControlEventArg.h"
31 #include "FApp_AppArg.h"
32
33 using namespace Tizen::Base;
34 using namespace Tizen::Base::Collection;
35
36 namespace Tizen { namespace App
37 {
38
39 _AppControlEventArg::~_AppControlEventArg(void)
40 {
41         SysLog(NID_APP, "Deleting launch argument...");
42         delete __pArg;
43 }
44
45 _NativeAppControlEventArg::_NativeAppControlEventArg(int reqId, int res, const IMap* pArg)
46         : __reqId(reqId)
47         , __result(res)
48         , __pArgs(null)
49 {
50         if (pArg == null)
51         {
52                 return;
53         }
54
55         HashMap* pMap = new (std::nothrow) HashMap(SingleObjectDeleter);
56         SysTryReturnVoidResult(NID_APP, pMap, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Insufficient memory.");
57
58         pMap->Construct();
59
60         std::unique_ptr<IMapEnumerator> pMapEnum(pArg->GetMapEnumeratorN());
61
62         while(pMapEnum->MoveNext() == E_SUCCESS)
63         {
64                 String* pKey = dynamic_cast<String*>(pMapEnum->GetKey());
65                 String* pVal = dynamic_cast<String*>(pMapEnum->GetValue());
66
67                 if (pKey == null || pVal == null)
68                 {
69                         continue;
70                 }
71
72                 pMap->Add(new (std::nothrow) String(*pKey), new (std::nothrow) String(*pVal));
73         }
74
75         __pArgs = pMap;
76
77         return;
78 }
79
80 _NativeAppControlEventArg::~_NativeAppControlEventArg(void)
81 {
82         if (__pArgs)
83         {
84                 SysLog(NID_APP, "Deleting native AppControl argument.");
85                 delete __pArgs;
86         }
87 }
88
89 } } // Tizen::App