Skip to content

Latest commit

 

History

History
84 lines (73 loc) · 3.13 KB

usb_moded-appsync.h

File metadata and controls

84 lines (73 loc) · 3.13 KB
 
Mar 22, 2011
Mar 22, 2011
1
/*
Jul 6, 2018
Jul 6, 2018
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
* Copyright (C) 2010 Nokia Corporation. All rights reserved.
* Copyright (C) 2013-2018 Jolla Ltd.
*
* author: Philippe De Swert <philippe.de-swert@nokia.com>
* author: Philippe De Swert <phdeswer@lumi.maa>
* author: Philippe De Swert <philippedeswert@gmail.com>
* author: Philippe De Swert <philippe.deswert@jollamobile.com>
* author: Simo Piiroinen <simo.piiroinen@jollamobile.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Lesser GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the Lesser GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
Mar 22, 2011
Mar 22, 2011
25
Jul 6, 2018
Jul 6, 2018
26
27
#ifndef USB_MODED_APPSYNC_H_
# define USB_MODED_APPSYNC_H_
Mar 22, 2011
Mar 22, 2011
28
Jul 6, 2018
Jul 6, 2018
29
30
31
/* ========================================================================= *
* Constants
* ========================================================================= */
Mar 22, 2011
Mar 22, 2011
32
Jul 6, 2018
Jul 6, 2018
33
34
# define CONF_DIR_PATH "/etc/usb-moded/run"
# define CONF_DIR_DIAG_PATH "/etc/usb-moded/run-diag"
Mar 22, 2011
Mar 22, 2011
35
Jul 6, 2018
Jul 6, 2018
36
37
38
39
40
41
# define APP_INFO_ENTRY "info"
# define APP_INFO_MODE_KEY "mode"
# define APP_INFO_NAME_KEY "name"
# define APP_INFO_LAUNCH_KEY "launch"
# define APP_INFO_SYSTEMD_KEY "systemd"
# define APP_INFO_POST "post"
Mar 22, 2011
Mar 22, 2011
42
Jul 6, 2018
Jul 6, 2018
43
44
45
/* ========================================================================= *
* Types
* ========================================================================= */
Mar 22, 2011
Mar 22, 2011
46
Mar 28, 2018
Mar 28, 2018
47
48
/** Application activation state
*/
Jul 7, 2016
Jul 7, 2016
49
typedef enum {
Jul 6, 2018
Jul 6, 2018
50
51
52
53
54
55
/** Application is not relevant for the current mode */
APP_STATE_DONTCARE = 0,
/** Application should be started */
APP_STATE_INACTIVE = 1,
/** Application should be stopped when exiting the mode */
APP_STATE_ACTIVE = 2,
Jul 7, 2016
Jul 7, 2016
56
57
} app_state_t;
Jul 6, 2018
Jul 6, 2018
58
59
/**
* keep all the needed info together for launching an app
May 10, 2011
May 10, 2011
60
*/
Mar 22, 2011
Mar 22, 2011
61
62
typedef struct list_elem
{
Jul 6, 2018
Jul 6, 2018
63
64
65
66
67
68
char *name; /**< name of the app to launch */
char *mode; /**< mode in which to launch the app */
char *launch; /**< dbus launch command/address */
app_state_t state; /**< marker to check if the app has started sucessfully */
int systemd; /**< marker to know if we start it with systemd or not */
int post; /**< marker to indicate when to start the app */
Mar 28, 2018
Mar 28, 2018
69
} list_elem;
Mar 22, 2011
Mar 22, 2011
70
Jul 6, 2018
Jul 6, 2018
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* ========================================================================= *
* Prototypes
* ========================================================================= */
/* -- appsync -- */
void appsync_free_appsync_list (void);
void appsync_read_list (int diag);
int appsync_activate_sync (const char *mode);
int appsync_activate_sync_post(const char *mode);
int appsync_mark_active (const gchar *name, int post);
int appsync_stop (gboolean force);
#endif /* USB_MODED_APPSYNC_H_ */