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"
|
|
|
|
|
2016-03-11 22:52:15 +01:00
|
|
|
#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
|
2016-01-24 20:36:41 +01:00
|
|
|
|
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-02-28 20:51:49 +01:00
|
|
|
# undef EINPROGRESS
|
|
|
|
# define EINPROGRESS WSAEINPROGRESS
|
2016-01-26 23:30:18 +01:00
|
|
|
# ifdef EINTR
|
|
|
|
# undef EINTR
|
|
|
|
# endif
|
|
|
|
# define EINTR WSAEINTR
|
2016-02-15 21:56:54 +01:00
|
|
|
# define sock_write(sd, buf, len) send((SOCKET)sd, buf, len, 0)
|
|
|
|
# define sock_read(sd, buf, len) recv((SOCKET)sd, buf, len, 0)
|
|
|
|
# define sock_close(sd) closesocket((SOCKET)sd)
|
2016-01-26 23:30:18 +01:00
|
|
|
#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)
|
2016-02-16 13:11:17 +01:00
|
|
|
# define fd_read(fd, buf, len) read(fd, buf, len)
|
2016-02-15 21:56:54 +01:00
|
|
|
# define fd_write(sd, buf, len) write(sd, buf, len)
|
|
|
|
# define fd_close(sd) close(sd)
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
|
|
|
|
2016-02-27 14:44:26 +01:00
|
|
|
/* Whether a redraw is needed for appending a line to a buffer. */
|
|
|
|
static int channel_need_redraw = FALSE;
|
|
|
|
|
|
|
|
|
2016-02-15 21:56:54 +01:00
|
|
|
#ifdef WIN32
|
|
|
|
static int
|
2016-02-16 15:06:59 +01:00
|
|
|
fd_read(sock_T fd, char *buf, size_t len)
|
2016-02-15 21:56:54 +01:00
|
|
|
{
|
|
|
|
HANDLE h = (HANDLE)fd;
|
|
|
|
DWORD nread;
|
|
|
|
|
|
|
|
if (!ReadFile(h, buf, (DWORD)len, &nread, NULL))
|
|
|
|
return -1;
|
|
|
|
return (int)nread;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2016-02-16 15:06:59 +01:00
|
|
|
fd_write(sock_T fd, char *buf, size_t len)
|
2016-02-15 21:56:54 +01:00
|
|
|
{
|
|
|
|
HANDLE h = (HANDLE)fd;
|
|
|
|
DWORD nwrite;
|
|
|
|
|
|
|
|
if (!WriteFile(h, buf, (DWORD)len, &nwrite, NULL))
|
|
|
|
return -1;
|
|
|
|
return (int)nwrite;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fd_close(sock_T fd)
|
|
|
|
{
|
|
|
|
HANDLE h = (HANDLE)fd;
|
|
|
|
|
|
|
|
CloseHandle(h);
|
|
|
|
}
|
|
|
|
#endif
|
2016-02-13 17:04:46 +01:00
|
|
|
|
|
|
|
/* Log file opened with ch_logfile(). */
|
|
|
|
static FILE *log_fd = NULL;
|
2016-02-18 22:23:34 +01:00
|
|
|
#ifdef FEAT_RELTIME
|
|
|
|
static proftime_T log_start;
|
|
|
|
#endif
|
2016-02-13 17:04:46 +01:00
|
|
|
|
|
|
|
void
|
2016-03-12 13:43:33 +01:00
|
|
|
ch_logfile(char_u *fname, char_u *opt)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-03-12 13:43:33 +01:00
|
|
|
FILE *file = NULL;
|
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
if (log_fd != NULL)
|
|
|
|
fclose(log_fd);
|
2016-03-12 13:43:33 +01:00
|
|
|
|
|
|
|
if (*fname != NUL)
|
|
|
|
{
|
|
|
|
file = fopen((char *)fname, *opt == 'w' ? "w" : "a");
|
|
|
|
if (file == NULL)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_notopen), fname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
log_fd = file;
|
2016-03-12 13:43:33 +01:00
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
if (log_fd != NULL)
|
2016-02-18 22:23:34 +01:00
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
fprintf(log_fd, "==== start log session ====\n");
|
2016-02-18 22:23:34 +01:00
|
|
|
#ifdef FEAT_RELTIME
|
|
|
|
profile_start(&log_start);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ch_log_active()
|
|
|
|
{
|
|
|
|
return log_fd != NULL;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
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-18 22:23:34 +01:00
|
|
|
#ifdef FEAT_RELTIME
|
|
|
|
proftime_T log_now;
|
|
|
|
|
|
|
|
profile_start(&log_now);
|
|
|
|
profile_sub(&log_now, &log_start);
|
|
|
|
fprintf(log_fd, "%s ", profile_msg(&log_now));
|
|
|
|
#endif
|
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-03-06 21:50:33 +01:00
|
|
|
static int did_log_msg = TRUE;
|
|
|
|
|
2016-02-18 22:23:34 +01:00
|
|
|
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);
|
2016-02-18 22:23:34 +01:00
|
|
|
fputc('\n', log_fd);
|
2016-02-13 17:04:46 +01:00
|
|
|
fflush(log_fd);
|
2016-03-06 21:50:33 +01:00
|
|
|
did_log_msg = TRUE;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
}
|
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);
|
2016-02-18 22:23:34 +01:00
|
|
|
fputc('\n', log_fd);
|
2016-02-13 17:04:46 +01:00
|
|
|
fflush(log_fd);
|
2016-03-06 21:50:33 +01:00
|
|
|
did_log_msg = TRUE;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-18 22:23:34 +01:00
|
|
|
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);
|
2016-02-18 22:23:34 +01:00
|
|
|
fputc('\n', log_fd);
|
2016-02-13 17:04:46 +01:00
|
|
|
fflush(log_fd);
|
2016-03-06 21:50:33 +01:00
|
|
|
did_log_msg = TRUE;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
}
|
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);
|
2016-02-18 22:23:34 +01:00
|
|
|
fputc('\n', log_fd);
|
2016-02-13 17:04:46 +01:00
|
|
|
fflush(log_fd);
|
2016-03-06 21:50:33 +01:00
|
|
|
did_log_msg = TRUE;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
}
|
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);
|
2016-02-18 22:23:34 +01:00
|
|
|
fputc('\n', log_fd);
|
2016-02-13 17:04:46 +01:00
|
|
|
fflush(log_fd);
|
2016-03-06 21:50:33 +01:00
|
|
|
did_log_msg = TRUE;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
}
|
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);
|
2016-02-18 22:23:34 +01:00
|
|
|
fputc('\n', log_fd);
|
2016-02-13 17:04:46 +01:00
|
|
|
fflush(log_fd);
|
2016-03-06 21:50:33 +01:00
|
|
|
did_log_msg = TRUE;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
}
|
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);
|
2016-02-18 22:23:34 +01:00
|
|
|
fputc('\n', log_fd);
|
2016-02-13 17:04:46 +01:00
|
|
|
fflush(log_fd);
|
2016-03-06 21:50:33 +01:00
|
|
|
did_log_msg = TRUE;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
}
|
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-20 18:18:59 +01:00
|
|
|
int part;
|
2016-02-14 19:13:43 +01:00
|
|
|
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++;
|
2016-02-18 22:23:34 +01:00
|
|
|
ch_log(channel, "Created channel");
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part <= PART_IN; ++part)
|
2016-02-14 19:13:43 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].ch_fd = INVALID_FD;
|
2016-01-26 23:30:18 +01:00
|
|
|
#ifdef FEAT_GUI_X11
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].ch_inputHandler = (XtInputId)NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GUI_GTK
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].ch_inputHandler = 0;
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].ch_timeout = 2000;
|
2016-02-14 19:13:43 +01:00
|
|
|
}
|
2016-02-13 23:23:53 +01:00
|
|
|
|
|
|
|
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-25 23:10:17 +01:00
|
|
|
/*
|
2016-02-28 15:49:03 +01:00
|
|
|
* Called when the refcount of a channel is zero.
|
2016-02-26 11:17:46 +01:00
|
|
|
* Return TRUE if "channel" has a callback and the associated job wasn't
|
|
|
|
* killed.
|
2016-02-25 23:10:17 +01:00
|
|
|
*/
|
|
|
|
static int
|
2016-02-26 11:17:46 +01:00
|
|
|
channel_still_useful(channel_T *channel)
|
2016-02-25 23:10:17 +01:00
|
|
|
{
|
2016-02-28 22:21:38 +01:00
|
|
|
int has_sock_msg;
|
|
|
|
int has_out_msg;
|
|
|
|
int has_err_msg;
|
|
|
|
|
|
|
|
/* If the job was killed the channel is not expected to work anymore. */
|
2016-02-26 11:17:46 +01:00
|
|
|
if (channel->ch_job_killed && channel->ch_job == NULL)
|
|
|
|
return FALSE;
|
2016-02-28 22:21:38 +01:00
|
|
|
|
|
|
|
/* If there is a close callback it may still need to be invoked. */
|
|
|
|
if (channel->ch_close_cb != NULL)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* If there is no callback then nobody can get readahead. If the fd is
|
|
|
|
* closed and there is no readahead then the callback won't be called. */
|
|
|
|
has_sock_msg = channel->ch_part[PART_SOCK].ch_fd != INVALID_FD
|
|
|
|
|| channel->ch_part[PART_SOCK].ch_head.rq_next != NULL
|
|
|
|
|| channel->ch_part[PART_SOCK].ch_json_head.jq_next != NULL;
|
|
|
|
has_out_msg = channel->ch_part[PART_OUT].ch_fd != INVALID_FD
|
|
|
|
|| channel->ch_part[PART_OUT].ch_head.rq_next != NULL
|
|
|
|
|| channel->ch_part[PART_OUT].ch_json_head.jq_next != NULL;
|
|
|
|
has_err_msg = channel->ch_part[PART_ERR].ch_fd != INVALID_FD
|
|
|
|
|| channel->ch_part[PART_ERR].ch_head.rq_next != NULL
|
|
|
|
|| channel->ch_part[PART_ERR].ch_json_head.jq_next != NULL;
|
|
|
|
return (channel->ch_callback != NULL && (has_sock_msg
|
2016-03-11 22:52:15 +01:00
|
|
|
|| has_out_msg || has_err_msg))
|
2016-02-28 22:21:38 +01:00
|
|
|
|| (channel->ch_part[PART_OUT].ch_callback != NULL && has_out_msg)
|
2016-03-11 22:52:15 +01:00
|
|
|
|| (channel->ch_part[PART_ERR].ch_callback != NULL && has_err_msg);
|
2016-02-25 23:10:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Close a channel and free all its resources if there is no further action
|
2016-02-26 11:17:46 +01:00
|
|
|
* possible, there is no callback to be invoked or the associated job was
|
|
|
|
* killed.
|
2016-02-28 19:28:59 +01:00
|
|
|
* Return TRUE if the channel was freed.
|
2016-02-25 23:10:17 +01:00
|
|
|
*/
|
2016-03-12 13:43:33 +01:00
|
|
|
static int
|
2016-02-25 23:10:17 +01:00
|
|
|
channel_may_free(channel_T *channel)
|
|
|
|
{
|
2016-02-26 11:17:46 +01:00
|
|
|
if (!channel_still_useful(channel))
|
2016-02-28 19:28:59 +01:00
|
|
|
{
|
2016-02-25 23:10:17 +01:00
|
|
|
channel_free(channel);
|
2016-02-28 19:28:59 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
2016-02-25 23:10:17 +01:00
|
|
|
}
|
|
|
|
|
2016-03-12 13:43:33 +01:00
|
|
|
/*
|
|
|
|
* Decrement the reference count on "channel" and maybe free it when it goes
|
|
|
|
* down to zero. Don't free it if there is a pending action.
|
|
|
|
* Returns TRUE when the channel is no longer referenced.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_unref(channel_T *channel)
|
|
|
|
{
|
|
|
|
if (channel != NULL && --channel->ch_refcount <= 0)
|
|
|
|
return channel_may_free(channel);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
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-24 20:43:06 +01:00
|
|
|
channel_close(channel, TRUE);
|
2016-02-27 14:44:26 +01:00
|
|
|
channel_clear(channel);
|
2016-02-28 15:49:03 +01:00
|
|
|
ch_log(channel, "Freeing channel");
|
2016-02-13 23:23:53 +01:00
|
|
|
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-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
|
2016-02-20 18:44:39 +01:00
|
|
|
channel_read_fd(int fd)
|
2016-02-13 23:23:53 +01:00
|
|
|
{
|
2016-02-20 18:44:39 +01:00
|
|
|
channel_T *channel;
|
2016-02-20 18:18:59 +01:00
|
|
|
int part;
|
2016-02-13 23:23:53 +01:00
|
|
|
|
2016-02-20 18:44:39 +01:00
|
|
|
channel = channel_fd2channel(fd, &part);
|
2016-02-13 23:23:53 +01:00
|
|
|
if (channel == NULL)
|
2016-02-20 18:44:39 +01:00
|
|
|
ch_errorn(NULL, "Channel for fd %d not found", fd);
|
2016-02-13 23:23:53 +01:00
|
|
|
else
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_read(channel, part, "messageFromNetbeans");
|
2016-02-13 23:23:53 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
|
|
|
* Read a command from netbeans.
|
2016-02-20 18:18:59 +01:00
|
|
|
* TODO: instead of channel ID use the FD.
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
|
|
|
#ifdef FEAT_GUI_X11
|
|
|
|
static void
|
|
|
|
messageFromNetbeans(XtPointer clientData,
|
|
|
|
int *unused1 UNUSED,
|
|
|
|
XtInputId *unused2 UNUSED)
|
|
|
|
{
|
2016-02-20 18:44:39 +01:00
|
|
|
channel_read_fd((int)(long)clientData);
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FEAT_GUI_GTK
|
2016-02-23 17:14:37 +01:00
|
|
|
# if GTK_CHECK_VERSION(3,0,0)
|
|
|
|
static gboolean
|
|
|
|
messageFromNetbeans(GIOChannel *unused1 UNUSED,
|
|
|
|
GIOCondition unused2 UNUSED,
|
|
|
|
gpointer clientData)
|
|
|
|
{
|
|
|
|
channel_read_fd(GPOINTER_TO_INT(clientData));
|
|
|
|
return TRUE; /* Return FALSE instead in case the event source is to
|
|
|
|
* be removed after this function returns. */
|
|
|
|
}
|
|
|
|
# else
|
2016-01-26 23:30:18 +01:00
|
|
|
static void
|
|
|
|
messageFromNetbeans(gpointer clientData,
|
|
|
|
gint unused1 UNUSED,
|
|
|
|
GdkInputCondition unused2 UNUSED)
|
|
|
|
{
|
2016-02-20 18:44:39 +01:00
|
|
|
channel_read_fd((int)(long)clientData);
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-02-23 17:14:37 +01:00
|
|
|
# endif
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_gui_register_one(channel_T *channel, int part)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-03-11 22:19:44 +01:00
|
|
|
if (!CH_HAS_GUI)
|
|
|
|
return;
|
|
|
|
|
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. */
|
2016-02-20 18:18:59 +01:00
|
|
|
if (channel->ch_part[part].ch_inputHandler == (XtInputId)NULL)
|
|
|
|
channel->ch_part[part].ch_inputHandler = XtAppAddInput(
|
2016-02-14 19:13:43 +01:00
|
|
|
(XtAppContext)app_context,
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].ch_fd,
|
2016-02-14 19:13:43 +01:00
|
|
|
(XtPointer)(XtInputReadMask + XtInputExceptMask),
|
|
|
|
messageFromNetbeans,
|
2016-02-20 18:44:39 +01:00
|
|
|
(XtPointer)(long)channel->ch_part[part].ch_fd);
|
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. */
|
2016-02-20 18:18:59 +01:00
|
|
|
if (channel->ch_part[part].ch_inputHandler == 0)
|
2016-02-23 17:14:37 +01:00
|
|
|
# if GTK_CHECK_VERSION(3,0,0)
|
|
|
|
{
|
|
|
|
GIOChannel *chnnl = g_io_channel_unix_new(
|
|
|
|
(gint)channel->ch_part[part].ch_fd);
|
|
|
|
|
|
|
|
channel->ch_part[part].ch_inputHandler = g_io_add_watch(
|
|
|
|
chnnl,
|
|
|
|
G_IO_IN|G_IO_HUP|G_IO_ERR|G_IO_PRI,
|
|
|
|
messageFromNetbeans,
|
|
|
|
GINT_TO_POINTER(channel->ch_part[part].ch_fd));
|
|
|
|
|
|
|
|
g_io_channel_unref(chnnl);
|
|
|
|
}
|
|
|
|
# else
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].ch_inputHandler = gdk_input_add(
|
|
|
|
(gint)channel->ch_part[part].ch_fd,
|
2016-02-14 23:02:34 +01:00
|
|
|
(GdkInputCondition)
|
|
|
|
((int)GDK_INPUT_READ + (int)GDK_INPUT_EXCEPTION),
|
2016-02-14 19:13:43 +01:00
|
|
|
messageFromNetbeans,
|
2016-02-20 18:44:39 +01:00
|
|
|
(gpointer)(long)channel->ch_part[part].ch_fd);
|
2016-02-23 17:14:37 +01:00
|
|
|
# endif
|
2016-01-26 23:30:18 +01:00
|
|
|
# endif
|
|
|
|
# endif
|
2016-02-14 19:13:43 +01:00
|
|
|
}
|
|
|
|
|
2016-03-11 22:19:44 +01:00
|
|
|
static void
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_gui_register(channel_T *channel)
|
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
if (channel->CH_SOCK_FD != INVALID_FD)
|
|
|
|
channel_gui_register_one(channel, PART_SOCK);
|
|
|
|
if (channel->CH_OUT_FD != INVALID_FD)
|
|
|
|
channel_gui_register_one(channel, PART_OUT);
|
|
|
|
if (channel->CH_ERR_FD != INVALID_FD)
|
|
|
|
channel_gui_register_one(channel, PART_ERR);
|
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
|
|
|
}
|
|
|
|
|
2016-03-11 22:19:44 +01:00
|
|
|
static void
|
|
|
|
channel_gui_unregister_one(channel_T *channel, int part)
|
|
|
|
{
|
|
|
|
# ifdef FEAT_GUI_X11
|
|
|
|
if (channel->ch_part[part].ch_inputHandler != (XtInputId)NULL)
|
|
|
|
{
|
|
|
|
XtRemoveInput(channel->ch_part[part].ch_inputHandler);
|
|
|
|
channel->ch_part[part].ch_inputHandler = (XtInputId)NULL;
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_GTK
|
|
|
|
if (channel->ch_part[part].ch_inputHandler != 0)
|
|
|
|
{
|
|
|
|
# if GTK_CHECK_VERSION(3,0,0)
|
|
|
|
g_source_remove(channel->ch_part[part].ch_inputHandler);
|
|
|
|
# else
|
|
|
|
gdk_input_remove(channel->ch_part[part].ch_inputHandler);
|
|
|
|
# endif
|
|
|
|
channel->ch_part[part].ch_inputHandler = 0;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
|
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-20 18:18:59 +01:00
|
|
|
int part;
|
2016-02-14 23:02:34 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part < PART_IN; ++part)
|
2016-03-11 22:19:44 +01:00
|
|
|
channel_gui_unregister_one(channel, part);
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-02-16 22:01:30 +01:00
|
|
|
static char *e_cannot_connect = N_("E902: Cannot connect to port");
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
2016-02-13 17:04:46 +01:00
|
|
|
* Open a socket channel to "hostname":"port".
|
2016-02-16 22:01:30 +01:00
|
|
|
* "waittime" is the time in msec to wait for the connection.
|
|
|
|
* When negative wait forever.
|
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-23 13:20:22 +01:00
|
|
|
channel_open(
|
|
|
|
char *hostname,
|
|
|
|
int port_in,
|
|
|
|
int waittime,
|
|
|
|
void (*nb_close_cb)(void))
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-02-18 22:23:34 +01:00
|
|
|
int sd = -1;
|
2016-01-26 23:30:18 +01:00
|
|
|
struct sockaddr_in server;
|
2016-02-18 22:23:34 +01:00
|
|
|
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-18 22:23:34 +01:00
|
|
|
ch_error(NULL, "Cannot allocate 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-18 22:23:34 +01:00
|
|
|
ch_error(channel, "in gethostbyname() in channel_open()");
|
2016-01-31 20:24:32 +01:00
|
|
|
PERROR("E901: gethostbyname() 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-26 23:30:18 +01:00
|
|
|
}
|
|
|
|
memcpy((char *)&server.sin_addr, host->h_addr, host->h_length);
|
|
|
|
|
2016-02-19 23:23:12 +01:00
|
|
|
/* On Mac and Solaris a zero timeout almost never works. At least wait
|
|
|
|
* one millisecond. Let's do it for all systems, because we don't know why
|
|
|
|
* this is needed. */
|
2016-02-18 22:23:34 +01:00
|
|
|
if (waittime == 0)
|
|
|
|
waittime = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For Unix we need to call connect() again after connect() failed.
|
|
|
|
* On Win32 one time is sufficient.
|
|
|
|
*/
|
|
|
|
while (TRUE)
|
|
|
|
{
|
2016-03-09 21:50:05 +01:00
|
|
|
long elapsed_msec = 0;
|
|
|
|
int waitnow;
|
2016-03-08 22:33:07 +01:00
|
|
|
|
2016-02-18 22:23:34 +01:00
|
|
|
if (sd >= 0)
|
2016-01-26 23:30:18 +01:00
|
|
|
sock_close(sd);
|
2016-02-18 22:23:34 +01:00
|
|
|
sd = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
if (sd == -1)
|
|
|
|
{
|
|
|
|
ch_error(channel, "in socket() in channel_open().");
|
|
|
|
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-02-05 22:36:41 +01:00
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-18 22:23:34 +01:00
|
|
|
if (waittime >= 0)
|
|
|
|
{
|
|
|
|
/* Make connect() non-blocking. */
|
|
|
|
if (
|
|
|
|
#ifdef _WIN32
|
|
|
|
ioctlsocket(sd, FIONBIO, &val) < 0
|
|
|
|
#else
|
|
|
|
fcntl(sd, F_SETFL, O_NONBLOCK) < 0
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
{
|
|
|
|
SOCK_ERRNO;
|
|
|
|
ch_errorn(channel,
|
|
|
|
"channel_open: Connect failed with errno %d", errno);
|
|
|
|
sock_close(sd);
|
|
|
|
channel_free(channel);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try connecting to the server. */
|
|
|
|
ch_logsn(channel, "Connecting to %s port %d", hostname, port);
|
|
|
|
ret = connect(sd, (struct sockaddr *)&server, sizeof(server));
|
|
|
|
|
2016-03-08 22:33:07 +01:00
|
|
|
if (ret == 0)
|
|
|
|
/* The connection could be established. */
|
|
|
|
break;
|
|
|
|
|
2016-02-18 22:23:34 +01:00
|
|
|
SOCK_ERRNO;
|
2016-03-08 22:33:07 +01:00
|
|
|
if (waittime < 0 || (errno != EWOULDBLOCK
|
|
|
|
&& errno != ECONNREFUSED
|
2016-02-13 17:04:46 +01:00
|
|
|
#ifdef EINPROGRESS
|
2016-03-08 22:33:07 +01:00
|
|
|
&& errno != EINPROGRESS
|
2016-02-13 17:04:46 +01:00
|
|
|
#endif
|
2016-03-08 22:33:07 +01:00
|
|
|
))
|
|
|
|
{
|
|
|
|
ch_errorn(channel,
|
|
|
|
"channel_open: Connect failed with errno %d", errno);
|
|
|
|
PERROR(_(e_cannot_connect));
|
|
|
|
sock_close(sd);
|
|
|
|
channel_free(channel);
|
|
|
|
return NULL;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-02-05 22:36:41 +01:00
|
|
|
|
2016-03-10 21:10:58 +01:00
|
|
|
/* Limit the waittime to 50 msec. If it doesn't work within this
|
|
|
|
* time we close the socket and try creating it again. */
|
|
|
|
waitnow = waittime > 50 ? 50 : waittime;
|
|
|
|
|
2016-03-08 22:33:07 +01:00
|
|
|
/* If connect() didn't finish then try using select() to wait for the
|
2016-03-09 21:50:05 +01:00
|
|
|
* connection to be made. For Win32 always use select() to wait. */
|
2016-03-08 22:33:07 +01:00
|
|
|
#ifndef WIN32
|
|
|
|
if (errno != ECONNREFUSED)
|
|
|
|
#endif
|
2016-02-18 22:23:34 +01:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
2016-02-28 20:51:49 +01:00
|
|
|
fd_set rfds;
|
2016-02-18 22:23:34 +01:00
|
|
|
fd_set wfds;
|
2016-02-28 22:33:46 +01:00
|
|
|
#ifndef WIN32
|
2016-02-28 20:51:49 +01:00
|
|
|
int so_error = 0;
|
|
|
|
socklen_t so_error_len = sizeof(so_error);
|
2016-03-08 22:33:07 +01:00
|
|
|
struct timeval start_tv;
|
|
|
|
struct timeval end_tv;
|
2016-02-28 22:33:46 +01:00
|
|
|
#endif
|
2016-02-18 22:23:34 +01:00
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(sd, &rfds);
|
|
|
|
FD_ZERO(&wfds);
|
|
|
|
FD_SET(sd, &wfds);
|
|
|
|
|
2016-03-09 21:50:05 +01:00
|
|
|
tv.tv_sec = waitnow / 1000;
|
|
|
|
tv.tv_usec = (waitnow % 1000) * 1000;
|
2016-02-18 22:23:34 +01:00
|
|
|
#ifndef WIN32
|
|
|
|
gettimeofday(&start_tv, NULL);
|
|
|
|
#endif
|
|
|
|
ch_logn(channel,
|
2016-03-09 21:50:05 +01:00
|
|
|
"Waiting for connection (waiting %d msec)...", waitnow);
|
2016-02-28 20:51:49 +01:00
|
|
|
ret = select((int)sd + 1, &rfds, &wfds, NULL, &tv);
|
2016-02-16 22:01:30 +01:00
|
|
|
|
2016-02-18 22:23:34 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
SOCK_ERRNO;
|
|
|
|
ch_errorn(channel,
|
|
|
|
"channel_open: Connect failed with errno %d", errno);
|
|
|
|
PERROR(_(e_cannot_connect));
|
|
|
|
sock_close(sd);
|
|
|
|
channel_free(channel);
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-02-28 20:51:49 +01:00
|
|
|
|
2016-02-28 22:33:46 +01:00
|
|
|
#ifdef WIN32
|
2016-03-09 21:50:05 +01:00
|
|
|
/* On Win32: select() is expected to work and wait for up to
|
|
|
|
* "waitnow" msec for the socket to be open. */
|
2016-03-08 22:33:07 +01:00
|
|
|
if (FD_ISSET(sd, &wfds))
|
|
|
|
break;
|
2016-03-09 21:50:05 +01:00
|
|
|
elapsed_msec = waitnow;
|
|
|
|
if (waittime > 1 && elapsed_msec < waittime)
|
|
|
|
{
|
|
|
|
waittime -= elapsed_msec;
|
|
|
|
continue;
|
|
|
|
}
|
2016-02-28 22:33:46 +01:00
|
|
|
#else
|
|
|
|
/* On Linux-like systems: See socket(7) for the behavior
|
2016-02-18 22:23:34 +01:00
|
|
|
* After putting the socket in non-blocking mode, connect() will
|
|
|
|
* return EINPROGRESS, select() will not wait (as if writing is
|
|
|
|
* possible), need to use getsockopt() to check if the socket is
|
2016-03-02 20:48:47 +01:00
|
|
|
* actually able to connect.
|
2016-03-08 22:33:07 +01:00
|
|
|
* We detect a failure to connect when either read and write fds
|
2016-02-28 20:51:49 +01:00
|
|
|
* are set. Use getsockopt() to find out what kind of failure. */
|
2016-03-02 20:48:47 +01:00
|
|
|
if (FD_ISSET(sd, &rfds) || FD_ISSET(sd, &wfds))
|
2016-02-28 20:51:49 +01:00
|
|
|
{
|
|
|
|
ret = getsockopt(sd,
|
2016-03-08 22:33:07 +01:00
|
|
|
SOL_SOCKET, SO_ERROR, &so_error, &so_error_len);
|
2016-02-28 20:51:49 +01:00
|
|
|
if (ret < 0 || (so_error != 0
|
|
|
|
&& so_error != EWOULDBLOCK
|
|
|
|
&& so_error != ECONNREFUSED
|
2016-02-28 22:33:46 +01:00
|
|
|
# ifdef EINPROGRESS
|
2016-02-28 20:51:49 +01:00
|
|
|
&& so_error != EINPROGRESS
|
2016-02-28 22:33:46 +01:00
|
|
|
# endif
|
2016-02-28 20:51:49 +01:00
|
|
|
))
|
|
|
|
{
|
|
|
|
ch_errorn(channel,
|
|
|
|
"channel_open: Connect failed with errno %d",
|
|
|
|
so_error);
|
|
|
|
PERROR(_(e_cannot_connect));
|
|
|
|
sock_close(sd);
|
|
|
|
channel_free(channel);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-08 22:33:07 +01:00
|
|
|
if (FD_ISSET(sd, &wfds) && so_error == 0)
|
|
|
|
/* Did not detect an error, connection is established. */
|
|
|
|
break;
|
2016-02-18 22:23:34 +01:00
|
|
|
|
2016-03-08 22:33:07 +01:00
|
|
|
gettimeofday(&end_tv, NULL);
|
|
|
|
elapsed_msec = (end_tv.tv_sec - start_tv.tv_sec) * 1000
|
|
|
|
+ (end_tv.tv_usec - start_tv.tv_usec) / 1000;
|
2016-02-18 22:23:34 +01:00
|
|
|
#endif
|
2016-03-08 22:33:07 +01:00
|
|
|
}
|
2016-02-18 22:23:34 +01:00
|
|
|
|
2016-03-08 22:33:07 +01:00
|
|
|
#ifndef WIN32
|
|
|
|
if (waittime > 1 && elapsed_msec < waittime)
|
|
|
|
{
|
|
|
|
/* The port isn't ready but we also didn't get an error.
|
|
|
|
* This happens when the server didn't open the socket
|
2016-03-09 21:50:05 +01:00
|
|
|
* yet. Select() may return early, wait until the remaining
|
|
|
|
* "waitnow" and try again. */
|
|
|
|
waitnow -= elapsed_msec;
|
|
|
|
waittime -= elapsed_msec;
|
|
|
|
if (waitnow > 0)
|
|
|
|
{
|
|
|
|
mch_delay((long)waitnow, TRUE);
|
|
|
|
ui_breakcheck();
|
|
|
|
waittime -= waitnow;
|
|
|
|
}
|
2016-03-08 22:33:07 +01:00
|
|
|
if (!got_int)
|
|
|
|
{
|
2016-03-09 21:50:05 +01:00
|
|
|
if (waittime <= 0)
|
|
|
|
/* give it one more try */
|
2016-03-08 22:33:07 +01:00
|
|
|
waittime = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* we were interrupted, behave as if timed out */
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-03-08 22:33:07 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* We timed out. */
|
|
|
|
ch_error(channel, "Connection timed out");
|
|
|
|
sock_close(sd);
|
|
|
|
channel_free(channel);
|
|
|
|
return NULL;
|
2016-02-07 21:29:00 +01:00
|
|
|
}
|
2016-02-05 22:36:41 +01:00
|
|
|
|
2016-03-08 22:33:07 +01:00
|
|
|
ch_log(channel, "Connection made");
|
|
|
|
|
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-20 18:18:59 +01:00
|
|
|
channel->CH_SOCK_FD = (sock_T)sd;
|
2016-02-23 13:20:22 +01:00
|
|
|
channel->ch_nb_close_cb = nb_close_cb;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
#ifdef FEAT_GUI
|
2016-03-11 22:19:44 +01:00
|
|
|
channel_gui_register_one(channel, PART_SOCK);
|
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
|
|
|
}
|
|
|
|
|
2016-03-12 13:43:33 +01:00
|
|
|
/*
|
|
|
|
* Implements ch_open().
|
|
|
|
*/
|
|
|
|
channel_T *
|
|
|
|
channel_open_func(typval_T *argvars)
|
|
|
|
{
|
|
|
|
char_u *address;
|
|
|
|
char_u *p;
|
|
|
|
char *rest;
|
|
|
|
int port;
|
|
|
|
jobopt_T opt;
|
|
|
|
channel_T *channel;
|
|
|
|
|
|
|
|
address = get_tv_string(&argvars[0]);
|
|
|
|
if (argvars[1].v_type != VAR_UNKNOWN
|
|
|
|
&& (argvars[1].v_type != VAR_DICT || argvars[1].vval.v_dict == NULL))
|
|
|
|
{
|
|
|
|
EMSG(_(e_invarg));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parse address */
|
|
|
|
p = vim_strchr(address, ':');
|
|
|
|
if (p == NULL)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), address);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
*p++ = NUL;
|
|
|
|
port = strtol((char *)p, &rest, 10);
|
|
|
|
if (*address == NUL || port <= 0 || *rest != NUL)
|
|
|
|
{
|
|
|
|
p[-1] = ':';
|
|
|
|
EMSG2(_(e_invarg2), address);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parse options */
|
|
|
|
clear_job_options(&opt);
|
|
|
|
opt.jo_mode = MODE_JSON;
|
|
|
|
opt.jo_timeout = 2000;
|
|
|
|
if (get_job_options(&argvars[1], &opt,
|
|
|
|
JO_MODE_ALL + JO_CB_ALL + JO_WAITTIME + JO_TIMEOUT_ALL) == FAIL)
|
|
|
|
return NULL;
|
|
|
|
if (opt.jo_timeout < 0)
|
|
|
|
{
|
|
|
|
EMSG(_(e_invarg));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
channel = channel_open((char *)address, port, opt.jo_waittime, NULL);
|
|
|
|
if (channel != NULL)
|
|
|
|
{
|
|
|
|
opt.jo_set = JO_ALL;
|
|
|
|
channel_set_options(channel, &opt);
|
|
|
|
}
|
|
|
|
return channel;
|
|
|
|
}
|
|
|
|
|
2016-03-11 22:19:44 +01:00
|
|
|
static void
|
|
|
|
may_close_part(sock_T *fd)
|
|
|
|
{
|
|
|
|
if (*fd != INVALID_FD)
|
|
|
|
{
|
|
|
|
fd_close(*fd);
|
|
|
|
*fd = INVALID_FD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-13 17:04:46 +01:00
|
|
|
void
|
2016-02-15 21:56:54 +01:00
|
|
|
channel_set_pipes(channel_T *channel, sock_T in, sock_T out, sock_T err)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-03-11 22:19:44 +01:00
|
|
|
if (in != INVALID_FD)
|
|
|
|
{
|
|
|
|
may_close_part(&channel->CH_IN_FD);
|
|
|
|
channel->CH_IN_FD = in;
|
|
|
|
}
|
|
|
|
if (out != INVALID_FD)
|
|
|
|
{
|
|
|
|
# if defined(FEAT_GUI)
|
|
|
|
channel_gui_unregister_one(channel, PART_OUT);
|
|
|
|
# endif
|
|
|
|
may_close_part(&channel->CH_OUT_FD);
|
|
|
|
channel->CH_OUT_FD = out;
|
|
|
|
# if defined(FEAT_GUI)
|
|
|
|
channel_gui_register_one(channel, PART_OUT);
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
if (err != INVALID_FD)
|
|
|
|
{
|
|
|
|
# if defined(FEAT_GUI)
|
|
|
|
channel_gui_unregister_one(channel, PART_ERR);
|
|
|
|
# endif
|
|
|
|
may_close_part(&channel->CH_ERR_FD);
|
|
|
|
channel->CH_ERR_FD = err;
|
|
|
|
# if defined(FEAT_GUI)
|
|
|
|
channel_gui_register_one(channel, PART_ERR);
|
|
|
|
# endif
|
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-28 15:49:03 +01:00
|
|
|
/*
|
2016-03-03 22:51:40 +01:00
|
|
|
* Sets the job the channel is associated with and associated options.
|
2016-02-28 15:49:03 +01:00
|
|
|
* This does not keep a refcount, when the job is freed ch_job is cleared.
|
|
|
|
*/
|
2016-02-13 17:04:46 +01:00
|
|
|
void
|
2016-03-03 22:51:40 +01:00
|
|
|
channel_set_job(channel_T *channel, job_T *job, jobopt_T *options)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-13 23:23:53 +01:00
|
|
|
channel->ch_job = job;
|
2016-03-03 22:51:40 +01:00
|
|
|
|
|
|
|
channel_set_options(channel, options);
|
|
|
|
|
|
|
|
if (job->jv_in_buf != NULL)
|
|
|
|
{
|
|
|
|
chanpart_T *in_part = &channel->ch_part[PART_IN];
|
|
|
|
|
|
|
|
in_part->ch_buffer = job->jv_in_buf;
|
|
|
|
ch_logs(channel, "reading from buffer '%s'",
|
|
|
|
(char *)in_part->ch_buffer->b_ffname);
|
|
|
|
if (options->jo_set & JO_IN_TOP)
|
2016-03-06 20:22:25 +01:00
|
|
|
{
|
|
|
|
if (options->jo_in_top == 0 && !(options->jo_set & JO_IN_BOT))
|
|
|
|
{
|
|
|
|
/* Special mode: send last-but-one line when appending a line
|
|
|
|
* to the buffer. */
|
|
|
|
in_part->ch_buffer->b_write_to_channel = TRUE;
|
|
|
|
in_part->ch_buf_top =
|
|
|
|
in_part->ch_buffer->b_ml.ml_line_count + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
in_part->ch_buf_top = options->jo_in_top;
|
|
|
|
}
|
2016-03-03 22:51:40 +01:00
|
|
|
else
|
|
|
|
in_part->ch_buf_top = 1;
|
|
|
|
if (options->jo_set & JO_IN_BOT)
|
|
|
|
in_part->ch_buf_bot = options->jo_in_bot;
|
|
|
|
else
|
|
|
|
in_part->ch_buf_bot = in_part->ch_buffer->b_ml.ml_line_count;
|
|
|
|
}
|
2016-01-24 20:36:41 +01:00
|
|
|
}
|
|
|
|
|
2016-02-27 14:44:26 +01:00
|
|
|
/*
|
|
|
|
* Find a buffer matching "name" or create a new one.
|
|
|
|
*/
|
|
|
|
static buf_T *
|
2016-03-08 20:12:44 +01:00
|
|
|
find_buffer(char_u *name, int err)
|
2016-02-27 14:44:26 +01:00
|
|
|
{
|
2016-02-27 21:10:09 +01:00
|
|
|
buf_T *buf = NULL;
|
2016-02-27 14:44:26 +01:00
|
|
|
buf_T *save_curbuf = curbuf;
|
|
|
|
|
2016-02-27 21:10:09 +01:00
|
|
|
if (name != NULL && *name != NUL)
|
|
|
|
buf = buflist_findname(name);
|
2016-02-27 14:44:26 +01:00
|
|
|
if (buf == NULL)
|
|
|
|
{
|
2016-02-27 21:53:02 +01:00
|
|
|
buf = buflist_new(name == NULL || *name == NUL ? NULL : name,
|
2016-02-27 21:10:09 +01:00
|
|
|
NULL, (linenr_T)0, BLN_LISTED);
|
2016-02-27 14:44:26 +01:00
|
|
|
buf_copy_options(buf, BCO_ENTER);
|
|
|
|
#ifdef FEAT_QUICKFIX
|
2016-03-06 20:22:25 +01:00
|
|
|
set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
|
|
|
|
set_option_value((char_u *)"bh", 0L, (char_u *)"hide", OPT_LOCAL);
|
2016-02-27 14:44:26 +01:00
|
|
|
#endif
|
|
|
|
curbuf = buf;
|
2016-03-06 20:22:25 +01:00
|
|
|
if (curbuf->b_ml.ml_mfp == NULL)
|
|
|
|
ml_open(curbuf);
|
2016-03-08 20:12:44 +01:00
|
|
|
ml_replace(1, (char_u *)(err ? "Reading from channel error..."
|
|
|
|
: "Reading from channel output..."), TRUE);
|
2016-02-27 14:44:26 +01:00
|
|
|
changed_bytes(1, 0);
|
|
|
|
curbuf = save_curbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2016-02-16 21:03:07 +01:00
|
|
|
/*
|
2016-02-20 23:30:07 +01:00
|
|
|
* Set various properties from an "opt" argument.
|
2016-02-16 21:03:07 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-20 23:30:07 +01:00
|
|
|
channel_set_options(channel_T *channel, jobopt_T *opt)
|
2016-02-16 21:03:07 +01:00
|
|
|
{
|
2016-03-14 23:05:14 +01:00
|
|
|
int part;
|
|
|
|
char_u **cbp;
|
|
|
|
partial_T **pp;
|
2016-02-20 18:18:59 +01:00
|
|
|
|
2016-02-20 23:30:07 +01:00
|
|
|
if (opt->jo_set & JO_MODE)
|
2016-02-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part <= PART_IN; ++part)
|
2016-02-20 23:30:07 +01:00
|
|
|
channel->ch_part[part].ch_mode = opt->jo_mode;
|
|
|
|
if (opt->jo_set & JO_IN_MODE)
|
|
|
|
channel->ch_part[PART_IN].ch_mode = opt->jo_in_mode;
|
|
|
|
if (opt->jo_set & JO_OUT_MODE)
|
|
|
|
channel->ch_part[PART_OUT].ch_mode = opt->jo_out_mode;
|
|
|
|
if (opt->jo_set & JO_ERR_MODE)
|
|
|
|
channel->ch_part[PART_ERR].ch_mode = opt->jo_err_mode;
|
|
|
|
|
|
|
|
if (opt->jo_set & JO_TIMEOUT)
|
2016-02-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part <= PART_IN; ++part)
|
2016-02-20 23:30:07 +01:00
|
|
|
channel->ch_part[part].ch_timeout = opt->jo_timeout;
|
|
|
|
if (opt->jo_set & JO_OUT_TIMEOUT)
|
|
|
|
channel->ch_part[PART_OUT].ch_timeout = opt->jo_out_timeout;
|
|
|
|
if (opt->jo_set & JO_ERR_TIMEOUT)
|
|
|
|
channel->ch_part[PART_ERR].ch_timeout = opt->jo_err_timeout;
|
2016-02-16 21:03:07 +01:00
|
|
|
|
2016-02-20 23:30:07 +01:00
|
|
|
if (opt->jo_set & JO_CALLBACK)
|
2016-02-19 23:21:26 +01:00
|
|
|
{
|
2016-02-20 23:30:07 +01:00
|
|
|
cbp = &channel->ch_callback;
|
2016-03-14 23:05:14 +01:00
|
|
|
pp = &channel->ch_partial;
|
2016-02-20 23:30:07 +01:00
|
|
|
vim_free(*cbp);
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(*pp);
|
2016-02-20 23:30:07 +01:00
|
|
|
if (opt->jo_callback != NULL && *opt->jo_callback != NUL)
|
|
|
|
*cbp = vim_strsave(opt->jo_callback);
|
2016-02-19 23:21:26 +01:00
|
|
|
else
|
2016-02-20 23:30:07 +01:00
|
|
|
*cbp = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
*pp = opt->jo_partial;
|
|
|
|
if (*pp != NULL)
|
|
|
|
++(*pp)->pt_refcount;
|
2016-02-20 23:30:07 +01:00
|
|
|
}
|
|
|
|
if (opt->jo_set & JO_OUT_CALLBACK)
|
|
|
|
{
|
|
|
|
cbp = &channel->ch_part[PART_OUT].ch_callback;
|
2016-03-14 23:05:14 +01:00
|
|
|
pp = &channel->ch_part[PART_OUT].ch_partial;
|
2016-02-20 23:30:07 +01:00
|
|
|
vim_free(*cbp);
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(*pp);
|
2016-02-20 23:30:07 +01:00
|
|
|
if (opt->jo_out_cb != NULL && *opt->jo_out_cb != NUL)
|
|
|
|
*cbp = vim_strsave(opt->jo_out_cb);
|
|
|
|
else
|
|
|
|
*cbp = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
*pp = opt->jo_out_partial;
|
|
|
|
if (*pp != NULL)
|
|
|
|
++(*pp)->pt_refcount;
|
2016-02-20 23:30:07 +01:00
|
|
|
}
|
|
|
|
if (opt->jo_set & JO_ERR_CALLBACK)
|
|
|
|
{
|
|
|
|
cbp = &channel->ch_part[PART_ERR].ch_callback;
|
2016-03-14 23:05:14 +01:00
|
|
|
pp = &channel->ch_part[PART_ERR].ch_partial;
|
2016-02-20 23:30:07 +01:00
|
|
|
vim_free(*cbp);
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(*pp);
|
2016-02-20 23:30:07 +01:00
|
|
|
if (opt->jo_err_cb != NULL && *opt->jo_err_cb != NUL)
|
|
|
|
*cbp = vim_strsave(opt->jo_err_cb);
|
|
|
|
else
|
|
|
|
*cbp = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
*pp = opt->jo_err_partial;
|
|
|
|
if (*pp != NULL)
|
|
|
|
++(*pp)->pt_refcount;
|
2016-02-19 23:21:26 +01:00
|
|
|
}
|
2016-02-23 13:20:22 +01:00
|
|
|
if (opt->jo_set & JO_CLOSE_CALLBACK)
|
|
|
|
{
|
|
|
|
cbp = &channel->ch_close_cb;
|
2016-03-14 23:05:14 +01:00
|
|
|
pp = &channel->ch_close_partial;
|
2016-02-23 13:20:22 +01:00
|
|
|
vim_free(*cbp);
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(*pp);
|
2016-02-23 13:20:22 +01:00
|
|
|
if (opt->jo_close_cb != NULL && *opt->jo_close_cb != NUL)
|
|
|
|
*cbp = vim_strsave(opt->jo_close_cb);
|
|
|
|
else
|
|
|
|
*cbp = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
*pp = opt->jo_err_partial;
|
|
|
|
if (*pp != NULL)
|
|
|
|
++(*pp)->pt_refcount;
|
2016-02-23 13:20:22 +01:00
|
|
|
}
|
2016-02-27 14:44:26 +01:00
|
|
|
|
|
|
|
if ((opt->jo_set & JO_OUT_IO) && opt->jo_io[PART_OUT] == JIO_BUFFER)
|
|
|
|
{
|
2016-02-29 22:55:56 +01:00
|
|
|
/* writing output to a buffer. Default mode is NL. */
|
|
|
|
if (!(opt->jo_set & JO_OUT_MODE))
|
|
|
|
channel->ch_part[PART_OUT].ch_mode = MODE_NL;
|
2016-03-09 23:14:07 +01:00
|
|
|
if (opt->jo_set & JO_OUT_BUF)
|
|
|
|
channel->ch_part[PART_OUT].ch_buffer =
|
|
|
|
buflist_findnr(opt->jo_io_buf[PART_OUT]);
|
|
|
|
else
|
|
|
|
channel->ch_part[PART_OUT].ch_buffer =
|
2016-03-08 20:12:44 +01:00
|
|
|
find_buffer(opt->jo_io_name[PART_OUT], FALSE);
|
|
|
|
ch_logs(channel, "writing out to buffer '%s'",
|
2016-02-27 14:44:26 +01:00
|
|
|
(char *)channel->ch_part[PART_OUT].ch_buffer->b_ffname);
|
|
|
|
}
|
2016-03-08 20:12:44 +01:00
|
|
|
|
|
|
|
if ((opt->jo_set & JO_ERR_IO) && (opt->jo_io[PART_ERR] == JIO_BUFFER
|
|
|
|
|| (opt->jo_io[PART_ERR] == JIO_OUT && (opt->jo_set & JO_OUT_IO)
|
|
|
|
&& opt->jo_io[PART_OUT] == JIO_BUFFER)))
|
|
|
|
{
|
|
|
|
/* writing err to a buffer. Default mode is NL. */
|
|
|
|
if (!(opt->jo_set & JO_ERR_MODE))
|
|
|
|
channel->ch_part[PART_ERR].ch_mode = MODE_NL;
|
|
|
|
if (opt->jo_io[PART_ERR] == JIO_OUT)
|
|
|
|
channel->ch_part[PART_ERR].ch_buffer =
|
|
|
|
channel->ch_part[PART_OUT].ch_buffer;
|
2016-03-09 23:14:07 +01:00
|
|
|
else if (opt->jo_set & JO_ERR_BUF)
|
|
|
|
channel->ch_part[PART_ERR].ch_buffer =
|
|
|
|
buflist_findnr(opt->jo_io_buf[PART_ERR]);
|
2016-03-08 20:12:44 +01:00
|
|
|
else
|
|
|
|
channel->ch_part[PART_ERR].ch_buffer =
|
|
|
|
find_buffer(opt->jo_io_name[PART_ERR], TRUE);
|
|
|
|
ch_logs(channel, "writing err to buffer '%s'",
|
|
|
|
(char *)channel->ch_part[PART_ERR].ch_buffer->b_ffname);
|
|
|
|
}
|
2016-02-16 21:03:07 +01:00
|
|
|
}
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
/*
|
2016-02-20 18:18:59 +01:00
|
|
|
* Set the callback for "channel"/"part" for the response with "id".
|
2016-01-28 22:37:01 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_set_req_callback(
|
2016-03-14 23:05:14 +01:00
|
|
|
channel_T *channel,
|
|
|
|
int part,
|
|
|
|
char_u *callback,
|
|
|
|
partial_T *partial,
|
|
|
|
int id)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
cbq_T *head = &channel->ch_part[part].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);
|
2016-03-14 23:05:14 +01:00
|
|
|
item->cq_partial = partial;
|
|
|
|
if (partial != NULL)
|
|
|
|
++partial->pt_refcount;
|
2016-02-13 23:23:53 +01:00
|
|
|
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-03-06 20:22:25 +01:00
|
|
|
static void
|
|
|
|
write_buf_line(buf_T *buf, linenr_T lnum, channel_T *channel)
|
|
|
|
{
|
|
|
|
char_u *line = ml_get_buf(buf, lnum, FALSE);
|
2016-03-08 17:13:06 +01:00
|
|
|
int len = (int)STRLEN(line);
|
2016-03-06 20:22:25 +01:00
|
|
|
char_u *p;
|
|
|
|
|
|
|
|
/* TODO: check if channel can be written to, do not block on write */
|
|
|
|
if ((p = alloc(len + 2)) == NULL)
|
|
|
|
return;
|
|
|
|
STRCPY(p, line);
|
|
|
|
p[len] = NL;
|
|
|
|
p[len + 1] = NUL;
|
|
|
|
channel_send(channel, PART_IN, p, "write_buf_line()");
|
|
|
|
vim_free(p);
|
|
|
|
}
|
|
|
|
|
2016-03-03 22:51:40 +01:00
|
|
|
/*
|
2016-03-06 20:22:25 +01:00
|
|
|
* Write any lines to the input channel.
|
2016-03-03 22:51:40 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_write_in(channel_T *channel)
|
|
|
|
{
|
|
|
|
chanpart_T *in_part = &channel->ch_part[PART_IN];
|
|
|
|
linenr_T lnum;
|
|
|
|
buf_T *buf = in_part->ch_buffer;
|
2016-03-06 20:22:25 +01:00
|
|
|
int written = 0;
|
2016-03-03 22:51:40 +01:00
|
|
|
|
|
|
|
if (buf == NULL)
|
|
|
|
return;
|
|
|
|
if (!buf_valid(buf) || buf->b_ml.ml_mfp == NULL)
|
|
|
|
{
|
|
|
|
/* buffer was wiped out or unloaded */
|
|
|
|
in_part->ch_buffer = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (in_part->ch_fd == INVALID_FD)
|
|
|
|
/* pipe was closed */
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (lnum = in_part->ch_buf_top; lnum <= in_part->ch_buf_bot
|
|
|
|
&& lnum <= buf->b_ml.ml_line_count; ++lnum)
|
|
|
|
{
|
2016-03-06 20:22:25 +01:00
|
|
|
write_buf_line(buf, lnum, channel);
|
|
|
|
++written;
|
2016-03-03 22:51:40 +01:00
|
|
|
}
|
2016-03-06 20:22:25 +01:00
|
|
|
|
|
|
|
if (written == 1)
|
|
|
|
ch_logn(channel, "written line %d to channel", (int)lnum - 1);
|
|
|
|
else if (written > 1)
|
|
|
|
ch_logn(channel, "written %d lines to channel", written);
|
|
|
|
|
2016-03-03 22:51:40 +01:00
|
|
|
in_part->ch_buf_top = lnum;
|
|
|
|
}
|
|
|
|
|
2016-03-06 20:22:25 +01:00
|
|
|
/*
|
|
|
|
* Write appended lines above the last one in "buf" to the channel.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_write_new_lines(buf_T *buf)
|
|
|
|
{
|
|
|
|
channel_T *channel;
|
|
|
|
int found_one = FALSE;
|
|
|
|
|
|
|
|
/* There could be more than one channel for the buffer, loop over all of
|
|
|
|
* them. */
|
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
|
|
|
{
|
|
|
|
chanpart_T *in_part = &channel->ch_part[PART_IN];
|
|
|
|
linenr_T lnum;
|
|
|
|
int written = 0;
|
|
|
|
|
|
|
|
if (in_part->ch_buffer == buf)
|
|
|
|
{
|
|
|
|
if (in_part->ch_fd == INVALID_FD)
|
|
|
|
/* pipe was closed */
|
|
|
|
continue;
|
|
|
|
found_one = TRUE;
|
|
|
|
for (lnum = in_part->ch_buf_bot; lnum < buf->b_ml.ml_line_count;
|
|
|
|
++lnum)
|
|
|
|
{
|
|
|
|
write_buf_line(buf, lnum, channel);
|
|
|
|
++written;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (written == 1)
|
|
|
|
ch_logn(channel, "written line %d to channel", (int)lnum - 1);
|
|
|
|
else if (written > 1)
|
|
|
|
ch_logn(channel, "written %d lines to channel", written);
|
|
|
|
|
|
|
|
in_part->ch_buf_bot = lnum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found_one)
|
|
|
|
buf->b_write_to_channel = FALSE;
|
|
|
|
}
|
|
|
|
|
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-03-14 23:05:14 +01:00
|
|
|
invoke_callback(channel_T *channel, char_u *callback, partial_T *partial,
|
|
|
|
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),
|
2016-03-14 23:05:14 +01:00
|
|
|
&rettv, 2, argv, 0L, 0L, &dummy, TRUE, partial, NULL);
|
2016-02-21 19:14:41 +01:00
|
|
|
clear_tv(&rettv);
|
|
|
|
|
2016-03-15 23:19:14 +01:00
|
|
|
redraw_after_callback();
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-20 18:18:59 +01:00
|
|
|
* Return the first buffer from channel "channel"/"part" and remove it.
|
2016-02-01 21:38:19 +01:00
|
|
|
* The caller must free it.
|
|
|
|
* Returns NULL if there is nothing.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_get(channel_T *channel, int part)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
readq_T *head = &channel->ch_part[part].ch_head;
|
2016-02-13 23:23:53 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-20 18:18:59 +01:00
|
|
|
* Returns the whole buffer contents concatenated for "channel"/"part".
|
2016-02-01 21:38:19 +01:00
|
|
|
*/
|
|
|
|
static char_u *
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_get_all(channel_T *channel, int part)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
|
|
|
/* Concatenate everything into one buffer.
|
|
|
|
* TODO: avoid multiple allocations. */
|
2016-02-20 18:18:59 +01:00
|
|
|
while (channel_collapse(channel, part) == OK)
|
2016-02-01 21:38:19 +01:00
|
|
|
;
|
2016-02-20 18:18:59 +01:00
|
|
|
return channel_get(channel, part);
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-02-20 18:18:59 +01:00
|
|
|
* Collapses the first and second buffer for "channel"/"part".
|
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-20 18:18:59 +01:00
|
|
|
channel_collapse(channel_T *channel, int part)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
readq_T *head = &channel->ch_part[part].ch_head;
|
2016-02-13 23:23:53 +01:00
|
|
|
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-20 18:18:59 +01:00
|
|
|
* Store "buf[len]" on "channel"/"part".
|
|
|
|
* Returns OK or FAIL.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
channel_save(channel_T *channel, int part, char_u *buf, int len)
|
|
|
|
{
|
|
|
|
readq_T *node;
|
|
|
|
readq_T *head = &channel->ch_part[part].ch_head;
|
|
|
|
char_u *p;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
node = (readq_T *)alloc(sizeof(readq_T));
|
|
|
|
if (node == NULL)
|
|
|
|
return FAIL; /* out of memory */
|
|
|
|
node->rq_buffer = alloc(len + 1);
|
|
|
|
if (node->rq_buffer == NULL)
|
|
|
|
{
|
|
|
|
vim_free(node);
|
|
|
|
return FAIL; /* out of memory */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (channel->ch_part[part].ch_mode == MODE_NL)
|
|
|
|
{
|
|
|
|
/* Drop any CR before a NL. */
|
|
|
|
p = node->rq_buffer;
|
|
|
|
for (i = 0; i < len; ++i)
|
|
|
|
if (buf[i] != CAR || i + 1 >= len || buf[i + 1] != NL)
|
|
|
|
*p++ = buf[i];
|
|
|
|
*p = NUL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mch_memmove(node->rq_buffer, buf, 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;
|
|
|
|
|
|
|
|
if (log_fd != NULL)
|
|
|
|
{
|
|
|
|
ch_log_lead("RECV ", channel);
|
|
|
|
fprintf(log_fd, "'");
|
|
|
|
if (fwrite(buf, len, 1, log_fd) != 1)
|
|
|
|
return FAIL;
|
|
|
|
fprintf(log_fd, "'\n");
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use the read buffer of "channel"/"part" 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-20 18:18:59 +01:00
|
|
|
channel_parse_json(channel_T *channel, int part)
|
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-20 18:18:59 +01:00
|
|
|
jsonq_T *head = &channel->ch_part[part].ch_json_head;
|
2016-02-02 23:23:02 +01:00
|
|
|
int ret;
|
2016-02-01 21:38:19 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
if (channel_peek(channel, part) == 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-20 18:18:59 +01:00
|
|
|
/* reader.js_buf = channel_peek(channel, part); */
|
|
|
|
reader.js_buf = channel_get_all(channel, part);
|
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,
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].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-03-20 14:31:00 +01:00
|
|
|
if (ret == FAIL)
|
|
|
|
{
|
|
|
|
ch_error(channel, "Decoding failed - discarding input");
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
channel_save(channel, part, reader.js_buf + reader.js_used,
|
|
|
|
(int)(reader.js_end - reader.js_buf) - reader.js_used);
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
2016-02-02 23:23:02 +01:00
|
|
|
}
|
|
|
|
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
|
|
|
/*
|
2016-02-16 13:33:52 +01:00
|
|
|
* Remove "node" from the queue that it is in. Does not free it.
|
2016-02-05 21:04:08 +01:00
|
|
|
*/
|
|
|
|
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;
|
2016-02-05 21:04:08 +01:00
|
|
|
}
|
|
|
|
|
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-20 18:18:59 +01:00
|
|
|
channel_get_json(channel_T *channel, int part, int id, typval_T **rettv)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
jsonq_T *head = &channel->ch_part[part].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-20 18:18:59 +01:00
|
|
|
|| tv->vval.v_number == 0
|
|
|
|
|| tv->vval.v_number != channel->ch_part[part].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-02-20 21:39:05 +01:00
|
|
|
#define CH_JSON_MAX_ARGS 4
|
|
|
|
|
2016-01-31 20:24:32 +01:00
|
|
|
/*
|
2016-02-20 18:18:59 +01:00
|
|
|
* Execute a command received over "channel"/"part"
|
2016-02-20 21:39:05 +01:00
|
|
|
* "argv[0]" is the command string.
|
|
|
|
* "argv[1]" etc. have further arguments, type is VAR_UNKNOWN if missing.
|
2016-01-31 20:24:32 +01:00
|
|
|
*/
|
2016-01-30 23:20:33 +01:00
|
|
|
static void
|
2016-02-20 21:39:05 +01:00
|
|
|
channel_exe_cmd(channel_T *channel, int part, typval_T *argv)
|
2016-01-30 23:20:33 +01:00
|
|
|
{
|
2016-02-20 21:39:05 +01:00
|
|
|
char_u *cmd = argv[0].vval.v_string;
|
|
|
|
char_u *arg;
|
|
|
|
int options = channel->ch_part[part].ch_mode == MODE_JS ? JSON_JS : 0;
|
2016-01-31 20:24:32 +01:00
|
|
|
|
2016-02-20 21:39:05 +01:00
|
|
|
if (argv[1].v_type != VAR_STRING)
|
2016-01-31 20:24:32 +01:00
|
|
|
{
|
2016-02-20 21:39:05 +01:00
|
|
|
ch_error(channel, "received command with non-string argument");
|
2016-01-31 20:24:32 +01:00
|
|
|
if (p_verbose > 2)
|
2016-02-20 21:39:05 +01:00
|
|
|
EMSG("E903: received command with non-string argument");
|
2016-01-31 20:24:32 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-02-20 21:39:05 +01:00
|
|
|
arg = argv[1].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-03-20 14:31:00 +01:00
|
|
|
ch_logs(channel, "Executing ex command '%s'", (char *)arg);
|
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-03-20 14:31:00 +01:00
|
|
|
ch_logs(channel, "Executing normal command '%s'", (char *)arg);
|
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-03-20 14:31:00 +01:00
|
|
|
ch_log(channel, "redraw");
|
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
|
|
|
|
}
|
2016-02-20 21:39:05 +01:00
|
|
|
else if (STRCMP(cmd, "expr") == 0 || STRCMP(cmd, "call") == 0)
|
2016-01-31 20:24:32 +01:00
|
|
|
{
|
2016-02-20 21:39:05 +01:00
|
|
|
int is_call = cmd[0] == 'c';
|
|
|
|
int id_idx = is_call ? 3 : 2;
|
2016-01-31 20:24:32 +01:00
|
|
|
|
2016-02-20 21:39:05 +01:00
|
|
|
if (argv[id_idx].v_type != VAR_UNKNOWN
|
|
|
|
&& argv[id_idx].v_type != VAR_NUMBER)
|
2016-01-31 20:24:32 +01:00
|
|
|
{
|
2016-02-20 21:39:05 +01:00
|
|
|
ch_error(channel, "last argument for expr/call must be a number");
|
2016-01-31 20:24:32 +01:00
|
|
|
if (p_verbose > 2)
|
2016-02-20 21:39:05 +01:00
|
|
|
EMSG("E904: last argument for expr/call must be a number");
|
|
|
|
}
|
|
|
|
else if (is_call && argv[2].v_type != VAR_LIST)
|
|
|
|
{
|
|
|
|
ch_error(channel, "third argument for call must be a list");
|
|
|
|
if (p_verbose > 2)
|
|
|
|
EMSG("E904: third argument for call must be a list");
|
2016-01-31 20:24:32 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-03 21:32:46 +01:00
|
|
|
typval_T *tv;
|
2016-02-20 21:39:05 +01:00
|
|
|
typval_T res_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-01-31 20:24:32 +01:00
|
|
|
|
2016-02-03 21:32:46 +01:00
|
|
|
/* Don't pollute the display with errors. */
|
|
|
|
++emsg_skip;
|
2016-02-20 21:39:05 +01:00
|
|
|
if (!is_call)
|
2016-03-20 14:31:00 +01:00
|
|
|
{
|
|
|
|
ch_logs(channel, "Evaluating expression '%s'", (char *)arg);
|
2016-02-20 21:39:05 +01:00
|
|
|
tv = eval_expr(arg, NULL);
|
2016-03-20 14:31:00 +01:00
|
|
|
}
|
2016-02-20 21:39:05 +01:00
|
|
|
else
|
2016-03-20 14:31:00 +01:00
|
|
|
{
|
|
|
|
ch_logs(channel, "Calling '%s'", (char *)arg);
|
|
|
|
if (func_call(arg, &argv[2], NULL, NULL, &res_tv) == OK)
|
|
|
|
tv = &res_tv;
|
|
|
|
else
|
|
|
|
tv = NULL;
|
|
|
|
}
|
2016-02-20 21:39:05 +01:00
|
|
|
|
|
|
|
if (argv[id_idx].v_type == VAR_NUMBER)
|
2016-01-30 23:20:33 +01:00
|
|
|
{
|
2016-02-20 21:39:05 +01:00
|
|
|
int id = argv[id_idx].vval.v_number;
|
|
|
|
|
2016-02-07 16:53:13 +01:00
|
|
|
if (tv != NULL)
|
2016-02-20 21:39:05 +01:00
|
|
|
json = json_encode_nr_expr(id, 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-20 21:39:05 +01:00
|
|
|
json = json_encode_nr_expr(id, tv, options);
|
2016-02-07 16:53:13 +01:00
|
|
|
}
|
|
|
|
if (json != NULL)
|
|
|
|
{
|
2016-02-20 21:39:05 +01:00
|
|
|
channel_send(channel,
|
|
|
|
part == PART_SOCK ? PART_SOCK : PART_IN,
|
|
|
|
json, (char *)cmd);
|
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-20 21:39:05 +01:00
|
|
|
if (tv == &res_tv)
|
|
|
|
clear_tv(tv);
|
|
|
|
else if (tv != &err_tv)
|
2016-02-03 21:32:46 +01:00
|
|
|
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-02-20 21:39:05 +01:00
|
|
|
{
|
|
|
|
ch_errors(channel, "Receved unknown command: %s", (char *)cmd);
|
2016-01-31 20:24:32 +01:00
|
|
|
EMSG2("E905: received unknown command: %s", cmd);
|
2016-02-20 21:39:05 +01:00
|
|
|
}
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-03-03 19:35:02 +01:00
|
|
|
static void
|
|
|
|
invoke_one_time_callback(
|
|
|
|
channel_T *channel,
|
|
|
|
cbq_T *cbhead,
|
|
|
|
cbq_T *item,
|
|
|
|
typval_T *argv)
|
|
|
|
{
|
|
|
|
ch_logs(channel, "Invoking one-time callback %s",
|
|
|
|
(char *)item->cq_callback);
|
|
|
|
/* Remove the item from the list first, if the callback
|
|
|
|
* invokes ch_close() the list will be cleared. */
|
|
|
|
remove_cb_node(cbhead, item);
|
2016-03-14 23:05:14 +01:00
|
|
|
invoke_callback(channel, item->cq_callback, item->cq_partial, argv);
|
2016-03-03 19:35:02 +01:00
|
|
|
vim_free(item->cq_callback);
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(item->cq_partial);
|
2016-03-03 19:35:02 +01:00
|
|
|
vim_free(item);
|
|
|
|
}
|
|
|
|
|
2016-03-06 20:22:25 +01:00
|
|
|
static void
|
|
|
|
append_to_buffer(buf_T *buffer, char_u *msg, channel_T *channel)
|
|
|
|
{
|
|
|
|
buf_T *save_curbuf = curbuf;
|
|
|
|
linenr_T lnum = buffer->b_ml.ml_line_count;
|
|
|
|
int save_write_to = buffer->b_write_to_channel;
|
|
|
|
|
|
|
|
/* If the buffer is also used as input insert above the last
|
|
|
|
* line. Don't write these lines. */
|
|
|
|
if (save_write_to)
|
|
|
|
{
|
|
|
|
--lnum;
|
|
|
|
buffer->b_write_to_channel = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Append to the buffer */
|
|
|
|
ch_logn(channel, "appending line %d to buffer", (int)lnum + 1);
|
|
|
|
|
|
|
|
curbuf = buffer;
|
|
|
|
u_sync(TRUE);
|
|
|
|
/* ignore undo failure, undo is not very useful here */
|
|
|
|
ignored = u_save(lnum, lnum + 1);
|
|
|
|
|
|
|
|
ml_append(lnum, msg, 0, FALSE);
|
|
|
|
appended_lines_mark(lnum, 1L);
|
|
|
|
curbuf = save_curbuf;
|
|
|
|
|
|
|
|
if (buffer->b_nwindows > 0)
|
|
|
|
{
|
|
|
|
win_T *wp;
|
|
|
|
win_T *save_curwin;
|
|
|
|
|
|
|
|
FOR_ALL_WINDOWS(wp)
|
|
|
|
{
|
|
|
|
if (wp->w_buffer == buffer
|
|
|
|
&& (save_write_to
|
|
|
|
? wp->w_cursor.lnum == lnum + 1
|
|
|
|
: (wp->w_cursor.lnum == lnum
|
|
|
|
&& wp->w_cursor.col == 0)))
|
|
|
|
{
|
|
|
|
++wp->w_cursor.lnum;
|
|
|
|
save_curwin = curwin;
|
|
|
|
curwin = wp;
|
|
|
|
curbuf = curwin->w_buffer;
|
|
|
|
scroll_cursor_bot(0, FALSE);
|
|
|
|
curwin = save_curwin;
|
|
|
|
curbuf = curwin->w_buffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
redraw_buf_later(buffer, VALID);
|
|
|
|
channel_need_redraw = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (save_write_to)
|
|
|
|
{
|
|
|
|
channel_T *ch;
|
|
|
|
|
|
|
|
/* Find channels reading from this buffer and adjust their
|
|
|
|
* next-to-read line number. */
|
|
|
|
buffer->b_write_to_channel = TRUE;
|
|
|
|
for (ch = first_channel; ch != NULL; ch = ch->ch_next)
|
|
|
|
{
|
|
|
|
chanpart_T *in_part = &ch->ch_part[PART_IN];
|
|
|
|
|
|
|
|
if (in_part->ch_buffer == buffer)
|
|
|
|
in_part->ch_buf_bot = buffer->b_ml.ml_line_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-28 22:37:01 +01:00
|
|
|
/*
|
2016-02-20 18:18:59 +01:00
|
|
|
* Invoke a callback for "channel"/"part" if needed.
|
2016-02-16 19:25:12 +01:00
|
|
|
* Return TRUE 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-20 18:18:59 +01:00
|
|
|
may_invoke_callback(channel_T *channel, int part)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-01 21:38:19 +01:00
|
|
|
char_u *msg = NULL;
|
|
|
|
typval_T *listtv = NULL;
|
2016-02-20 21:39:05 +01:00
|
|
|
typval_T argv[CH_JSON_MAX_ARGS];
|
2016-01-30 23:20:33 +01:00
|
|
|
int seq_nr = -1;
|
2016-02-20 18:18:59 +01:00
|
|
|
ch_mode_T ch_mode = channel->ch_part[part].ch_mode;
|
2016-03-03 19:35:02 +01:00
|
|
|
cbq_T *cbhead = &channel->ch_part[part].ch_cb_head;
|
2016-03-05 20:54:36 +01:00
|
|
|
cbq_T *cbitem;
|
2016-02-20 18:18:59 +01:00
|
|
|
char_u *callback = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_T *partial = NULL;
|
2016-02-27 14:44:26 +01:00
|
|
|
buf_T *buffer = NULL;
|
2016-01-30 23:20:33 +01:00
|
|
|
|
2016-02-23 13:20:22 +01:00
|
|
|
if (channel->ch_nb_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-03-05 20:54:36 +01:00
|
|
|
/* Use a message-specific callback, part callback or channel callback */
|
|
|
|
for (cbitem = cbhead->cq_next; cbitem != NULL; cbitem = cbitem->cq_next)
|
|
|
|
if (cbitem->cq_seq_nr == 0)
|
|
|
|
break;
|
2016-03-03 19:35:02 +01:00
|
|
|
if (cbitem != NULL)
|
2016-03-14 23:05:14 +01:00
|
|
|
{
|
2016-03-03 19:35:02 +01:00
|
|
|
callback = cbitem->cq_callback;
|
2016-03-14 23:05:14 +01:00
|
|
|
partial = cbitem->cq_partial;
|
|
|
|
}
|
2016-03-03 19:35:02 +01:00
|
|
|
else if (channel->ch_part[part].ch_callback != NULL)
|
2016-03-14 23:05:14 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
callback = channel->ch_part[part].ch_callback;
|
2016-03-14 23:05:14 +01:00
|
|
|
partial = channel->ch_part[part].ch_partial;
|
|
|
|
}
|
2016-02-20 18:18:59 +01:00
|
|
|
else
|
2016-03-14 23:05:14 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
callback = channel->ch_callback;
|
2016-03-14 23:05:14 +01:00
|
|
|
partial = channel->ch_partial;
|
|
|
|
}
|
2016-02-27 21:10:09 +01:00
|
|
|
|
2016-02-27 14:44:26 +01:00
|
|
|
buffer = channel->ch_part[part].ch_buffer;
|
2016-02-27 21:10:09 +01:00
|
|
|
if (buffer != NULL && !buf_valid(buffer))
|
|
|
|
{
|
|
|
|
/* buffer was wiped out */
|
|
|
|
channel->ch_part[part].ch_buffer = NULL;
|
|
|
|
buffer = NULL;
|
|
|
|
}
|
2016-02-20 18:18:59 +01:00
|
|
|
|
2016-02-16 19:25:12 +01:00
|
|
|
if (ch_mode == MODE_JSON || ch_mode == MODE_JS)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-20 21:39:05 +01:00
|
|
|
listitem_T *item;
|
|
|
|
int argc = 0;
|
|
|
|
|
2016-02-02 23:23:02 +01:00
|
|
|
/* Get any json message in the queue. */
|
2016-02-20 18:18:59 +01:00
|
|
|
if (channel_get_json(channel, part, -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-20 18:18:59 +01:00
|
|
|
channel_parse_json(channel, part);
|
|
|
|
if (channel_get_json(channel, part, -1, &listtv) == FAIL)
|
2016-02-02 23:23:02 +01:00
|
|
|
return FALSE;
|
2016-01-30 23:20:33 +01:00
|
|
|
}
|
|
|
|
|
2016-02-20 21:39:05 +01:00
|
|
|
for (item = listtv->vval.v_list->lv_first;
|
|
|
|
item != NULL && argc < CH_JSON_MAX_ARGS;
|
|
|
|
item = item->li_next)
|
|
|
|
argv[argc++] = item->li_tv;
|
|
|
|
while (argc < CH_JSON_MAX_ARGS)
|
|
|
|
argv[argc++].v_type = VAR_UNKNOWN;
|
|
|
|
|
|
|
|
if (argv[0].v_type == VAR_STRING)
|
2016-01-30 23:20:33 +01:00
|
|
|
{
|
2016-02-20 21:39:05 +01:00
|
|
|
/* ["cmd", arg] or ["cmd", arg, arg] or ["cmd", arg, arg, arg] */
|
|
|
|
channel_exe_cmd(channel, part, argv);
|
2016-02-13 23:23:53 +01:00
|
|
|
free_tv(listtv);
|
2016-02-02 18:43:17 +01:00
|
|
|
return TRUE;
|
2016-01-30 23:20:33 +01:00
|
|
|
}
|
|
|
|
|
2016-02-20 21:39:05 +01:00
|
|
|
if (argv[0].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-18 22:23:34 +01:00
|
|
|
"Dropping message with invalid sequence number type");
|
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-20 21:39:05 +01:00
|
|
|
seq_nr = argv[0].vval.v_number;
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
2016-02-20 18:18:59 +01:00
|
|
|
else if (channel_peek(channel, part) == NULL)
|
2016-02-02 23:23:02 +01:00
|
|
|
{
|
2016-02-16 19:25:12 +01:00
|
|
|
/* nothing to read on RAW or NL channel */
|
2016-02-02 23:23:02 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
else
|
|
|
|
{
|
2016-02-27 14:44:26 +01:00
|
|
|
/* If there is no callback or buffer drop the message. */
|
|
|
|
if (callback == NULL && buffer == NULL)
|
2016-02-16 19:25:12 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
while ((msg = channel_get(channel, part)) != NULL)
|
2016-02-28 15:49:03 +01:00
|
|
|
{
|
|
|
|
ch_logs(channel, "Dropping message '%s'", (char *)msg);
|
2016-02-16 19:25:12 +01:00
|
|
|
vim_free(msg);
|
2016-02-28 15:49:03 +01:00
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
return FALSE;
|
2016-02-16 19:25:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ch_mode == MODE_NL)
|
|
|
|
{
|
|
|
|
char_u *nl;
|
|
|
|
char_u *buf;
|
|
|
|
|
|
|
|
/* See if we have a message ending in NL in the first buffer. If
|
|
|
|
* not try to concatenate the first and the second buffer. */
|
|
|
|
while (TRUE)
|
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
buf = channel_peek(channel, part);
|
2016-02-16 19:25:12 +01:00
|
|
|
nl = vim_strchr(buf, NL);
|
|
|
|
if (nl != NULL)
|
|
|
|
break;
|
2016-02-20 18:18:59 +01:00
|
|
|
if (channel_collapse(channel, part) == FAIL)
|
2016-02-16 19:25:12 +01:00
|
|
|
return FALSE; /* incomplete message */
|
|
|
|
}
|
|
|
|
if (nl[1] == NUL)
|
2016-02-27 14:44:26 +01:00
|
|
|
{
|
|
|
|
/* get the whole buffer, drop the NL */
|
2016-02-20 18:18:59 +01:00
|
|
|
msg = channel_get(channel, part);
|
2016-02-27 14:44:26 +01:00
|
|
|
*nl = NUL;
|
|
|
|
}
|
2016-02-16 19:25:12 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Copy the message into allocated memory and remove it from
|
|
|
|
* the buffer. */
|
|
|
|
msg = vim_strnsave(buf, (int)(nl - buf));
|
|
|
|
mch_memmove(buf, nl + 1, STRLEN(nl + 1) + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* For a raw channel we don't know where the message ends, just
|
|
|
|
* get everything we have. */
|
2016-02-20 18:18:59 +01:00
|
|
|
msg = channel_get_all(channel, part);
|
2016-02-13 17:04:46 +01:00
|
|
|
|
2016-03-02 21:16:59 +01:00
|
|
|
if (msg == NULL)
|
|
|
|
return FALSE; /* out of memory (and avoids Coverity warning) */
|
|
|
|
|
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 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-03-05 20:54:36 +01:00
|
|
|
for (cbitem = cbhead->cq_next; cbitem != NULL; cbitem = cbitem->cq_next)
|
2016-03-03 19:35:02 +01:00
|
|
|
if (cbitem->cq_seq_nr == seq_nr)
|
2016-02-05 21:04:08 +01:00
|
|
|
{
|
2016-03-03 19:35:02 +01:00
|
|
|
invoke_one_time_callback(channel, cbhead, cbitem, argv);
|
2016-02-13 17:04:46 +01:00
|
|
|
done = TRUE;
|
2016-02-05 21:04:08 +01:00
|
|
|
break;
|
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
if (!done)
|
2016-02-28 15:49:03 +01:00
|
|
|
ch_logn(channel, "Dropping message %d without callback", seq_nr);
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
2016-02-27 14:44:26 +01:00
|
|
|
else if (callback != NULL || buffer != NULL)
|
2016-02-01 21:38:19 +01:00
|
|
|
{
|
2016-02-27 14:44:26 +01:00
|
|
|
if (buffer != NULL)
|
|
|
|
{
|
2016-02-29 22:55:56 +01:00
|
|
|
if (msg == NULL)
|
|
|
|
/* JSON or JS mode: re-encode the message. */
|
|
|
|
msg = json_encode(listtv, ch_mode);
|
|
|
|
if (msg != NULL)
|
2016-03-06 20:22:25 +01:00
|
|
|
append_to_buffer(buffer, msg, channel);
|
2016-02-27 14:44:26 +01:00
|
|
|
}
|
2016-03-03 19:35:02 +01:00
|
|
|
|
2016-02-27 14:44:26 +01:00
|
|
|
if (callback != NULL)
|
|
|
|
{
|
2016-03-03 19:35:02 +01:00
|
|
|
if (cbitem != NULL)
|
|
|
|
invoke_one_time_callback(channel, cbhead, cbitem, argv);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* invoke the channel callback */
|
|
|
|
ch_logs(channel, "Invoking channel callback %s",
|
|
|
|
(char *)callback);
|
2016-03-14 23:05:14 +01:00
|
|
|
invoke_callback(channel, callback, partial, argv);
|
2016-03-03 19:35:02 +01:00
|
|
|
}
|
2016-02-27 14:44:26 +01:00
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
2016-02-13 17:04:46 +01:00
|
|
|
else
|
2016-02-18 22:23:34 +01:00
|
|
|
ch_log(channel, "Dropping message");
|
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-20 18:18:59 +01:00
|
|
|
return channel != NULL && (channel->CH_SOCK_FD != INVALID_FD
|
2016-03-11 22:52:15 +01:00
|
|
|
|| channel->CH_IN_FD != INVALID_FD);
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
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-20 18:18:59 +01:00
|
|
|
return channel != NULL && (channel->CH_SOCK_FD != INVALID_FD
|
|
|
|
|| channel->CH_IN_FD != INVALID_FD
|
|
|
|
|| channel->CH_OUT_FD != INVALID_FD
|
2016-03-11 22:52:15 +01:00
|
|
|
|| channel->CH_ERR_FD != INVALID_FD);
|
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-02-25 23:10:17 +01:00
|
|
|
* Trigger the close callback if "invoke_close_cb" is TRUE.
|
2016-02-27 14:44:26 +01:00
|
|
|
* Does not clear the buffers.
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
|
|
|
void
|
2016-02-24 20:43:06 +01:00
|
|
|
channel_close(channel_T *channel, int invoke_close_cb)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-18 22:23:34 +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-20 18:18:59 +01:00
|
|
|
if (channel->CH_SOCK_FD != INVALID_FD)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
sock_close(channel->CH_SOCK_FD);
|
|
|
|
channel->CH_SOCK_FD = INVALID_FD;
|
2016-01-26 23:30:18 +01:00
|
|
|
}
|
2016-03-11 22:19:44 +01:00
|
|
|
may_close_part(&channel->CH_IN_FD);
|
|
|
|
may_close_part(&channel->CH_OUT_FD);
|
|
|
|
may_close_part(&channel->CH_ERR_FD);
|
2016-02-14 23:02:34 +01:00
|
|
|
|
2016-02-24 20:43:06 +01:00
|
|
|
if (invoke_close_cb && channel->ch_close_cb != NULL)
|
2016-02-23 13:20:22 +01:00
|
|
|
{
|
|
|
|
typval_T argv[1];
|
|
|
|
typval_T rettv;
|
|
|
|
int dummy;
|
|
|
|
|
|
|
|
/* invoke the close callback; increment the refcount to avoid it
|
|
|
|
* being freed halfway */
|
2016-02-28 15:49:03 +01:00
|
|
|
ch_logs(channel, "Invoking close callback %s",
|
|
|
|
(char *)channel->ch_close_cb);
|
2016-02-23 13:20:22 +01:00
|
|
|
argv[0].v_type = VAR_CHANNEL;
|
|
|
|
argv[0].vval.v_channel = channel;
|
|
|
|
++channel->ch_refcount;
|
|
|
|
call_func(channel->ch_close_cb, (int)STRLEN(channel->ch_close_cb),
|
2016-03-14 23:05:14 +01:00
|
|
|
&rettv, 1, argv, 0L, 0L, &dummy, TRUE,
|
|
|
|
channel->ch_close_partial, NULL);
|
2016-02-23 13:20:22 +01:00
|
|
|
clear_tv(&rettv);
|
|
|
|
--channel->ch_refcount;
|
|
|
|
|
|
|
|
/* the callback is only called once */
|
|
|
|
vim_free(channel->ch_close_cb);
|
|
|
|
channel->ch_close_cb = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(channel->ch_close_partial);
|
|
|
|
channel->ch_close_partial = NULL;
|
2016-02-23 13:20:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
channel->ch_nb_close_cb = 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
|
|
|
/*
|
2016-02-20 18:18:59 +01:00
|
|
|
* Return the first buffer from "channel"/"part" without removing it.
|
2016-01-26 23:30:18 +01:00
|
|
|
* Returns NULL if there is nothing.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_peek(channel_T *channel, int part)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
readq_T *head = &channel->ch_part[part].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-20 18:18:59 +01:00
|
|
|
* Clear the read buffer on "channel"/"part".
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
2016-02-20 18:18:59 +01:00
|
|
|
static void
|
|
|
|
channel_clear_one(channel_T *channel, int part)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
jsonq_T *json_head = &channel->ch_part[part].ch_json_head;
|
|
|
|
cbq_T *cb_head = &channel->ch_part[part].ch_cb_head;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
while (channel_peek(channel, part) != NULL)
|
|
|
|
vim_free(channel_get(channel, part));
|
2016-02-13 23:23:53 +01:00
|
|
|
|
|
|
|
while (cb_head->cq_next != NULL)
|
2016-02-16 13:33:52 +01:00
|
|
|
{
|
|
|
|
cbq_T *node = cb_head->cq_next;
|
|
|
|
|
|
|
|
remove_cb_node(cb_head, node);
|
|
|
|
vim_free(node->cq_callback);
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(node->cq_partial);
|
2016-02-16 13:33:52 +01:00
|
|
|
vim_free(node);
|
|
|
|
}
|
2016-02-13 23:23:53 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
vim_free(channel->ch_part[part].ch_callback);
|
|
|
|
channel->ch_part[part].ch_callback = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(channel->ch_part[part].ch_partial);
|
|
|
|
channel->ch_part[part].ch_partial = NULL;
|
2016-02-20 18:18:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear all the read buffers on "channel".
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_clear(channel_T *channel)
|
|
|
|
{
|
2016-02-28 15:49:03 +01:00
|
|
|
ch_log(channel, "Clearing channel");
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_clear_one(channel, PART_SOCK);
|
|
|
|
channel_clear_one(channel, PART_OUT);
|
|
|
|
channel_clear_one(channel, PART_ERR);
|
2016-02-15 20:39:46 +01:00
|
|
|
vim_free(channel->ch_callback);
|
|
|
|
channel->ch_callback = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(channel->ch_partial);
|
|
|
|
channel->ch_partial = NULL;
|
2016-02-23 13:20:22 +01:00
|
|
|
vim_free(channel->ch_close_cb);
|
|
|
|
channel->ch_close_cb = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(channel->ch_close_partial);
|
|
|
|
channel->ch_close_partial = 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;
|
|
|
|
|
2016-02-28 15:49:03 +01:00
|
|
|
ch_log(NULL, "channel_free_all()");
|
2016-02-13 23:23:53 +01:00
|
|
|
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. */
|
2016-02-22 23:13:33 +01:00
|
|
|
#define DETACH_MSG_RAW "DETACH\n"
|
2016-01-26 23:30:18 +01:00
|
|
|
|
|
|
|
/* 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-01-26 23:30:18 +01:00
|
|
|
*/
|
2016-01-28 22:37:01 +01:00
|
|
|
static int
|
2016-02-15 21:56:54 +01:00
|
|
|
channel_wait(channel_T *channel, sock_T fd, int timeout)
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-02-13 17:04:46 +01:00
|
|
|
if (timeout > 0)
|
2016-02-18 22:23:34 +01:00
|
|
|
ch_logn(channel, "Waiting for up to %d msec", timeout);
|
2016-02-15 21:56:54 +01:00
|
|
|
|
|
|
|
# ifdef WIN32
|
2016-02-20 18:18:59 +01:00
|
|
|
if (fd != channel->CH_SOCK_FD)
|
2016-02-15 21:56:54 +01:00
|
|
|
{
|
|
|
|
DWORD nread;
|
|
|
|
int diff;
|
|
|
|
DWORD deadline = GetTickCount() + timeout;
|
|
|
|
|
|
|
|
/* reading from a pipe, not a socket */
|
|
|
|
while (TRUE)
|
|
|
|
{
|
2016-02-16 22:01:30 +01:00
|
|
|
if (PeekNamedPipe((HANDLE)fd, NULL, 0, NULL, &nread, NULL)
|
|
|
|
&& nread > 0)
|
2016-02-15 21:56:54 +01:00
|
|
|
return OK;
|
|
|
|
diff = deadline - GetTickCount();
|
2016-02-21 17:20:55 +01:00
|
|
|
if (diff <= 0)
|
2016-02-15 21:56:54 +01:00
|
|
|
break;
|
|
|
|
/* Wait for 5 msec.
|
|
|
|
* TODO: increase the sleep time when looping more often */
|
|
|
|
Sleep(5);
|
|
|
|
}
|
|
|
|
}
|
2016-02-19 21:05:03 +01:00
|
|
|
else
|
2016-02-15 21:56:54 +01:00
|
|
|
#endif
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-23 19:34:01 +01:00
|
|
|
#if defined(HAVE_SELECT)
|
2016-02-19 21:05:03 +01:00
|
|
|
struct timeval tval;
|
|
|
|
fd_set rfds;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET((int)fd, &rfds);
|
|
|
|
tval.tv_sec = timeout / 1000;
|
|
|
|
tval.tv_usec = (timeout % 1000) * 1000;
|
|
|
|
for (;;)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-19 21:05:03 +01:00
|
|
|
ret = select((int)fd + 1, &rfds, NULL, NULL, &tval);
|
2016-02-23 19:34:01 +01:00
|
|
|
# ifdef EINTR
|
2016-02-19 21:05:03 +01:00
|
|
|
SOCK_ERRNO;
|
|
|
|
if (ret == -1 && errno == EINTR)
|
|
|
|
continue;
|
2016-02-23 19:34:01 +01:00
|
|
|
# endif
|
2016-02-19 21:05:03 +01:00
|
|
|
if (ret > 0)
|
|
|
|
return OK;
|
|
|
|
break;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
2016-02-23 19:34:01 +01:00
|
|
|
#else
|
2016-02-19 21:05:03 +01:00
|
|
|
struct pollfd fds;
|
2016-01-28 22:37:01 +01:00
|
|
|
|
2016-02-19 21:05:03 +01:00
|
|
|
fds.fd = fd;
|
|
|
|
fds.events = POLLIN;
|
|
|
|
if (poll(&fds, 1, timeout) > 0)
|
|
|
|
return OK;
|
2016-01-26 23:30:18 +01:00
|
|
|
#endif
|
2016-02-19 21:05:03 +01:00
|
|
|
}
|
|
|
|
return FAIL;
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
/*
|
2016-02-13 23:23:53 +01:00
|
|
|
* Read from channel "channel" for as long as there is something to read.
|
2016-02-20 18:18:59 +01:00
|
|
|
* "part" is PART_SOCK, PART_OUT or PART_ERR.
|
2016-01-28 22:37:01 +01:00
|
|
|
* The data is put in the read queue.
|
|
|
|
*/
|
|
|
|
void
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_read(channel_T *channel, int part, char *func)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
|
|
|
static char_u *buf = NULL;
|
|
|
|
int len = 0;
|
|
|
|
int readlen = 0;
|
2016-02-15 21:56:54 +01:00
|
|
|
sock_T fd;
|
2016-02-13 17:04:46 +01:00
|
|
|
int use_socket = FALSE;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
fd = channel->ch_part[part].ch_fd;
|
|
|
|
if (fd == INVALID_FD)
|
|
|
|
{
|
|
|
|
ch_error(channel, "channel_read() called while socket is closed");
|
2016-01-26 23:30:18 +01:00
|
|
|
return;
|
2016-02-20 18:18:59 +01:00
|
|
|
}
|
|
|
|
use_socket = fd == channel->CH_SOCK_FD;
|
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)
|
2016-02-16 15:06:59 +01:00
|
|
|
len = sock_read(fd, (char *)buf, MAXMSGSIZE);
|
2016-02-13 17:04:46 +01:00
|
|
|
else
|
2016-02-16 15:06:59 +01:00
|
|
|
len = fd_read(fd, (char *)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-20 18:18:59 +01:00
|
|
|
channel_save(channel, part, buf, len);
|
2016-01-26 23:30:18 +01:00
|
|
|
readlen += len;
|
|
|
|
if (len < MAXMSGSIZE)
|
|
|
|
break; /* did read everything that's available */
|
|
|
|
}
|
|
|
|
|
2016-02-26 11:52:39 +01:00
|
|
|
/* Reading a disconnection (readlen == 0), or an error. */
|
2016-02-22 22:19:22 +01:00
|
|
|
if (readlen <= 0)
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-02-26 11:52:39 +01:00
|
|
|
/* Do not give an error message, most likely the other end just
|
|
|
|
* exited. */
|
|
|
|
ch_errors(channel, "%s(): Cannot read from channel", func);
|
|
|
|
|
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-28 22:21:38 +01:00
|
|
|
* Don't send "DETACH" for a JS or JSON channel.
|
2016-01-26 23:30:18 +01:00
|
|
|
*/
|
2016-02-28 22:21:38 +01:00
|
|
|
if (channel->ch_part[part].ch_mode == MODE_RAW
|
|
|
|
|| channel->ch_part[part].ch_mode == MODE_NL)
|
|
|
|
channel_save(channel, part, (char_u *)DETACH_MSG_RAW,
|
|
|
|
(int)STRLEN(DETACH_MSG_RAW));
|
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. */
|
2016-02-24 20:43:06 +01:00
|
|
|
channel_close(channel, TRUE);
|
2016-02-23 13:20:22 +01:00
|
|
|
if (channel->ch_nb_close_cb != NULL)
|
|
|
|
(*channel->ch_nb_close_cb)();
|
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-20 18:18:59 +01:00
|
|
|
* Read from RAW or NL "channel"/"part". Blocks until there is something to
|
2016-02-16 19:25:12 +01:00
|
|
|
* 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 *
|
2016-02-20 19:56:13 +01:00
|
|
|
channel_read_block(channel_T *channel, int part, int timeout)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-16 19:25:12 +01:00
|
|
|
char_u *buf;
|
|
|
|
char_u *msg;
|
2016-02-20 18:18:59 +01:00
|
|
|
ch_mode_T mode = channel->ch_part[part].ch_mode;
|
|
|
|
sock_T fd = channel->ch_part[part].ch_fd;
|
2016-02-16 19:25:12 +01:00
|
|
|
char_u *nl;
|
|
|
|
|
2016-02-18 22:23:34 +01:00
|
|
|
ch_logsn(channel, "Blocking %s read, timeout: %d msec",
|
2016-02-20 18:18:59 +01:00
|
|
|
mode == MODE_RAW ? "RAW" : "NL", timeout);
|
2016-02-16 19:25:12 +01:00
|
|
|
|
|
|
|
while (TRUE)
|
2016-01-28 22:37:01 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
buf = channel_peek(channel, part);
|
2016-02-16 19:25:12 +01:00
|
|
|
if (buf != NULL && (mode == MODE_RAW
|
|
|
|
|| (mode == MODE_NL && vim_strchr(buf, NL) != NULL)))
|
|
|
|
break;
|
2016-02-20 18:18:59 +01:00
|
|
|
if (buf != NULL && channel_collapse(channel, part) == OK)
|
2016-02-16 19:25:12 +01:00
|
|
|
continue;
|
2016-02-13 17:04:46 +01:00
|
|
|
|
2016-02-05 22:36:41 +01:00
|
|
|
/* Wait for up to the channel timeout. */
|
2016-02-20 18:18:59 +01:00
|
|
|
if (fd == INVALID_FD
|
|
|
|
|| channel_wait(channel, fd, timeout) == FAIL)
|
2016-01-28 22:37:01 +01:00
|
|
|
return NULL;
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_read(channel, part, "channel_read_block");
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-02-16 19:25:12 +01:00
|
|
|
if (mode == MODE_RAW)
|
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
msg = channel_get_all(channel, part);
|
2016-02-16 19:25:12 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nl = vim_strchr(buf, NL);
|
|
|
|
if (nl[1] == NUL)
|
|
|
|
{
|
|
|
|
/* get the whole buffer */
|
2016-02-20 18:18:59 +01:00
|
|
|
msg = channel_get(channel, part);
|
2016-02-16 19:25:12 +01:00
|
|
|
*nl = NUL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Copy the message into allocated memory and remove it from the
|
|
|
|
* buffer. */
|
|
|
|
msg = vim_strnsave(buf, (int)(nl - buf));
|
|
|
|
mch_memmove(buf, nl + 1, STRLEN(nl + 1) + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (log_fd != NULL)
|
2016-02-18 22:23:34 +01:00
|
|
|
ch_logn(channel, "Returning %d bytes", (int)STRLEN(msg));
|
2016-02-16 19:25:12 +01:00
|
|
|
return msg;
|
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-20 18:18:59 +01:00
|
|
|
* Read one JSON message with ID "id" from "channel"/"part" and store the
|
2016-02-01 21:38:19 +01:00
|
|
|
* result in "rettv".
|
2016-02-20 19:56:13 +01:00
|
|
|
* When "id" is -1 accept any message;
|
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-20 19:56:13 +01:00
|
|
|
channel_read_json_block(
|
2016-02-28 15:49:03 +01:00
|
|
|
channel_T *channel,
|
|
|
|
int part,
|
|
|
|
int timeout,
|
|
|
|
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-15 21:56:54 +01:00
|
|
|
sock_T fd;
|
2016-02-02 23:23:02 +01:00
|
|
|
|
2016-02-18 22:23:34 +01:00
|
|
|
ch_log(channel, "Reading JSON");
|
2016-02-20 19:56:13 +01:00
|
|
|
if (id != -1)
|
|
|
|
channel->ch_part[part].ch_block_id = id;
|
2016-02-01 21:38:19 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
more = channel_parse_json(channel, part);
|
2016-02-01 21:38:19 +01:00
|
|
|
|
|
|
|
/* search for messsage "id" */
|
2016-02-20 18:18:59 +01:00
|
|
|
if (channel_get_json(channel, part, id, rettv) == OK)
|
2016-02-08 23:23:42 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].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-20 19:56:13 +01:00
|
|
|
/* Wait for up to the timeout. */
|
2016-02-20 18:18:59 +01:00
|
|
|
fd = channel->ch_part[part].ch_fd;
|
2016-02-20 19:56:13 +01:00
|
|
|
if (fd == INVALID_FD || channel_wait(channel, fd, timeout) == FAIL)
|
2016-02-02 23:23:02 +01:00
|
|
|
break;
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_read(channel, part, "channel_read_json_block");
|
2016-02-02 23:23:02 +01:00
|
|
|
}
|
2016-02-01 21:38:19 +01:00
|
|
|
}
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].ch_block_id = 0;
|
2016-02-01 21:38:19 +01:00
|
|
|
return FAIL;
|
2016-01-28 22:37:01 +01:00
|
|
|
}
|
|
|
|
|
2016-03-12 13:43:33 +01:00
|
|
|
/*
|
|
|
|
* Common for ch_read() and ch_readraw().
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
common_channel_read(typval_T *argvars, typval_T *rettv, int raw)
|
|
|
|
{
|
|
|
|
channel_T *channel;
|
|
|
|
int part;
|
|
|
|
jobopt_T opt;
|
|
|
|
int mode;
|
|
|
|
int timeout;
|
|
|
|
int id = -1;
|
|
|
|
typval_T *listtv = NULL;
|
|
|
|
|
|
|
|
/* return an empty string by default */
|
|
|
|
rettv->v_type = VAR_STRING;
|
|
|
|
rettv->vval.v_string = NULL;
|
|
|
|
|
|
|
|
clear_job_options(&opt);
|
|
|
|
if (get_job_options(&argvars[1], &opt, JO_TIMEOUT + JO_PART + JO_ID)
|
|
|
|
== FAIL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
channel = get_channel_arg(&argvars[0], TRUE);
|
|
|
|
if (channel != NULL)
|
|
|
|
{
|
|
|
|
if (opt.jo_set & JO_PART)
|
|
|
|
part = opt.jo_part;
|
|
|
|
else
|
|
|
|
part = channel_part_read(channel);
|
|
|
|
mode = channel_get_mode(channel, part);
|
|
|
|
timeout = channel_get_timeout(channel, part);
|
|
|
|
if (opt.jo_set & JO_TIMEOUT)
|
|
|
|
timeout = opt.jo_timeout;
|
|
|
|
|
|
|
|
if (raw || mode == MODE_RAW || mode == MODE_NL)
|
|
|
|
rettv->vval.v_string = channel_read_block(channel, part, timeout);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (opt.jo_set & JO_ID)
|
|
|
|
id = opt.jo_id;
|
|
|
|
channel_read_json_block(channel, part, timeout, id, &listtv);
|
|
|
|
if (listtv != NULL)
|
|
|
|
{
|
|
|
|
*rettv = *listtv;
|
|
|
|
vim_free(listtv);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rettv->v_type = VAR_SPECIAL;
|
|
|
|
rettv->vval.v_number = VVAL_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-20 18:44:39 +01:00
|
|
|
# if defined(WIN32) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
|
|
|
|
|| defined(PROTO)
|
2016-01-27 21:08:18 +01:00
|
|
|
/*
|
2016-02-20 18:44:39 +01:00
|
|
|
* Lookup the channel from the socket. Set "partp" 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-20 18:44:39 +01:00
|
|
|
channel_fd2channel(sock_T fd, int *partp)
|
2016-01-27 21:08:18 +01:00
|
|
|
{
|
2016-02-14 19:13:43 +01:00
|
|
|
channel_T *channel;
|
2016-02-20 18:18:59 +01:00
|
|
|
int part;
|
2016-01-27 21:08:18 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
if (fd != INVALID_FD)
|
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-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part < PART_IN; ++part)
|
|
|
|
if (channel->ch_part[part].ch_fd == fd)
|
2016-02-14 19:13:43 +01:00
|
|
|
{
|
2016-02-20 18:44:39 +01:00
|
|
|
*partp = part;
|
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
|
|
|
}
|
2016-02-21 17:20:55 +01:00
|
|
|
# endif
|
2016-02-19 21:05:03 +01:00
|
|
|
|
2016-02-21 17:20:55 +01:00
|
|
|
# if defined(WIN32) || defined(PROTO)
|
|
|
|
/*
|
|
|
|
* Check the channels for anything that is ready to be read.
|
|
|
|
* The data is put in the read queue.
|
|
|
|
*/
|
2016-02-19 21:05:03 +01:00
|
|
|
void
|
|
|
|
channel_handle_events(void)
|
|
|
|
{
|
|
|
|
channel_T *channel;
|
2016-02-20 18:18:59 +01:00
|
|
|
int part;
|
2016-02-21 17:20:55 +01:00
|
|
|
sock_T fd;
|
2016-02-19 21:05:03 +01:00
|
|
|
|
|
|
|
for (channel = first_channel; channel != NULL; channel = channel->ch_next)
|
|
|
|
{
|
|
|
|
/* check the socket and pipes */
|
2016-02-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part <= PART_ERR; ++part)
|
2016-02-21 17:20:55 +01:00
|
|
|
{
|
|
|
|
fd = channel->ch_part[part].ch_fd;
|
|
|
|
if (fd != INVALID_FD && channel_wait(channel, fd, 0) == OK)
|
|
|
|
channel_read(channel, part, "channel_handle_events");
|
|
|
|
}
|
2016-02-19 21:05:03 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-27 21:08:18 +01:00
|
|
|
# endif
|
|
|
|
|
2016-01-26 23:30:18 +01:00
|
|
|
/*
|
2016-02-20 18:18:59 +01:00
|
|
|
* Write "buf" (NUL terminated string) to "channel"/"part".
|
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-20 18:18:59 +01:00
|
|
|
channel_send(channel_T *channel, int part, 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-20 18:18:59 +01:00
|
|
|
sock_T fd;
|
2016-01-26 23:30:18 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
fd = channel->ch_part[part].ch_fd;
|
|
|
|
if (fd == INVALID_FD)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
|
|
|
if (!channel->ch_error && fun != NULL)
|
|
|
|
{
|
2016-02-18 22:23:34 +01:00
|
|
|
ch_errors(channel, "%s(): write while not connected", 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);
|
2016-03-06 21:50:33 +01:00
|
|
|
did_log_msg = TRUE;
|
2016-02-13 17:04:46 +01:00
|
|
|
}
|
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
if (part == PART_SOCK)
|
2016-02-16 15:06:59 +01:00
|
|
|
res = sock_write(fd, (char *)buf, len);
|
2016-02-13 17:04:46 +01:00
|
|
|
else
|
2016-02-16 15:06:59 +01:00
|
|
|
res = fd_write(fd, (char *)buf, len);
|
2016-02-13 17:04:46 +01:00
|
|
|
if (res != len)
|
2016-01-26 23:30:18 +01:00
|
|
|
{
|
|
|
|
if (!channel->ch_error && fun != NULL)
|
|
|
|
{
|
2016-02-18 22:23:34 +01:00
|
|
|
ch_errors(channel, "%s(): write failed", 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-03-12 13:43:33 +01:00
|
|
|
/*
|
|
|
|
* Common for "ch_sendexpr()" and "ch_sendraw()".
|
|
|
|
* Returns the channel if the caller should read the response.
|
|
|
|
* Sets "part_read" to the the read fd.
|
|
|
|
* Otherwise returns NULL.
|
|
|
|
*/
|
|
|
|
channel_T *
|
|
|
|
send_common(
|
|
|
|
typval_T *argvars,
|
|
|
|
char_u *text,
|
|
|
|
int id,
|
|
|
|
int eval,
|
|
|
|
jobopt_T *opt,
|
|
|
|
char *fun,
|
|
|
|
int *part_read)
|
|
|
|
{
|
|
|
|
channel_T *channel;
|
|
|
|
int part_send;
|
|
|
|
|
|
|
|
channel = get_channel_arg(&argvars[0], TRUE);
|
|
|
|
if (channel == NULL)
|
|
|
|
return NULL;
|
|
|
|
part_send = channel_part_send(channel);
|
|
|
|
*part_read = channel_part_read(channel);
|
|
|
|
|
|
|
|
clear_job_options(opt);
|
|
|
|
if (get_job_options(&argvars[2], opt, JO_CALLBACK + JO_TIMEOUT) == FAIL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Set the callback. An empty callback means no callback and not reading
|
|
|
|
* the response. With "ch_evalexpr()" and "ch_evalraw()" a callback is not
|
|
|
|
* allowed. */
|
|
|
|
if (opt->jo_callback != NULL && *opt->jo_callback != NUL)
|
|
|
|
{
|
|
|
|
if (eval)
|
|
|
|
{
|
|
|
|
EMSG2(_("E917: Cannot use a callback with %s()"), fun);
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-03-14 23:05:14 +01:00
|
|
|
channel_set_req_callback(channel, part_send,
|
|
|
|
opt->jo_callback, opt->jo_partial, id);
|
2016-03-12 13:43:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (channel_send(channel, part_send, text, fun) == OK
|
|
|
|
&& opt->jo_callback == NULL)
|
|
|
|
return channel;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* common for "ch_evalexpr()" and "ch_sendexpr()"
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ch_expr_common(typval_T *argvars, typval_T *rettv, int eval)
|
|
|
|
{
|
|
|
|
char_u *text;
|
|
|
|
typval_T *listtv;
|
|
|
|
channel_T *channel;
|
|
|
|
int id;
|
|
|
|
ch_mode_T ch_mode;
|
|
|
|
int part_send;
|
|
|
|
int part_read;
|
|
|
|
jobopt_T opt;
|
|
|
|
int timeout;
|
|
|
|
|
|
|
|
/* return an empty string by default */
|
|
|
|
rettv->v_type = VAR_STRING;
|
|
|
|
rettv->vval.v_string = NULL;
|
|
|
|
|
|
|
|
channel = get_channel_arg(&argvars[0], TRUE);
|
|
|
|
if (channel == NULL)
|
|
|
|
return;
|
|
|
|
part_send = channel_part_send(channel);
|
|
|
|
|
|
|
|
ch_mode = channel_get_mode(channel, part_send);
|
|
|
|
if (ch_mode == MODE_RAW || ch_mode == MODE_NL)
|
|
|
|
{
|
|
|
|
EMSG(_("E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
id = channel_get_id();
|
|
|
|
text = json_encode_nr_expr(id, &argvars[1],
|
|
|
|
ch_mode == MODE_JS ? JSON_JS : 0);
|
|
|
|
if (text == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
channel = send_common(argvars, text, id, eval, &opt,
|
|
|
|
eval ? "ch_evalexpr" : "ch_sendexpr", &part_read);
|
|
|
|
vim_free(text);
|
|
|
|
if (channel != NULL && eval)
|
|
|
|
{
|
|
|
|
if (opt.jo_set & JO_TIMEOUT)
|
|
|
|
timeout = opt.jo_timeout;
|
|
|
|
else
|
|
|
|
timeout = channel_get_timeout(channel, part_read);
|
|
|
|
if (channel_read_json_block(channel, part_read, timeout, id, &listtv)
|
|
|
|
== OK)
|
|
|
|
{
|
|
|
|
list_T *list = listtv->vval.v_list;
|
|
|
|
|
|
|
|
/* Move the item from the list and then change the type to
|
|
|
|
* avoid the value being freed. */
|
|
|
|
*rettv = list->lv_last->li_tv;
|
|
|
|
list->lv_last->li_tv.v_type = VAR_NUMBER;
|
|
|
|
free_tv(listtv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* common for "ch_evalraw()" and "ch_sendraw()"
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ch_raw_common(typval_T *argvars, typval_T *rettv, int eval)
|
|
|
|
{
|
|
|
|
char_u buf[NUMBUFLEN];
|
|
|
|
char_u *text;
|
|
|
|
channel_T *channel;
|
|
|
|
int part_read;
|
|
|
|
jobopt_T opt;
|
|
|
|
int timeout;
|
|
|
|
|
|
|
|
/* return an empty string by default */
|
|
|
|
rettv->v_type = VAR_STRING;
|
|
|
|
rettv->vval.v_string = NULL;
|
|
|
|
|
|
|
|
text = get_tv_string_buf(&argvars[1], buf);
|
|
|
|
channel = send_common(argvars, text, 0, eval, &opt,
|
|
|
|
eval ? "ch_evalraw" : "ch_sendraw", &part_read);
|
|
|
|
if (channel != NULL && eval)
|
|
|
|
{
|
|
|
|
if (opt.jo_set & JO_TIMEOUT)
|
|
|
|
timeout = opt.jo_timeout;
|
|
|
|
else
|
|
|
|
timeout = channel_get_timeout(channel, part_read);
|
|
|
|
rettv->vval.v_string = channel_read_block(channel, part_read, timeout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2016-02-20 18:18:59 +01:00
|
|
|
int part;
|
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-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part < PART_IN; ++part)
|
2016-02-14 23:02:34 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
if (channel->ch_part[part].ch_fd != INVALID_FD)
|
2016-02-14 19:13:43 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].ch_poll_idx = nfd;
|
|
|
|
fds[nfd].fd = channel->ch_part[part].ch_fd;
|
2016-02-14 19:13:43 +01:00
|
|
|
fds[nfd].events = POLLIN;
|
|
|
|
nfd++;
|
|
|
|
}
|
|
|
|
else
|
2016-02-20 18:18:59 +01:00
|
|
|
channel->ch_part[part].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;
|
2016-02-20 18:18:59 +01:00
|
|
|
int part;
|
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-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part < PART_IN; ++part)
|
2016-01-24 20:36:41 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
int idx = channel->ch_part[part].ch_poll_idx;
|
2016-02-14 19:13:43 +01:00
|
|
|
|
|
|
|
if (ret > 0 && idx != -1 && fds[idx].revents & POLLIN)
|
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_read(channel, part, "channel_poll_check");
|
2016-02-14 19:13:43 +01:00
|
|
|
--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-02-19 21:05:03 +01:00
|
|
|
# if (!defined(WIN32) && 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;
|
2016-02-20 18:18:59 +01:00
|
|
|
int part;
|
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-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part < PART_IN; ++part)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
sock_T fd = channel->ch_part[part].ch_fd;
|
2016-02-14 19:13:43 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
if (fd != INVALID_FD)
|
2016-02-14 19:13:43 +01:00
|
|
|
{
|
2016-02-15 21:56:54 +01:00
|
|
|
FD_SET((int)fd, rfds);
|
|
|
|
if (maxfd < (int)fd)
|
|
|
|
maxfd = (int)fd;
|
2016-02-14 19:13:43 +01:00
|
|
|
}
|
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;
|
2016-02-20 18:18:59 +01:00
|
|
|
int part;
|
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-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part < PART_IN; ++part)
|
2016-02-13 17:04:46 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
sock_T fd = channel->ch_part[part].ch_fd;
|
2016-02-14 19:13:43 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
if (ret > 0 && fd != INVALID_FD && FD_ISSET(fd, rfds))
|
2016-02-14 19:13:43 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_read(channel, part, "channel_select_check");
|
2016-02-14 19:13:43 +01:00
|
|
|
--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-02-19 21:05:03 +01:00
|
|
|
# endif /* !WIN32 && HAVE_SELECT */
|
2016-01-24 20:36:41 +01:00
|
|
|
|
2016-02-27 14:44:26 +01:00
|
|
|
/*
|
|
|
|
* Return TRUE if "channel" has JSON or other typeahead.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
channel_has_readahead(channel_T *channel, int part)
|
|
|
|
{
|
|
|
|
ch_mode_T ch_mode = channel->ch_part[part].ch_mode;
|
|
|
|
|
|
|
|
if (ch_mode == MODE_JSON || ch_mode == MODE_JS)
|
|
|
|
{
|
|
|
|
jsonq_T *head = &channel->ch_part[part].ch_json_head;
|
|
|
|
jsonq_T *item = head->jq_next;
|
|
|
|
|
|
|
|
return item != NULL;
|
|
|
|
}
|
|
|
|
return channel_peek(channel, part) != NULL;
|
|
|
|
}
|
|
|
|
|
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-02-20 18:18:59 +01:00
|
|
|
int part = PART_SOCK;
|
2016-01-30 23:20:33 +01:00
|
|
|
|
2016-03-06 21:50:33 +01:00
|
|
|
/* Only do this message when another message was given, otherwise we get
|
|
|
|
* lots of them. */
|
|
|
|
if (did_log_msg)
|
|
|
|
{
|
|
|
|
ch_log(NULL, "looking for messages on channels");
|
|
|
|
did_log_msg = FALSE;
|
|
|
|
}
|
2016-02-15 20:39:46 +01:00
|
|
|
while (channel != NULL)
|
|
|
|
{
|
2016-02-26 11:17:46 +01:00
|
|
|
if (channel->ch_refcount == 0 && !channel_still_useful(channel))
|
2016-02-25 23:10:17 +01:00
|
|
|
{
|
|
|
|
/* channel is no longer useful, free it */
|
|
|
|
channel_free(channel);
|
|
|
|
channel = first_channel;
|
|
|
|
part = PART_SOCK;
|
|
|
|
continue;
|
|
|
|
}
|
2016-02-27 14:44:26 +01:00
|
|
|
if (channel->ch_part[part].ch_fd != INVALID_FD
|
|
|
|
|| channel_has_readahead(channel, part))
|
2016-02-02 23:23:02 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
/* Increase the refcount, in case the handler causes the channel
|
|
|
|
* to be unreferenced or closed. */
|
|
|
|
++channel->ch_refcount;
|
|
|
|
r = may_invoke_callback(channel, part);
|
|
|
|
if (r == OK)
|
|
|
|
ret = TRUE;
|
|
|
|
if (channel_unref(channel) || r == OK)
|
|
|
|
{
|
|
|
|
/* channel was freed or something was done, start over */
|
|
|
|
channel = first_channel;
|
|
|
|
part = PART_SOCK;
|
|
|
|
continue;
|
|
|
|
}
|
2016-02-02 23:23:02 +01:00
|
|
|
}
|
2016-02-20 18:18:59 +01:00
|
|
|
if (part < PART_ERR)
|
|
|
|
++part;
|
2016-02-15 20:39:46 +01:00
|
|
|
else
|
2016-02-20 18:18:59 +01:00
|
|
|
{
|
2016-02-15 20:39:46 +01:00
|
|
|
channel = channel->ch_next;
|
2016-02-20 18:18:59 +01:00
|
|
|
part = PART_SOCK;
|
|
|
|
}
|
2016-02-15 20:39:46 +01:00
|
|
|
}
|
2016-02-27 14:44:26 +01:00
|
|
|
|
|
|
|
if (channel_need_redraw && must_redraw)
|
|
|
|
{
|
|
|
|
channel_need_redraw = FALSE;
|
|
|
|
update_screen(0);
|
|
|
|
setcursor();
|
|
|
|
cursor_on();
|
|
|
|
out_flush();
|
|
|
|
}
|
|
|
|
|
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-20 18:18:59 +01:00
|
|
|
int part;
|
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-20 18:18:59 +01:00
|
|
|
for (part = PART_SOCK; part < PART_IN; ++part)
|
2016-02-04 22:49:49 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
jsonq_T *head = &channel->ch_part[part].ch_json_head;
|
|
|
|
jsonq_T *item = head->jq_next;
|
2016-02-04 22:49:49 +01:00
|
|
|
|
2016-02-20 18:18:59 +01:00
|
|
|
while (item != NULL)
|
2016-02-04 22:49:49 +01:00
|
|
|
{
|
2016-02-20 18:18:59 +01:00
|
|
|
list_T *l = item->jq_value->vval.v_list;
|
|
|
|
|
|
|
|
if (l->lv_copyID != copyID)
|
|
|
|
{
|
|
|
|
l->lv_copyID = copyID;
|
|
|
|
abort = abort || set_ref_in_list(l, copyID, NULL);
|
|
|
|
}
|
|
|
|
item = item->jq_next;
|
2016-02-04 22:49:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return abort;
|
|
|
|
}
|
2016-02-07 21:59:26 +01:00
|
|
|
|
|
|
|
/*
|
2016-02-20 18:18:59 +01:00
|
|
|
* Return the "part" to write to for "channel".
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_part_send(channel_T *channel)
|
|
|
|
{
|
|
|
|
if (channel->CH_SOCK_FD == INVALID_FD)
|
|
|
|
return PART_IN;
|
|
|
|
return PART_SOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the default "part" to read from for "channel".
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_part_read(channel_T *channel)
|
|
|
|
{
|
|
|
|
if (channel->CH_SOCK_FD == INVALID_FD)
|
|
|
|
return PART_OUT;
|
|
|
|
return PART_SOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the mode of "channel"/"part"
|
2016-02-13 23:23:53 +01:00
|
|
|
* If "channel" is invalid returns MODE_JSON.
|
2016-02-07 21:59:26 +01:00
|
|
|
*/
|
|
|
|
ch_mode_T
|
2016-02-20 18:18:59 +01:00
|
|
|
channel_get_mode(channel_T *channel, int part)
|
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-20 18:18:59 +01:00
|
|
|
return channel->ch_part[part].ch_mode;
|
2016-02-07 21:59:26 +01:00
|
|
|
}
|
|
|
|
|
2016-02-20 19:56:13 +01:00
|
|
|
/*
|
|
|
|
* Return the timeout of "channel"/"part"
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
channel_get_timeout(channel_T *channel, int part)
|
|
|
|
{
|
|
|
|
return channel->ch_part[part].ch_timeout;
|
|
|
|
}
|
|
|
|
|
2016-03-12 13:43:33 +01:00
|
|
|
static int
|
|
|
|
handle_mode(typval_T *item, jobopt_T *opt, ch_mode_T *modep, int jo)
|
|
|
|
{
|
|
|
|
char_u *val = get_tv_string(item);
|
|
|
|
|
|
|
|
opt->jo_set |= jo;
|
|
|
|
if (STRCMP(val, "nl") == 0)
|
|
|
|
*modep = MODE_NL;
|
|
|
|
else if (STRCMP(val, "raw") == 0)
|
|
|
|
*modep = MODE_RAW;
|
|
|
|
else if (STRCMP(val, "js") == 0)
|
|
|
|
*modep = MODE_JS;
|
|
|
|
else if (STRCMP(val, "json") == 0)
|
|
|
|
*modep = MODE_JSON;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), val);
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
handle_io(typval_T *item, int part, jobopt_T *opt)
|
|
|
|
{
|
|
|
|
char_u *val = get_tv_string(item);
|
|
|
|
|
|
|
|
opt->jo_set |= JO_OUT_IO << (part - PART_OUT);
|
|
|
|
if (STRCMP(val, "null") == 0)
|
|
|
|
opt->jo_io[part] = JIO_NULL;
|
|
|
|
else if (STRCMP(val, "pipe") == 0)
|
|
|
|
opt->jo_io[part] = JIO_PIPE;
|
|
|
|
else if (STRCMP(val, "file") == 0)
|
|
|
|
opt->jo_io[part] = JIO_FILE;
|
|
|
|
else if (STRCMP(val, "buffer") == 0)
|
|
|
|
opt->jo_io[part] = JIO_BUFFER;
|
|
|
|
else if (STRCMP(val, "out") == 0 && part == PART_ERR)
|
|
|
|
opt->jo_io[part] = JIO_OUT;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), val);
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
clear_job_options(jobopt_T *opt)
|
|
|
|
{
|
|
|
|
vim_memset(opt, 0, sizeof(jobopt_T));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the PART_ number from the first character of an option name.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
part_from_char(int c)
|
|
|
|
{
|
|
|
|
return c == 'i' ? PART_IN : c == 'o' ? PART_OUT: PART_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the option entries from the dict in "tv", parse them and put the result
|
|
|
|
* in "opt".
|
|
|
|
* Only accept options in "supported".
|
|
|
|
* If an option value is invalid return FAIL.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
get_job_options(typval_T *tv, jobopt_T *opt, int supported)
|
|
|
|
{
|
|
|
|
typval_T *item;
|
|
|
|
char_u *val;
|
|
|
|
dict_T *dict;
|
|
|
|
int todo;
|
|
|
|
hashitem_T *hi;
|
|
|
|
int part;
|
|
|
|
|
|
|
|
opt->jo_set = 0;
|
|
|
|
if (tv->v_type == VAR_UNKNOWN)
|
|
|
|
return OK;
|
|
|
|
if (tv->v_type != VAR_DICT)
|
|
|
|
{
|
|
|
|
EMSG(_(e_invarg));
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
dict = tv->vval.v_dict;
|
|
|
|
if (dict == NULL)
|
|
|
|
return OK;
|
|
|
|
|
|
|
|
todo = (int)dict->dv_hashtab.ht_used;
|
|
|
|
for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
|
|
|
|
if (!HASHITEM_EMPTY(hi))
|
|
|
|
{
|
|
|
|
item = &dict_lookup(hi)->di_tv;
|
|
|
|
|
|
|
|
if (STRCMP(hi->hi_key, "mode") == 0)
|
|
|
|
{
|
|
|
|
if (!(supported & JO_MODE))
|
|
|
|
break;
|
|
|
|
if (handle_mode(item, opt, &opt->jo_mode, JO_MODE) == FAIL)
|
|
|
|
return FAIL;
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "in_mode") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_IN_MODE))
|
|
|
|
break;
|
|
|
|
if (handle_mode(item, opt, &opt->jo_in_mode, JO_IN_MODE)
|
|
|
|
== FAIL)
|
|
|
|
return FAIL;
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "out_mode") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_OUT_MODE))
|
|
|
|
break;
|
|
|
|
if (handle_mode(item, opt, &opt->jo_out_mode, JO_OUT_MODE)
|
|
|
|
== FAIL)
|
|
|
|
return FAIL;
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "err_mode") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_ERR_MODE))
|
|
|
|
break;
|
|
|
|
if (handle_mode(item, opt, &opt->jo_err_mode, JO_ERR_MODE)
|
|
|
|
== FAIL)
|
|
|
|
return FAIL;
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "in_io") == 0
|
|
|
|
|| STRCMP(hi->hi_key, "out_io") == 0
|
|
|
|
|| STRCMP(hi->hi_key, "err_io") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_OUT_IO))
|
|
|
|
break;
|
|
|
|
if (handle_io(item, part_from_char(*hi->hi_key), opt) == FAIL)
|
|
|
|
return FAIL;
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "in_name") == 0
|
|
|
|
|| STRCMP(hi->hi_key, "out_name") == 0
|
|
|
|
|| STRCMP(hi->hi_key, "err_name") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
part = part_from_char(*hi->hi_key);
|
|
|
|
|
|
|
|
if (!(supported & JO_OUT_IO))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_OUT_NAME << (part - PART_OUT);
|
|
|
|
opt->jo_io_name[part] =
|
|
|
|
get_tv_string_buf_chk(item, opt->jo_io_name_buf[part]);
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "in_buf") == 0
|
|
|
|
|| STRCMP(hi->hi_key, "out_buf") == 0
|
|
|
|
|| STRCMP(hi->hi_key, "err_buf") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
part = part_from_char(*hi->hi_key);
|
|
|
|
|
|
|
|
if (!(supported & JO_OUT_IO))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_OUT_BUF << (part - PART_OUT);
|
|
|
|
opt->jo_io_buf[part] = get_tv_number(item);
|
|
|
|
if (opt->jo_io_buf[part] <= 0)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), get_tv_string(item));
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
if (buflist_findnr(opt->jo_io_buf[part]) == NULL)
|
|
|
|
{
|
|
|
|
EMSGN(_(e_nobufnr), (long)opt->jo_io_buf[part]);
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "in_top") == 0
|
|
|
|
|| STRCMP(hi->hi_key, "in_bot") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
linenr_T *lp;
|
|
|
|
|
|
|
|
if (!(supported & JO_OUT_IO))
|
|
|
|
break;
|
|
|
|
if (hi->hi_key[3] == 't')
|
|
|
|
{
|
|
|
|
lp = &opt->jo_in_top;
|
|
|
|
opt->jo_set |= JO_IN_TOP;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lp = &opt->jo_in_bot;
|
|
|
|
opt->jo_set |= JO_IN_BOT;
|
|
|
|
}
|
|
|
|
*lp = get_tv_number(item);
|
|
|
|
if (*lp < 0)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), get_tv_string(item));
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (STRCMP(hi->hi_key, "channel") == 0)
|
|
|
|
{
|
|
|
|
if (!(supported & JO_OUT_IO))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_CHANNEL;
|
|
|
|
if (item->v_type != VAR_CHANNEL)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), "channel");
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
opt->jo_channel = item->vval.v_channel;
|
|
|
|
}
|
|
|
|
else if (STRCMP(hi->hi_key, "callback") == 0)
|
|
|
|
{
|
|
|
|
if (!(supported & JO_CALLBACK))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_CALLBACK;
|
2016-03-14 23:05:14 +01:00
|
|
|
opt->jo_callback = get_callback(item, &opt->jo_partial);
|
2016-03-12 13:43:33 +01:00
|
|
|
if (opt->jo_callback == NULL)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), "callback");
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "out_cb") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_OUT_CALLBACK))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_OUT_CALLBACK;
|
2016-03-14 23:05:14 +01:00
|
|
|
opt->jo_out_cb = get_callback(item, &opt->jo_out_partial);
|
2016-03-12 13:43:33 +01:00
|
|
|
if (opt->jo_out_cb == NULL)
|
|
|
|
{
|
2016-03-14 23:22:59 +01:00
|
|
|
EMSG2(_(e_invarg2), "out_cb");
|
2016-03-12 13:43:33 +01:00
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "err_cb") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_ERR_CALLBACK))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_ERR_CALLBACK;
|
2016-03-14 23:05:14 +01:00
|
|
|
opt->jo_err_cb = get_callback(item, &opt->jo_err_partial);
|
2016-03-12 13:43:33 +01:00
|
|
|
if (opt->jo_err_cb == NULL)
|
|
|
|
{
|
2016-03-14 23:22:59 +01:00
|
|
|
EMSG2(_(e_invarg2), "err_cb");
|
2016-03-12 13:43:33 +01:00
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "close_cb") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_CLOSE_CALLBACK))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_CLOSE_CALLBACK;
|
2016-03-14 23:05:14 +01:00
|
|
|
opt->jo_close_cb = get_callback(item, &opt->jo_close_partial);
|
2016-03-12 13:43:33 +01:00
|
|
|
if (opt->jo_close_cb == NULL)
|
|
|
|
{
|
2016-03-14 23:22:59 +01:00
|
|
|
EMSG2(_(e_invarg2), "close_cb");
|
2016-03-12 13:43:33 +01:00
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (STRCMP(hi->hi_key, "waittime") == 0)
|
|
|
|
{
|
|
|
|
if (!(supported & JO_WAITTIME))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_WAITTIME;
|
|
|
|
opt->jo_waittime = get_tv_number(item);
|
|
|
|
}
|
|
|
|
else if (STRCMP(hi->hi_key, "timeout") == 0)
|
|
|
|
{
|
|
|
|
if (!(supported & JO_TIMEOUT))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_TIMEOUT;
|
|
|
|
opt->jo_timeout = get_tv_number(item);
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "out_timeout") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_OUT_TIMEOUT))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_OUT_TIMEOUT;
|
|
|
|
opt->jo_out_timeout = get_tv_number(item);
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "err_timeout") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_ERR_TIMEOUT))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_ERR_TIMEOUT;
|
|
|
|
opt->jo_err_timeout = get_tv_number(item);
|
|
|
|
}
|
|
|
|
else if (STRCMP(hi->hi_key, "part") == 0)
|
|
|
|
{
|
|
|
|
if (!(supported & JO_PART))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_PART;
|
|
|
|
val = get_tv_string(item);
|
|
|
|
if (STRCMP(val, "err") == 0)
|
|
|
|
opt->jo_part = PART_ERR;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), val);
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (STRCMP(hi->hi_key, "id") == 0)
|
|
|
|
{
|
|
|
|
if (!(supported & JO_ID))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_ID;
|
|
|
|
opt->jo_id = get_tv_number(item);
|
|
|
|
}
|
|
|
|
else if (STRCMP(hi->hi_key, "stoponexit") == 0)
|
|
|
|
{
|
|
|
|
if (!(supported & JO_STOPONEXIT))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_STOPONEXIT;
|
|
|
|
opt->jo_stoponexit = get_tv_string_buf_chk(item,
|
|
|
|
opt->jo_soe_buf);
|
|
|
|
if (opt->jo_stoponexit == NULL)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), "stoponexit");
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 23:22:59 +01:00
|
|
|
else if (STRCMP(hi->hi_key, "exit_cb") == 0)
|
2016-03-12 13:43:33 +01:00
|
|
|
{
|
|
|
|
if (!(supported & JO_EXIT_CB))
|
|
|
|
break;
|
|
|
|
opt->jo_set |= JO_EXIT_CB;
|
2016-03-14 23:05:14 +01:00
|
|
|
if (item->v_type == VAR_PARTIAL && item->vval.v_partial != NULL)
|
|
|
|
{
|
|
|
|
opt->jo_exit_partial = item->vval.v_partial;
|
|
|
|
opt->jo_exit_cb = item->vval.v_partial->pt_name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
opt->jo_exit_cb = get_tv_string_buf_chk(
|
|
|
|
item, opt->jo_ecb_buf);
|
2016-03-12 13:43:33 +01:00
|
|
|
if (opt->jo_exit_cb == NULL)
|
|
|
|
{
|
2016-03-14 23:22:59 +01:00
|
|
|
EMSG2(_(e_invarg2), "exit_cb");
|
2016-03-12 13:43:33 +01:00
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
--todo;
|
|
|
|
}
|
|
|
|
if (todo > 0)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), hi->hi_key);
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the channel from the argument.
|
|
|
|
* Returns NULL if the handle is invalid.
|
|
|
|
*/
|
|
|
|
channel_T *
|
|
|
|
get_channel_arg(typval_T *tv, int check_open)
|
|
|
|
{
|
|
|
|
channel_T *channel = NULL;
|
|
|
|
|
|
|
|
if (tv->v_type == VAR_JOB)
|
|
|
|
{
|
|
|
|
if (tv->vval.v_job != NULL)
|
|
|
|
channel = tv->vval.v_job->jv_channel;
|
|
|
|
}
|
|
|
|
else if (tv->v_type == VAR_CHANNEL)
|
|
|
|
{
|
|
|
|
channel = tv->vval.v_channel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EMSG2(_(e_invarg2), get_tv_string(tv));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (check_open && (channel == NULL || !channel_is_open(channel)))
|
|
|
|
{
|
|
|
|
EMSG(_("E906: not an open channel"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return channel;
|
|
|
|
}
|
|
|
|
|
|
|
|
static job_T *first_job = NULL;
|
|
|
|
|
|
|
|
static void
|
|
|
|
job_free(job_T *job)
|
|
|
|
{
|
|
|
|
ch_log(job->jv_channel, "Freeing job");
|
|
|
|
if (job->jv_channel != NULL)
|
|
|
|
{
|
|
|
|
/* The link from the channel to the job doesn't count as a reference,
|
|
|
|
* thus don't decrement the refcount of the job. The reference from
|
|
|
|
* the job to the channel does count the refrence, decrement it and
|
|
|
|
* NULL the reference. We don't set ch_job_killed, unreferencing the
|
|
|
|
* job doesn't mean it stops running. */
|
|
|
|
job->jv_channel->ch_job = NULL;
|
|
|
|
channel_unref(job->jv_channel);
|
|
|
|
}
|
|
|
|
mch_clear_job(job);
|
|
|
|
|
|
|
|
if (job->jv_next != NULL)
|
|
|
|
job->jv_next->jv_prev = job->jv_prev;
|
|
|
|
if (job->jv_prev == NULL)
|
|
|
|
first_job = job->jv_next;
|
|
|
|
else
|
|
|
|
job->jv_prev->jv_next = job->jv_next;
|
|
|
|
|
|
|
|
vim_free(job->jv_stoponexit);
|
|
|
|
vim_free(job->jv_exit_cb);
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(job->jv_exit_partial);
|
2016-03-12 13:43:33 +01:00
|
|
|
vim_free(job);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
job_unref(job_T *job)
|
|
|
|
{
|
|
|
|
if (job != NULL && --job->jv_refcount <= 0)
|
|
|
|
{
|
|
|
|
/* Do not free the job when it has not ended yet and there is a
|
|
|
|
* "stoponexit" flag or an exit callback. */
|
|
|
|
if (job->jv_status != JOB_STARTED
|
|
|
|
|| (job->jv_stoponexit == NULL && job->jv_exit_cb == NULL))
|
|
|
|
{
|
|
|
|
job_free(job);
|
|
|
|
}
|
|
|
|
else if (job->jv_channel != NULL)
|
|
|
|
{
|
|
|
|
/* Do remove the link to the channel, otherwise it hangs
|
|
|
|
* around until Vim exits. See job_free() for refcount. */
|
|
|
|
job->jv_channel->ch_job = NULL;
|
|
|
|
channel_unref(job->jv_channel);
|
|
|
|
job->jv_channel = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a job. Sets the refcount to one and sets options default.
|
|
|
|
*/
|
|
|
|
static job_T *
|
|
|
|
job_alloc(void)
|
|
|
|
{
|
|
|
|
job_T *job;
|
|
|
|
|
|
|
|
job = (job_T *)alloc_clear(sizeof(job_T));
|
|
|
|
if (job != NULL)
|
|
|
|
{
|
|
|
|
job->jv_refcount = 1;
|
|
|
|
job->jv_stoponexit = vim_strsave((char_u *)"term");
|
|
|
|
|
|
|
|
if (first_job != NULL)
|
|
|
|
{
|
|
|
|
first_job->jv_prev = job;
|
|
|
|
job->jv_next = first_job;
|
|
|
|
}
|
|
|
|
first_job = job;
|
|
|
|
}
|
|
|
|
return job;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
job_set_options(job_T *job, jobopt_T *opt)
|
|
|
|
{
|
|
|
|
if (opt->jo_set & JO_STOPONEXIT)
|
|
|
|
{
|
|
|
|
vim_free(job->jv_stoponexit);
|
|
|
|
if (opt->jo_stoponexit == NULL || *opt->jo_stoponexit == NUL)
|
|
|
|
job->jv_stoponexit = NULL;
|
|
|
|
else
|
|
|
|
job->jv_stoponexit = vim_strsave(opt->jo_stoponexit);
|
|
|
|
}
|
|
|
|
if (opt->jo_set & JO_EXIT_CB)
|
|
|
|
{
|
|
|
|
vim_free(job->jv_exit_cb);
|
2016-03-14 23:05:14 +01:00
|
|
|
partial_unref(job->jv_exit_partial);
|
2016-03-12 13:43:33 +01:00
|
|
|
if (opt->jo_exit_cb == NULL || *opt->jo_exit_cb == NUL)
|
2016-03-14 23:05:14 +01:00
|
|
|
{
|
2016-03-12 13:43:33 +01:00
|
|
|
job->jv_exit_cb = NULL;
|
2016-03-14 23:05:14 +01:00
|
|
|
job->jv_exit_partial = NULL;
|
|
|
|
}
|
2016-03-12 13:43:33 +01:00
|
|
|
else
|
2016-03-14 23:05:14 +01:00
|
|
|
{
|
2016-03-12 13:43:33 +01:00
|
|
|
job->jv_exit_cb = vim_strsave(opt->jo_exit_cb);
|
2016-03-14 23:05:14 +01:00
|
|
|
job->jv_exit_partial = opt->jo_exit_partial;
|
|
|
|
if (job->jv_exit_partial != NULL)
|
|
|
|
++job->jv_exit_partial->pt_refcount;
|
|
|
|
}
|
2016-03-12 13:43:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called when Vim is exiting: kill all jobs that have the "stoponexit" flag.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
job_stop_on_exit()
|
|
|
|
{
|
|
|
|
job_T *job;
|
|
|
|
|
|
|
|
for (job = first_job; job != NULL; job = job->jv_next)
|
|
|
|
if (job->jv_status == JOB_STARTED && job->jv_stoponexit != NULL)
|
|
|
|
mch_stop_job(job, job->jv_stoponexit);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-03-14 23:22:59 +01:00
|
|
|
* Called once in a while: check if any jobs with an "exit_cb" have ended.
|
2016-03-12 13:43:33 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
job_check_ended(void)
|
|
|
|
{
|
|
|
|
static time_t last_check = 0;
|
|
|
|
time_t now;
|
|
|
|
job_T *job;
|
|
|
|
job_T *next;
|
|
|
|
|
|
|
|
/* Only do this once in 10 seconds. */
|
|
|
|
now = time(NULL);
|
|
|
|
if (last_check + 10 < now)
|
|
|
|
{
|
|
|
|
last_check = now;
|
|
|
|
for (job = first_job; job != NULL; job = next)
|
|
|
|
{
|
|
|
|
next = job->jv_next;
|
|
|
|
if (job->jv_status == JOB_STARTED && job->jv_exit_cb != NULL)
|
|
|
|
job_status(job); /* may free "job" */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "job_start()" function
|
|
|
|
*/
|
|
|
|
job_T *
|
|
|
|
job_start(typval_T *argvars)
|
|
|
|
{
|
|
|
|
job_T *job;
|
|
|
|
char_u *cmd = NULL;
|
|
|
|
#if defined(UNIX)
|
|
|
|
# define USE_ARGV
|
|
|
|
char **argv = NULL;
|
|
|
|
int argc = 0;
|
|
|
|
#else
|
|
|
|
garray_T ga;
|
|
|
|
#endif
|
|
|
|
jobopt_T opt;
|
|
|
|
int part;
|
|
|
|
|
|
|
|
job = job_alloc();
|
|
|
|
if (job == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
job->jv_status = JOB_FAILED;
|
|
|
|
|
|
|
|
/* Default mode is NL. */
|
|
|
|
clear_job_options(&opt);
|
|
|
|
opt.jo_mode = MODE_NL;
|
|
|
|
if (get_job_options(&argvars[1], &opt,
|
|
|
|
JO_MODE_ALL + JO_CB_ALL + JO_TIMEOUT_ALL
|
|
|
|
+ JO_STOPONEXIT + JO_EXIT_CB + JO_OUT_IO) == FAIL)
|
|
|
|
return job;
|
|
|
|
|
|
|
|
/* Check that when io is "file" that there is a file name. */
|
|
|
|
for (part = PART_OUT; part <= PART_IN; ++part)
|
|
|
|
if ((opt.jo_set & (JO_OUT_IO << (part - PART_OUT)))
|
|
|
|
&& opt.jo_io[part] == JIO_FILE
|
|
|
|
&& (!(opt.jo_set & (JO_OUT_NAME << (part - PART_OUT)))
|
|
|
|
|| *opt.jo_io_name[part] == NUL))
|
|
|
|
{
|
2016-03-14 23:22:59 +01:00
|
|
|
EMSG(_("E920: _io file requires _name to be set"));
|
2016-03-12 13:43:33 +01:00
|
|
|
return job;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((opt.jo_set & JO_IN_IO) && opt.jo_io[PART_IN] == JIO_BUFFER)
|
|
|
|
{
|
|
|
|
buf_T *buf = NULL;
|
|
|
|
|
|
|
|
/* check that we can find the buffer before starting the job */
|
|
|
|
if (opt.jo_set & JO_IN_BUF)
|
|
|
|
{
|
|
|
|
buf = buflist_findnr(opt.jo_io_buf[PART_IN]);
|
|
|
|
if (buf == NULL)
|
|
|
|
EMSGN(_(e_nobufnr), (long)opt.jo_io_buf[PART_IN]);
|
|
|
|
}
|
|
|
|
else if (!(opt.jo_set & JO_IN_NAME))
|
|
|
|
{
|
2016-03-14 23:22:59 +01:00
|
|
|
EMSG(_("E915: in_io buffer requires in_buf or in_name to be set"));
|
2016-03-12 13:43:33 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
buf = buflist_find_by_name(opt.jo_io_name[PART_IN], FALSE);
|
|
|
|
if (buf == NULL)
|
|
|
|
return job;
|
|
|
|
if (buf->b_ml.ml_mfp == NULL)
|
|
|
|
{
|
|
|
|
char_u numbuf[NUMBUFLEN];
|
|
|
|
char_u *s;
|
|
|
|
|
|
|
|
if (opt.jo_set & JO_IN_BUF)
|
|
|
|
{
|
|
|
|
sprintf((char *)numbuf, "%d", opt.jo_io_buf[PART_IN]);
|
|
|
|
s = numbuf;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
s = opt.jo_io_name[PART_IN];
|
|
|
|
EMSG2(_("E918: buffer must be loaded: %s"), s);
|
|
|
|
return job;
|
|
|
|
}
|
|
|
|
job->jv_in_buf = buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
job_set_options(job, &opt);
|
|
|
|
|
|
|
|
#ifndef USE_ARGV
|
|
|
|
ga_init2(&ga, (int)sizeof(char*), 20);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (argvars[0].v_type == VAR_STRING)
|
|
|
|
{
|
|
|
|
/* Command is a string. */
|
|
|
|
cmd = argvars[0].vval.v_string;
|
|
|
|
#ifdef USE_ARGV
|
|
|
|
if (mch_parse_cmd(cmd, FALSE, &argv, &argc) == FAIL)
|
|
|
|
return job;
|
|
|
|
argv[argc] = NULL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if (argvars[0].v_type != VAR_LIST
|
|
|
|
|| argvars[0].vval.v_list == NULL
|
|
|
|
|| argvars[0].vval.v_list->lv_len < 1)
|
|
|
|
{
|
|
|
|
EMSG(_(e_invarg));
|
|
|
|
return job;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
list_T *l = argvars[0].vval.v_list;
|
|
|
|
listitem_T *li;
|
|
|
|
char_u *s;
|
|
|
|
|
|
|
|
#ifdef USE_ARGV
|
|
|
|
/* Pass argv[] to mch_call_shell(). */
|
|
|
|
argv = (char **)alloc(sizeof(char *) * (l->lv_len + 1));
|
|
|
|
if (argv == NULL)
|
|
|
|
return job;
|
|
|
|
#endif
|
|
|
|
for (li = l->lv_first; li != NULL; li = li->li_next)
|
|
|
|
{
|
|
|
|
s = get_tv_string_chk(&li->li_tv);
|
|
|
|
if (s == NULL)
|
|
|
|
goto theend;
|
|
|
|
#ifdef USE_ARGV
|
|
|
|
argv[argc++] = (char *)s;
|
|
|
|
#else
|
|
|
|
/* Only escape when needed, double quotes are not always allowed. */
|
|
|
|
if (li != l->lv_first && vim_strpbrk(s, (char_u *)" \t\"") != NULL)
|
|
|
|
{
|
2016-03-12 15:58:34 +01:00
|
|
|
# ifdef WIN32
|
|
|
|
int old_ssl = p_ssl;
|
|
|
|
|
|
|
|
/* This is using CreateProcess, not cmd.exe. Always use
|
|
|
|
* double quote and backslashes. */
|
|
|
|
p_ssl = 0;
|
|
|
|
# endif
|
2016-03-12 13:43:33 +01:00
|
|
|
s = vim_strsave_shellescape(s, FALSE, TRUE);
|
2016-03-12 15:58:34 +01:00
|
|
|
# ifdef WIN32
|
|
|
|
p_ssl = old_ssl;
|
|
|
|
# endif
|
2016-03-12 13:43:33 +01:00
|
|
|
if (s == NULL)
|
|
|
|
goto theend;
|
|
|
|
ga_concat(&ga, s);
|
|
|
|
vim_free(s);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ga_concat(&ga, s);
|
|
|
|
if (li->li_next != NULL)
|
|
|
|
ga_append(&ga, ' ');
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#ifdef USE_ARGV
|
|
|
|
argv[argc] = NULL;
|
|
|
|
#else
|
|
|
|
cmd = ga.ga_data;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USE_ARGV
|
|
|
|
if (ch_log_active())
|
|
|
|
{
|
|
|
|
garray_T ga;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
ga_init2(&ga, (int)sizeof(char), 200);
|
|
|
|
for (i = 0; i < argc; ++i)
|
|
|
|
{
|
|
|
|
if (i > 0)
|
|
|
|
ga_concat(&ga, (char_u *)" ");
|
|
|
|
ga_concat(&ga, (char_u *)argv[i]);
|
|
|
|
}
|
|
|
|
ch_logs(NULL, "Starting job: %s", (char *)ga.ga_data);
|
|
|
|
ga_clear(&ga);
|
|
|
|
}
|
|
|
|
mch_start_job(argv, job, &opt);
|
|
|
|
#else
|
|
|
|
ch_logs(NULL, "Starting job: %s", (char *)cmd);
|
|
|
|
mch_start_job((char *)cmd, job, &opt);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* If the channel is reading from a buffer, write lines now. */
|
|
|
|
if (job->jv_channel != NULL)
|
|
|
|
channel_write_in(job->jv_channel);
|
|
|
|
|
|
|
|
theend:
|
|
|
|
#ifdef USE_ARGV
|
|
|
|
vim_free(argv);
|
|
|
|
#else
|
|
|
|
vim_free(ga.ga_data);
|
|
|
|
#endif
|
|
|
|
return job;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the status of "job" and invoke the exit callback when needed.
|
|
|
|
* The returned string is not allocated.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
job_status(job_T *job)
|
|
|
|
{
|
|
|
|
char *result;
|
|
|
|
|
|
|
|
if (job->jv_status == JOB_ENDED)
|
|
|
|
/* No need to check, dead is dead. */
|
|
|
|
result = "dead";
|
|
|
|
else if (job->jv_status == JOB_FAILED)
|
|
|
|
result = "fail";
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = mch_job_status(job);
|
|
|
|
if (job->jv_status == JOB_ENDED)
|
|
|
|
ch_log(job->jv_channel, "Job ended");
|
|
|
|
if (job->jv_status == JOB_ENDED && job->jv_exit_cb != NULL)
|
|
|
|
{
|
|
|
|
typval_T argv[3];
|
|
|
|
typval_T rettv;
|
|
|
|
int dummy;
|
|
|
|
|
|
|
|
/* invoke the exit callback; make sure the refcount is > 0 */
|
|
|
|
++job->jv_refcount;
|
|
|
|
argv[0].v_type = VAR_JOB;
|
|
|
|
argv[0].vval.v_job = job;
|
|
|
|
argv[1].v_type = VAR_NUMBER;
|
|
|
|
argv[1].vval.v_number = job->jv_exitval;
|
|
|
|
call_func(job->jv_exit_cb, (int)STRLEN(job->jv_exit_cb),
|
2016-03-14 23:05:14 +01:00
|
|
|
&rettv, 2, argv, 0L, 0L, &dummy, TRUE,
|
|
|
|
job->jv_exit_partial, NULL);
|
2016-03-12 13:43:33 +01:00
|
|
|
clear_tv(&rettv);
|
|
|
|
--job->jv_refcount;
|
|
|
|
}
|
|
|
|
if (job->jv_status == JOB_ENDED && job->jv_refcount == 0)
|
|
|
|
{
|
|
|
|
/* The job was already unreferenced, now that it ended it can be
|
|
|
|
* freed. Careful: caller must not use "job" after this! */
|
|
|
|
job_free(job);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-03-12 15:22:55 +01:00
|
|
|
/*
|
|
|
|
* Implementation of job_info().
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
job_info(job_T *job, dict_T *dict)
|
|
|
|
{
|
|
|
|
dictitem_T *item;
|
|
|
|
varnumber_T nr;
|
|
|
|
|
|
|
|
dict_add_nr_str(dict, "status", 0L, (char_u *)job_status(job));
|
|
|
|
|
|
|
|
item = dictitem_alloc((char_u *)"channel");
|
|
|
|
if (item == NULL)
|
|
|
|
return;
|
|
|
|
item->di_tv.v_lock = 0;
|
|
|
|
item->di_tv.v_type = VAR_CHANNEL;
|
|
|
|
item->di_tv.vval.v_channel = job->jv_channel;
|
|
|
|
if (job->jv_channel != NULL)
|
|
|
|
++job->jv_channel->ch_refcount;
|
|
|
|
if (dict_add(dict, item) == FAIL)
|
|
|
|
dictitem_free(item);
|
|
|
|
|
|
|
|
#ifdef UNIX
|
|
|
|
nr = job->jv_pid;
|
|
|
|
#else
|
|
|
|
nr = job->jv_proc_info.dwProcessId;
|
|
|
|
#endif
|
|
|
|
dict_add_nr_str(dict, "process", nr, NULL);
|
|
|
|
|
|
|
|
dict_add_nr_str(dict, "exitval", job->jv_exitval, NULL);
|
2016-03-14 23:22:59 +01:00
|
|
|
dict_add_nr_str(dict, "exit_cb", 0L, job->jv_exit_cb);
|
2016-03-12 15:22:55 +01:00
|
|
|
dict_add_nr_str(dict, "stoponexit", 0L, job->jv_stoponexit);
|
|
|
|
}
|
|
|
|
|
2016-03-12 13:43:33 +01:00
|
|
|
int
|
|
|
|
job_stop(job_T *job, typval_T *argvars)
|
|
|
|
{
|
|
|
|
char_u *arg;
|
|
|
|
|
|
|
|
if (argvars[1].v_type == VAR_UNKNOWN)
|
|
|
|
arg = (char_u *)"";
|
|
|
|
else
|
|
|
|
{
|
|
|
|
arg = get_tv_string_chk(&argvars[1]);
|
|
|
|
if (arg == NULL)
|
|
|
|
{
|
|
|
|
EMSG(_(e_invarg));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ch_logs(job->jv_channel, "Stopping job with '%s'", (char *)arg);
|
|
|
|
if (mch_stop_job(job, arg) == FAIL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Assume that "hup" does not kill the job. */
|
|
|
|
if (job->jv_channel != NULL && STRCMP(arg, "hup") != 0)
|
|
|
|
job->jv_channel->ch_job_killed = TRUE;
|
|
|
|
|
|
|
|
/* We don't try freeing the job, obviously the caller still has a
|
|
|
|
* reference to it. */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-03-11 22:52:15 +01:00
|
|
|
#endif /* FEAT_JOB_CHANNEL */
|