Add a new data key, APP_CONTROL_DATA_LOCATION
[platform/core/api/application.git] / src / app_device.c
1 /*
2  * Copyright (c) 2011 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
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
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <unistd.h>
21 #include <string.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <fcntl.h>
25
26 #include <bundle.h>
27 #include <appcore-common.h>
28 #include <aul.h>
29 #include <dlog.h>
30 #include <vconf.h>
31
32 #include <app_internal.h>
33
34 #ifdef LOG_TAG
35 #undef LOG_TAG
36 #endif
37
38 #define LOG_TAG "CAPI_APPFW_APPLICATION"
39
40 app_device_orientation_e app_get_device_orientation(void)
41 {
42         enum appcore_rm rm;
43         app_device_orientation_e dev_orientation = APP_DEVICE_ORIENTATION_0;
44
45         if (appcore_get_rotation_state(&rm) == 0)
46                 dev_orientation = app_convert_appcore_rm(rm);
47
48         return dev_orientation;
49 }
50