change usb control process name to usb-server
[framework/system/system-server.git] / ss_usb_handler.c
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
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 <pmapi.h>
19 #include <vconf.h>
20 #include <sysman.h>
21
22 #include "ss_log.h"
23 #include "ss_device_plugin.h"
24 #include "ss_launch.h"
25 #include "include/ss_data.h"
26
27 #define USBCON_EXEC_PATH        PREFIX"/bin/usb-server"
28 #define RETRY                   3
29
30 int ss_usb_init()
31 {
32         int val = -1, i = 0, pid;
33
34         PRT_TRACE("check usb connection");
35         if (plugin_intf->OEM_sys_get_jack_usb_online(&val) == 0) {
36                 if (val==1) {
37                         vconf_set_int(VCONFKEY_SYSMAN_USB_STATUS,
38                                         VCONFKEY_SYSMAN_USB_AVAILABLE);
39                         while (i < RETRY
40                                         && pm_lock_state(LCD_OFF, STAY_CUR_STATE,
41                                                 0) == -1) {
42                                 i++;
43                                 sleep(1);
44                         }
45                         pid = ss_launch_if_noexist(USBCON_EXEC_PATH, NULL);
46                         if (pid < 0) {
47                                 PRT_TRACE_ERR("usb appl launching failed\n");
48                                 return -1;
49                         }
50                 }
51                 else if (val==0)
52                         vconf_set_int(VCONFKEY_SYSMAN_USB_STATUS,VCONFKEY_SYSMAN_USB_DISCONNECTED);
53         }
54
55         return 0;
56 }