merge with master
[framework/osp/app-controls.git] / src / nfc-push-ui-app-control / src / NfcPushUiEntry.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         NfcPushUiEntry.cpp
20 * @brief        This file contains the Tizen application entry point.
21 */
22
23 #include <FBaseSysLog.h>
24 #include "NfcPushUi.h"
25
26 using namespace Tizen::Base;
27 using namespace Tizen::Base::Collection;
28
29 #ifdef __cplusplus
30 extern "C"
31 {
32 #endif // __cplusplus
33
34 _EXPORT_ int OspMain(int argc, char *pArgv[]);
35
36 /**
37  * The entry function of Tizen application called by the operating system.
38  */
39 int
40 OspMain(int argc, char *pArgv[])
41 {
42         result r = E_SUCCESS;
43
44         SysLog(NID_NET_NFC,"Application started.[%d]", argc);
45         ArrayList* pArgs = new ArrayList();
46         pArgs->Construct();
47         for (int i = 0; i < argc; i++)
48         {
49                 pArgs->Add(*(new String(pArgv[i])));
50         }
51
52         r = Tizen::App::UiApp::Execute(NfcPushUiApp::CreateInstance, pArgs);
53         if (IsFailed(r))
54         {
55                 SysLogException(NID_NET_NFC, r, "Application execution failed-[%s].", GetErrorMessage(r));
56                 r &= 0x0000FFFF;
57         }
58
59         pArgs->RemoveAll(true);
60         delete pArgs;
61         SysLog(NID_NET_NFC,"Application finished.");
62
63         return static_cast<int>(r);
64 }
65 #ifdef __cplusplus
66 }
67 #endif // __cplusplus