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
|
|
|
/*
|
|
|
|
* Change the zero to 1 to enable debugging.
|
|
|
|
* This will write a file "channel_debug.log".
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
# define CHERROR(fmt, arg) cherror(fmt, arg)
|
|
|
|
# define CHLOG(idx, send, buf) chlog(idx, send, buf)
|
|
|
|
# define CHFILE "channel_debug.log"
|
|
|
|
|
|
|
|
static void cherror(char *fmt, char *arg);
|
|
|
|
static void chlog(int send, char_u *buf);
|
|
|
|
#else
|
|
|
|
# define CHERROR(fmt, arg)
|
|
|
|
# define CHLOG(idx, send, buf)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
|
|
|
struct readqueue
|
|
|
|
{
|
|
|
|
char_u *buffer;
|
|
|
|
struct readqueue *next;
|
|
|
|
struct readqueue *prev;
|
|
|
|
};
|
2016-02-01 21:38:19 +01:00
|
|
|
typedef struct readqueue readq_T;
|
|
|
|
|
|
|
|
struct jsonqueue
|
|
|
|
{
|
|
|
|
typval_T *value;
|
|
|
|
struct jsonqueue *next;
|
|
|
|
struct jsonqueue *prev;
|
|
|
|
};
|
|
|
|
typedef struct jsonqueue jsonq_T;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-05 21:04:08 +01:00
|
|
|
struct cbqueue
|
|
|
|
{
|
|
|
|
char_u *callback;
|
|
|
|
int seq_nr;
|
|
|
|
struct cbqueue *next;
|
|
|
|
struct cbqueue *prev;
|
|
|
|
};
|
|
|
|
typedef struct cbqueue cbq_T;
|
|
|
|
|
2016-01-24 20:36:41 +01:00
|
|
|
typedef struct {
|
2016-01-28 22:37:01 +01:00
|
|
|
sock_T ch_fd; /* the socket, -1 for a closed channel */
|
|
|
|
int ch_idx; /* used by channel_poll_setup() */
|
2016-02-01 21:38:19 +01:00
|
|
|
readq_T ch_head; /* dummy node, header for circular queue */
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
int ch_error; /* When TRUE an error was reported. Avoids giving
|
2016-01-26 23:30:18 +01:00
|
|
|
* pages full of error messages when the other side
|
|
|
|
* has exited, only mention the first error until the
|
|
|
|
* connection works again. */
|
|
|
|
#ifdef FEAT_GUI_X11
|
|
|
|
XtInputId ch_inputHandler; /* Cookie for input */
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GUI_GTK
|
2016-01-28 22:37:01 +01:00
|
|
|
gint ch_inputHandler; /* Cookie for input */
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
2016-01-29 21:11:25 +01:00
|
|
|
#ifdef WIN32
|
2016-01-28 22:37:01 +01:00
|
|
|
int ch_inputHandler; /* simply ret.value of WSAAsyncSelect() */
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
void (*ch_close_cb)(void); /* callback for when channel is closed */
|
|
|
|
|
|
|
|
char_u *ch_callback; /* function to call when a msg is not handled */
|
2016-02-05 21:04:08 +01:00
|
|
|
cbq_T ch_cb_head; /* dummy node for pre-request callbacks */
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-07 19:19:53 +01:00
|
|
|
ch_mode_T ch_mode;
|
2016-02-01 21:38:19 +01:00
|
|
|
jsonq_T ch_json_head; /* dummy node, header for circular queue */
|
2016-02-05 22:36:41 +01:00
|
|
|
|
|
|
|
int ch_timeout; /* request timeout in msec */
|
2016-01-24 20:36:41 +01:00
|
|
|
} channel_T;
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
|
|
|
* Information about all channels.
|
|
|
|
* There can be gaps for closed channels, they will be reused later.
|
|
|
|
*/
|
2016-01-24 20:36:41 +01:00
|
|
|
static channel_T *channels = NULL;
|
|
|
|
static int channel_count = 0;
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
|
|
|
* TODO: open debug file when desired.
|
|
|
|
*/
|
|
|
|
FILE *debugfd = NULL;
|
|
|
|
|
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-01-24 20:36:41 +01:00
|
|
|
/*
|
|
|
|
* Add a new channel slot, return the index.
|
2016-01-26 23:30:18 +01:00
|
|
|
* The channel isn't actually used into ch_fd is set >= 0;
|
|
|
|
* Returns -1 if all channels are in use.
|
2016-01-24 20:36:41 +01:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
add_channel(void)
|
|
|
|
{
|
|
|
|
int idx;
|
2016-02-01 21:38:19 +01:00
|
|
|
channel_T *ch;
|
2016-01-24 20:36:41 +01:00
|
|
|
|
|
|
|
if (channels != NULL)
|
2016-02-03 23:25:07 +01:00
|
|
|
{
|
2016-01-24 20:36:41 +01:00
|
|
|
for (idx = 0; idx < channel_count; ++idx)
|
|
|
|
if (channels[idx].ch_fd < 0)
|
|
|
|
/* re-use a closed channel slot */
|
|
|
|
return idx;
|
2016-02-03 23:25:07 +01:00
|
|
|
if (channel_count == MAX_OPEN_CHANNELS)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
channels = (channel_T *)alloc((int)sizeof(channel_T)
|
|
|
|
* MAX_OPEN_CHANNELS);
|
|
|
|
if (channels == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
ch = &channels[channel_count];
|
|
|
|
(void)vim_memset(ch, 0, sizeof(channel_T));
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
ch->ch_fd = (sock_T)-1;
|
2016-01-26 23:30:18 +01:00
|
|
|
#ifdef FEAT_GUI_X11
|
2016-02-01 21:38:19 +01:00
|
|
|
ch->ch_inputHandler = (XtInputId)NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GUI_GTK
|
2016-02-01 21:38:19 +01:00
|
|
|
ch->ch_inputHandler = 0;
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GUI_W32
|
2016-02-01 21:38:19 +01:00
|
|
|
ch->ch_inputHandler = -1;
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
2016-02-01 21:38:19 +01:00
|
|
|
/* initialize circular queues */
|
|
|
|
ch->ch_head.next = &ch->ch_head;
|
|
|
|
ch->ch_head.prev = &ch->ch_head;
|
2016-02-05 21:04:08 +01:00
|
|
|
ch->ch_cb_head.next = &ch->ch_cb_head;
|
|
|
|
ch->ch_cb_head.prev = &ch->ch_cb_head;
|
2016-02-01 21:38:19 +01:00
|
|
|
ch->ch_json_head.next = &ch->ch_json_head;
|
|
|
|
ch->ch_json_head.prev = &ch->ch_json_head;
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-02-05 22:36:41 +01:00
|
|
|
ch->ch_timeout = 2000;
|
|
|
|
|
2016-01-24 20:36:41 +01:00
|
|
|
return channel_count++;
|
|
|
|
}
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
#if defined(FEAT_GUI) || defined(PROTO)
|
|
|
|
/*
|
|
|
|
* Read a command from netbeans.
|
|
|
|
*/
|
|
|
|
#ifdef FEAT_GUI_X11
|
|
|
|
static void
|
|
|
|
messageFromNetbeans(XtPointer clientData,
|
|
|
|
int *unused1 UNUSED,
|
|
|
|
XtInputId *unused2 UNUSED)
|
|
|
|
{
|
|
|
|
channel_read((int)(long)clientData);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FEAT_GUI_GTK
|
|
|
|
static void
|
|
|
|
messageFromNetbeans(gpointer clientData,
|
|
|
|
gint unused1 UNUSED,
|
|
|
|
GdkInputCondition unused2 UNUSED)
|
|
|
|
{
|
|
|
|
channel_read((int)(long)clientData);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
|
|
|
channel_gui_register(int idx)
|
|
|
|
{
|
|
|
|
channel_T *channel = &channels[idx];
|
|
|
|
|
|
|
|
if (!CH_HAS_GUI)
|
|
|
|
return;
|
|
|
|
|
|
|
|
# ifdef FEAT_GUI_X11
|
|
|
|
/* tell notifier we are interested in being called
|
|
|
|
* when there is input on the editor connection socket
|
|
|
|
*/
|
|
|
|
if (channel->ch_inputHandler == (XtInputId)NULL)
|
|
|
|
channel->ch_inputHandler =
|
|
|
|
XtAppAddInput((XtAppContext)app_context, channel->ch_fd,
|
|
|
|
(XtPointer)(XtInputReadMask + XtInputExceptMask),
|
2016-01-28 22:37:01 +01:00
|
|
|
messageFromNetbeans, (XtPointer)(long)idx);
|
2016-01-26 23:30:18 +01:00
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_GTK
|
|
|
|
/*
|
|
|
|
* Tell gdk we are interested in being called when there
|
|
|
|
* is input on the editor connection socket
|
|
|
|
*/
|
|
|
|
if (channel->ch_inputHandler == 0)
|
|
|
|
channel->ch_inputHandler =
|
|
|
|
gdk_input_add((gint)channel->ch_fd, (GdkInputCondition)
|
|
|
|
((int)GDK_INPUT_READ + (int)GDK_INPUT_EXCEPTION),
|
|
|
|
messageFromNetbeans, (gpointer)(long)idx);
|
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_W32
|
|
|
|
/*
|
|
|
|
* Tell Windows we are interested in receiving message when there
|
|
|
|
* is input on the editor connection socket.
|
|
|
|
*/
|
|
|
|
if (channel->ch_inputHandler == -1)
|
|
|
|
channel->ch_inputHandler =
|
|
|
|
WSAAsyncSelect(channel->ch_fd, s_hwnd, WM_NETBEANS, FD_READ);
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < channel_count; ++i)
|
|
|
|
if (channels[i].ch_fd >= 0)
|
|
|
|
channel_gui_register(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
channel_gui_unregister(int idx)
|
|
|
|
{
|
|
|
|
channel_T *channel = &channels[idx];
|
|
|
|
|
|
|
|
# ifdef FEAT_GUI_X11
|
|
|
|
if (channel->ch_inputHandler != (XtInputId)NULL)
|
|
|
|
{
|
|
|
|
XtRemoveInput(channel->ch_inputHandler);
|
|
|
|
channel->ch_inputHandler = (XtInputId)NULL;
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_GTK
|
|
|
|
if (channel->ch_inputHandler != 0)
|
|
|
|
{
|
|
|
|
gdk_input_remove(channel->ch_inputHandler);
|
|
|
|
channel->ch_inputHandler = 0;
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_W32
|
|
|
|
if (channel->ch_inputHandler == 0)
|
|
|
|
{
|
2016-01-26 23:49:31 +01:00
|
|
|
WSAAsyncSelect(channel->ch_fd, s_hwnd, 0, 0);
|
2016-01-26 23:30:18 +01:00
|
|
|
channel->ch_inputHandler = -1;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open a channel to "hostname":"port".
|
|
|
|
* Returns the channel number for success.
|
|
|
|
* Returns a negative number for failure.
|
2016-01-24 20:36:41 +01:00
|
|
|
*/
|
|
|
|
int
|
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
|
|
|
|
int idx;
|
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
|
|
|
|
|
|
|
|
idx = add_channel();
|
|
|
|
if (idx < 0)
|
|
|
|
{
|
|
|
|
CHERROR("All channels are in use\n", "");
|
2016-01-31 20:24:32 +01:00
|
|
|
EMSG(_("E897: All channels are in use"));
|
2016-01-26 23:30:18 +01:00
|
|
|
return -1;
|
|
|
|
}
|
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-01-26 23:30:18 +01:00
|
|
|
CHERROR("error in socket() in channel_open()\n", "");
|
2016-01-31 20:24:32 +01:00
|
|
|
PERROR("E898: socket() in channel_open()");
|
2016-01-26 23:30:18 +01:00
|
|
|
return -1;
|
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)
|
|
|
|
{
|
|
|
|
CHERROR("error 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);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
CHERROR("channel_open: Connect failed with errno %d\n", errno);
|
2016-01-26 23:30:18 +01:00
|
|
|
sock_close(sd);
|
2016-02-05 22:36:41 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-05 22:36:41 +01:00
|
|
|
/* Try connecting to the server. */
|
|
|
|
ret = connect(sd, (struct sockaddr *)&server, sizeof(server));
|
|
|
|
SOCK_ERRNO;
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
if (errno != EWOULDBLOCK && errno != EINPROGRESS)
|
|
|
|
{
|
|
|
|
CHERROR("channel_open: Connect failed with errno %d\n", errno);
|
|
|
|
CHERROR("Cannot connect to port\n", "");
|
|
|
|
PERROR(_("E902: Cannot connect to port"));
|
|
|
|
sock_close(sd);
|
|
|
|
return -1;
|
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;
|
|
|
|
CHERROR("channel_open: Connect failed with errno %d\n", errno);
|
|
|
|
CHERROR("Cannot connect to port\n", "");
|
|
|
|
PERROR(_("E902: Cannot connect to port"));
|
|
|
|
sock_close(sd);
|
|
|
|
return -1;
|
|
|
|
}
|
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);
|
|
|
|
return -1;
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errno == ECONNREFUSED)
|
|
|
|
{
|
|
|
|
sock_close(sd);
|
|
|
|
if ((sd = (sock_T)socket(AF_INET, SOCK_STREAM, 0)) == (sock_T)-1)
|
|
|
|
{
|
|
|
|
SOCK_ERRNO;
|
|
|
|
CHERROR("socket() retry in channel_open()\n", "");
|
|
|
|
PERROR("E900: socket() retry in channel_open()");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
|
|
|
|
{
|
|
|
|
int retries = 36;
|
|
|
|
int success = FALSE;
|
|
|
|
|
|
|
|
SOCK_ERRNO;
|
|
|
|
while (retries-- && ((errno == ECONNREFUSED)
|
|
|
|
|| (errno == EINTR)))
|
|
|
|
{
|
|
|
|
CHERROR("retrying...\n", "");
|
|
|
|
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. */
|
|
|
|
CHERROR("Cannot connect to port after retry\n", "");
|
|
|
|
PERROR(_("E899: Cannot connect to port after retry2"));
|
|
|
|
sock_close(sd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
channels[idx].ch_fd = sd;
|
|
|
|
channels[idx].ch_close_cb = close_cb;
|
|
|
|
|
|
|
|
#ifdef FEAT_GUI
|
|
|
|
channel_gui_register(idx);
|
|
|
|
#endif
|
|
|
|
|
2016-01-24 20:36:41 +01:00
|
|
|
return idx;
|
|
|
|
}
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
/*
|
2016-02-07 19:19:53 +01:00
|
|
|
* Set the json mode of channel "idx" to "ch_mode".
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-07 19:19:53 +01:00
|
|
|
channel_set_json_mode(int idx, ch_mode_T ch_mode)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-07 19:19:53 +01:00
|
|
|
channels[idx].ch_mode = ch_mode;
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-02-05 22:36:41 +01:00
|
|
|
/*
|
|
|
|
* Set the read timeout of channel "idx".
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_set_timeout(int idx, int timeout)
|
|
|
|
{
|
|
|
|
channels[idx].ch_timeout = timeout;
|
|
|
|
}
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
/*
|
|
|
|
* Set the callback for channel "idx".
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_set_callback(int idx, char_u *callback)
|
|
|
|
{
|
|
|
|
vim_free(channels[idx].ch_callback);
|
|
|
|
channels[idx].ch_callback = vim_strsave(callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-05 21:04:08 +01:00
|
|
|
* Set the callback for channel "idx" for the response with "id".
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-05 21:04:08 +01:00
|
|
|
channel_set_req_callback(int idx, char_u *callback, int id)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-05 21:04:08 +01:00
|
|
|
cbq_T *cbhead = &channels[idx].ch_cb_head;
|
|
|
|
cbq_T *item = (cbq_T *)alloc((int)sizeof(cbq_T));
|
|
|
|
|
|
|
|
if (item != NULL)
|
|
|
|
{
|
|
|
|
item->callback = vim_strsave(callback);
|
|
|
|
item->seq_nr = id;
|
|
|
|
item->prev = cbhead->prev;
|
|
|
|
cbhead->prev = item;
|
|
|
|
item->next = cbhead;
|
|
|
|
item->prev->next = item;
|
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-01 21:38:19 +01:00
|
|
|
* Invoke the "callback" on channel "idx".
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
invoke_callback(int idx, char_u *callback, typval_T *argv)
|
|
|
|
{
|
|
|
|
typval_T rettv;
|
|
|
|
int dummy;
|
|
|
|
|
|
|
|
argv[0].v_type = VAR_NUMBER;
|
|
|
|
argv[0].vval.v_number = idx;
|
|
|
|
|
|
|
|
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 *
|
|
|
|
channel_get(int idx)
|
|
|
|
{
|
|
|
|
readq_T *head = &channels[idx].ch_head;
|
|
|
|
readq_T *node;
|
|
|
|
char_u *p;
|
|
|
|
|
|
|
|
if (head->next == head || head->next == NULL)
|
|
|
|
return NULL;
|
|
|
|
node = head->next;
|
|
|
|
/* dispose of the node but keep the buffer */
|
|
|
|
p = node->buffer;
|
|
|
|
head->next = node->next;
|
|
|
|
node->next->prev = node->prev;
|
|
|
|
vim_free(node);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the whole buffer contents concatenated.
|
|
|
|
*/
|
|
|
|
static char_u *
|
|
|
|
channel_get_all(int idx)
|
|
|
|
{
|
|
|
|
/* Concatenate everything into one buffer.
|
|
|
|
* TODO: avoid multiple allocations. */
|
|
|
|
while (channel_collapse(idx) == OK)
|
|
|
|
;
|
|
|
|
return channel_get(idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Collapses the first and second buffer in the channel "idx".
|
|
|
|
* Returns FAIL if that is not possible.
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
int
|
2016-02-01 21:38:19 +01:00
|
|
|
channel_collapse(int idx)
|
|
|
|
{
|
|
|
|
readq_T *head = &channels[idx].ch_head;
|
|
|
|
readq_T *node = head->next;
|
|
|
|
char_u *p;
|
|
|
|
|
|
|
|
if (node == head || node == NULL || node->next == head)
|
|
|
|
return FAIL;
|
|
|
|
|
|
|
|
p = alloc((unsigned)(STRLEN(node->buffer)
|
|
|
|
+ STRLEN(node->next->buffer) + 1));
|
|
|
|
if (p == NULL)
|
|
|
|
return FAIL; /* out of memory */
|
|
|
|
STRCPY(p, node->buffer);
|
|
|
|
STRCAT(p, node->next->buffer);
|
|
|
|
vim_free(node->next->buffer);
|
|
|
|
node->next->buffer = p;
|
|
|
|
|
|
|
|
/* dispose of the node and buffer */
|
|
|
|
head->next = node->next;
|
|
|
|
node->next->prev = node->prev;
|
|
|
|
vim_free(node->buffer);
|
|
|
|
vim_free(node);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-02 23:23:02 +01:00
|
|
|
* Use the read buffer of channel "ch_idx" 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
|
|
|
|
channel_parse_json(int ch_idx)
|
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
|
|
|
channel_T *channel = &channels[ch_idx];
|
|
|
|
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
|
|
|
|
|
|
|
if (channel_peek(ch_idx) == 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 */
|
|
|
|
/* reader.js_buf = channel_peek(ch_idx); */
|
|
|
|
reader.js_buf = channel_get_all(ch_idx);
|
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; */
|
|
|
|
reader.js_cookie = &ch_idx;
|
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-02 23:23:02 +01:00
|
|
|
item->value = alloc_tv();
|
|
|
|
if (item->value == NULL)
|
|
|
|
{
|
|
|
|
vim_free(item);
|
|
|
|
clear_tv(&listtv);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*item->value = listtv;
|
|
|
|
item->prev = head->prev;
|
|
|
|
head->prev = item;
|
|
|
|
item->next = head;
|
|
|
|
item->prev->next = item;
|
|
|
|
}
|
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-02 18:43:17 +01:00
|
|
|
channel_save(ch_idx, reader.js_buf + reader.js_used,
|
|
|
|
(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
|
|
|
|
remove_cb_node(cbq_T *node)
|
|
|
|
{
|
|
|
|
node->prev->next = node->next;
|
|
|
|
node->next->prev = node->prev;
|
|
|
|
vim_free(node->callback);
|
|
|
|
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.
|
|
|
|
* Caller should have freed or used node->value.
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
static void
|
2016-02-01 21:38:19 +01:00
|
|
|
remove_json_node(jsonq_T *node)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-01 21:38:19 +01:00
|
|
|
node->prev->next = node->next;
|
|
|
|
node->next->prev = node->prev;
|
|
|
|
vim_free(node);
|
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
/*
|
|
|
|
* Get a message from the JSON queue for channel "ch_idx".
|
|
|
|
* When "id" is positive it must match the first number in the list.
|
|
|
|
* When "id" is zero or negative jut get the first message.
|
|
|
|
* Return OK when found and return the value in "rettv".
|
|
|
|
* Return FAIL otherwise.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
channel_get_json(int ch_idx, int id, typval_T **rettv)
|
|
|
|
{
|
|
|
|
jsonq_T *head = &channels[ch_idx].ch_json_head;
|
|
|
|
jsonq_T *item = head->next;
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
while (item != head)
|
|
|
|
{
|
|
|
|
list_T *l = item->value->vval.v_list;
|
|
|
|
typval_T *tv = &l->lv_first->li_tv;
|
|
|
|
|
|
|
|
if ((id > 0 && tv->v_type == VAR_NUMBER && tv->vval.v_number == id)
|
2016-02-05 21:04:08 +01:00
|
|
|
|| id <= 0)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
|
|
|
*rettv = item->value;
|
|
|
|
remove_json_node(item);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
item = item->next;
|
|
|
|
}
|
|
|
|
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
|
|
|
/*
|
|
|
|
* Execute a command received over channel "idx".
|
|
|
|
* "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-01-31 20:24:32 +01:00
|
|
|
channel_exe_cmd(int idx, 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
|
|
|
channel_T *channel = &channels[idx];
|
|
|
|
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-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)
|
|
|
|
{
|
|
|
|
channel_send(idx, json, "eval");
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Invoke a callback for channel "idx" 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-01-28 22:37:01 +01:00
|
|
|
may_invoke_callback(int idx)
|
|
|
|
{
|
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-05 21:04:08 +01:00
|
|
|
channel_T *channel = &channels[idx];
|
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-01 21:38:19 +01:00
|
|
|
if (channel_get_json(idx, -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. */
|
|
|
|
channel_parse_json(idx);
|
|
|
|
if (channel_get_json(idx, -1, &listtv) == FAIL)
|
|
|
|
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;
|
|
|
|
channel_exe_cmd(idx, cmd, &argv[1], arg3);
|
|
|
|
clear_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-01 21:38:19 +01:00
|
|
|
/* TODO: give error */
|
|
|
|
clear_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-02 23:23:02 +01:00
|
|
|
else if (channel_peek(idx) == NULL)
|
|
|
|
{
|
|
|
|
/* nothing to read on raw channel */
|
|
|
|
return FALSE;
|
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* For a raw channel we don't know where the message ends, just get
|
|
|
|
* everything. */
|
|
|
|
msg = channel_get_all(idx);
|
|
|
|
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-05 21:04:08 +01:00
|
|
|
cbq_T *cbhead = &channel->ch_cb_head;
|
|
|
|
cbq_T *cbitem = cbhead->next;
|
|
|
|
|
|
|
|
/* invoke the one-time callback with the matching nr */
|
|
|
|
while (cbitem != cbhead)
|
|
|
|
{
|
|
|
|
if (cbitem->seq_nr == seq_nr)
|
|
|
|
{
|
|
|
|
invoke_callback(idx, cbitem->callback, argv);
|
|
|
|
remove_cb_node(cbitem);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cbitem = cbitem->next;
|
|
|
|
}
|
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-05 21:04:08 +01:00
|
|
|
invoke_callback(idx, channel->ch_callback, argv);
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
|
|
|
/* else: drop the message TODO: give error */
|
|
|
|
|
|
|
|
if (listtv != NULL)
|
|
|
|
clear_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
|
|
|
/*
|
|
|
|
* Return TRUE when channel "idx" is open.
|
2016-01-28 22:37:01 +01:00
|
|
|
* Also returns FALSE or invalid "idx".
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_is_open(int idx)
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-01-28 22:37:01 +01:00
|
|
|
return idx >= 0 && idx < channel_count && channels[idx].ch_fd >= 0;
|
2016-01-24 20:36:41 +01:00
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Close channel "idx".
|
|
|
|
* This does not trigger the close callback.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_close(int idx)
|
|
|
|
{
|
2016-02-01 21:38:19 +01:00
|
|
|
channel_T *channel = &channels[idx];
|
|
|
|
jsonq_T *jhead;
|
2016-02-05 21:04:08 +01:00
|
|
|
cbq_T *cbhead;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
if (channel->ch_fd >= 0)
|
|
|
|
{
|
|
|
|
sock_close(channel->ch_fd);
|
|
|
|
channel->ch_fd = -1;
|
2016-02-01 21:38:19 +01:00
|
|
|
channel->ch_close_cb = NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
#ifdef FEAT_GUI
|
|
|
|
channel_gui_unregister(idx);
|
2016-01-24 20:36:41 +01:00
|
|
|
#endif
|
2016-01-28 22:37:01 +01:00
|
|
|
vim_free(channel->ch_callback);
|
|
|
|
channel->ch_callback = NULL;
|
2016-02-05 22:36:41 +01:00
|
|
|
channel->ch_timeout = 2000;
|
2016-02-01 21:38:19 +01:00
|
|
|
|
|
|
|
while (channel_peek(idx) != NULL)
|
|
|
|
vim_free(channel_get(idx));
|
|
|
|
|
2016-02-05 21:04:08 +01:00
|
|
|
cbhead = &channel->ch_cb_head;
|
|
|
|
while (cbhead->next != cbhead)
|
|
|
|
remove_cb_node(cbhead->next);
|
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
jhead = &channel->ch_json_head;
|
|
|
|
while (jhead->next != jhead)
|
|
|
|
{
|
|
|
|
clear_tv(jhead->next->value);
|
|
|
|
remove_json_node(jhead->next);
|
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
|
|
|
* Store "buf[len]" on channel "idx".
|
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-01-26 23:30:18 +01:00
|
|
|
channel_save(int idx, char_u *buf, int len)
|
|
|
|
{
|
2016-02-01 21:38:19 +01:00
|
|
|
readq_T *node;
|
|
|
|
readq_T *head = &channels[idx].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-01-26 23:30:18 +01:00
|
|
|
node->buffer = alloc(len + 1);
|
|
|
|
if (node->buffer == NULL)
|
|
|
|
{
|
|
|
|
vim_free(node);
|
2016-01-28 23:10:07 +01:00
|
|
|
return FAIL; /* out of memory */
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
mch_memmove(node->buffer, buf, (size_t)len);
|
|
|
|
node->buffer[len] = NUL;
|
|
|
|
|
|
|
|
/* insert node at tail of queue */
|
|
|
|
node->next = head;
|
|
|
|
node->prev = head->prev;
|
|
|
|
head->prev->next = node;
|
|
|
|
head->prev = node;
|
|
|
|
|
|
|
|
if (debugfd != NULL)
|
|
|
|
{
|
|
|
|
fprintf(debugfd, "RECV on %d: ", idx);
|
2016-01-28 23:10:07 +01:00
|
|
|
if (fwrite(buf, len, 1, debugfd) != 1)
|
|
|
|
return FAIL;
|
2016-01-26 23:30:18 +01:00
|
|
|
fprintf(debugfd, "\n");
|
|
|
|
}
|
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 *
|
|
|
|
channel_peek(int idx)
|
|
|
|
{
|
2016-02-01 21:38:19 +01:00
|
|
|
readq_T *head = &channels[idx].ch_head;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
if (head->next == head || head->next == NULL)
|
|
|
|
return NULL;
|
|
|
|
return head->next->buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear the read buffer on channel "idx".
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_clear(int idx)
|
|
|
|
{
|
2016-02-01 21:38:19 +01:00
|
|
|
readq_T *head = &channels[idx].ch_head;
|
|
|
|
readq_T *node = head->next;
|
|
|
|
readq_T *next;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
while (node != NULL && node != head)
|
|
|
|
{
|
|
|
|
next = node->next;
|
|
|
|
vim_free(node->buffer);
|
|
|
|
vim_free(node);
|
|
|
|
if (next == head)
|
|
|
|
{
|
|
|
|
head->next = head;
|
|
|
|
head->prev = head;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
node = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
channel_wait(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;
|
|
|
|
|
|
|
|
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)
|
|
|
|
return FAIL;
|
|
|
|
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
|
|
|
|
|
|
|
fds.fd = fd;
|
|
|
|
fds.events = POLLIN;
|
|
|
|
if (poll(&fds, 1, timeout) <= 0)
|
|
|
|
return FAIL;
|
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++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read from channel "idx" for as long as there is something to read.
|
|
|
|
* The data is put in the read queue.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_read(int idx)
|
|
|
|
{
|
|
|
|
static char_u *buf = NULL;
|
|
|
|
int len = 0;
|
|
|
|
int readlen = 0;
|
2016-01-26 23:30:18 +01:00
|
|
|
channel_T *channel = &channels[idx];
|
|
|
|
|
|
|
|
if (channel->ch_fd < 0)
|
|
|
|
{
|
|
|
|
CHLOG(idx, FALSE, "channel_read() called while socket is closed\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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-01-28 22:37:01 +01:00
|
|
|
if (channel_wait(channel->ch_fd, 0) == FAIL)
|
2016-01-26 23:30:18 +01:00
|
|
|
break;
|
|
|
|
len = sock_read(channel->ch_fd, buf, MAXMSGSIZE);
|
|
|
|
if (len <= 0)
|
|
|
|
break; /* error or nothing more to read */
|
|
|
|
|
|
|
|
/* Store the read message in the queue. */
|
|
|
|
channel_save(idx, buf, len);
|
|
|
|
readlen += len;
|
|
|
|
if (len < MAXMSGSIZE)
|
|
|
|
break; /* did read everything that's available */
|
|
|
|
}
|
2016-02-04 22:09:48 +01:00
|
|
|
#ifdef FEAT_GUI_W32
|
|
|
|
if (len == SOCKET_ERROR)
|
|
|
|
{
|
|
|
|
/* 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()
|
|
|
|
*/
|
|
|
|
channel_save(idx, (char_u *)DETACH_MSG, (int)STRLEN(DETACH_MSG));
|
|
|
|
|
|
|
|
channel_close(idx);
|
|
|
|
if (channel->ch_close_cb != NULL)
|
|
|
|
(*channel->ch_close_cb)();
|
|
|
|
|
|
|
|
if (len < 0)
|
|
|
|
{
|
|
|
|
/* Todo: which channel? */
|
|
|
|
CHERROR("%s(): cannot from channel\n", "channel_read");
|
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)
|
|
|
|
if (CH_HAS_GUI && gtk_main_level() > 0)
|
|
|
|
gtk_main_quit();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
/*
|
2016-02-01 21:38:19 +01:00
|
|
|
* Read from raw channel "idx". Blocks until there is something to read or
|
|
|
|
* 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 *
|
|
|
|
channel_read_block(int idx)
|
|
|
|
{
|
|
|
|
if (channel_peek(idx) == NULL)
|
|
|
|
{
|
2016-02-05 22:36:41 +01:00
|
|
|
/* Wait for up to the channel timeout. */
|
|
|
|
if (channel_wait(channels[idx].ch_fd, channels[idx].ch_timeout) == FAIL)
|
2016-01-28 22:37:01 +01:00
|
|
|
return NULL;
|
|
|
|
channel_read(idx);
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
return channel_get_all(idx);
|
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
/*
|
|
|
|
* Read one JSON message from channel "ch_idx" with ID "id" and store the
|
|
|
|
* 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
|
|
|
|
channel_read_json_block(int ch_idx, int id, typval_T **rettv)
|
|
|
|
{
|
2016-02-02 23:23:02 +01:00
|
|
|
int more;
|
|
|
|
|
2016-02-01 21:38:19 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
2016-02-02 23:23:02 +01:00
|
|
|
more = channel_parse_json(ch_idx);
|
2016-02-01 21:38:19 +01:00
|
|
|
|
|
|
|
/* search for messsage "id" */
|
|
|
|
if (channel_get_json(ch_idx, id, rettv) == OK)
|
|
|
|
return OK;
|
|
|
|
|
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-03 21:32:46 +01:00
|
|
|
if (channels[ch_idx].ch_fd < 0
|
2016-02-05 22:36:41 +01:00
|
|
|
|| channel_wait(channels[ch_idx].ch_fd,
|
|
|
|
channels[ch_idx].ch_timeout) == FAIL)
|
2016-02-02 23:23:02 +01:00
|
|
|
break;
|
|
|
|
channel_read(ch_idx);
|
|
|
|
}
|
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
|
|
|
/*
|
|
|
|
* Lookup the channel index from the socket.
|
|
|
|
* Returns -1 when the socket isn't found.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_socket2idx(sock_T fd)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (fd >= 0)
|
|
|
|
for (i = 0; i < channel_count; ++i)
|
|
|
|
if (channels[i].ch_fd == fd)
|
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
|
|
|
* Write "buf" (NUL terminated string) to channel "idx".
|
|
|
|
* 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-01-26 23:30:18 +01:00
|
|
|
channel_send(int idx, char_u *buf, char *fun)
|
|
|
|
{
|
|
|
|
channel_T *channel = &channels[idx];
|
|
|
|
int len = (int)STRLEN(buf);
|
|
|
|
|
|
|
|
if (channel->ch_fd < 0)
|
|
|
|
{
|
|
|
|
if (!channel->ch_error && fun != NULL)
|
|
|
|
{
|
|
|
|
CHERROR(" %s(): write while not connected\n", fun);
|
|
|
|
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
|
|
|
|
|
|
|
if (sock_write(channel->ch_fd, buf, len) != len)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
|
|
|
if (!channel->ch_error && fun != NULL)
|
|
|
|
{
|
|
|
|
CHERROR(" %s(): write failed\n", fun);
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int nfd = nfd_in;
|
|
|
|
int i;
|
|
|
|
struct pollfd *fds = fds_in;
|
|
|
|
|
|
|
|
for (i = 0; i < channel_count; ++i)
|
|
|
|
if (channels[i].ch_fd >= 0)
|
|
|
|
{
|
|
|
|
channels[i].ch_idx = nfd;
|
|
|
|
fds[nfd].fd = channels[i].ch_fd;
|
|
|
|
fds[nfd].events = POLLIN;
|
|
|
|
nfd++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
channels[i].ch_idx = -1;
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int ret = ret_in;
|
|
|
|
int i;
|
|
|
|
struct pollfd *fds = fds_in;
|
|
|
|
|
|
|
|
for (i = 0; i < channel_count; ++i)
|
|
|
|
if (ret > 0 && channels[i].ch_idx != -1
|
|
|
|
&& fds[channels[i].ch_idx].revents & POLLIN)
|
|
|
|
{
|
|
|
|
channel_read(i);
|
|
|
|
--ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int maxfd = maxfd_in;
|
|
|
|
int i;
|
|
|
|
fd_set *rfds = rfds_in;
|
|
|
|
|
|
|
|
for (i = 0; i < channel_count; ++i)
|
|
|
|
if (channels[i].ch_fd >= 0)
|
|
|
|
{
|
|
|
|
FD_SET(channels[i].ch_fd, rfds);
|
|
|
|
if (maxfd < channels[i].ch_fd)
|
|
|
|
maxfd = channels[i].ch_fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int ret = ret_in;
|
|
|
|
int i;
|
|
|
|
fd_set *rfds = rfds_in;
|
|
|
|
|
|
|
|
for (i = 0; i < channel_count; ++i)
|
|
|
|
if (ret > 0 && channels[i].ch_fd >= 0
|
|
|
|
&& FD_ISSET(channels[i].ch_fd, rfds))
|
|
|
|
{
|
|
|
|
channel_read(i);
|
|
|
|
--ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int i;
|
2016-02-02 23:23:02 +01:00
|
|
|
int ret = FALSE;
|
2016-01-30 23:20:33 +01:00
|
|
|
|
|
|
|
for (i = 0; i < channel_count; ++i)
|
2016-02-02 18:43:17 +01:00
|
|
|
while (may_invoke_callback(i) == OK)
|
2016-02-02 23:23:02 +01:00
|
|
|
{
|
|
|
|
i = 0; /* start over */
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int abort = FALSE;
|
|
|
|
|
|
|
|
for (i = 0; i < channel_count; ++i)
|
|
|
|
{
|
|
|
|
jsonq_T *head = &channels[i].ch_json_head;
|
|
|
|
jsonq_T *item = head->next;
|
|
|
|
|
|
|
|
while (item != head)
|
|
|
|
{
|
|
|
|
list_T *l = item->value->vval.v_list;
|
|
|
|
|
|
|
|
if (l->lv_copyID != copyID)
|
|
|
|
{
|
|
|
|
l->lv_copyID = copyID;
|
|
|
|
abort = abort || set_ref_in_list(l, copyID, NULL);
|
|
|
|
}
|
|
|
|
item = item->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return abort;
|
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
#endif /* FEAT_CHANNEL */
|