Skip to content

Latest commit

 

History

History
315 lines (292 loc) · 8.97 KB

main.c

File metadata and controls

315 lines (292 loc) · 8.97 KB
 
Feb 17, 2014
Feb 17, 2014
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* Copyright (C) 2013-2014 Jolla Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the 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.
*
*/
#include <syslog.h>
#include <glib-unix.h>
#include "mms_engine.h"
#include "mms_ofono_log.h"
#include "mms_lib_log.h"
#include "mms_lib_util.h"
#include "mms_dispatcher.h"
Apr 17, 2014
Apr 17, 2014
24
25
26
#define RET_OK (0)
#define RET_ERR (1)
Feb 17, 2014
Feb 17, 2014
27
28
29
30
/* Options configurable from the command line */
typedef struct mms_app_options {
GBusType bus_type;
gboolean keep_running;
Feb 18, 2014
Feb 18, 2014
31
char* dir;
Feb 17, 2014
Feb 17, 2014
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
MMSConfig config;
} MMSAppOptions;
/* All known log modules */
static MMSLogModule* mms_app_log_modules[] = {
&mms_log_default,
#define MMS_LIB_LOG_MODULE(m) &(m),
MMS_LIB_LOG_MODULES(MMS_LIB_LOG_MODULE)
MMS_OFONO_LOG_MODULES(MMS_LIB_LOG_MODULE)
#undef MMS_LIB_LOG_MODULE
};
/* Signal handler */
static
gboolean
mms_app_signal(
gpointer arg)
{
GMainLoop* loop = arg;
MMS_INFO("Caught signal, shutting down...");
if (loop) {
g_idle_add((GSourceFunc)g_main_loop_quit, loop);
} else {
exit(0);
}
return FALSE;
}
/* D-Bus event handlers */
static
void
mms_app_bus_acquired(
GDBusConnection* bus,
const gchar* name,
gpointer arg)
{
MMSEngine* engine = arg;
GError* error = NULL;
MMS_DEBUG("Bus acquired, starting...");
if (!mms_engine_register(engine, bus, &error)) {
MMS_ERR("Could not start: %s", MMS_ERRMSG(error));
g_error_free(error);
mms_engine_stop(engine);
}
}
static
void
mms_app_name_acquired(
GDBusConnection* bus,
const gchar* name,
gpointer arg)
{
MMS_DEBUG("Acquired service name '%s'", name);
}
static
void
mms_app_name_lost(
GDBusConnection* bus,
const gchar* name,
gpointer arg)
{
MMSEngine* engine = arg;
MMS_ERR("'%s' service already running or access denied", name);
mms_engine_stop(engine);
}
/* Option parsing callbacks */
static
gboolean
mms_app_option_loglevel(
const gchar* name,
const gchar* value,
gpointer data,
GError** error)
{
return mms_log_parse_option(value, mms_app_log_modules,
G_N_ELEMENTS(mms_app_log_modules), error);
}
static
gboolean
mms_app_option_logtype(
const gchar* name,
const gchar* value,
gpointer data,
GError** error)
{
if (mms_log_set_type(value, MMS_APP_LOG_PREFIX)) {
return TRUE;
} else {
if (error) {
*error = g_error_new(G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
"Invalid log type \'%s\'", value);
}
return FALSE;
}
}
static
gboolean
mms_app_option_verbose(
const gchar* name,
const gchar* value,
gpointer data,
GError** error)
{
mms_log_default.level = MMS_LOGLEVEL_VERBOSE;
return TRUE;
}
Apr 17, 2014
Apr 17, 2014
144
145
146
147
148
/**
* Parses command line and sets up application options. Returns TRUE if
* we should go ahead and run the application, FALSE if we should exit
* immediately.
*/
Feb 17, 2014
Feb 17, 2014
149
150
151
152
153
static
gboolean
mms_app_parse_options(
MMSAppOptions* opt,
int argc,
Apr 17, 2014
Apr 17, 2014
154
155
char* argv[],
int* result)
Feb 17, 2014
Feb 17, 2014
156
157
158
159
{
gboolean ok;
GError* error = NULL;
gboolean session_bus = FALSE;
Apr 17, 2014
Apr 17, 2014
160
161
162
#ifdef MMS_VERSION
gboolean print_version = FALSE;
#endif
Feb 27, 2014
Feb 27, 2014
163
gint size_limit_kb = opt->config.size_limit/1024;
Mar 2, 2014
Mar 2, 2014
164
gdouble megapixels = opt->config.max_pixels / 1000000.0;
Feb 17, 2014
Feb 17, 2014
165
166
167
168
169
170
171
172
173
char* root_dir_help = g_strdup_printf(
"Root directory for MMS files [%s]",
opt->config.root_dir);
char* retry_secs_help = g_strdup_printf(
"Retry period in seconds [%d]",
opt->config.retry_secs);
char* idle_secs_help = g_strdup_printf(
"Inactivity timeout in seconds [%d]",
opt->config.idle_secs);
Feb 27, 2014
Feb 27, 2014
174
175
176
char* size_limit_help = g_strdup_printf(
"Maximum size for outgoing messages [%d]",
size_limit_kb);
Mar 2, 2014
Mar 2, 2014
177
178
179
char* megapixels_help = g_strdup_printf(
"Maximum pixel count for outgoing images [%.1f]",
megapixels);
Feb 17, 2014
Feb 17, 2014
180
181
182
183
184
185
186
187
char* description = mms_log_description(mms_app_log_modules,
G_N_ELEMENTS(mms_app_log_modules));
GOptionContext* options;
GOptionEntry entries[] = {
{ "session", 0, 0, G_OPTION_ARG_NONE, &session_bus,
"Use session bus (default is system)", NULL },
{ "root-dir", 'd', 0, G_OPTION_ARG_FILENAME,
Feb 18, 2014
Feb 18, 2014
188
&opt->dir, root_dir_help, "DIR" },
Feb 17, 2014
Feb 17, 2014
189
190
191
192
{ "retry-secs", 'r', 0, G_OPTION_ARG_INT,
&opt->config.retry_secs, retry_secs_help, "SEC" },
{ "idle-secs", 'i', 0, G_OPTION_ARG_INT,
&opt->config.idle_secs, idle_secs_help, "SEC" },
Feb 27, 2014
Feb 27, 2014
193
194
{ "size-limit", 's', 0, G_OPTION_ARG_INT,
&size_limit_kb, size_limit_help, "KB" },
Mar 2, 2014
Mar 2, 2014
195
196
{ "pix-limit", 'p', 0, G_OPTION_ARG_DOUBLE,
&megapixels, megapixels_help, "MPIX" },
Feb 17, 2014
Feb 17, 2014
197
198
199
200
201
202
203
204
205
206
207
208
{ "keep-running", 'k', 0, G_OPTION_ARG_NONE, &opt->keep_running,
"Keep running after everything is done", NULL },
{ "keep-temp-files", 't', 0, G_OPTION_ARG_NONE,
&opt->config.keep_temp_files,
"Don't delete temporary files", NULL },
{ "attic", 'a', 0, G_OPTION_ARG_NONE,
&opt->config.attic_enabled,
"Store unrecognized push messages in the attic", NULL },
{ "verbose", 'v', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
mms_app_option_verbose, "Be verbose (equivalent to -l=verbose)",
NULL },
{ "log-output", 'o', 0, G_OPTION_ARG_CALLBACK, mms_app_option_logtype,
Mar 2, 2014
Mar 2, 2014
209
"Log output (stdout|syslog|glib) [stdout]", "TYPE" },
Feb 17, 2014
Feb 17, 2014
210
211
{ "log-level", 'l', 0, G_OPTION_ARG_CALLBACK, mms_app_option_loglevel,
"Set log level (repeatable)", "[MODULE:]LEVEL" },
Apr 17, 2014
Apr 17, 2014
212
213
214
215
#ifdef MMS_VERSION
{ "version", 0, 0, G_OPTION_ARG_NONE, &print_version,
"Print program version and exit", NULL },
#endif
Feb 17, 2014
Feb 17, 2014
216
217
218
219
220
221
222
223
224
225
226
{ NULL }
};
options = g_option_context_new("- part of Jolla MMS system");
g_option_context_add_main_entries(options, entries, NULL);
g_option_context_set_description(options, description);
ok = g_option_context_parse(options, &argc, &argv, &error);
g_option_context_free(options);
g_free(root_dir_help);
g_free(retry_secs_help);
g_free(idle_secs_help);
Feb 27, 2014
Feb 27, 2014
227
g_free(size_limit_help);
Mar 2, 2014
Mar 2, 2014
228
g_free(megapixels_help);
Feb 17, 2014
Feb 17, 2014
229
230
g_free(description);
Apr 17, 2014
Apr 17, 2014
231
232
233
234
235
236
237
238
239
240
#ifdef MMS_VERSION
# define MMS_STRING__(x) #x
# define MMS_STRING_(x) MMS_STRING__(x)
if (print_version) {
printf("MMS engine %s\n", MMS_STRING_(MMS_VERSION));
*result = RET_OK;
return FALSE;
} else
#endif
Mar 2, 2014
Mar 2, 2014
241
if (ok) {
Feb 17, 2014
Feb 17, 2014
242
MMS_INFO("Starting");
Mar 2, 2014
Mar 2, 2014
243
244
245
246
247
248
249
250
251
252
if (size_limit_kb >= 0) {
opt->config.size_limit = size_limit_kb * 1024;
} else {
opt->config.size_limit = 0;
}
if (megapixels >= 0) {
opt->config.max_pixels = (int)(megapixels*1000)*1000;
} else {
opt->config.max_pixels = 0;
}
Feb 18, 2014
Feb 18, 2014
253
if (opt->dir) opt->config.root_dir = opt->dir;
Feb 17, 2014
Feb 17, 2014
254
255
256
257
258
259
260
if (session_bus) {
MMS_DEBUG("Attaching to session bus");
opt->bus_type = G_BUS_TYPE_SESSION;
} else {
MMS_DEBUG("Attaching to system bus");
opt->bus_type = G_BUS_TYPE_SYSTEM;
}
Apr 17, 2014
Apr 17, 2014
261
*result = RET_OK;
Feb 17, 2014
Feb 17, 2014
262
263
264
265
return TRUE;
} else {
fprintf(stderr, "%s\n", MMS_ERRMSG(error));
g_error_free(error);
Apr 17, 2014
Apr 17, 2014
266
*result = RET_ERR;
Feb 17, 2014
Feb 17, 2014
267
268
269
270
271
272
return FALSE;
}
}
int main(int argc, char* argv[])
{
Apr 17, 2014
Apr 17, 2014
273
int result = RET_ERR;
Feb 17, 2014
Feb 17, 2014
274
MMSAppOptions opt = {0};
Feb 27, 2014
Feb 27, 2014
275
mms_lib_init(argv[0]);
Feb 17, 2014
Feb 17, 2014
276
277
mms_log_default.name = MMS_APP_LOG_PREFIX;
mms_lib_default_config(&opt.config);
Apr 17, 2014
Apr 17, 2014
278
if (mms_app_parse_options(&opt, argc, argv, &result)) {
Feb 17, 2014
Feb 17, 2014
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
MMSEngine* engine;
unsigned int engine_flags = 0;
if (opt.keep_running) engine_flags |= MMS_ENGINE_FLAG_KEEP_RUNNING;
/* Create engine instance. This may fail */
engine = mms_engine_new(&opt.config, engine_flags,
mms_app_log_modules, G_N_ELEMENTS(mms_app_log_modules));
if (engine) {
guint name_id;
/* Setup main loop */
GMainLoop* loop = g_main_loop_new(NULL, FALSE);
g_unix_signal_add(SIGTERM, mms_app_signal, loop);
g_unix_signal_add(SIGINT, mms_app_signal, loop);
/* Acquire name, don't allow replacement */
name_id = g_bus_own_name(opt.bus_type, MMS_ENGINE_SERVICE,
G_BUS_NAME_OWNER_FLAGS_REPLACE, mms_app_bus_acquired,
mms_app_name_acquired, mms_app_name_lost, engine, NULL);
/* Run the main loop */
mms_engine_run(engine, loop);
/* Cleanup and exit */
g_bus_unown_name(name_id);
g_main_loop_unref(loop);
mms_engine_unref(engine);
}
MMS_INFO("Exiting");
}
if (mms_log_func == mms_log_syslog) {
closelog();
}
Feb 18, 2014
Feb 18, 2014
312
g_free(opt.dir);
Feb 27, 2014
Feb 27, 2014
313
mms_lib_deinit();
Feb 17, 2014
Feb 17, 2014
314
315
return result;
}