2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
8 // http://www.apache.org/licenses/LICENSE-2.0
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.
18 * @file FApp_ConditionManagerProxy.cpp
19 * @brief This is the implementation for the _ConditionManagerProxy.cpp class.
25 #include <unique_ptr.h>
27 #include <FBaseErrors.h>
28 #include <FBaseSysLog.h>
29 #include <FIo_IpcClient.h>
31 #include "FApp_ConditionManagerIpcMessages.h"
32 #include "FApp_ConditionManagerProxy.h"
35 using namespace Tizen::Base;
36 using namespace Tizen::Base::Collection;
37 using namespace Tizen::Io;
39 namespace Tizen { namespace App
42 const char CONDITION_MANAGER_IPC_NAME[] = "osp.app.ipcserver.conditionmanager";
44 _ConditionManagerProxy::_ConditionManagerProxy(void)
50 _ConditionManagerProxy::~_ConditionManagerProxy(void)
56 _ConditionManagerProxy::Construct()
58 std::unique_ptr<_IpcClient> pIpcClient(new (std::nothrow) _IpcClient());
59 SysTryReturnResult(NID_APP, pIpcClient.get() != null, E_OUT_OF_MEMORY, "_IpcClient creation failed.");
61 result r = pIpcClient->Construct(CONDITION_MANAGER_IPC_NAME);
62 SysTryReturn(NID_APP, !IsFailed(r), r, r, "[%%s] _IpcClient constructing faliied.", GetErrorMessage(r));
64 __pIpcClient = pIpcClient.release();
70 _ConditionManagerProxy::RegisterAppLaunch(const AppId& appId, const String& condition,
71 const IList* pArguments, AppManager::LaunchOption option)
73 SysTryReturnResult(NID_APP, __pIpcClient != null, E_INVALID_STATE, "__pIpcClient instance must not be null.");
76 result response = E_SUCCESS;
77 const ArrayList* pArrayList = dynamic_cast<const ArrayList*>(pArguments);
81 std::auto_ptr<IPC::Message> pMsg (new (std::nothrow) ConditionManager_RegisterAppLaunch(
82 appId, condition, (pArrayList != null) ? *pArrayList : dummy,
83 static_cast<int>(AppManager::LAUNCH_OPTION_DEFAULT), &response));
84 result r = __pIpcClient->SendRequest(*pMsg.get());
86 SysTryReturn(NID_APP, !IsFailed(r), r, r, "__pIpcClient->SendRequest is failed. (%s)", GetErrorMessage(r));
93 _ConditionManagerProxy::UnregisterAppLaunch(const AppId& appId, const String* pCondition)
95 SysTryReturnResult(NID_APP, __pIpcClient != null, E_INVALID_STATE, "__pIpcClient instance must not be null.");
99 result response = E_SUCCESS;
100 std::auto_ptr<IPC::Message> pMsg (new (std::nothrow) ConditionManager_UnregisterAppLaunch(
101 appId, (pCondition != null) ? *pCondition : L"", &response));
102 result r = __pIpcClient->SendRequest(*pMsg.get());
104 SysTryReturn(NID_APP, !IsFailed(r), r, r, "__pIpcClient->SendRequest is failed. (%s)", GetErrorMessage(r));
110 _ConditionManagerProxy::IsAppLaunchRegistered(const AppId& appId, const String* pCondition) const
112 SysTryReturnResult(NID_APP, __pIpcClient != null, E_INVALID_STATE, "__pIpcClient instance must not be null.");
115 bool isAppLaunchRegistered = false;
116 result exception = E_SYSTEM;
117 std::auto_ptr<IPC::Message> pMsg(new (std::nothrow) ConditionManager_IsAppLaunchRegistered(
118 appId, (pCondition != null) ? *pCondition : L"", &isAppLaunchRegistered, &exception));
119 result r = __pIpcClient->SendRequest(*pMsg.get());
121 SysTryReturn(NID_APP, !IsFailed(r), false, r, "__pIpcClient->SendRequest is failed. (%s)", GetErrorMessage(r));
122 SysTryReturn(NID_APP, !IsFailed(exception), false, exception, "__pIpcClient->SendRequest is failed. (%s)", GetErrorMessage(exception));
124 return isAppLaunchRegistered;