2016-01-24 20:36:41 +01:00
|
|
|
/* vi:set ts=8 sts=4 sw=4:
|
|
|
|
*
|
|
|
|
* VIM - Vi IMproved by Bram Moolenaar
|
|
|
|
*
|
|
|
|
* Do ":help uganda" in Vim to read copying and usage conditions.
|
|
|
|
* Do ":help credits" in Vim to see a list of people who contributed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Implements communication through a socket or any file handle.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "vim.h"
|
|
|
|
|
|
|
|
#if defined(FEAT_CHANNEL) || defined(PROTO)
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/* TRUE when netbeans is running with a GUI. */
|
|
|
|
#ifdef FEAT_GUI
|
|
|
|
# define CH_HAS_GUI (gui.in_use || gui.starting)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Note: when making changes here also adjust configure.in. */
|
|
|
|
#ifdef WIN32
|
|
|
|
/* WinSock API is separated from C API, thus we can't use read(), write(),
|
|
|
|
* errno... */
|
|
|
|
# define SOCK_ERRNO errno = WSAGetLastError()
|
|
|
|
# undef ECONNREFUSED
|
|
|
|
# define ECONNREFUSED WSAECONNREFUSED
|
2016-02-05 22:36:41 +01:00
|
|
|
# undef EWOULDBLOCK
|
|
|
|
# define EWOULDBLOCK WSAEWOULDBLOCK
|
2016-01-26 23:30:18 +01:00
|
|
|
# ifdef EINTR
|
|
|
|
# undef EINTR
|
|
|
|
# endif
|
|
|
|
# define EINTR WSAEINTR
|
|
|
|
# define sock_write(sd, buf, len) send(sd, buf, len, 0)
|
|
|
|
# define sock_read(sd, buf, len) recv(sd, buf, len, 0)
|
|
|
|
# define sock_close(sd) closesocket(sd)
|
|
|
|
# define sleep(t) Sleep(t*1000) /* WinAPI Sleep() accepts milliseconds */
|
|
|
|
#else
|
|
|
|
# include <netdb.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# ifdef HAVE_LIBGEN_H
|
|
|
|
# include <libgen.h>
|
|
|
|
# endif
|
|
|
|
# define SOCK_ERRNO
|
|
|
|
# define sock_write(sd, buf, len) write(sd, buf, len)
|
|
|
|
# define sock_read(sd, buf, len) read(sd, buf, len)
|
|
|
|
# define sock_close(sd) close(sd)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FEAT_GUI_W32
|
|
|
|
extern HWND s_hwnd; /* Gvim's Window handle */
|
|
|
|
#endif
|
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
|
|
|
|
/* Log file opened with ch_logfile(). */
|
|
|
|
static FILE *log_fd = NULL;
|
|
|
|
|
|
|
|
void
|
|
|
|
ch_logfile(FILE *file)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
if (log_fd != NULL)
|
|
|
|
fclose(log_fd);
|
|
|
|
log_fd = file;
|
|
|
|
if (log_fd != NULL)
|
|
|
|
fprintf(log_fd, "==== start log session ====\n");
|
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead(char *what, channel_T *ch)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
if (ch != NULL)
|
|
|
|
fprintf(log_fd, "%son %d: ", what, ch->ch_id);
|
2016-02-13 17:04:46 +01:00
|
|
|
else
|
|
|
|
fprintf(log_fd, "%s: ", what);
|
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel_T *ch, char *msg)
|
2016-02-05 21:04:08 +01:00
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead("", ch);
|
2016-02-13 17:04:46 +01:00
|
|
|
fputs(msg, log_fd);
|
|
|
|
fflush(log_fd);
|
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_logn(channel_T *ch, char *msg, int nr)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead("", ch);
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, msg, nr);
|
|
|
|
fflush(log_fd);
|
|
|
|
}
|
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_logs(channel_T *ch, char *msg, char *name)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead("", ch);
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, msg, name);
|
|
|
|
fflush(log_fd);
|
|
|
|
}
|
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_logsn(channel_T *ch, char *msg, char *name, int nr)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead("", ch);
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, msg, name, nr);
|
|
|
|
fflush(log_fd);
|
|
|
|
}
|
|
|
|
}
|
2016-02-05 22:36:41 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_error(channel_T *ch, char *msg)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead("ERR ", ch);
|
2016-02-13 17:04:46 +01:00
|
|
|
fputs(msg, log_fd);
|
|
|
|
fflush(log_fd);
|
|
|
|
}
|
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_errorn(channel_T *ch, char *msg, int nr)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead("ERR ", ch);
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, msg, nr);
|
|
|
|
fflush(log_fd);
|
|
|
|
}
|
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_errors(channel_T *ch, char *msg, char *arg)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead("ERR ", ch);
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, msg, arg);
|
|
|
|
fflush(log_fd);
|
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-05 22:36:41 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
# undef PERROR
|
|
|
|
# define PERROR(msg) (void)emsg3((char_u *)"%s: %s", \
|
|
|
|
(char_u *)msg, (char_u *)strerror_win32(errno))
|
|
|
|
|
|
|
|
static char *
|
|
|
|
strerror_win32(int eno)
|
|
|
|
{
|
|
|
|
static LPVOID msgbuf = NULL;
|
|
|
|
char_u *ptr;
|
|
|
|
|
|
|
|
if (msgbuf)
|
|
|
|
LocalFree(msgbuf);
|
|
|
|
FormatMessage(
|
|
|
|
FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL,
|
|
|
|
eno,
|
|
|
|
MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT),
|
|
|
|
(LPTSTR) &msgbuf,
|
|
|
|
0,
|
|
|
|
NULL);
|
|
|
|
/* chomp \r or \n */
|
|
|
|
for (ptr = (char_u *)msgbuf; *ptr; ptr++)
|
|
|
|
switch (*ptr)
|
|
|
|
{
|
|
|
|
case '\r':
|
|
|
|
STRMOVE(ptr, ptr + 1);
|
|
|
|
ptr--;
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
if (*(ptr + 1) == '\0')
|
|
|
|
*ptr = '\0';
|
|
|
|
else
|
|
|
|
*ptr = ' ';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return msgbuf;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
/*
|
|
|
|
* The list of all allocated channels.
|
|
|
|
*/
|
|
|
|
static channel_T *first_channel = NULL;
|
|
|
|
static int next_ch_id = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a new channel. The refcount is set to 1.
|
|
|
|
* The channel isn't actually used until it is opened.
|
|
|
|
* Returns NULL if out of memory.
|
|
|
|
*/
|
|
|
|
channel_T *
|
|
|
|
add_channel(void)
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
int which;
|
|
|
|
channel_T *channel = (channel_T *)alloc_clear((int)sizeof(channel_T));
|
2016-02-13 23:23:53 +01:00
|
|
|
|
|
|
|
if (channel == NULL)
|
|
|
|
return NULL;
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
channel->ch_id = next_ch_id++;
|
|
|
|
ch_log(channel, "Opening channel\n");
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
#ifdef CHANNEL_PIPES
|
2016-02-14 19:13:43 +01:00
|
|
|
for (which = CHAN_SOCK; which <= CHAN_IN; ++which)
|
|
|
|
#else
|
|
|
|
which = CHAN_SOCK;
|
2016-02-13 17:04:46 +01:00
|
|
|
#endif
|
2016-02-14 19:13:43 +01:00
|
|
|
{
|
|
|
|
channel->ch_pfd[which].ch_fd = (sock_T)-1;
|
2016-01-26 23:30:18 +01:00
|
|
|
#ifdef FEAT_GUI_X11
|
2016-02-14 19:13:43 +01:00
|
|
|
channel->ch_pfd[which].ch_inputHandler = (XtInputId)NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GUI_GTK
|
2016-02-14 19:13:43 +01:00
|
|
|
channel->ch_pfd[which].ch_inputHandler = 0;
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GUI_W32
|
2016-02-14 19:13:43 +01:00
|
|
|
channel->ch_pfd[which].ch_inputHandler = -1;
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
2016-02-14 19:13:43 +01:00
|
|
|
}
|
2016-02-13 23:23:53 +01:00
|
|
|
|
|
|
|
channel->ch_timeout = 2000;
|
|
|
|
|
|
|
|
if (first_channel != NULL)
|
|
|
|
{
|
|
|
|
first_channel->ch_prev = channel;
|
|
|
|
channel->ch_next = first_channel;
|
|
|
|
}
|
|
|
|
first_channel = channel;
|
|
|
|
|
|
|
|
channel->ch_refcount = 1;
|
|
|
|
return channel;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-02-05 22:36:41 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Close a channel and free all its resources.
|
2016-02-13 17:04:46 +01:00
|
|
|
*/
|
2016-02-13 23:23:53 +01:00
|
|
|
void
|
|
|
|
channel_free(channel_T *channel)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_close(channel);
|
|
|
|
if (channel->ch_next != NULL)
|
|
|
|
channel->ch_next->ch_prev = channel->ch_prev;
|
|
|
|
if (channel->ch_prev == NULL)
|
|
|
|
first_channel = channel->ch_next;
|
2016-02-13 17:04:46 +01:00
|
|
|
else
|
2016-02-13 23:23:53 +01:00
|
|
|
channel->ch_prev->ch_next = channel->ch_next;
|
|
|
|
vim_free(channel);
|
2016-01-24 20:36:41 +01:00
|
|
|
}
|
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
|
|
|
|
static channel_T *
|
|
|
|
channel_from_id(int id)
|
|
|
|
{
|
|
|
|
channel_T *channel;
|
|
|
|
|
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
|
|
|
if (channel->ch_id == id)
|
|
|
|
return channel;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
#if defined(FEAT_GUI) || defined(PROTO)
|
2016-02-13 23:23:53 +01:00
|
|
|
|
|
|
|
#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
|
|
|
|
static void
|
|
|
|
channel_read_netbeans(int id)
|
|
|
|
{
|
|
|
|
channel_T *channel = channel_from_id(id);
|
|
|
|
|
|
|
|
if (channel == NULL)
|
|
|
|
ch_errorn(NULL, "Channel %d not found", id);
|
|
|
|
else
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_read(channel, -1, "messageFromNetbeans");
|
2016-02-13 23:23:53 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
|
|
|
* Read a command from netbeans.
|
|
|
|
*/
|
|
|
|
#ifdef FEAT_GUI_X11
|
|
|
|
static void
|
|
|
|
messageFromNetbeans(XtPointer clientData,
|
|
|
|
int *unused1 UNUSED,
|
|
|
|
XtInputId *unused2 UNUSED)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_read_netbeans((int)(long)clientData);
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FEAT_GUI_GTK
|
|
|
|
static void
|
|
|
|
messageFromNetbeans(gpointer clientData,
|
|
|
|
gint unused1 UNUSED,
|
|
|
|
GdkInputCondition unused2 UNUSED)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_read_netbeans((int)(long)clientData);
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_gui_register_one(channel_T *channel, int which)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
|
|
|
# ifdef FEAT_GUI_X11
|
2016-02-14 19:13:43 +01:00
|
|
|
/* Tell notifier we are interested in being called
|
|
|
|
* when there is input on the editor connection socket. */
|
|
|
|
if (channel->ch_pfd[which].ch_inputHandler == (XtInputId)NULL)
|
|
|
|
channel->ch_pfd[which].ch_inputHandler = XtAppAddInput(
|
|
|
|
(XtAppContext)app_context,
|
|
|
|
channel->ch_pfd[which].ch_fd,
|
|
|
|
(XtPointer)(XtInputReadMask + XtInputExceptMask),
|
|
|
|
messageFromNetbeans,
|
|
|
|
(XtPointer)(long)channel->ch_id);
|
2016-01-26 23:30:18 +01:00
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_GTK
|
2016-02-14 19:13:43 +01:00
|
|
|
/* Tell gdk we are interested in being called when there
|
|
|
|
* is input on the editor connection socket. */
|
|
|
|
if (channel->ch_pfd[which].ch_inputHandler == 0)
|
|
|
|
channel->ch_pfd[which].ch_inputHandler = gdk_input_add(
|
2016-02-14 23:02:34 +01:00
|
|
|
(gint)channel->ch_pfd[which].ch_fd,
|
|
|
|
(GdkInputCondition)
|
|
|
|
((int)GDK_INPUT_READ + (int)GDK_INPUT_EXCEPTION),
|
2016-02-14 19:13:43 +01:00
|
|
|
messageFromNetbeans,
|
|
|
|
(gpointer)(long)channel->ch_id);
|
2016-01-26 23:30:18 +01:00
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_W32
|
2016-02-14 19:13:43 +01:00
|
|
|
/* Tell Windows we are interested in receiving message when there
|
|
|
|
* is input on the editor connection socket. */
|
|
|
|
if (channel->ch_pfd[which].ch_inputHandler == -1)
|
|
|
|
channel->ch_pfd[which].ch_inputHandler = WSAAsyncSelect(
|
|
|
|
channel->ch_pfd[which].ch_fd,
|
|
|
|
s_hwnd, WM_NETBEANS, FD_READ);
|
2016-01-26 23:30:18 +01:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
2016-02-14 19:13:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
channel_gui_register(channel_T *channel)
|
|
|
|
{
|
|
|
|
if (!CH_HAS_GUI)
|
|
|
|
return;
|
|
|
|
|
2016-02-14 23:02:34 +01:00
|
|
|
if (channel->CH_SOCK >= 0)
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_gui_register_one(channel, CHAN_SOCK);
|
|
|
|
# ifdef CHANNEL_PIPES
|
2016-02-14 23:02:34 +01:00
|
|
|
if (channel->CH_OUT >= 0)
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_gui_register_one(channel, CHAN_OUT);
|
2016-02-14 23:02:34 +01:00
|
|
|
if (channel->CH_ERR >= 0)
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_gui_register_one(channel, CHAN_ERR);
|
|
|
|
# endif
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
|
|
|
/*
|
2016-01-26 23:30:18 +01:00
|
|
|
* Register any of our file descriptors with the GUI event handling system.
|
|
|
|
* Called when the GUI has started.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_gui_register_all(void)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_T *channel;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_gui_register(channel);
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-02-14 23:02:34 +01:00
|
|
|
channel_gui_unregister(channel_T *channel)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-14 23:02:34 +01:00
|
|
|
int which;
|
|
|
|
|
|
|
|
#ifdef CHANNEL_PIPES
|
|
|
|
for (which = CHAN_SOCK; which < CHAN_IN; ++which)
|
|
|
|
#else
|
|
|
|
which = CHAN_SOCK;
|
|
|
|
#endif
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-14 23:02:34 +01:00
|
|
|
# ifdef FEAT_GUI_X11
|
|
|
|
if (channel->ch_pfd[which].ch_inputHandler != (XtInputId)NULL)
|
|
|
|
{
|
|
|
|
XtRemoveInput(channel->ch_pfd[which].ch_inputHandler);
|
|
|
|
channel->ch_pfd[which].ch_inputHandler = (XtInputId)NULL;
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_GTK
|
2016-02-14 23:02:34 +01:00
|
|
|
if (channel->ch_pfd[which].ch_inputHandler != 0)
|
|
|
|
{
|
|
|
|
gdk_input_remove(channel->ch_pfd[which].ch_inputHandler);
|
|
|
|
channel->ch_pfd[which].ch_inputHandler = 0;
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_W32
|
2016-02-14 23:02:34 +01:00
|
|
|
if (channel->ch_pfd[which].ch_inputHandler == 0)
|
|
|
|
{
|
|
|
|
WSAAsyncSelect(channel->ch_pfd[which].ch_fd, s_hwnd, 0, 0);
|
|
|
|
channel->ch_pfd[which].ch_inputHandler = -1;
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
2016-02-14 23:02:34 +01:00
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
2016-02-13 17:04:46 +01:00
|
|
|
* Open a socket channel to "hostname":"port".
|
2016-02-13 23:23:53 +01:00
|
|
|
* Returns the channel for success.
|
|
|
|
* Returns NULL for failure.
|
2016-01-24 20:36:41 +01:00
|
|
|
*/
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_T *
|
2016-02-05 22:36:41 +01:00
|
|
|
channel_open(char *hostname, int port_in, int waittime, void (*close_cb)(void))
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-01-26 23:30:18 +01:00
|
|
|
int sd;
|
|
|
|
struct sockaddr_in server;
|
|
|
|
struct hostent * host;
|
2016-01-29 21:11:25 +01:00
|
|
|
#ifdef WIN32
|
2016-01-26 23:30:18 +01:00
|
|
|
u_short port = port_in;
|
2016-02-05 22:36:41 +01:00
|
|
|
u_long val = 1;
|
2016-01-26 23:30:18 +01:00
|
|
|
#else
|
|
|
|
int port = port_in;
|
|
|
|
#endif
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_T *channel;
|
2016-02-05 22:36:41 +01:00
|
|
|
int ret;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-01-29 21:11:25 +01:00
|
|
|
#ifdef WIN32
|
2016-01-26 23:30:18 +01:00
|
|
|
channel_init_winsock();
|
|
|
|
#endif
|
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
channel = add_channel();
|
|
|
|
if (channel == NULL)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_error(NULL, "Cannot allocate channel.\n");
|
2016-01-31 20:24:32 +01:00
|
|
|
EMSG(_("E897: All channels are in use"));
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
if ((sd = (sock_T)socket(AF_INET, SOCK_STREAM, 0)) == (sock_T)-1)
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_error(NULL, "in socket() in channel_open().\n");
|
2016-01-31 20:24:32 +01:00
|
|
|
PERROR("E898: socket() in channel_open()");
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_free(channel);
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-01-24 20:36:41 +01:00
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
/* Get the server internet address and put into addr structure */
|
|
|
|
/* fill in the socket address structure and connect to server */
|
|
|
|
vim_memset((char *)&server, 0, sizeof(server));
|
|
|
|
server.sin_family = AF_INET;
|
|
|
|
server.sin_port = htons(port);
|
|
|
|
if ((host = gethostbyname(hostname)) == NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_error(NULL, "in gethostbyname() in channel_open()\n");
|
2016-01-31 20:24:32 +01:00
|
|
|
PERROR("E901: gethostbyname() in channel_open()");
|
2016-01-26 23:30:18 +01:00
|
|
|
sock_close(sd);
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_free(channel);
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
memcpy((char *)&server.sin_addr, host->h_addr, host->h_length);
|
|
|
|
|
2016-02-05 22:36:41 +01:00
|
|
|
if (waittime >= 0)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-05 22:36:41 +01:00
|
|
|
/* Make connect non-blocking. */
|
|
|
|
if (
|
|
|
|
#ifdef _WIN32
|
|
|
|
ioctlsocket(sd, FIONBIO, &val) < 0
|
|
|
|
#else
|
|
|
|
fcntl(sd, F_SETFL, O_NONBLOCK) < 0
|
|
|
|
#endif
|
|
|
|
)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-05 22:36:41 +01:00
|
|
|
SOCK_ERRNO;
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_errorn(NULL, "channel_open: Connect failed with errno %d\n",
|
2016-02-13 17:04:46 +01:00
|
|
|
errno);
|
2016-01-26 23:30:18 +01:00
|
|
|
sock_close(sd);
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_free(channel);
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-02-05 22:36:41 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-05 22:36:41 +01:00
|
|
|
/* Try connecting to the server. */
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_logsn(NULL, "Connecting to %s port %d", hostname, port);
|
2016-02-05 22:36:41 +01:00
|
|
|
ret = connect(sd, (struct sockaddr *)&server, sizeof(server));
|
|
|
|
SOCK_ERRNO;
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
if (errno != EWOULDBLOCK
|
|
|
|
#ifdef EINPROGRESS
|
|
|
|
&& errno != EINPROGRESS
|
|
|
|
#endif
|
|
|
|
)
|
2016-02-05 22:36:41 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_errorn(NULL, "channel_open: Connect failed with errno %d\n",
|
2016-02-13 17:04:46 +01:00
|
|
|
errno);
|
2016-02-05 22:36:41 +01:00
|
|
|
PERROR(_("E902: Cannot connect to port"));
|
|
|
|
sock_close(sd);
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_free(channel);
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-02-05 22:36:41 +01:00
|
|
|
}
|
|
|
|
|
2016-02-07 21:29:00 +01:00
|
|
|
if (waittime >= 0 && ret < 0)
|
2016-02-05 22:36:41 +01:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
2016-02-07 21:29:00 +01:00
|
|
|
fd_set wfds;
|
2016-02-05 22:36:41 +01:00
|
|
|
|
|
|
|
FD_ZERO(&wfds);
|
|
|
|
FD_SET(sd, &wfds);
|
2016-02-06 18:18:54 +01:00
|
|
|
tv.tv_sec = waittime / 1000;
|
|
|
|
tv.tv_usec = (waittime % 1000) * 1000;
|
2016-02-07 21:29:00 +01:00
|
|
|
ret = select((int)sd + 1, NULL, &wfds, NULL, &tv);
|
2016-02-05 22:36:41 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
SOCK_ERRNO;
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_errorn(NULL, "channel_open: Connect failed with errno %d\n",
|
2016-02-13 17:04:46 +01:00
|
|
|
errno);
|
2016-02-05 22:36:41 +01:00
|
|
|
PERROR(_("E902: Cannot connect to port"));
|
|
|
|
sock_close(sd);
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_free(channel);
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-02-05 22:36:41 +01:00
|
|
|
}
|
2016-02-07 21:29:00 +01:00
|
|
|
if (!FD_ISSET(sd, &wfds))
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-07 21:29:00 +01:00
|
|
|
/* don't give an error, we just timed out. */
|
2016-01-26 23:30:18 +01:00
|
|
|
sock_close(sd);
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_free(channel);
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-02-07 21:29:00 +01:00
|
|
|
}
|
2016-02-05 22:36:41 +01:00
|
|
|
|
2016-02-07 21:29:00 +01:00
|
|
|
if (waittime >= 0)
|
|
|
|
{
|
2016-02-05 22:36:41 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
val = 0;
|
|
|
|
ioctlsocket(sd, FIONBIO, &val);
|
|
|
|
#else
|
2016-02-07 15:14:01 +01:00
|
|
|
(void)fcntl(sd, F_SETFL, 0);
|
2016-02-05 22:36:41 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-02-07 22:21:19 +01:00
|
|
|
/* Only retry for netbeans. TODO: can we use a waittime instead? */
|
|
|
|
if (errno == ECONNREFUSED && close_cb != NULL)
|
2016-02-05 22:36:41 +01:00
|
|
|
{
|
|
|
|
sock_close(sd);
|
|
|
|
if ((sd = (sock_T)socket(AF_INET, SOCK_STREAM, 0)) == (sock_T)-1)
|
|
|
|
{
|
|
|
|
SOCK_ERRNO;
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(NULL, "socket() retry in channel_open()\n");
|
2016-02-05 22:36:41 +01:00
|
|
|
PERROR("E900: socket() retry in channel_open()");
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_free(channel);
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-02-05 22:36:41 +01:00
|
|
|
}
|
|
|
|
if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
|
|
|
|
{
|
|
|
|
int retries = 36;
|
|
|
|
int success = FALSE;
|
|
|
|
|
|
|
|
SOCK_ERRNO;
|
|
|
|
while (retries-- && ((errno == ECONNREFUSED)
|
|
|
|
|| (errno == EINTR)))
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(NULL, "retrying...\n");
|
2016-02-05 22:36:41 +01:00
|
|
|
mch_delay(3000L, TRUE);
|
|
|
|
ui_breakcheck();
|
|
|
|
if (got_int)
|
|
|
|
{
|
|
|
|
errno = EINTR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (connect(sd, (struct sockaddr *)&server,
|
|
|
|
sizeof(server)) == 0)
|
|
|
|
{
|
|
|
|
success = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
SOCK_ERRNO;
|
|
|
|
}
|
|
|
|
if (!success)
|
|
|
|
{
|
|
|
|
/* Get here when the server can't be found. */
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_error(NULL, "Cannot connect to port after retry\n");
|
2016-02-05 22:36:41 +01:00
|
|
|
PERROR(_("E899: Cannot connect to port after retry2"));
|
|
|
|
sock_close(sd);
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_free(channel);
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-02-05 22:36:41 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
|
2016-02-14 19:13:43 +01:00
|
|
|
channel->CH_SOCK = sd;
|
2016-02-13 23:23:53 +01:00
|
|
|
channel->ch_close_cb = close_cb;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
#ifdef FEAT_GUI
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_gui_register(channel);
|
2016-02-13 17:04:46 +01:00
|
|
|
#endif
|
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
return channel;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CHANNEL_PIPES) || defined(PROTO)
|
|
|
|
void
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_set_pipes(channel_T *channel, int in, int out, int err)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
channel->CH_IN = in;
|
|
|
|
channel->CH_OUT = out;
|
|
|
|
channel->CH_ERR = err;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
void
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_set_job(channel_T *channel, job_T *job)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel->ch_job = job;
|
2016-01-24 20:36:41 +01:00
|
|
|
}
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Set the json mode of channel "channel" to "ch_mode".
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_set_json_mode(channel_T *channel, ch_mode_T ch_mode)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel->ch_mode = ch_mode;
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-02-05 22:36:41 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Set the read timeout of channel "channel".
|
2016-02-05 22:36:41 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_set_timeout(channel_T *channel, int timeout)
|
2016-02-05 22:36:41 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel->ch_timeout = timeout;
|
2016-02-05 22:36:41 +01:00
|
|
|
}
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Set the callback for channel "channel".
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_set_callback(channel_T *channel, char_u *callback)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
vim_free(channel->ch_callback);
|
|
|
|
channel->ch_callback = vim_strsave(callback);
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Set the callback for channel "channel" for the response with "id".
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_set_req_callback(channel_T *channel, char_u *callback, int id)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
cbq_T *head = &channel->ch_cb_head;
|
2016-02-05 21:04:08 +01:00
|
|
|
cbq_T *item = (cbq_T *)alloc((int)sizeof(cbq_T));
|
|
|
|
|
|
|
|
if (item != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
item->cq_callback = vim_strsave(callback);
|
|
|
|
item->cq_seq_nr = id;
|
|
|
|
item->cq_prev = head->cq_prev;
|
|
|
|
head->cq_prev = item;
|
|
|
|
item->cq_next = NULL;
|
|
|
|
if (item->cq_prev == NULL)
|
|
|
|
head->cq_next = item;
|
|
|
|
else
|
|
|
|
item->cq_prev->cq_next = item;
|
2016-02-05 21:04:08 +01:00
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Invoke the "callback" on channel "channel".
|
2016-02-01 21:38:19 +01:00
|
|
|
*/
|
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
invoke_callback(channel_T *channel, char_u *callback, typval_T *argv)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
|
|
|
typval_T rettv;
|
|
|
|
int dummy;
|
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
argv[0].v_type = VAR_CHANNEL;
|
|
|
|
argv[0].vval.v_channel = channel;
|
2016-02-01 21:38:19 +01:00
|
|
|
|
|
|
|
call_func(callback, (int)STRLEN(callback),
|
|
|
|
&rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
|
|
|
|
/* If an echo command was used the cursor needs to be put back where
|
|
|
|
* it belongs. */
|
|
|
|
setcursor();
|
|
|
|
cursor_on();
|
|
|
|
out_flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the first buffer from the channel and remove it.
|
|
|
|
* The caller must free it.
|
|
|
|
* Returns NULL if there is nothing.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_get(channel_T *channel)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
readq_T *head = &channel->ch_head;
|
|
|
|
readq_T *node = head->rq_next;
|
2016-02-01 21:38:19 +01:00
|
|
|
char_u *p;
|
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
if (node == NULL)
|
2016-02-01 21:38:19 +01:00
|
|
|
return NULL;
|
|
|
|
/* dispose of the node but keep the buffer */
|
2016-02-13 23:23:53 +01:00
|
|
|
p = node->rq_buffer;
|
|
|
|
head->rq_next = node->rq_next;
|
|
|
|
if (node->rq_next == NULL)
|
|
|
|
head->rq_prev = NULL;
|
|
|
|
else
|
|
|
|
node->rq_next->rq_prev = NULL;
|
2016-02-01 21:38:19 +01:00
|
|
|
vim_free(node);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the whole buffer contents concatenated.
|
|
|
|
*/
|
|
|
|
static char_u *
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_get_all(channel_T *channel)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
|
|
|
/* Concatenate everything into one buffer.
|
|
|
|
* TODO: avoid multiple allocations. */
|
2016-02-13 23:23:53 +01:00
|
|
|
while (channel_collapse(channel) == OK)
|
2016-02-01 21:38:19 +01:00
|
|
|
;
|
2016-02-13 23:23:53 +01:00
|
|
|
return channel_get(channel);
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Collapses the first and second buffer in the channel "channel".
|
2016-02-01 21:38:19 +01:00
|
|
|
* Returns FAIL if that is not possible.
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
int
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_collapse(channel_T *channel)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
readq_T *head = &channel->ch_head;
|
|
|
|
readq_T *node = head->rq_next;
|
2016-02-01 21:38:19 +01:00
|
|
|
char_u *p;
|
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
if (node == NULL || node->rq_next == NULL)
|
2016-02-01 21:38:19 +01:00
|
|
|
return FAIL;
|
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
p = alloc((unsigned)(STRLEN(node->rq_buffer)
|
|
|
|
+ STRLEN(node->rq_next->rq_buffer) + 1));
|
2016-02-01 21:38:19 +01:00
|
|
|
if (p == NULL)
|
|
|
|
return FAIL; /* out of memory */
|
2016-02-13 23:23:53 +01:00
|
|
|
STRCPY(p, node->rq_buffer);
|
|
|
|
STRCAT(p, node->rq_next->rq_buffer);
|
|
|
|
vim_free(node->rq_next->rq_buffer);
|
|
|
|
node->rq_next->rq_buffer = p;
|
|
|
|
|
|
|
|
/* dispose of the node and its buffer */
|
|
|
|
head->rq_next = node->rq_next;
|
|
|
|
head->rq_next->rq_prev = NULL;
|
|
|
|
vim_free(node->rq_buffer);
|
2016-02-01 21:38:19 +01:00
|
|
|
vim_free(node);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Use the read buffer of channel "channel" and parse a JSON messages that is
|
2016-02-01 21:38:19 +01:00
|
|
|
* complete. The messages are added to the queue.
|
2016-02-02 23:23:02 +01:00
|
|
|
* Return TRUE if there is more to read.
|
2016-02-01 21:38:19 +01:00
|
|
|
*/
|
2016-02-02 23:23:02 +01:00
|
|
|
static int
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_parse_json(channel_T *channel)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
|
|
|
js_read_T reader;
|
|
|
|
typval_T listtv;
|
2016-02-01 21:38:19 +01:00
|
|
|
jsonq_T *item;
|
2016-02-07 19:19:53 +01:00
|
|
|
jsonq_T *head = &channel->ch_json_head;
|
2016-02-02 23:23:02 +01:00
|
|
|
int ret;
|
2016-02-01 21:38:19 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
if (channel_peek(channel) == NULL)
|
2016-02-02 23:23:02 +01:00
|
|
|
return FALSE;
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
/* TODO: make reader work properly */
|
2016-02-13 23:23:53 +01:00
|
|
|
/* reader.js_buf = channel_peek(channel); */
|
|
|
|
reader.js_buf = channel_get_all(channel);
|
2016-01-28 22:37:01 +01:00
|
|
|
reader.js_used = 0;
|
2016-02-02 18:20:08 +01:00
|
|
|
reader.js_fill = NULL;
|
2016-02-01 21:38:19 +01:00
|
|
|
/* reader.js_fill = channel_fill; */
|
2016-02-13 23:23:53 +01:00
|
|
|
reader.js_cookie = channel;
|
2016-02-07 19:19:53 +01:00
|
|
|
ret = json_decode(&reader, &listtv,
|
|
|
|
channel->ch_mode == MODE_JS ? JSON_JS : 0);
|
2016-02-02 23:23:02 +01:00
|
|
|
if (ret == OK)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-05 22:49:56 +01:00
|
|
|
/* Only accept the response when it is a list with at least two
|
|
|
|
* items. */
|
|
|
|
if (listtv.v_type != VAR_LIST || listtv.vval.v_list->lv_len < 2)
|
2016-02-02 23:23:02 +01:00
|
|
|
{
|
|
|
|
/* TODO: give error */
|
2016-02-01 21:38:19 +01:00
|
|
|
clear_tv(&listtv);
|
2016-02-02 23:23:02 +01:00
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
else
|
2016-01-31 20:24:32 +01:00
|
|
|
{
|
2016-02-02 23:23:02 +01:00
|
|
|
item = (jsonq_T *)alloc((unsigned)sizeof(jsonq_T));
|
|
|
|
if (item == NULL)
|
2016-02-01 21:38:19 +01:00
|
|
|
clear_tv(&listtv);
|
|
|
|
else
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
item->jq_value = alloc_tv();
|
|
|
|
if (item->jq_value == NULL)
|
2016-02-02 23:23:02 +01:00
|
|
|
{
|
|
|
|
vim_free(item);
|
|
|
|
clear_tv(&listtv);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
*item->jq_value = listtv;
|
|
|
|
item->jq_prev = head->jq_prev;
|
|
|
|
head->jq_prev = item;
|
|
|
|
item->jq_next = NULL;
|
|
|
|
if (item->jq_prev == NULL)
|
|
|
|
head->jq_next = item;
|
|
|
|
else
|
|
|
|
item->jq_prev->jq_next = item;
|
2016-02-02 23:23:02 +01:00
|
|
|
}
|
2016-01-31 20:24:32 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
2016-02-02 18:43:17 +01:00
|
|
|
|
|
|
|
/* Put the unread part back into the channel.
|
|
|
|
* TODO: insert in front */
|
|
|
|
if (reader.js_buf[reader.js_used] != NUL)
|
2016-02-02 23:23:02 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_save(channel, reader.js_buf + reader.js_used,
|
2016-02-02 18:43:17 +01:00
|
|
|
(int)(reader.js_end - reader.js_buf) - reader.js_used);
|
2016-02-02 23:23:02 +01:00
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = FALSE;
|
|
|
|
|
2016-02-02 18:43:17 +01:00
|
|
|
vim_free(reader.js_buf);
|
2016-02-02 23:23:02 +01:00
|
|
|
return ret;
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-02-05 21:04:08 +01:00
|
|
|
/*
|
|
|
|
* Remove "node" from the queue that it is in and free it.
|
|
|
|
* Also frees the contained callback name.
|
|
|
|
*/
|
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
remove_cb_node(cbq_T *head, cbq_T *node)
|
2016-02-05 21:04:08 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
if (node->cq_prev == NULL)
|
|
|
|
head->cq_next = node->cq_next;
|
|
|
|
else
|
|
|
|
node->cq_prev->cq_next = node->cq_next;
|
|
|
|
if (node->cq_next == NULL)
|
|
|
|
head->cq_prev = node->cq_prev;
|
|
|
|
else
|
|
|
|
node->cq_next->cq_prev = node->cq_prev;
|
|
|
|
vim_free(node->cq_callback);
|
2016-02-05 21:04:08 +01:00
|
|
|
vim_free(node);
|
|
|
|
}
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
/*
|
2016-02-01 21:38:19 +01:00
|
|
|
* Remove "node" from the queue that it is in and free it.
|
2016-02-13 23:23:53 +01:00
|
|
|
* Caller should have freed or used node->jq_value.
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
remove_json_node(jsonq_T *head, jsonq_T *node)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
if (node->jq_prev == NULL)
|
|
|
|
head->jq_next = node->jq_next;
|
|
|
|
else
|
|
|
|
node->jq_prev->jq_next = node->jq_next;
|
|
|
|
if (node->jq_next == NULL)
|
|
|
|
head->jq_prev = node->jq_prev;
|
|
|
|
else
|
|
|
|
node->jq_next->jq_prev = node->jq_prev;
|
2016-02-01 21:38:19 +01:00
|
|
|
vim_free(node);
|
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Get a message from the JSON queue for channel "channel".
|
2016-02-01 21:38:19 +01:00
|
|
|
* When "id" is positive it must match the first number in the list.
|
2016-02-08 23:23:42 +01:00
|
|
|
* When "id" is zero or negative jut get the first message. But not the one
|
|
|
|
* with id ch_block_id.
|
2016-02-01 21:38:19 +01:00
|
|
|
* Return OK when found and return the value in "rettv".
|
|
|
|
* Return FAIL otherwise.
|
|
|
|
*/
|
|
|
|
static int
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_get_json(channel_T *channel, int id, typval_T **rettv)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-08 23:23:42 +01:00
|
|
|
jsonq_T *head = &channel->ch_json_head;
|
2016-02-13 23:23:53 +01:00
|
|
|
jsonq_T *item = head->jq_next;
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
while (item != NULL)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
list_T *l = item->jq_value->vval.v_list;
|
2016-02-01 21:38:19 +01:00
|
|
|
typval_T *tv = &l->lv_first->li_tv;
|
|
|
|
|
|
|
|
if ((id > 0 && tv->v_type == VAR_NUMBER && tv->vval.v_number == id)
|
2016-02-08 23:23:42 +01:00
|
|
|
|| (id <= 0 && (tv->v_type != VAR_NUMBER
|
2016-02-10 21:07:14 +01:00
|
|
|
|| tv->vval.v_number == 0
|
2016-02-08 23:23:42 +01:00
|
|
|
|| tv->vval.v_number != channel->ch_block_id)))
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
*rettv = item->jq_value;
|
|
|
|
remove_json_node(head, item);
|
2016-02-01 21:38:19 +01:00
|
|
|
return OK;
|
|
|
|
}
|
2016-02-13 23:23:53 +01:00
|
|
|
item = item->jq_next;
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
|
|
|
return FAIL;
|
2016-01-30 23:20:33 +01:00
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-01-31 20:24:32 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Execute a command received over channel "channel".
|
2016-01-31 20:24:32 +01:00
|
|
|
* "cmd" is the command string, "arg2" the second argument.
|
|
|
|
* "arg3" is the third argument, NULL if missing.
|
|
|
|
*/
|
2016-01-30 23:20:33 +01:00
|
|
|
static void
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_exe_cmd(channel_T *channel, char_u *cmd, typval_T *arg2, typval_T *arg3)
|
2016-01-30 23:20:33 +01:00
|
|
|
{
|
2016-01-31 20:24:32 +01:00
|
|
|
char_u *arg;
|
|
|
|
|
|
|
|
if (arg2->v_type != VAR_STRING)
|
|
|
|
{
|
|
|
|
if (p_verbose > 2)
|
|
|
|
EMSG("E903: received ex command with non-string argument");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
arg = arg2->vval.v_string;
|
2016-02-01 21:47:13 +01:00
|
|
|
if (arg == NULL)
|
|
|
|
arg = (char_u *)"";
|
2016-01-31 20:24:32 +01:00
|
|
|
|
2016-01-30 23:20:33 +01:00
|
|
|
if (STRCMP(cmd, "ex") == 0)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-01-31 20:24:32 +01:00
|
|
|
do_cmdline_cmd(arg);
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
2016-01-30 23:20:33 +01:00
|
|
|
else if (STRCMP(cmd, "normal") == 0)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-01-31 20:24:32 +01:00
|
|
|
exarg_T ea;
|
2016-01-30 23:20:33 +01:00
|
|
|
|
2016-01-31 20:24:32 +01:00
|
|
|
ea.arg = arg;
|
|
|
|
ea.addr_count = 0;
|
|
|
|
ea.forceit = TRUE; /* no mapping */
|
|
|
|
ex_normal(&ea);
|
|
|
|
}
|
|
|
|
else if (STRCMP(cmd, "redraw") == 0)
|
|
|
|
{
|
|
|
|
exarg_T ea;
|
2016-01-30 23:20:33 +01:00
|
|
|
|
2016-02-01 21:47:13 +01:00
|
|
|
ea.forceit = *arg != NUL;
|
2016-01-31 20:24:32 +01:00
|
|
|
ex_redraw(&ea);
|
|
|
|
showruler(FALSE);
|
|
|
|
setcursor();
|
|
|
|
out_flush();
|
2016-01-30 23:20:33 +01:00
|
|
|
#ifdef FEAT_GUI
|
2016-01-31 20:24:32 +01:00
|
|
|
if (gui.in_use)
|
|
|
|
{
|
|
|
|
gui_update_cursor(FALSE, FALSE);
|
|
|
|
gui_mch_flush();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if (STRCMP(cmd, "expr") == 0 || STRCMP(cmd, "eval") == 0)
|
|
|
|
{
|
|
|
|
int is_eval = cmd[1] == 'v';
|
|
|
|
|
2016-02-03 23:59:43 +01:00
|
|
|
if (is_eval && (arg3 == NULL || arg3->v_type != VAR_NUMBER))
|
2016-01-31 20:24:32 +01:00
|
|
|
{
|
|
|
|
if (p_verbose > 2)
|
|
|
|
EMSG("E904: third argument for eval must be a number");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-03 21:32:46 +01:00
|
|
|
typval_T *tv;
|
2016-01-31 20:24:32 +01:00
|
|
|
typval_T err_tv;
|
2016-02-07 16:53:13 +01:00
|
|
|
char_u *json = NULL;
|
2016-02-07 19:19:53 +01:00
|
|
|
int options = channel->ch_mode == MODE_JS ? JSON_JS : 0;
|
2016-01-31 20:24:32 +01:00
|
|
|
|
2016-02-03 21:32:46 +01:00
|
|
|
/* Don't pollute the display with errors. */
|
|
|
|
++emsg_skip;
|
|
|
|
tv = eval_expr(arg, NULL);
|
2016-01-31 20:24:32 +01:00
|
|
|
if (is_eval)
|
2016-01-30 23:20:33 +01:00
|
|
|
{
|
2016-02-07 16:53:13 +01:00
|
|
|
if (tv != NULL)
|
2016-02-07 19:19:53 +01:00
|
|
|
json = json_encode_nr_expr(arg3->vval.v_number, tv,
|
|
|
|
options);
|
2016-02-07 16:53:13 +01:00
|
|
|
if (tv == NULL || (json != NULL && *json == NUL))
|
2016-01-31 20:24:32 +01:00
|
|
|
{
|
2016-02-07 16:53:13 +01:00
|
|
|
/* If evaluation failed or the result can't be encoded
|
|
|
|
* then return the string "ERROR". */
|
2016-02-13 23:23:53 +01:00
|
|
|
vim_free(json);
|
|
|
|
free_tv(tv);
|
2016-01-31 20:24:32 +01:00
|
|
|
err_tv.v_type = VAR_STRING;
|
|
|
|
err_tv.vval.v_string = (char_u *)"ERROR";
|
|
|
|
tv = &err_tv;
|
2016-02-07 19:19:53 +01:00
|
|
|
json = json_encode_nr_expr(arg3->vval.v_number, tv,
|
|
|
|
options);
|
2016-02-07 16:53:13 +01:00
|
|
|
}
|
|
|
|
if (json != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_send(channel, json, "eval");
|
2016-02-07 16:53:13 +01:00
|
|
|
vim_free(json);
|
2016-01-31 20:24:32 +01:00
|
|
|
}
|
2016-01-30 23:20:33 +01:00
|
|
|
}
|
2016-02-07 16:53:13 +01:00
|
|
|
--emsg_skip;
|
2016-02-03 21:32:46 +01:00
|
|
|
if (tv != &err_tv)
|
|
|
|
free_tv(tv);
|
2016-01-30 23:20:33 +01:00
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
2016-01-30 23:20:33 +01:00
|
|
|
else if (p_verbose > 2)
|
2016-01-31 20:24:32 +01:00
|
|
|
EMSG2("E905: received unknown command: %s", cmd);
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Invoke a callback for channel "channel" if needed.
|
2016-02-02 18:43:17 +01:00
|
|
|
* Return OK when a message was handled, there might be another one.
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
2016-02-02 18:43:17 +01:00
|
|
|
static int
|
2016-02-13 23:23:53 +01:00
|
|
|
may_invoke_callback(channel_T *channel)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-01 21:38:19 +01:00
|
|
|
char_u *msg = NULL;
|
|
|
|
typval_T *listtv = NULL;
|
|
|
|
list_T *list;
|
|
|
|
typval_T *typetv;
|
2016-01-30 23:20:33 +01:00
|
|
|
typval_T argv[3];
|
|
|
|
int seq_nr = -1;
|
2016-02-07 19:19:53 +01:00
|
|
|
ch_mode_T ch_mode = channel->ch_mode;
|
2016-01-30 23:20:33 +01:00
|
|
|
|
2016-02-05 21:04:08 +01:00
|
|
|
if (channel->ch_close_cb != NULL)
|
2016-02-01 21:38:19 +01:00
|
|
|
/* this channel is handled elsewhere (netbeans) */
|
2016-02-02 18:43:17 +01:00
|
|
|
return FALSE;
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-07 19:19:53 +01:00
|
|
|
if (ch_mode != MODE_RAW)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-02 23:23:02 +01:00
|
|
|
/* Get any json message in the queue. */
|
2016-02-13 23:23:53 +01:00
|
|
|
if (channel_get_json(channel, -1, &listtv) == FAIL)
|
2016-01-30 23:20:33 +01:00
|
|
|
{
|
2016-02-02 23:23:02 +01:00
|
|
|
/* Parse readahead, return when there is still no message. */
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_parse_json(channel);
|
|
|
|
if (channel_get_json(channel, -1, &listtv) == FAIL)
|
2016-02-02 23:23:02 +01:00
|
|
|
return FALSE;
|
2016-01-30 23:20:33 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
list = listtv->vval.v_list;
|
|
|
|
argv[1] = list->lv_first->li_next->li_tv;
|
|
|
|
typetv = &list->lv_first->li_tv;
|
|
|
|
if (typetv->v_type == VAR_STRING)
|
2016-01-30 23:20:33 +01:00
|
|
|
{
|
2016-02-01 21:38:19 +01:00
|
|
|
typval_T *arg3 = NULL;
|
|
|
|
char_u *cmd = typetv->vval.v_string;
|
|
|
|
|
2016-02-03 23:59:43 +01:00
|
|
|
/* ["cmd", arg] or ["cmd", arg, arg] */
|
2016-02-01 21:38:19 +01:00
|
|
|
if (list->lv_len == 3)
|
|
|
|
arg3 = &list->lv_last->li_tv;
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_logs(channel, "Executing %s command", (char *)cmd);
|
|
|
|
channel_exe_cmd(channel, cmd, &argv[1], arg3);
|
|
|
|
free_tv(listtv);
|
2016-02-02 18:43:17 +01:00
|
|
|
return TRUE;
|
2016-01-30 23:20:33 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
if (typetv->v_type != VAR_NUMBER)
|
2016-01-30 23:20:33 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_error(channel,
|
2016-02-13 17:04:46 +01:00
|
|
|
"Dropping message with invalid sequence number type\n");
|
2016-02-13 23:23:53 +01:00
|
|
|
free_tv(listtv);
|
2016-02-02 18:43:17 +01:00
|
|
|
return FALSE;
|
2016-01-30 23:20:33 +01:00
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
seq_nr = typetv->vval.v_number;
|
|
|
|
}
|
2016-02-13 23:23:53 +01:00
|
|
|
else if (channel_peek(channel) == NULL)
|
2016-02-02 23:23:02 +01:00
|
|
|
{
|
|
|
|
/* nothing to read on raw channel */
|
|
|
|
return FALSE;
|
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
else
|
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
/* If there is no callback, don't do anything. */
|
|
|
|
if (channel->ch_callback == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
/* For a raw channel we don't know where the message ends, just get
|
|
|
|
* everything. */
|
2016-02-13 23:23:53 +01:00
|
|
|
msg = channel_get_all(channel);
|
2016-02-01 21:38:19 +01:00
|
|
|
argv[1].v_type = VAR_STRING;
|
|
|
|
argv[1].vval.v_string = msg;
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-02-05 21:04:08 +01:00
|
|
|
if (seq_nr > 0)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
cbq_T *head = &channel->ch_cb_head;
|
|
|
|
cbq_T *item = head->cq_next;
|
2016-02-13 17:04:46 +01:00
|
|
|
int done = FALSE;
|
2016-02-05 21:04:08 +01:00
|
|
|
|
|
|
|
/* invoke the one-time callback with the matching nr */
|
2016-02-13 23:23:53 +01:00
|
|
|
while (item != NULL)
|
2016-02-05 21:04:08 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
if (item->cq_seq_nr == seq_nr)
|
2016-02-05 21:04:08 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Invoking one-time callback\n");
|
|
|
|
invoke_callback(channel, item->cq_callback, argv);
|
|
|
|
remove_cb_node(head, item);
|
2016-02-13 17:04:46 +01:00
|
|
|
done = TRUE;
|
2016-02-05 21:04:08 +01:00
|
|
|
break;
|
|
|
|
}
|
2016-02-13 23:23:53 +01:00
|
|
|
item = item->cq_next;
|
2016-02-05 21:04:08 +01:00
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
if (!done)
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Dropping message without callback\n");
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
2016-02-05 21:04:08 +01:00
|
|
|
else if (channel->ch_callback != NULL)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
|
|
|
/* invoke the channel callback */
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Invoking channel callback\n");
|
|
|
|
invoke_callback(channel, channel->ch_callback, argv);
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
else
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Dropping message\n");
|
2016-02-01 21:38:19 +01:00
|
|
|
|
|
|
|
if (listtv != NULL)
|
2016-02-13 23:23:53 +01:00
|
|
|
free_tv(listtv);
|
2016-01-30 23:20:33 +01:00
|
|
|
vim_free(msg);
|
2016-02-02 18:43:17 +01:00
|
|
|
|
|
|
|
return TRUE;
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Return TRUE when channel "channel" is open for writing to.
|
|
|
|
* Also returns FALSE or invalid "channel".
|
2016-02-13 17:04:46 +01:00
|
|
|
*/
|
|
|
|
int
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_can_write_to(channel_T *channel)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
return channel != NULL && (channel->CH_SOCK >= 0
|
2016-02-13 17:04:46 +01:00
|
|
|
#ifdef CHANNEL_PIPES
|
2016-02-14 19:13:43 +01:00
|
|
|
|| channel->CH_IN >= 0
|
2016-02-13 17:04:46 +01:00
|
|
|
#endif
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Return TRUE when channel "channel" is open for reading or writing.
|
|
|
|
* Also returns FALSE for invalid "channel".
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
|
|
|
int
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_is_open(channel_T *channel)
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
return channel != NULL && (channel->CH_SOCK >= 0
|
2016-02-13 17:04:46 +01:00
|
|
|
#ifdef CHANNEL_PIPES
|
2016-02-14 19:13:43 +01:00
|
|
|
|| channel->CH_IN >= 0
|
|
|
|
|| channel->CH_OUT >= 0
|
|
|
|
|| channel->CH_ERR >= 0
|
2016-02-13 17:04:46 +01:00
|
|
|
#endif
|
|
|
|
);
|
2016-01-24 20:36:41 +01:00
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Return a string indicating the status of the channel.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
channel_status(channel_T *channel)
|
|
|
|
{
|
|
|
|
if (channel == NULL)
|
|
|
|
return "fail";
|
|
|
|
if (channel_is_open(channel))
|
|
|
|
return "open";
|
|
|
|
return "closed";
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Close channel "channel".
|
2016-01-26 23:30:18 +01:00
|
|
|
* This does not trigger the close callback.
|
|
|
|
*/
|
|
|
|
void
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_close(channel_T *channel)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Closing channel");
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-14 23:02:34 +01:00
|
|
|
#ifdef FEAT_GUI
|
|
|
|
channel_gui_unregister(channel);
|
|
|
|
#endif
|
|
|
|
|
2016-02-14 19:13:43 +01:00
|
|
|
if (channel->CH_SOCK >= 0)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
sock_close(channel->CH_SOCK);
|
|
|
|
channel->CH_SOCK = -1;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
#if defined(CHANNEL_PIPES)
|
2016-02-14 19:13:43 +01:00
|
|
|
if (channel->CH_IN >= 0)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
close(channel->CH_IN);
|
|
|
|
channel->CH_IN = -1;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-02-14 19:13:43 +01:00
|
|
|
if (channel->CH_OUT >= 0)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
close(channel->CH_OUT);
|
|
|
|
channel->CH_OUT = -1;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-02-14 19:13:43 +01:00
|
|
|
if (channel->CH_ERR >= 0)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
close(channel->CH_ERR);
|
|
|
|
channel->CH_ERR = -1;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
#endif
|
2016-02-14 23:02:34 +01:00
|
|
|
|
|
|
|
channel->ch_close_cb = NULL;
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_clear(channel);
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Store "buf[len]" on channel "channel".
|
2016-01-28 23:10:07 +01:00
|
|
|
* Returns OK or FAIL.
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
2016-01-28 23:10:07 +01:00
|
|
|
int
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_save(channel_T *channel, char_u *buf, int len)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-01 21:38:19 +01:00
|
|
|
readq_T *node;
|
2016-02-13 23:23:53 +01:00
|
|
|
readq_T *head = &channel->ch_head;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
node = (readq_T *)alloc(sizeof(readq_T));
|
2016-01-26 23:30:18 +01:00
|
|
|
if (node == NULL)
|
2016-01-28 23:10:07 +01:00
|
|
|
return FAIL; /* out of memory */
|
2016-02-13 23:23:53 +01:00
|
|
|
node->rq_buffer = alloc(len + 1);
|
|
|
|
if (node->rq_buffer == NULL)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
|
|
|
vim_free(node);
|
2016-01-28 23:10:07 +01:00
|
|
|
return FAIL; /* out of memory */
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-02-13 23:23:53 +01:00
|
|
|
mch_memmove(node->rq_buffer, buf, (size_t)len);
|
|
|
|
node->rq_buffer[len] = NUL;
|
|
|
|
|
|
|
|
/* append node to the tail of the queue */
|
|
|
|
node->rq_next = NULL;
|
|
|
|
node->rq_prev = head->rq_prev;
|
|
|
|
if (head->rq_prev == NULL)
|
|
|
|
head->rq_next = node;
|
|
|
|
else
|
|
|
|
head->rq_prev->rq_next = node;
|
|
|
|
head->rq_prev = node;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
if (log_fd != NULL)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead("RECV ", channel);
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, "'");
|
|
|
|
if (fwrite(buf, len, 1, log_fd) != 1)
|
2016-01-28 23:10:07 +01:00
|
|
|
return FAIL;
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, "'\n");
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-01-28 23:10:07 +01:00
|
|
|
return OK;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the first buffer from the channel without removing it.
|
|
|
|
* Returns NULL if there is nothing.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_peek(channel_T *channel)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
readq_T *head = &channel->ch_head;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
if (head->rq_next == NULL)
|
2016-01-26 23:30:18 +01:00
|
|
|
return NULL;
|
2016-02-13 23:23:53 +01:00
|
|
|
return head->rq_next->rq_buffer;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Clear the read buffer on channel "channel".
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_clear(channel_T *channel)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
jsonq_T *json_head = &channel->ch_json_head;
|
|
|
|
cbq_T *cb_head = &channel->ch_cb_head;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
while (channel_peek(channel) != NULL)
|
|
|
|
vim_free(channel_get(channel));
|
|
|
|
|
|
|
|
while (cb_head->cq_next != NULL)
|
|
|
|
remove_cb_node(cb_head, cb_head->cq_next);
|
|
|
|
|
|
|
|
while (json_head->jq_next != NULL)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
free_tv(json_head->jq_next->jq_value);
|
|
|
|
remove_json_node(json_head, json_head->jq_next);
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-02-15 20:39:46 +01:00
|
|
|
|
|
|
|
vim_free(channel->ch_callback);
|
|
|
|
channel->ch_callback = NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
#if defined(EXITFREE) || defined(PROTO)
|
|
|
|
void
|
|
|
|
channel_free_all(void)
|
|
|
|
{
|
|
|
|
channel_T *channel;
|
|
|
|
|
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
|
|
|
channel_clear(channel);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/* Sent when the channel is found closed when reading. */
|
|
|
|
#define DETACH_MSG "\"DETACH\"\n"
|
|
|
|
|
|
|
|
/* Buffer size for reading incoming messages. */
|
|
|
|
#define MAXMSGSIZE 4096
|
|
|
|
|
|
|
|
/*
|
2016-01-28 22:37:01 +01:00
|
|
|
* Check for reading from "fd" with "timeout" msec.
|
|
|
|
* Return FAIL when there is nothing to read.
|
2016-02-04 22:09:48 +01:00
|
|
|
* Always returns OK for FEAT_GUI_W32.
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
2016-01-28 22:37:01 +01:00
|
|
|
static int
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_wait(channel_T *channel, int fd, int timeout)
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-02-04 22:09:48 +01:00
|
|
|
#if defined(HAVE_SELECT) && !defined(FEAT_GUI_W32)
|
2016-01-26 23:30:18 +01:00
|
|
|
struct timeval tval;
|
|
|
|
fd_set rfds;
|
2016-01-28 22:37:01 +01:00
|
|
|
int ret;
|
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
if (timeout > 0)
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_logn(channel, "Waiting for %d msec\n", timeout);
|
2016-01-28 22:37:01 +01:00
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(fd, &rfds);
|
|
|
|
tval.tv_sec = timeout / 1000;
|
|
|
|
tval.tv_usec = (timeout % 1000) * 1000;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
ret = select(fd + 1, &rfds, NULL, NULL, &tval);
|
|
|
|
# ifdef EINTR
|
|
|
|
if (ret == -1 && errno == EINTR)
|
|
|
|
continue;
|
|
|
|
# endif
|
|
|
|
if (ret <= 0)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Nothing to read\n");
|
2016-01-28 22:37:01 +01:00
|
|
|
return FAIL;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
break;
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
#else
|
2016-01-28 23:01:49 +01:00
|
|
|
# ifdef HAVE_POLL
|
2016-01-26 23:30:18 +01:00
|
|
|
struct pollfd fds;
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
if (timeout > 0)
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_logn(channel, "Waiting for %d msec\n", timeout);
|
2016-01-28 22:37:01 +01:00
|
|
|
fds.fd = fd;
|
|
|
|
fds.events = POLLIN;
|
|
|
|
if (poll(&fds, 1, timeout) <= 0)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Nothing to read\n");
|
2016-01-28 22:37:01 +01:00
|
|
|
return FAIL;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-01-28 23:01:49 +01:00
|
|
|
# endif
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
2016-01-28 22:37:01 +01:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return a unique ID to be used in a message.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 15:14:10 +01:00
|
|
|
channel_get_id(void)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
|
|
|
static int next_id = 1;
|
|
|
|
|
|
|
|
return next_id++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-13 17:04:46 +01:00
|
|
|
* Get the file descriptor to read from, either the socket or stdout.
|
2016-02-14 23:02:34 +01:00
|
|
|
* TODO: should have a way to read stderr.
|
2016-02-13 17:04:46 +01:00
|
|
|
*/
|
|
|
|
static int
|
2016-02-14 19:13:43 +01:00
|
|
|
get_read_fd(channel_T *channel)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
if (channel->CH_SOCK >= 0)
|
|
|
|
return channel->CH_SOCK;
|
2016-02-13 17:04:46 +01:00
|
|
|
#if defined(CHANNEL_PIPES)
|
2016-02-14 19:13:43 +01:00
|
|
|
if (channel->CH_OUT >= 0)
|
|
|
|
return channel->CH_OUT;
|
2016-02-13 17:04:46 +01:00
|
|
|
#endif
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_error(channel, "channel_read() called while socket is closed\n");
|
2016-02-13 17:04:46 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Read from channel "channel" for as long as there is something to read.
|
2016-02-14 23:02:34 +01:00
|
|
|
* "which" is CHAN_SOCK, CHAN_OUT or CHAN_ERR. When -1 use CHAN_SOCK or
|
|
|
|
* CHAN_OUT, the one that is open.
|
2016-01-28 22:37:01 +01:00
|
|
|
* The data is put in the read queue.
|
|
|
|
*/
|
|
|
|
void
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_read(channel_T *channel, int which, char *func)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
|
|
|
static char_u *buf = NULL;
|
|
|
|
int len = 0;
|
|
|
|
int readlen = 0;
|
2016-02-13 17:04:46 +01:00
|
|
|
int fd;
|
|
|
|
int use_socket = FALSE;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-14 19:13:43 +01:00
|
|
|
if (which < 0)
|
|
|
|
fd = get_read_fd(channel);
|
|
|
|
else
|
|
|
|
fd = channel->ch_pfd[which].ch_fd;
|
2016-02-13 17:04:46 +01:00
|
|
|
if (fd < 0)
|
2016-01-26 23:30:18 +01:00
|
|
|
return;
|
2016-02-14 19:13:43 +01:00
|
|
|
use_socket = fd == channel->CH_SOCK;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
/* Allocate a buffer to read into. */
|
|
|
|
if (buf == NULL)
|
|
|
|
{
|
|
|
|
buf = alloc(MAXMSGSIZE);
|
|
|
|
if (buf == NULL)
|
|
|
|
return; /* out of memory! */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Keep on reading for as long as there is something to read.
|
|
|
|
* Use select() or poll() to avoid blocking on a message that is exactly
|
|
|
|
* MAXMSGSIZE long. */
|
|
|
|
for (;;)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
if (channel_wait(channel, fd, 0) == FAIL)
|
2016-01-26 23:30:18 +01:00
|
|
|
break;
|
2016-02-13 17:04:46 +01:00
|
|
|
if (use_socket)
|
|
|
|
len = sock_read(fd, buf, MAXMSGSIZE);
|
|
|
|
else
|
|
|
|
len = read(fd, buf, MAXMSGSIZE);
|
2016-01-26 23:30:18 +01:00
|
|
|
if (len <= 0)
|
|
|
|
break; /* error or nothing more to read */
|
|
|
|
|
|
|
|
/* Store the read message in the queue. */
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_save(channel, buf, len);
|
2016-01-26 23:30:18 +01:00
|
|
|
readlen += len;
|
|
|
|
if (len < MAXMSGSIZE)
|
|
|
|
break; /* did read everything that's available */
|
|
|
|
}
|
2016-02-04 22:09:48 +01:00
|
|
|
#ifdef FEAT_GUI_W32
|
2016-02-13 17:04:46 +01:00
|
|
|
if (use_socket && len == SOCKET_ERROR)
|
2016-02-04 22:09:48 +01:00
|
|
|
{
|
|
|
|
/* For Win32 GUI channel_wait() always returns OK and we handle the
|
|
|
|
* situation that there is nothing to read here.
|
|
|
|
* TODO: how about a timeout? */
|
|
|
|
if (WSAGetLastError() == WSAEWOULDBLOCK)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
/* Reading a socket disconnection (readlen == 0), or a socket error. */
|
|
|
|
if (readlen <= 0)
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-01-26 23:30:18 +01:00
|
|
|
/* Queue a "DETACH" netbeans message in the command queue in order to
|
|
|
|
* terminate the netbeans session later. Do not end the session here
|
|
|
|
* directly as we may be running in the context of a call to
|
|
|
|
* netbeans_parse_messages():
|
|
|
|
* netbeans_parse_messages
|
|
|
|
* -> autocmd triggered while processing the netbeans cmd
|
|
|
|
* -> ui_breakcheck
|
|
|
|
* -> gui event loop or select loop
|
|
|
|
* -> channel_read()
|
|
|
|
*/
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_errors(channel, "%s(): Cannot read\n", func);
|
|
|
|
channel_save(channel, (char_u *)DETACH_MSG, (int)STRLEN(DETACH_MSG));
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-14 23:02:34 +01:00
|
|
|
/* TODO: When reading from stdout is not possible, should we try to
|
|
|
|
* keep stdin and stderr open? Probably not, assume the other side
|
|
|
|
* has died. */
|
|
|
|
channel_close(channel);
|
|
|
|
if (channel->ch_close_cb != NULL)
|
|
|
|
(*channel->ch_close_cb)();
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
if (len < 0)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_error(channel, "channel_read(): cannot read from channel\n");
|
2016-01-31 20:24:32 +01:00
|
|
|
PERROR(_("E896: read from channel"));
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
#if defined(CH_HAS_GUI) && defined(FEAT_GUI_GTK)
|
2016-02-13 17:04:46 +01:00
|
|
|
/* signal the main loop that there is something to read */
|
2016-01-26 23:30:18 +01:00
|
|
|
if (CH_HAS_GUI && gtk_main_level() > 0)
|
|
|
|
gtk_main_quit();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Read from raw channel "channel". Blocks until there is something to read or
|
2016-02-01 21:38:19 +01:00
|
|
|
* the timeout expires.
|
2016-01-28 22:37:01 +01:00
|
|
|
* Returns what was read in allocated memory.
|
|
|
|
* Returns NULL in case of error or timeout.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_read_block(channel_T *channel)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Reading raw\n");
|
|
|
|
if (channel_peek(channel) == NULL)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
int fd = get_read_fd(channel);
|
2016-02-13 17:04:46 +01:00
|
|
|
|
2016-02-14 19:13:43 +01:00
|
|
|
/* TODO: read both out and err if they are different */
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "No readahead\n");
|
2016-02-05 22:36:41 +01:00
|
|
|
/* Wait for up to the channel timeout. */
|
2016-02-13 23:23:53 +01:00
|
|
|
if (fd < 0 || channel_wait(channel, fd, channel->ch_timeout) == FAIL)
|
2016-01-28 22:37:01 +01:00
|
|
|
return NULL;
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_read(channel, -1, "channel_read_block");
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
/* TODO: only get the first message */
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Returning readahead\n");
|
|
|
|
return channel_get_all(channel);
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Read one JSON message with ID "id" from channel "channel" and store the
|
2016-02-01 21:38:19 +01:00
|
|
|
* result in "rettv".
|
2016-02-05 22:36:41 +01:00
|
|
|
* Blocks until the message is received or the timeout is reached.
|
2016-02-01 21:38:19 +01:00
|
|
|
*/
|
|
|
|
int
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_read_json_block(channel_T *channel, int id, typval_T **rettv)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-08 23:23:42 +01:00
|
|
|
int more;
|
2016-02-13 17:04:46 +01:00
|
|
|
int fd;
|
2016-02-02 23:23:02 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log(channel, "Reading JSON\n");
|
2016-02-08 23:23:42 +01:00
|
|
|
channel->ch_block_id = id;
|
2016-02-01 21:38:19 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
more = channel_parse_json(channel);
|
2016-02-01 21:38:19 +01:00
|
|
|
|
|
|
|
/* search for messsage "id" */
|
2016-02-13 23:23:53 +01:00
|
|
|
if (channel_get_json(channel, id, rettv) == OK)
|
2016-02-08 23:23:42 +01:00
|
|
|
{
|
|
|
|
channel->ch_block_id = 0;
|
2016-02-01 21:38:19 +01:00
|
|
|
return OK;
|
2016-02-08 23:23:42 +01:00
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
|
2016-02-02 23:23:02 +01:00
|
|
|
if (!more)
|
|
|
|
{
|
|
|
|
/* Handle any other messages in the queue. If done some more
|
|
|
|
* messages may have arrived. */
|
|
|
|
if (channel_parse_messages())
|
|
|
|
continue;
|
|
|
|
|
2016-02-05 22:36:41 +01:00
|
|
|
/* Wait for up to the channel timeout. */
|
2016-02-14 19:13:43 +01:00
|
|
|
fd = get_read_fd(channel);
|
2016-02-13 23:23:53 +01:00
|
|
|
if (fd < 0 || channel_wait(channel, fd, channel->ch_timeout)
|
|
|
|
== FAIL)
|
2016-02-02 23:23:02 +01:00
|
|
|
break;
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_read(channel, -1, "channel_read_json_block");
|
2016-02-02 23:23:02 +01:00
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
2016-02-08 23:23:42 +01:00
|
|
|
channel->ch_block_id = 0;
|
2016-02-01 21:38:19 +01:00
|
|
|
return FAIL;
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-01-29 21:11:25 +01:00
|
|
|
# if defined(WIN32) || defined(PROTO)
|
2016-01-27 21:08:18 +01:00
|
|
|
/*
|
2016-02-14 19:13:43 +01:00
|
|
|
* Lookup the channel from the socket. Set "which" to the fd index.
|
2016-02-13 23:23:53 +01:00
|
|
|
* Returns NULL when the socket isn't found.
|
2016-01-27 21:08:18 +01:00
|
|
|
*/
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_T *
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_fd2channel(sock_T fd, int *whichp)
|
2016-01-27 21:08:18 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_T *channel;
|
|
|
|
int i;
|
2016-01-27 21:08:18 +01:00
|
|
|
|
|
|
|
if (fd >= 0)
|
2016-02-13 23:23:53 +01:00
|
|
|
for (channel = first_channel; channel != NULL;
|
|
|
|
channel = channel->ch_next)
|
2016-02-14 23:02:34 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
# ifdef CHANNEL_PIPES
|
|
|
|
for (i = CHAN_SOCK; i < CHAN_IN; ++i)
|
|
|
|
# else
|
|
|
|
i = CHAN_SOCK;
|
2016-02-13 17:04:46 +01:00
|
|
|
# endif
|
2016-02-14 19:13:43 +01:00
|
|
|
if (channel->ch_pfd[i].ch_fd == fd)
|
|
|
|
{
|
|
|
|
*whichp = i;
|
2016-02-14 23:02:34 +01:00
|
|
|
return channel;
|
2016-02-14 19:13:43 +01:00
|
|
|
}
|
2016-02-14 23:02:34 +01:00
|
|
|
}
|
2016-02-13 23:23:53 +01:00
|
|
|
return NULL;
|
2016-01-27 21:08:18 +01:00
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Write "buf" (NUL terminated string) to channel "channel".
|
2016-01-26 23:30:18 +01:00
|
|
|
* When "fun" is not NULL an error message might be given.
|
2016-01-28 22:37:01 +01:00
|
|
|
* Return FAIL or OK.
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
2016-01-28 22:37:01 +01:00
|
|
|
int
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_send(channel_T *channel, char_u *buf, char *fun)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
|
|
|
int len = (int)STRLEN(buf);
|
2016-02-13 17:04:46 +01:00
|
|
|
int res;
|
2016-02-13 18:50:38 +01:00
|
|
|
int fd = -1;
|
2016-02-13 17:04:46 +01:00
|
|
|
int use_socket = FALSE;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-14 19:13:43 +01:00
|
|
|
if (channel->CH_SOCK >= 0)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
fd = channel->CH_SOCK;
|
2016-02-13 17:04:46 +01:00
|
|
|
use_socket = TRUE;
|
|
|
|
}
|
|
|
|
#if defined(CHANNEL_PIPES)
|
2016-02-14 19:13:43 +01:00
|
|
|
else if (channel->CH_IN >= 0)
|
|
|
|
fd = channel->CH_IN;
|
2016-02-13 17:04:46 +01:00
|
|
|
#endif
|
|
|
|
if (fd < 0)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
|
|
|
if (!channel->ch_error && fun != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_errors(channel, "%s(): write while not connected\n", fun);
|
2016-01-26 23:30:18 +01:00
|
|
|
EMSG2("E630: %s(): write while not connected", fun);
|
|
|
|
}
|
|
|
|
channel->ch_error = TRUE;
|
2016-01-28 22:37:01 +01:00
|
|
|
return FAIL;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_log_lead("SEND ", channel);
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, "'");
|
2016-02-14 23:02:34 +01:00
|
|
|
ignored = (int)fwrite(buf, len, 1, log_fd);
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, "'\n");
|
|
|
|
fflush(log_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (use_socket)
|
|
|
|
res = sock_write(fd, buf, len);
|
|
|
|
else
|
|
|
|
res = write(fd, buf, len);
|
|
|
|
if (res != len)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
|
|
|
if (!channel->ch_error && fun != NULL)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
ch_errors(channel, "%s(): write failed\n", fun);
|
2016-01-26 23:30:18 +01:00
|
|
|
EMSG2("E631: %s(): write failed", fun);
|
|
|
|
}
|
|
|
|
channel->ch_error = TRUE;
|
2016-01-28 22:37:01 +01:00
|
|
|
return FAIL;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
|
|
|
channel->ch_error = FALSE;
|
|
|
|
return OK;
|
2016-01-24 20:36:41 +01:00
|
|
|
}
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
# if (defined(UNIX) && !defined(HAVE_SELECT)) || defined(PROTO)
|
2016-01-24 20:36:41 +01:00
|
|
|
/*
|
|
|
|
* Add open channels to the poll struct.
|
|
|
|
* Return the adjusted struct index.
|
|
|
|
* The type of "fds" is hidden to avoid problems with the function proto.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_poll_setup(int nfd_in, void *fds_in)
|
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
int nfd = nfd_in;
|
|
|
|
channel_T *channel;
|
|
|
|
struct pollfd *fds = fds_in;
|
|
|
|
int which;
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
2016-02-14 23:02:34 +01:00
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
# ifdef CHANNEL_PIPES
|
2016-02-14 19:13:43 +01:00
|
|
|
for (which = CHAN_SOCK; which < CHAN_IN; ++which)
|
|
|
|
# else
|
|
|
|
which = CHAN_SOCK;
|
2016-02-13 17:04:46 +01:00
|
|
|
# endif
|
2016-02-14 23:02:34 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
if (channel->ch_pfd[which].ch_fd >= 0)
|
|
|
|
{
|
|
|
|
channel->ch_pfd[which].ch_poll_idx = nfd;
|
|
|
|
fds[nfd].fd = channel->ch_pfd[which].ch_fd;
|
|
|
|
fds[nfd].events = POLLIN;
|
|
|
|
nfd++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
channel->ch_pfd[which].ch_poll_idx = -1;
|
2016-02-14 23:02:34 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
|
|
|
return nfd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The type of "fds" is hidden to avoid problems with the function proto.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_poll_check(int ret_in, void *fds_in)
|
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
int ret = ret_in;
|
|
|
|
channel_T *channel;
|
|
|
|
struct pollfd *fds = fds_in;
|
|
|
|
int which;
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
2016-02-14 23:02:34 +01:00
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
# ifdef CHANNEL_PIPES
|
2016-02-14 23:02:34 +01:00
|
|
|
for (which = CHAN_SOCK; which < CH_IN; ++which)
|
2016-02-14 19:13:43 +01:00
|
|
|
# else
|
|
|
|
which = CHAN_SOCK;
|
|
|
|
# endif
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
int idx = channel->ch_pfd[which].ch_poll_idx;
|
|
|
|
|
|
|
|
if (ret > 0 && idx != -1 && fds[idx].revents & POLLIN)
|
|
|
|
{
|
|
|
|
channel_read(channel, which, "channel_poll_check");
|
|
|
|
--ret;
|
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
}
|
2016-02-14 23:02:34 +01:00
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
# endif /* UNIX && !HAVE_SELECT */
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-01-29 21:11:25 +01:00
|
|
|
# if (!defined(FEAT_GUI_W32) && defined(HAVE_SELECT)) || defined(PROTO)
|
2016-01-24 20:36:41 +01:00
|
|
|
/*
|
|
|
|
* The type of "rfds" is hidden to avoid problems with the function proto.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_select_setup(int maxfd_in, void *rfds_in)
|
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
int maxfd = maxfd_in;
|
|
|
|
channel_T *channel;
|
|
|
|
fd_set *rfds = rfds_in;
|
|
|
|
int which;
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
2016-02-14 23:02:34 +01:00
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
# ifdef CHANNEL_PIPES
|
2016-02-14 19:13:43 +01:00
|
|
|
for (which = CHAN_SOCK; which < CHAN_IN; ++which)
|
|
|
|
# else
|
|
|
|
which = CHAN_SOCK;
|
|
|
|
# endif
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
sock_T fd = channel->ch_pfd[which].ch_fd;
|
|
|
|
|
|
|
|
if (fd >= 0)
|
|
|
|
{
|
|
|
|
FD_SET(fd, rfds);
|
|
|
|
if (maxfd < fd)
|
|
|
|
maxfd = fd;
|
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-02-14 23:02:34 +01:00
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
|
|
|
return maxfd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The type of "rfds" is hidden to avoid problems with the function proto.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_select_check(int ret_in, void *rfds_in)
|
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
int ret = ret_in;
|
|
|
|
channel_T *channel;
|
|
|
|
fd_set *rfds = rfds_in;
|
|
|
|
int which;
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
2016-02-14 23:02:34 +01:00
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
# ifdef CHANNEL_PIPES
|
2016-02-14 19:13:43 +01:00
|
|
|
for (which = CHAN_SOCK; which < CHAN_IN; ++which)
|
|
|
|
# else
|
|
|
|
which = CHAN_SOCK;
|
|
|
|
# endif
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
sock_T fd = channel->ch_pfd[which].ch_fd;
|
|
|
|
|
|
|
|
if (ret > 0 && fd >= 0 && FD_ISSET(fd, rfds))
|
|
|
|
{
|
|
|
|
channel_read(channel, which, "channel_select_check");
|
|
|
|
--ret;
|
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-02-14 23:02:34 +01:00
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2016-01-29 21:11:25 +01:00
|
|
|
# endif /* !FEAT_GUI_W32 && HAVE_SELECT */
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-01-30 23:20:33 +01:00
|
|
|
/*
|
2016-02-02 23:23:02 +01:00
|
|
|
* Execute queued up commands.
|
|
|
|
* Invoked from the main loop when it's safe to execute received commands.
|
|
|
|
* Return TRUE when something was done.
|
2016-01-30 23:20:33 +01:00
|
|
|
*/
|
2016-02-02 23:23:02 +01:00
|
|
|
int
|
2016-01-30 23:20:33 +01:00
|
|
|
channel_parse_messages(void)
|
|
|
|
{
|
2016-02-15 20:39:46 +01:00
|
|
|
channel_T *channel = first_channel;
|
|
|
|
int ret = FALSE;
|
|
|
|
int r;
|
2016-01-30 23:20:33 +01:00
|
|
|
|
2016-02-15 20:39:46 +01:00
|
|
|
while (channel != NULL)
|
|
|
|
{
|
|
|
|
/* Increase the refcount, in case the handler causes the channel to be
|
|
|
|
* unreferenced or closed. */
|
|
|
|
++channel->ch_refcount;
|
|
|
|
r = may_invoke_callback(channel);
|
|
|
|
if (channel_unref(channel))
|
|
|
|
/* channel was freed, start over */
|
|
|
|
channel = first_channel;
|
|
|
|
|
|
|
|
if (r == OK)
|
2016-02-02 23:23:02 +01:00
|
|
|
{
|
2016-02-15 20:39:46 +01:00
|
|
|
channel = first_channel; /* something was done, start over */
|
2016-02-02 23:23:02 +01:00
|
|
|
ret = TRUE;
|
|
|
|
}
|
2016-02-15 20:39:46 +01:00
|
|
|
else
|
|
|
|
channel = channel->ch_next;
|
|
|
|
}
|
2016-02-02 23:23:02 +01:00
|
|
|
return ret;
|
2016-01-30 23:20:33 +01:00
|
|
|
}
|
|
|
|
|
2016-02-07 15:14:01 +01:00
|
|
|
/*
|
|
|
|
* Mark references to lists used in channels.
|
|
|
|
*/
|
2016-02-04 22:49:49 +01:00
|
|
|
int
|
|
|
|
set_ref_in_channel(int copyID)
|
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
int abort = FALSE;
|
|
|
|
channel_T *channel;
|
2016-02-04 22:49:49 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
2016-02-04 22:49:49 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
jsonq_T *head = &channel->ch_json_head;
|
|
|
|
jsonq_T *item = head->jq_next;
|
2016-02-04 22:49:49 +01:00
|
|
|
|
2016-02-13 23:23:53 +01:00
|
|
|
while (item != NULL)
|
2016-02-04 22:49:49 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
list_T *l = item->jq_value->vval.v_list;
|
2016-02-04 22:49:49 +01:00
|
|
|
|
|
|
|
if (l->lv_copyID != copyID)
|
|
|
|
{
|
|
|
|
l->lv_copyID = copyID;
|
|
|
|
abort = abort || set_ref_in_list(l, copyID, NULL);
|
|
|
|
}
|
2016-02-13 23:23:53 +01:00
|
|
|
item = item->jq_next;
|
2016-02-04 22:49:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return abort;
|
|
|
|
}
|
2016-02-07 21:59:26 +01:00
|
|
|
|
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Return the mode of channel "channel".
|
|
|
|
* If "channel" is invalid returns MODE_JSON.
|
2016-02-07 21:59:26 +01:00
|
|
|
*/
|
|
|
|
ch_mode_T
|
2016-02-13 23:23:53 +01:00
|
|
|
channel_get_mode(channel_T *channel)
|
2016-02-07 21:59:26 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
if (channel == NULL)
|
2016-02-07 21:59:26 +01:00
|
|
|
return MODE_JSON;
|
2016-02-13 23:23:53 +01:00
|
|
|
return channel->ch_mode;
|
2016-02-07 21:59:26 +01:00
|
|
|
}
|
|
|
|
|
2016-01-24 20:36:41 +01:00
|
|
|
#endif /* FEAT_CHANNEL */
|