tox-weechat/src/twc.c

80 lines
2.0 KiB
C
Raw Normal View History

2014-09-18 16:55:52 +00:00
/*
* Copyright (c) 2014 Håvard Pettersson <haavard.pettersson@gmail.com>
*
* This file is part of Tox-WeeChat.
*
* Tox-WeeChat 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.
*
* Tox-WeeChat 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
* along with Tox-WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
2014-09-02 11:59:38 +00:00
#include <stdlib.h>
2014-09-02 10:37:00 +00:00
#include <weechat/weechat-plugin.h>
2014-09-28 01:29:34 +00:00
#include "twc-profile.h"
#include "twc-commands.h"
#include "twc-gui.h"
#include "twc-config.h"
#include "twc-completion.h"
#include "twc-sqlite.h"
2014-09-02 11:59:38 +00:00
2014-09-28 01:29:34 +00:00
#include "twc.h"
2014-09-02 11:59:38 +00:00
2014-09-02 10:37:00 +00:00
WEECHAT_PLUGIN_NAME("tox");
WEECHAT_PLUGIN_DESCRIPTION("Tox protocol");
WEECHAT_PLUGIN_AUTHOR("Håvard Pettersson <haavard.pettersson@gmail.com>");
WEECHAT_PLUGIN_VERSION("0.1");
2014-09-18 16:55:52 +00:00
WEECHAT_PLUGIN_LICENSE("GPL3");
2014-09-02 10:37:00 +00:00
2014-09-02 11:59:38 +00:00
struct t_weechat_plugin *weechat_plugin = NULL;
2014-09-02 10:37:00 +00:00
int
2014-09-02 11:59:38 +00:00
weechat_plugin_init(struct t_weechat_plugin *plugin, int argc, char *argv[])
2014-09-02 10:37:00 +00:00
{
2014-09-02 11:59:38 +00:00
weechat_plugin = plugin;
if (twc_sqlite_init() != 0)
{
weechat_printf(NULL,
"%s%s: failed to initialize persistent storage, some "
"data will not be saved",
weechat_prefix("error"), weechat_plugin->name);
}
2014-09-28 01:29:34 +00:00
twc_profile_init();
twc_commands_init();
twc_gui_init();
twc_completion_init();
2014-09-02 11:59:38 +00:00
2014-09-28 01:29:34 +00:00
twc_config_init();
twc_config_read();
// TODO: respect weechat flag for no autoconnect
twc_profile_autoload();
2014-09-13 10:22:26 +00:00
2014-09-02 10:37:00 +00:00
return WEECHAT_RC_OK;
}
int
weechat_plugin_end(struct t_weechat_plugin *plugin)
{
2014-09-28 01:29:34 +00:00
twc_config_write();
twc_profile_free_all();
2014-09-02 16:47:08 +00:00
twc_sqlite_end();
2014-09-02 10:37:00 +00:00
return WEECHAT_RC_OK;
}
2014-09-28 01:29:34 +00:00