mirror of
https://github.com/weechat/weechat.git
synced 2026-06-26 04:46:37 +02:00
394 lines
9.9 KiB
C
394 lines
9.9 KiB
C
/*
|
|
* Copyright (c) 2003-2008 by FlashCode <flashcode@flashtux.org>
|
|
* See README for License detail, AUTHORS for developers list.
|
|
*
|
|
* This program 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.
|
|
*
|
|
* 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 GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* fifo.c: FIFO pipe plugin for WeeChat remote control */
|
|
|
|
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
#include "../weechat-plugin.h"
|
|
#include "fifo.h"
|
|
#include "fifo-info.h"
|
|
|
|
|
|
WEECHAT_PLUGIN_NAME(FIFO_PLUGIN_NAME);
|
|
WEECHAT_PLUGIN_DESCRIPTION("Fifo plugin for WeeChat");
|
|
WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
|
|
WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION);
|
|
WEECHAT_PLUGIN_WEECHAT_VERSION(WEECHAT_VERSION);
|
|
WEECHAT_PLUGIN_LICENSE("GPL3");
|
|
|
|
struct t_weechat_plugin *weechat_fifo_plugin = NULL;
|
|
#define weechat_plugin weechat_fifo_plugin
|
|
|
|
int fifo_fd = -1;
|
|
struct t_hook *fifo_fd_hook = NULL;
|
|
char *fifo_filename;
|
|
char *fifo_unterminated = NULL;
|
|
|
|
|
|
/*
|
|
* fifo_create: create FIFO pipe for remote control
|
|
* return: 1 if ok
|
|
* 0 if error
|
|
*/
|
|
|
|
int
|
|
fifo_create ()
|
|
{
|
|
int rc, filename_length;
|
|
const char *fifo_option, *weechat_home;
|
|
|
|
rc = 0;
|
|
|
|
fifo_option = weechat_config_get_plugin ("fifo");
|
|
if (!fifo_option)
|
|
{
|
|
weechat_config_set_plugin ("fifo", "on");
|
|
fifo_option = weechat_config_get_plugin ("fifo");
|
|
}
|
|
|
|
weechat_home = weechat_info_get ("weechat_dir", "");
|
|
|
|
if (fifo_option && weechat_home)
|
|
{
|
|
if (weechat_strcasecmp (fifo_option, "on") == 0)
|
|
{
|
|
/* build FIFO filename: "<weechat_home>/weechat_fifo_" + process
|
|
PID */
|
|
if (!fifo_filename)
|
|
{
|
|
filename_length = strlen (weechat_home) + 64;
|
|
fifo_filename = malloc (filename_length);
|
|
snprintf (fifo_filename, filename_length,
|
|
"%s/weechat_fifo_%d",
|
|
weechat_home, (int) getpid());
|
|
}
|
|
|
|
fifo_fd = -1;
|
|
|
|
/* create FIFO pipe, writable for user only */
|
|
if (mkfifo (fifo_filename, 0600) == 0)
|
|
{
|
|
/* open FIFO pipe in read-only, non blockingmode */
|
|
if ((fifo_fd = open (fifo_filename,
|
|
O_RDONLY | O_NONBLOCK)) != -1)
|
|
{
|
|
weechat_printf (NULL,
|
|
_("%s: pipe open"),
|
|
FIFO_PLUGIN_NAME),
|
|
rc = 1;
|
|
}
|
|
else
|
|
weechat_printf (NULL,
|
|
_("%s%s: unable to open pipe (%s) for "
|
|
"reading"),
|
|
weechat_prefix ("error"), FIFO_PLUGIN_NAME,
|
|
fifo_filename);
|
|
}
|
|
else
|
|
weechat_printf (NULL,
|
|
_("%s%s: unable to create pipe for remote "
|
|
"control (%s)"),
|
|
weechat_prefix ("error"), FIFO_PLUGIN_NAME,
|
|
fifo_filename);
|
|
}
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* fifo_remove: remove FIFO pipe
|
|
*/
|
|
|
|
void
|
|
fifo_remove ()
|
|
{
|
|
/* remove fd hook */
|
|
if (fifo_fd_hook)
|
|
{
|
|
weechat_unhook (fifo_fd_hook);
|
|
fifo_fd_hook = NULL;
|
|
}
|
|
|
|
/* close FIFO pipe */
|
|
if (fifo_fd != -1)
|
|
{
|
|
close (fifo_fd);
|
|
fifo_fd = -1;
|
|
}
|
|
|
|
/* remove FIFO from disk */
|
|
if (fifo_filename)
|
|
unlink (fifo_filename);
|
|
|
|
/* remove any unterminated message */
|
|
if (fifo_unterminated)
|
|
{
|
|
free (fifo_unterminated);
|
|
fifo_unterminated = NULL;
|
|
}
|
|
|
|
/* free filename */
|
|
if (fifo_filename)
|
|
{
|
|
free (fifo_filename);
|
|
fifo_filename = NULL;
|
|
}
|
|
|
|
weechat_printf (NULL,
|
|
_("%s: pipe closed"),
|
|
FIFO_PLUGIN_NAME);
|
|
}
|
|
|
|
/*
|
|
* fifo_exec: execute a command/text received by FIFO pipe
|
|
*/
|
|
|
|
void
|
|
fifo_exec (const char *text)
|
|
{
|
|
char *text2, *pos_msg, *pos_buffer, *pos;
|
|
struct t_gui_buffer *ptr_buffer;
|
|
|
|
text2 = strdup (text);
|
|
if (!text2)
|
|
return;
|
|
|
|
pos = NULL;
|
|
ptr_buffer = NULL;
|
|
|
|
/* look for plugin + buffer name at beginning of text
|
|
text may be: "plugin.buffer *text" or "*text" */
|
|
if (text2[0] == '*')
|
|
{
|
|
pos_msg = text2 + 1;
|
|
ptr_buffer = weechat_current_buffer;
|
|
}
|
|
else
|
|
{
|
|
pos_msg = strstr (text2, " *");
|
|
if (!pos_msg)
|
|
{
|
|
weechat_printf (NULL,
|
|
_("%s%s: error, invalid text received on pipe"),
|
|
weechat_prefix ("error"), FIFO_PLUGIN_NAME);
|
|
free (text2);
|
|
return;
|
|
}
|
|
pos_msg[0] = '\0';
|
|
pos_msg += 2;
|
|
|
|
pos_buffer = strchr (text2, '.');
|
|
if (!pos_buffer)
|
|
{
|
|
weechat_printf (NULL,
|
|
_("%s%s: error, invalid text received on pipe"),
|
|
weechat_prefix ("error"), FIFO_PLUGIN_NAME);
|
|
free (text2);
|
|
return;
|
|
}
|
|
pos_buffer[0] = '\0';
|
|
pos_buffer++;
|
|
|
|
if (text2[0] && pos_buffer[0])
|
|
ptr_buffer = weechat_buffer_search (text2, pos_buffer);
|
|
}
|
|
|
|
if (!ptr_buffer)
|
|
{
|
|
weechat_printf (NULL,
|
|
_("%s%s: error, buffer not found for pipe data"),
|
|
weechat_prefix ("error"), FIFO_PLUGIN_NAME);
|
|
free (text2);
|
|
return;
|
|
}
|
|
|
|
weechat_command (ptr_buffer, pos_msg);
|
|
|
|
free (text2);
|
|
}
|
|
|
|
/*
|
|
* fifo_read: read data in FIFO pipe
|
|
*/
|
|
|
|
int
|
|
fifo_read ()
|
|
{
|
|
static char buffer[4096 + 2];
|
|
char *buf2, *pos, *ptr_buf, *next_ptr_buf;
|
|
int num_read;
|
|
|
|
num_read = read (fifo_fd, buffer, sizeof (buffer) - 2);
|
|
if (num_read > 0)
|
|
{
|
|
buffer[num_read] = '\0';
|
|
|
|
buf2 = NULL;
|
|
ptr_buf = buffer;
|
|
if (fifo_unterminated)
|
|
{
|
|
buf2 = malloc (strlen (fifo_unterminated) +
|
|
strlen (buffer) + 1);
|
|
if (buf2)
|
|
{
|
|
strcpy (buf2, fifo_unterminated);
|
|
strcat (buf2, buffer);
|
|
}
|
|
ptr_buf = buf2;
|
|
free (fifo_unterminated);
|
|
fifo_unterminated = NULL;
|
|
}
|
|
|
|
while (ptr_buf && ptr_buf[0])
|
|
{
|
|
next_ptr_buf = NULL;
|
|
pos = strstr (ptr_buf, "\r\n");
|
|
if (pos)
|
|
{
|
|
pos[0] = '\0';
|
|
next_ptr_buf = pos + 2;
|
|
}
|
|
else
|
|
{
|
|
pos = strstr (ptr_buf, "\n");
|
|
if (pos)
|
|
{
|
|
pos[0] = '\0';
|
|
next_ptr_buf = pos + 1;
|
|
}
|
|
else
|
|
{
|
|
fifo_unterminated = strdup (ptr_buf);
|
|
ptr_buf = NULL;
|
|
next_ptr_buf = NULL;
|
|
}
|
|
}
|
|
|
|
if (ptr_buf)
|
|
fifo_exec (ptr_buf);
|
|
|
|
ptr_buf = next_ptr_buf;
|
|
}
|
|
|
|
if (buf2)
|
|
free (buf2);
|
|
}
|
|
else
|
|
{
|
|
if (num_read < 0)
|
|
{
|
|
weechat_printf (NULL,
|
|
_("%s%s: error reading pipe, closing it"),
|
|
weechat_prefix ("error"), FIFO_PLUGIN_NAME);
|
|
fifo_remove ();
|
|
}
|
|
else
|
|
{
|
|
weechat_unhook (fifo_fd_hook);
|
|
fifo_fd_hook = NULL;
|
|
close (fifo_fd);
|
|
fifo_fd = open (fifo_filename, O_RDONLY | O_NONBLOCK);
|
|
if (fifo_fd < 0)
|
|
{
|
|
weechat_printf (NULL,
|
|
_("%s%s: error opening file, closing it"),
|
|
weechat_prefix ("error"), FIFO_PLUGIN_NAME);
|
|
fifo_remove ();
|
|
}
|
|
else
|
|
fifo_fd_hook = weechat_hook_fd (fifo_fd, 1, 0, 0,
|
|
&fifo_read, NULL);
|
|
}
|
|
}
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* fifo_config_cb: fifo config callback (called when fifo option is changed)
|
|
*/
|
|
|
|
int
|
|
fifo_config_cb (void *data, const char *option, const char *value)
|
|
{
|
|
/* make C compiler happy */
|
|
(void) data;
|
|
(void) option;
|
|
|
|
if (weechat_strcasecmp (value, "on") == 0)
|
|
{
|
|
if (fifo_fd < 0)
|
|
fifo_create ();
|
|
}
|
|
else
|
|
{
|
|
if (fifo_fd >= 0)
|
|
fifo_remove ();
|
|
}
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* weechat_plugin_init: initialize fifo plugin
|
|
*/
|
|
|
|
int
|
|
weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
|
|
{
|
|
/* make C compiler happy */
|
|
(void) argc;
|
|
(void) argv;
|
|
|
|
weechat_plugin = plugin;
|
|
|
|
if (fifo_create ())
|
|
fifo_fd_hook = weechat_hook_fd (fifo_fd, 1, 0, 0,
|
|
&fifo_read, NULL);
|
|
|
|
weechat_hook_config ("plugins.var.fifo.fifo", &fifo_config_cb, NULL);
|
|
|
|
fifo_info_init ();
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* weechat_plugin_end: end fifo plugin
|
|
*/
|
|
|
|
int
|
|
weechat_plugin_end (struct t_weechat_plugin *plugin)
|
|
{
|
|
/* make C compiler happy */
|
|
(void) plugin;
|
|
|
|
fifo_remove ();
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|