2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
9 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 * @file CalendarAppControlDllEntry.cpp
20 * @brief This is the implementation for the CalendarAppControlDllEntry.cpp class.
23 #include <unique_ptr.h>
24 #include <appsvc/appsvc.h>
26 #include <FBaseSysLog.h>
27 #include <FAppAppControl.h>
28 #include <FBaseColHashMap.h>
30 #include <FBase_StringConverter.h>
31 #include <FIo_FileImpl.h>
32 #include <FSys_EnvironmentImpl.h>
33 #include <FApp_AppControlManager.h>
34 #include <FApp_AppMessageImpl.h>
36 #include <FApp_AppArg.h>
39 using namespace Tizen::App;
40 using namespace Tizen::Base;
41 using namespace Tizen::Base::Collection;
42 using namespace Tizen::Io;
43 using namespace Tizen::System;
50 static const wchar_t CALENDAR_ITEM_TYPE[] = L"http://tizen.org/appcontrol/data/social/item_type";
51 static const wchar_t CALENDAR_RESULT_TYPE[] = L"http://tizen.org/appcontrol/data/social/result_type";
52 static const wchar_t CALENDAR_ITEM_ID[] = L"http://tizen.org/appcontrol/data/social/item_id";
55 result _OSP_EXPORT_ StartAppControl(int req, const String&, const String&, const String*, const String*, const IMap*);
56 result _OSP_EXPORT_ TerminateAppControl(int req);
57 void OnAppControlResult(void*, int, service_result_e, void*);
58 void OnAppControlResultTizen(void*, int, service_result_e, void*);
60 static int __req = -1;
61 static int __processId = -1;
63 static const char __allowedAppControlPickTable[][2][96] =
65 {"osp.appcontrol.CALENDAR", "osp.appcontrol.operation.PICK"},
66 {"osp.appcontrol.provider.calendar", "osp.appcontrol.operation.pick"},
67 {"tizen.calendar", "http://tizen.org/appcontrol/operation/pick"},
68 {"tizen.calendar", "http://tizen.org/appcontrol/operation/social/pick"},
71 static const char __allowedAppControlViewTable[][2][96] =
73 {"osp.appcontrol.CALENDAR", "osp.appcontrol.operation.VIEW"},
74 {"osp.appcontrol.provider.calendar", "osp.appcontrol.operation.view"},
75 {"tizen.calendar", "http://tizen.org/appcontrol/operation/social/view"},
78 static const char __allowedAppControlEditTable[][2][96] =
80 {"tizen.calendar", "http://tizen.org/appcontrol/operation/social/edit"},
83 static const char __allowedAppControlVcsViewTable[][2][96] =
85 {"tizen.calendar", "http://tizen.org/appcontrol/operation/view"},
89 StartAppControl(int req, const String& aId, const String& oId, const String* pUri, const String* pMime, const IMap* pMap)
91 SysLog(NID_APP, "StartAppControl: Entry to Calendar AppControl");
94 bool hasOutput = false;
98 const bool isCalendarVcsView = _AppControlManager::IsAllowedAppControl(__allowedAppControlVcsViewTable, 1, aId, oId);
99 const bool isCalendarView = _AppControlManager::IsAllowedAppControl(__allowedAppControlViewTable, 3, aId, oId);
100 const bool isCalendarPick = _AppControlManager::IsAllowedAppControl(__allowedAppControlPickTable, 4, aId, oId);
101 const bool isCalendarEdit = _AppControlManager::IsAllowedAppControl(__allowedAppControlEditTable, 1, aId, oId);
103 SysTryReturnResult(NID_APP, isCalendarPick || isCalendarEdit || isCalendarView || isCalendarVcsView, E_SYSTEM, "Invalid AppControl entry for (%ls, %ls).", aId.GetPointer(), oId.GetPointer());
108 AppSvcResFn pCb = NULL;
113 const String* pActualUri = pUri;
117 SysLog(NID_APP, "Calendar AppControl : PICK operation.");
122 const String* pItemTypeValue = static_cast<const String*>(pMap->GetValue(String(L"itemType")));
123 if (pItemTypeValue == null || (*pItemTypeValue != L"event" && *pItemTypeValue != L"todo"))
125 SysLog(NID_APP, "itemType is invalid.");
129 const String* pSelectionModeValue = static_cast<const String*>(pMap->GetValue(String(L"selectionMode")));
130 if (pSelectionModeValue == null || (*pSelectionModeValue != L"single" && *pSelectionModeValue != L"multiple"))
132 SysLog(NID_APP, "selectionMode is invalid.");
138 pCb = OnAppControlResultTizen;
139 operation = L"http://tizen.org/appcontrol/operation/social/pick";
141 msg.AddData(CALENDAR_ITEM_TYPE, L"event");
143 const String& tmp = msg.GetValue(L"itemType");
146 msg.AddData(CALENDAR_RESULT_TYPE, tmp);
149 else if (isCalendarEdit)
151 SysLog(NID_APP, "Calendar AppControl : EDIT operation.");
154 pCb = OnAppControlResultTizen;
155 operation = L"http://tizen.org/appcontrol/operation/social/edit";
157 msg.AddData(CALENDAR_ITEM_TYPE, L"event");
159 else if (isCalendarVcsView || isCalendarView)
163 const String& path = msg.GetValue(L"path");
173 SysLog(NID_APP, "Calendar AppControl : VIEW operation (vcs).");
174 operation = L"http://tizen.org/appcontrol/operation/view";
178 SysLog(NID_APP, "Calendar AppControl : VIEW operation.");
180 operation = L"http://tizen.org/appcontrol/operation/social/view";
182 msg.AddData(CALENDAR_ITEM_TYPE, L"event");
184 const String& tmp = msg.GetValue(L"eventId");
187 msg.AddData(CALENDAR_ITEM_ID, tmp);
196 package = _AppControlManager::GetAliasAppId(aId);
197 SysLog(NID_APP, "Actual packageId is %ls.", package.GetPointer());
200 __processId = _AppControlManager::GetInstance()->Launch(msg, package, operation, pActualUri, pMime, pCb, 0);
202 SysTryReturnResult(NID_APP, __processId >= 0, E_SYSTEM, "StartAppControl: Launching Calendar AppControl is failed.");
204 SysLog(NID_APP, "StartAppControl: Launching Calendar AppControl succeeded");
212 _AppControlManager::GetInstance()->FinishAppControl(req, APP_CTRL_RESULT_FAILED, null);
220 TerminateAppControl(int req)
222 if (__processId >= 0)
224 _Aul::TerminateApplicationByPid(__processId);
230 OnAppControlResult(void* b, int requestCode, service_result_e res, void* userData)
233 bundle* pBundle = static_cast<bundle*>(b);
235 HashMap* pResult = null;
239 case SERVICE_RESULT_SUCCEEDED:
241 pResult = new (std::nothrow) HashMap();
242 SysTryCatch(NID_APP, pResult != null, , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Allocation failure.");
244 r = pResult->Construct();
246 const char* pData = appsvc_get_data(pBundle, "itemType");
249 pResult->Add(new (std::nothrow) String(L"itemType"), new (std::nothrow) String(pData));
253 const char** pPaths = null;
254 pPaths = appsvc_get_data_array(pBundle, "path", &count);
258 String* pPathValue = new (std::nothrow) String();
259 SysTryCatch(NID_APP, pPathValue != null, , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Allocation failure.");
261 for (int i = 0; i< count; i++)
265 pPathValue->Append(L";");
268 pPathValue->Append(pPaths[i]);
271 pResult->Add(new (std::nothrow) String(L"path"), pPathValue);
275 case SERVICE_RESULT_FAILED:
278 case SERVICE_RESULT_CANCELED:
279 pResult->Add(*(new (std::nothrow) String(L"Canceled")));
286 _AppControlManager::GetInstance()->FinishAppControl(__req, res, pResult);
293 pResult->RemoveAll(true);
300 OnAppControlResultTizen(void* b, int requestCode, service_result_e res, void* userData)
303 bundle* pBundle = static_cast<bundle*>(b);
305 HashMap* pResult = new (std::nothrow) HashMap();
306 SysTryCatch(NID_APP, pResult != null, , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Allocation failure.");
308 r = pResult->Construct();
310 _AppArg::SetArgMap(pBundle, pResult);
312 _AppControlManager::GetInstance()->FinishAppControl(__req, res, pResult);