1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/src/profanity.c

269 lines
6.6 KiB
C
Raw Normal View History

/*
2012-02-20 20:07:38 +00:00
* profanity.c
2019-11-13 11:11:05 +00:00
* vim: expandtab:ts=4:sts=4:sw=4
2012-02-20 20:07:38 +00:00
*
2019-01-22 10:31:45 +00:00
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
2020-01-03 18:52:31 +00:00
* Copyright (C) 2019 - 2020 Michael Vetter <jubalh@iodoru.org>
*
2012-02-20 20:07:38 +00:00
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity 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 GNU General Public License
2016-07-24 00:14:49 +00:00
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
2012-02-20 20:07:38 +00:00
*
* In addition, as a special exception, the copyright holders give permission to
* link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two.
*
* You must obey the GNU General Public License in all respects for all of the
* code used other than OpenSSL. If you modify file(s) with this exception, you
* may extend this exception to your version of the file(s), but you are not
* obligated to do so. If you do not wish to do so, delete this exception
* statement from your version. If you delete this exception statement from all
* source files in the program, then also delete it here.
*
2012-02-20 20:07:38 +00:00
*/
2016-03-31 20:05:02 +00:00
#include "config.h"
2016-03-31 20:05:02 +00:00
#ifdef HAVE_GIT_VERSION
#include "gitversion.h"
#endif
#ifdef HAVE_GTK
2016-07-24 14:10:58 +00:00
#include "ui/tray.h"
#endif
2016-07-24 14:43:51 +00:00
2013-01-02 20:27:37 +00:00
#include <locale.h>
2013-02-02 20:55:58 +00:00
#include <signal.h>
2012-08-26 00:50:50 +00:00
#include <stdlib.h>
#include <string.h>
2012-02-09 22:24:03 +00:00
#include <glib.h>
2013-02-02 20:55:58 +00:00
#include "profanity.h"
2016-07-24 14:43:51 +00:00
#include "common.h"
#include "log.h"
2016-07-24 15:22:15 +00:00
#include "config/files.h"
2016-07-24 14:43:51 +00:00
#include "config/tlscerts.h"
2013-02-02 21:59:29 +00:00
#include "config/accounts.h"
#include "config/preferences.h"
#include "config/theme.h"
2016-07-24 14:43:51 +00:00
#include "config/tlscerts.h"
#include "config/scripts.h"
2016-05-22 22:59:52 +00:00
#include "command/cmd_defs.h"
2016-07-24 14:43:51 +00:00
#include "plugins/plugins.h"
#include "event/client_events.h"
#include "ui/ui.h"
#include "ui/window_list.h"
#include "xmpp/resource.h"
2016-07-24 15:06:19 +00:00
#include "xmpp/session.h"
2016-07-24 14:43:51 +00:00
#include "xmpp/xmpp.h"
#include "xmpp/muc.h"
#include "xmpp/chat_session.h"
#include "xmpp/chat_state.h"
2016-07-24 13:55:32 +00:00
#include "xmpp/contact.h"
2016-07-24 14:08:47 +00:00
#include "xmpp/roster_list.h"
2016-07-24 14:43:51 +00:00
2016-03-31 20:05:02 +00:00
#ifdef HAVE_LIBOTR
2014-02-12 22:19:21 +00:00
#include "otr/otr.h"
#endif
2016-07-24 14:43:51 +00:00
2016-03-31 20:05:02 +00:00
#ifdef HAVE_LIBGPGME
2015-03-22 00:12:14 +00:00
#include "pgp/gpg.h"
#endif
2016-07-24 14:43:51 +00:00
#ifdef HAVE_OMEMO
#include "omemo/omemo.h"
#endif
static void _init(char *log_level, char *config_file, char *log_file, char *theme_name);
static void _shutdown(void);
static void _connect_default(const char * const account);
2015-01-30 23:28:02 +00:00
static gboolean cont = TRUE;
static gboolean force_quit = FALSE;
2012-11-30 21:26:28 +00:00
2012-07-24 22:19:48 +00:00
void
prof_run(char *log_level, char *account_name, char *config_file, char *log_file, char *theme_name)
2012-02-09 22:50:19 +00:00
{
_init(log_level, config_file, log_file, theme_name);
plugins_on_start();
_connect_default(account_name);
ui_update();
2015-01-15 13:22:54 +00:00
log_info("Starting main event loop");
2015-01-15 20:46:15 +00:00
2016-07-24 15:06:19 +00:00
session_init_activity();
char *line = NULL;
while(cont && !force_quit) {
log_stderr_handler();
2016-07-24 15:06:19 +00:00
session_check_autoaway();
2015-01-27 22:13:09 +00:00
2015-11-01 18:38:21 +00:00
line = inp_readline();
if (line) {
2015-06-16 21:59:08 +00:00
ProfWin *window = wins_get_current();
cont = cmd_process_input(window, line);
free(line);
line = NULL;
} else {
cont = TRUE;
}
2015-01-27 22:13:09 +00:00
2016-03-31 20:05:02 +00:00
#ifdef HAVE_LIBOTR
2015-01-27 22:13:09 +00:00
otr_poll();
#endif
plugins_run_timed();
2015-01-27 22:13:09 +00:00
notify_remind();
session_process_events();
2015-12-31 01:48:04 +00:00
iq_autoping_check();
2015-01-27 22:13:09 +00:00
ui_update();
#ifdef HAVE_GTK
2016-04-17 23:07:15 +00:00
tray_update();
#endif
2012-02-09 22:50:19 +00:00
}
}
2015-01-11 20:20:17 +00:00
void
prof_set_quit(void)
{
force_quit = TRUE;
}
static void
2015-10-26 00:52:33 +00:00
_connect_default(const char *const account)
{
2015-06-16 21:59:08 +00:00
ProfWin *window = wins_get_current();
if (account) {
2015-06-16 21:59:08 +00:00
cmd_execute_connect(window, account);
} else {
char *pref_connect_account = prefs_get_string(PREF_CONNECT_ACCOUNT);
if (pref_connect_account) {
2015-06-16 21:59:08 +00:00
cmd_execute_connect(window, pref_connect_account);
prefs_free_string(pref_connect_account);
}
}
}
static void
_init(char *log_level, char *config_file, char *log_file, char *theme_name)
{
2013-01-02 20:27:37 +00:00
setlocale(LC_ALL, "");
// ignore SIGPIPE
signal(SIGPIPE, SIG_IGN);
2015-01-02 04:52:01 +00:00
signal(SIGINT, SIG_IGN);
signal(SIGTSTP, SIG_IGN);
signal(SIGWINCH, ui_sigwinch_handler);
2016-04-11 18:13:18 +00:00
if (pthread_mutex_init(&lock, NULL) != 0) {
log_error("Mutex init failed");
exit(1);
}
2016-04-11 18:13:18 +00:00
pthread_mutex_lock(&lock);
2016-07-24 15:22:15 +00:00
files_create_directories();
2013-02-03 00:27:43 +00:00
log_level_t prof_log_level = log_level_from_string(log_level);
prefs_load(config_file);
log_init(prof_log_level, log_file);
log_stderr_init(PROF_LEVEL_ERROR);
2016-03-31 20:05:02 +00:00
if (strcmp(PACKAGE_STATUS, "development") == 0) {
#ifdef HAVE_GIT_VERSION
log_info("Starting Profanity (%sdev.%s.%s)...", PACKAGE_VERSION, PROF_GIT_BRANCH, PROF_GIT_REVISION);
#else
2016-03-31 20:05:02 +00:00
log_info("Starting Profanity (%sdev)...", PACKAGE_VERSION);
#endif
2013-01-27 21:32:10 +00:00
} else {
2016-03-31 20:05:02 +00:00
log_info("Starting Profanity (%s)...", PACKAGE_VERSION);
2013-01-27 21:32:10 +00:00
}
chat_log_init();
2013-05-04 23:16:10 +00:00
groupchat_log_init();
2012-12-02 01:29:42 +00:00
accounts_load();
if (theme_name) {
theme_init(theme_name);
} else {
char *theme = prefs_get_string(PREF_THEME);
theme_init(theme);
prefs_free_string(theme);
}
2012-11-26 00:01:34 +00:00
ui_init();
2016-05-05 23:53:03 +00:00
session_init();
cmd_init();
log_info("Initialising contact list");
muc_init();
tlscerts_init();
scripts_init();
2016-03-31 20:05:02 +00:00
#ifdef HAVE_LIBOTR
2013-08-13 21:23:47 +00:00
otr_init();
2015-03-22 00:12:14 +00:00
#endif
2016-03-31 20:05:02 +00:00
#ifdef HAVE_LIBGPGME
2015-03-22 00:12:14 +00:00
p_gpg_init();
#endif
#ifdef HAVE_OMEMO
omemo_init();
2013-08-13 21:23:47 +00:00
#endif
2012-10-27 17:15:26 +00:00
atexit(_shutdown);
plugins_init();
#ifdef HAVE_GTK
2016-04-17 23:07:15 +00:00
tray_init();
#endif
2015-11-01 18:56:34 +00:00
inp_nonblocking(TRUE);
ui_resize();
}
static void
_shutdown(void)
{
2016-09-22 20:42:00 +00:00
if (prefs_get_boolean(PREF_WINTITLE_SHOW)) {
if (prefs_get_boolean(PREF_WINTITLE_GOODBYE)) {
ui_goodbye_title();
} else {
ui_clear_win_title();
}
}
2016-05-05 22:51:49 +00:00
jabber_conn_status_t conn_status = connection_get_status();
if (conn_status == JABBER_CONNECTED) {
cl_ev_disconnect();
}
#ifdef HAVE_GTK
tray_shutdown();
#endif
2016-05-05 23:53:03 +00:00
session_shutdown();
plugins_on_shutdown();
muc_close();
2013-01-20 00:35:40 +00:00
caps_close();
2016-03-31 20:05:02 +00:00
#ifdef HAVE_LIBOTR
2014-06-26 22:55:57 +00:00
otr_shutdown();
#endif
2016-03-31 20:05:02 +00:00
#ifdef HAVE_LIBGPGME
p_gpg_close();
#endif
#ifdef HAVE_OMEMO
omemo_close();
2014-06-26 22:55:57 +00:00
#endif
chat_log_close();
theme_close();
accounts_close();
tlscerts_close();
log_stderr_close();
log_close();
plugins_shutdown();
cmd_uninit();
ui_close();
prefs_close();
}