mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 19:06:31 +00:00

This matches Vim behavior. From `:help :ls` : R a terminal buffer with a running job F a terminal buffer with a finished job ? a terminal buffer without a job: `:terminal NONE` TODO: implement `:terminal NONE`. ref #10349
837 lines
21 KiB
C
837 lines
21 KiB
C
// This is an open source non-commercial project. Dear PVS-Studio, please check
|
|
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
|
|
|
#include "nvim/api/private/helpers.h"
|
|
#include "nvim/api/ui.h"
|
|
#include "nvim/channel.h"
|
|
#include "nvim/eval.h"
|
|
#include "nvim/eval/encode.h"
|
|
#include "nvim/event/socket.h"
|
|
#include "nvim/fileio.h"
|
|
#include "nvim/msgpack_rpc/channel.h"
|
|
#include "nvim/msgpack_rpc/server.h"
|
|
#include "nvim/os/shell.h"
|
|
#include "nvim/path.h"
|
|
#include "nvim/ascii.h"
|
|
|
|
static bool did_stdio = false;
|
|
PMap(uint64_t) *channels = NULL;
|
|
|
|
/// next free id for a job or rpc channel
|
|
/// 1 is reserved for stdio channel
|
|
/// 2 is reserved for stderr channel
|
|
static uint64_t next_chan_id = CHAN_STDERR+1;
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "channel.c.generated.h"
|
|
#endif
|
|
|
|
/// Teardown the module
|
|
void channel_teardown(void)
|
|
{
|
|
if (!channels) {
|
|
return;
|
|
}
|
|
|
|
Channel *channel;
|
|
|
|
map_foreach_value(channels, channel, {
|
|
channel_close(channel->id, kChannelPartAll, NULL);
|
|
});
|
|
}
|
|
|
|
/// Closes a channel
|
|
///
|
|
/// @param id The channel id
|
|
/// @return true if successful, false otherwise
|
|
bool channel_close(uint64_t id, ChannelPart part, const char **error)
|
|
{
|
|
Channel *chan;
|
|
Process *proc;
|
|
|
|
const char *dummy;
|
|
if (!error) {
|
|
error = &dummy;
|
|
}
|
|
|
|
if (!(chan = find_channel(id))) {
|
|
if (id < next_chan_id) {
|
|
// allow double close, even though we can't say what parts was valid.
|
|
return true;
|
|
}
|
|
*error = (const char *)e_invchan;
|
|
return false;
|
|
}
|
|
|
|
bool close_main = false;
|
|
if (part == kChannelPartRpc || part == kChannelPartAll) {
|
|
close_main = true;
|
|
if (chan->is_rpc) {
|
|
rpc_close(chan);
|
|
} else if (part == kChannelPartRpc) {
|
|
*error = (const char *)e_invstream;
|
|
return false;
|
|
}
|
|
} else if ((part == kChannelPartStdin || part == kChannelPartStdout)
|
|
&& chan->is_rpc) {
|
|
*error = (const char *)e_invstreamrpc;
|
|
return false;
|
|
}
|
|
|
|
switch (chan->streamtype) {
|
|
case kChannelStreamSocket:
|
|
if (!close_main) {
|
|
*error = (const char *)e_invstream;
|
|
return false;
|
|
}
|
|
stream_may_close(&chan->stream.socket);
|
|
break;
|
|
|
|
case kChannelStreamProc:
|
|
proc = (Process *)&chan->stream.proc;
|
|
if (part == kChannelPartStdin || close_main) {
|
|
stream_may_close(&proc->in);
|
|
}
|
|
if (part == kChannelPartStdout || close_main) {
|
|
stream_may_close(&proc->out);
|
|
}
|
|
if (part == kChannelPartStderr || part == kChannelPartAll) {
|
|
stream_may_close(&proc->err);
|
|
}
|
|
if (proc->type == kProcessTypePty && part == kChannelPartAll) {
|
|
pty_process_close_master(&chan->stream.pty);
|
|
}
|
|
|
|
break;
|
|
|
|
case kChannelStreamStdio:
|
|
if (part == kChannelPartStdin || close_main) {
|
|
stream_may_close(&chan->stream.stdio.in);
|
|
}
|
|
if (part == kChannelPartStdout || close_main) {
|
|
stream_may_close(&chan->stream.stdio.out);
|
|
}
|
|
if (part == kChannelPartStderr) {
|
|
*error = (const char *)e_invstream;
|
|
return false;
|
|
}
|
|
break;
|
|
|
|
case kChannelStreamStderr:
|
|
if (part != kChannelPartAll && part != kChannelPartStderr) {
|
|
*error = (const char *)e_invstream;
|
|
return false;
|
|
}
|
|
if (!chan->stream.err.closed) {
|
|
chan->stream.err.closed = true;
|
|
// Don't close on exit, in case late error messages
|
|
if (!exiting) {
|
|
fclose(stderr);
|
|
}
|
|
channel_decref(chan);
|
|
}
|
|
break;
|
|
|
|
case kChannelStreamInternal:
|
|
if (!close_main) {
|
|
*error = (const char *)e_invstream;
|
|
return false;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
abort();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/// Initializes the module
|
|
void channel_init(void)
|
|
{
|
|
channels = pmap_new(uint64_t)();
|
|
channel_alloc(kChannelStreamStderr);
|
|
rpc_init();
|
|
}
|
|
|
|
/// Allocates a channel.
|
|
///
|
|
/// Channel is allocated with refcount 1, which should be decreased
|
|
/// when the underlying stream closes.
|
|
static Channel *channel_alloc(ChannelStreamType type)
|
|
{
|
|
Channel *chan = xcalloc(1, sizeof(*chan));
|
|
if (type == kChannelStreamStdio) {
|
|
chan->id = CHAN_STDIO;
|
|
} else if (type == kChannelStreamStderr) {
|
|
chan->id = CHAN_STDERR;
|
|
} else {
|
|
chan->id = next_chan_id++;
|
|
}
|
|
chan->events = multiqueue_new_child(main_loop.events);
|
|
chan->refcount = 1;
|
|
chan->exit_status = -1;
|
|
chan->streamtype = type;
|
|
pmap_put(uint64_t)(channels, chan->id, chan);
|
|
return chan;
|
|
}
|
|
|
|
void channel_create_event(Channel *chan, const char *ext_source)
|
|
{
|
|
#if MIN_LOG_LEVEL <= INFO_LOG_LEVEL
|
|
const char *source;
|
|
|
|
if (ext_source) {
|
|
// TODO(bfredl): in a future improved traceback solution,
|
|
// external events should be included.
|
|
source = ext_source;
|
|
} else {
|
|
eval_fmt_source_name_line((char *)IObuff, sizeof(IObuff));
|
|
source = (const char *)IObuff;
|
|
}
|
|
|
|
Dictionary info = channel_info(chan->id);
|
|
typval_T tv = TV_INITIAL_VALUE;
|
|
// TODO(bfredl): do the conversion in one step. Also would be nice
|
|
// to pretty print top level dict in defined order
|
|
(void)object_to_vim(DICTIONARY_OBJ(info), &tv, NULL);
|
|
char *str = encode_tv2json(&tv, NULL);
|
|
ILOG("new channel %" PRIu64 " (%s) : %s", chan->id, source, str);
|
|
xfree(str);
|
|
api_free_dictionary(info);
|
|
|
|
#else
|
|
(void)ext_source;
|
|
#endif
|
|
|
|
channel_info_changed(chan, true);
|
|
}
|
|
|
|
void channel_incref(Channel *chan)
|
|
{
|
|
chan->refcount++;
|
|
}
|
|
|
|
void channel_decref(Channel *chan)
|
|
{
|
|
if (!(--chan->refcount)) {
|
|
// delay free, so that libuv is done with the handles
|
|
multiqueue_put(main_loop.events, free_channel_event, 1, chan);
|
|
}
|
|
}
|
|
|
|
void callback_reader_free(CallbackReader *reader)
|
|
{
|
|
callback_free(&reader->cb);
|
|
ga_clear(&reader->buffer);
|
|
}
|
|
|
|
void callback_reader_start(CallbackReader *reader, const char *type)
|
|
{
|
|
ga_init(&reader->buffer, sizeof(char *), 32);
|
|
reader->type = type;
|
|
}
|
|
|
|
static void free_channel_event(void **argv)
|
|
{
|
|
Channel *chan = argv[0];
|
|
if (chan->is_rpc) {
|
|
rpc_free(chan);
|
|
}
|
|
|
|
callback_reader_free(&chan->on_data);
|
|
callback_reader_free(&chan->on_stderr);
|
|
callback_free(&chan->on_exit);
|
|
|
|
pmap_del(uint64_t)(channels, chan->id);
|
|
multiqueue_free(chan->events);
|
|
xfree(chan);
|
|
}
|
|
|
|
static void channel_destroy_early(Channel *chan)
|
|
{
|
|
if ((chan->id != --next_chan_id)) {
|
|
abort();
|
|
}
|
|
pmap_del(uint64_t)(channels, chan->id);
|
|
chan->id = 0;
|
|
|
|
if ((--chan->refcount != 0)) {
|
|
abort();
|
|
}
|
|
|
|
// uv will keep a reference to handles until next loop tick, so delay free
|
|
multiqueue_put(main_loop.events, free_channel_event, 1, chan);
|
|
}
|
|
|
|
|
|
static void close_cb(Stream *stream, void *data)
|
|
{
|
|
channel_decref(data);
|
|
}
|
|
|
|
Channel *channel_job_start(char **argv, CallbackReader on_stdout,
|
|
CallbackReader on_stderr, Callback on_exit,
|
|
bool pty, bool rpc, bool detach, const char *cwd,
|
|
uint16_t pty_width, uint16_t pty_height,
|
|
char *term_name, varnumber_T *status_out)
|
|
{
|
|
assert(cwd == NULL || os_isdir_executable(cwd));
|
|
|
|
Channel *chan = channel_alloc(kChannelStreamProc);
|
|
chan->on_data = on_stdout;
|
|
chan->on_stderr = on_stderr;
|
|
chan->on_exit = on_exit;
|
|
|
|
if (pty) {
|
|
if (detach) {
|
|
EMSG2(_(e_invarg2), "terminal/pty job cannot be detached");
|
|
shell_free_argv(argv);
|
|
xfree(term_name);
|
|
channel_destroy_early(chan);
|
|
*status_out = 0;
|
|
return NULL;
|
|
}
|
|
chan->stream.pty = pty_process_init(&main_loop, chan);
|
|
if (pty_width > 0) {
|
|
chan->stream.pty.width = pty_width;
|
|
}
|
|
if (pty_height > 0) {
|
|
chan->stream.pty.height = pty_height;
|
|
}
|
|
if (term_name) {
|
|
chan->stream.pty.term_name = term_name;
|
|
}
|
|
} else {
|
|
chan->stream.uv = libuv_process_init(&main_loop, chan);
|
|
}
|
|
|
|
Process *proc = (Process *)&chan->stream.proc;
|
|
proc->argv = argv;
|
|
proc->cb = channel_process_exit_cb;
|
|
proc->events = chan->events;
|
|
proc->detach = detach;
|
|
proc->cwd = cwd;
|
|
|
|
char *cmd = xstrdup(proc->argv[0]);
|
|
bool has_out, has_err;
|
|
if (proc->type == kProcessTypePty) {
|
|
has_out = true;
|
|
has_err = false;
|
|
} else {
|
|
has_out = rpc || callback_reader_set(chan->on_data);
|
|
has_err = callback_reader_set(chan->on_stderr);
|
|
}
|
|
int status = process_spawn(proc, true, has_out, has_err);
|
|
if (status) {
|
|
EMSG3(_(e_jobspawn), os_strerror(status), cmd);
|
|
xfree(cmd);
|
|
if (proc->type == kProcessTypePty) {
|
|
xfree(chan->stream.pty.term_name);
|
|
}
|
|
channel_destroy_early(chan);
|
|
*status_out = proc->status;
|
|
return NULL;
|
|
}
|
|
xfree(cmd);
|
|
|
|
wstream_init(&proc->in, 0);
|
|
if (has_out) {
|
|
rstream_init(&proc->out, 0);
|
|
}
|
|
|
|
if (rpc) {
|
|
// the rpc takes over the in and out streams
|
|
rpc_start(chan);
|
|
} else {
|
|
if (has_out) {
|
|
callback_reader_start(&chan->on_data, "stdout");
|
|
rstream_start(&proc->out, on_channel_data, chan);
|
|
}
|
|
}
|
|
|
|
if (has_err) {
|
|
callback_reader_start(&chan->on_stderr, "stderr");
|
|
rstream_init(&proc->err, 0);
|
|
rstream_start(&proc->err, on_job_stderr, chan);
|
|
}
|
|
|
|
*status_out = (varnumber_T)chan->id;
|
|
return chan;
|
|
}
|
|
|
|
|
|
uint64_t channel_connect(bool tcp, const char *address,
|
|
bool rpc, CallbackReader on_output,
|
|
int timeout, const char **error)
|
|
{
|
|
Channel *channel;
|
|
|
|
if (!tcp && rpc) {
|
|
char *path = fix_fname(address);
|
|
bool loopback = server_owns_pipe_address(path);
|
|
xfree(path);
|
|
if (loopback) {
|
|
// Create a loopback channel. This avoids deadlock if nvim connects to
|
|
// its own named pipe.
|
|
channel = channel_alloc(kChannelStreamInternal);
|
|
rpc_start(channel);
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
channel = channel_alloc(kChannelStreamSocket);
|
|
if (!socket_connect(&main_loop, &channel->stream.socket,
|
|
tcp, address, timeout, error)) {
|
|
channel_destroy_early(channel);
|
|
return 0;
|
|
}
|
|
|
|
channel->stream.socket.internal_close_cb = close_cb;
|
|
channel->stream.socket.internal_data = channel;
|
|
wstream_init(&channel->stream.socket, 0);
|
|
rstream_init(&channel->stream.socket, 0);
|
|
|
|
if (rpc) {
|
|
rpc_start(channel);
|
|
} else {
|
|
channel->on_data = on_output;
|
|
callback_reader_start(&channel->on_data, "data");
|
|
rstream_start(&channel->stream.socket, on_channel_data, channel);
|
|
}
|
|
|
|
end:
|
|
channel_create_event(channel, address);
|
|
return channel->id;
|
|
}
|
|
|
|
/// Creates an RPC channel from a tcp/pipe socket connection
|
|
///
|
|
/// @param watcher The SocketWatcher ready to accept the connection
|
|
void channel_from_connection(SocketWatcher *watcher)
|
|
{
|
|
Channel *channel = channel_alloc(kChannelStreamSocket);
|
|
socket_watcher_accept(watcher, &channel->stream.socket);
|
|
channel->stream.socket.internal_close_cb = close_cb;
|
|
channel->stream.socket.internal_data = channel;
|
|
wstream_init(&channel->stream.socket, 0);
|
|
rstream_init(&channel->stream.socket, 0);
|
|
rpc_start(channel);
|
|
channel_create_event(channel, watcher->addr);
|
|
}
|
|
|
|
/// Creates an API channel from stdin/stdout. This is used when embedding
|
|
/// Neovim
|
|
uint64_t channel_from_stdio(bool rpc, CallbackReader on_output,
|
|
const char **error)
|
|
FUNC_ATTR_NONNULL_ALL
|
|
{
|
|
if (!headless_mode && !embedded_mode) {
|
|
*error = _("can only be opened in headless mode");
|
|
return 0;
|
|
}
|
|
|
|
if (did_stdio) {
|
|
*error = _("channel was already open");
|
|
return 0;
|
|
}
|
|
did_stdio = true;
|
|
|
|
Channel *channel = channel_alloc(kChannelStreamStdio);
|
|
|
|
rstream_init_fd(&main_loop, &channel->stream.stdio.in, 0, 0);
|
|
wstream_init_fd(&main_loop, &channel->stream.stdio.out, 1, 0);
|
|
|
|
if (rpc) {
|
|
rpc_start(channel);
|
|
} else {
|
|
channel->on_data = on_output;
|
|
callback_reader_start(&channel->on_data, "stdin");
|
|
rstream_start(&channel->stream.stdio.in, on_channel_data, channel);
|
|
}
|
|
|
|
return channel->id;
|
|
}
|
|
|
|
/// @param data will be consumed
|
|
size_t channel_send(uint64_t id, char *data, size_t len, const char **error)
|
|
{
|
|
Channel *chan = find_channel(id);
|
|
if (!chan) {
|
|
EMSG(_(e_invchan));
|
|
goto err;
|
|
}
|
|
|
|
if (chan->streamtype == kChannelStreamStderr) {
|
|
if (chan->stream.err.closed) {
|
|
*error = _("Can't send data to closed stream");
|
|
goto err;
|
|
}
|
|
// unbuffered write
|
|
size_t written = fwrite(data, len, 1, stderr);
|
|
xfree(data);
|
|
return len * written;
|
|
}
|
|
|
|
|
|
Stream *in = channel_instream(chan);
|
|
if (in->closed) {
|
|
*error = _("Can't send data to closed stream");
|
|
goto err;
|
|
}
|
|
|
|
if (chan->is_rpc) {
|
|
*error = _("Can't send raw data to rpc channel");
|
|
goto err;
|
|
}
|
|
|
|
WBuffer *buf = wstream_new_buffer(data, len, 1, xfree);
|
|
return wstream_write(in, buf) ? len : 0;
|
|
|
|
err:
|
|
xfree(data);
|
|
return 0;
|
|
}
|
|
|
|
/// Convert binary byte array to a readfile()-style list
|
|
///
|
|
/// @param[in] buf Array to convert.
|
|
/// @param[in] len Array length.
|
|
///
|
|
/// @return [allocated] Converted list.
|
|
static inline list_T *buffer_to_tv_list(const char *const buf, const size_t len)
|
|
FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_ALWAYS_INLINE
|
|
{
|
|
list_T *const l = tv_list_alloc(kListLenMayKnow);
|
|
// Empty buffer should be represented by [''], encode_list_write() thinks
|
|
// empty list is fine for the case.
|
|
tv_list_append_string(l, "", 0);
|
|
if (len > 0) {
|
|
encode_list_write(l, buf, len);
|
|
}
|
|
return l;
|
|
}
|
|
|
|
void on_channel_data(Stream *stream, RBuffer *buf, size_t count,
|
|
void *data, bool eof)
|
|
{
|
|
Channel *chan = data;
|
|
on_channel_output(stream, chan, buf, count, eof, &chan->on_data);
|
|
}
|
|
|
|
void on_job_stderr(Stream *stream, RBuffer *buf, size_t count,
|
|
void *data, bool eof)
|
|
{
|
|
Channel *chan = data;
|
|
on_channel_output(stream, chan, buf, count, eof, &chan->on_stderr);
|
|
}
|
|
|
|
static void on_channel_output(Stream *stream, Channel *chan, RBuffer *buf,
|
|
size_t count, bool eof, CallbackReader *reader)
|
|
{
|
|
// stub variable, to keep reading consistent with the order of events, only
|
|
// consider the count parameter.
|
|
size_t r;
|
|
char *ptr = rbuffer_read_ptr(buf, &r);
|
|
|
|
if (eof) {
|
|
reader->eof = true;
|
|
} else {
|
|
if (chan->term) {
|
|
terminal_receive(chan->term, ptr, count);
|
|
terminal_flush_output(chan->term);
|
|
}
|
|
|
|
rbuffer_consumed(buf, count);
|
|
|
|
if (callback_reader_set(*reader)) {
|
|
ga_concat_len(&reader->buffer, ptr, count);
|
|
}
|
|
}
|
|
|
|
if (callback_reader_set(*reader)) {
|
|
schedule_channel_event(chan);
|
|
}
|
|
}
|
|
|
|
/// schedule the necessary callbacks to be invoked as a deferred event
|
|
static void schedule_channel_event(Channel *chan)
|
|
{
|
|
if (!chan->callback_scheduled) {
|
|
if (!chan->callback_busy) {
|
|
multiqueue_put(chan->events, on_channel_event, 1, chan);
|
|
channel_incref(chan);
|
|
}
|
|
chan->callback_scheduled = true;
|
|
}
|
|
}
|
|
|
|
static void on_channel_event(void **args)
|
|
{
|
|
Channel *chan = (Channel *)args[0];
|
|
|
|
chan->callback_busy = true;
|
|
chan->callback_scheduled = false;
|
|
|
|
int exit_status = chan->exit_status;
|
|
channel_reader_callbacks(chan, &chan->on_data);
|
|
channel_reader_callbacks(chan, &chan->on_stderr);
|
|
if (exit_status > -1) {
|
|
channel_callback_call(chan, NULL);
|
|
chan->exit_status = -1;
|
|
}
|
|
|
|
chan->callback_busy = false;
|
|
if (chan->callback_scheduled) {
|
|
// further callback was deferred to avoid recursion.
|
|
multiqueue_put(chan->events, on_channel_event, 1, chan);
|
|
channel_incref(chan);
|
|
}
|
|
|
|
channel_decref(chan);
|
|
}
|
|
|
|
void channel_reader_callbacks(Channel *chan, CallbackReader *reader)
|
|
{
|
|
if (reader->buffered) {
|
|
if (reader->eof) {
|
|
if (reader->self) {
|
|
if (tv_dict_find(reader->self, reader->type, -1) == NULL) {
|
|
list_T *data = buffer_to_tv_list(reader->buffer.ga_data,
|
|
(size_t)reader->buffer.ga_len);
|
|
tv_dict_add_list(reader->self, reader->type, strlen(reader->type),
|
|
data);
|
|
} else {
|
|
EMSG3(_(e_streamkey), reader->type, chan->id);
|
|
}
|
|
} else {
|
|
channel_callback_call(chan, reader);
|
|
}
|
|
reader->eof = false;
|
|
}
|
|
} else {
|
|
bool is_eof = reader->eof;
|
|
if (reader->buffer.ga_len > 0) {
|
|
channel_callback_call(chan, reader);
|
|
}
|
|
// if the stream reached eof, invoke extra callback with no data
|
|
if (is_eof) {
|
|
channel_callback_call(chan, reader);
|
|
reader->eof = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
static void channel_process_exit_cb(Process *proc, int status, void *data)
|
|
{
|
|
Channel *chan = data;
|
|
if (chan->term) {
|
|
char msg[sizeof("\r\n[Process exited ]") + NUMBUFLEN];
|
|
snprintf(msg, sizeof msg, "\r\n[Process exited %d]", proc->status);
|
|
terminal_close(chan->term, msg);
|
|
}
|
|
|
|
// If process did not exit, we only closed the handle of a detached process.
|
|
bool exited = (status >= 0);
|
|
if (exited && chan->on_exit.type != kCallbackNone) {
|
|
schedule_channel_event(chan);
|
|
chan->exit_status = status;
|
|
}
|
|
|
|
channel_decref(chan);
|
|
}
|
|
|
|
static void channel_callback_call(Channel *chan, CallbackReader *reader)
|
|
{
|
|
Callback *cb;
|
|
typval_T argv[4];
|
|
|
|
argv[0].v_type = VAR_NUMBER;
|
|
argv[0].v_lock = VAR_UNLOCKED;
|
|
argv[0].vval.v_number = (varnumber_T)chan->id;
|
|
|
|
if (reader) {
|
|
argv[1].v_type = VAR_LIST;
|
|
argv[1].v_lock = VAR_UNLOCKED;
|
|
argv[1].vval.v_list = buffer_to_tv_list(reader->buffer.ga_data,
|
|
(size_t)reader->buffer.ga_len);
|
|
tv_list_ref(argv[1].vval.v_list);
|
|
ga_clear(&reader->buffer);
|
|
cb = &reader->cb;
|
|
argv[2].vval.v_string = (char_u *)reader->type;
|
|
} else {
|
|
argv[1].v_type = VAR_NUMBER;
|
|
argv[1].v_lock = VAR_UNLOCKED;
|
|
argv[1].vval.v_number = chan->exit_status;
|
|
cb = &chan->on_exit;
|
|
argv[2].vval.v_string = (char_u *)"exit";
|
|
}
|
|
|
|
argv[2].v_type = VAR_STRING;
|
|
argv[2].v_lock = VAR_UNLOCKED;
|
|
|
|
typval_T rettv = TV_INITIAL_VALUE;
|
|
callback_call(cb, 3, argv, &rettv);
|
|
tv_clear(&rettv);
|
|
}
|
|
|
|
|
|
/// Open terminal for channel
|
|
///
|
|
/// Channel `chan` is assumed to be an open pty channel,
|
|
/// and curbuf is assumed to be a new, unmodified buffer.
|
|
void channel_terminal_open(Channel *chan)
|
|
{
|
|
TerminalOptions topts;
|
|
topts.data = chan;
|
|
topts.width = chan->stream.pty.width;
|
|
topts.height = chan->stream.pty.height;
|
|
topts.write_cb = term_write;
|
|
topts.resize_cb = term_resize;
|
|
topts.close_cb = term_close;
|
|
curbuf->b_p_channel = (long)chan->id; // 'channel' option
|
|
Terminal *term = terminal_open(topts);
|
|
chan->term = term;
|
|
channel_incref(chan);
|
|
}
|
|
|
|
static void term_write(char *buf, size_t size, void *data)
|
|
{
|
|
Channel *chan = data;
|
|
if (chan->stream.proc.in.closed) {
|
|
// If the backing stream was closed abruptly, there may be write events
|
|
// ahead of the terminal close event. Just ignore the writes.
|
|
ILOG("write failed: stream is closed");
|
|
return;
|
|
}
|
|
WBuffer *wbuf = wstream_new_buffer(xmemdup(buf, size), size, 1, xfree);
|
|
wstream_write(&chan->stream.proc.in, wbuf);
|
|
}
|
|
|
|
static void term_resize(uint16_t width, uint16_t height, void *data)
|
|
{
|
|
Channel *chan = data;
|
|
pty_process_resize(&chan->stream.pty, width, height);
|
|
}
|
|
|
|
static inline void term_delayed_free(void **argv)
|
|
{
|
|
Channel *chan = argv[0];
|
|
if (chan->stream.proc.in.pending_reqs || chan->stream.proc.out.pending_reqs) {
|
|
multiqueue_put(chan->events, term_delayed_free, 1, chan);
|
|
return;
|
|
}
|
|
|
|
terminal_destroy(chan->term);
|
|
chan->term = NULL;
|
|
channel_decref(chan);
|
|
}
|
|
|
|
static void term_close(void *data)
|
|
{
|
|
Channel *chan = data;
|
|
process_stop(&chan->stream.proc);
|
|
multiqueue_put(chan->events, term_delayed_free, 1, data);
|
|
}
|
|
|
|
void channel_info_changed(Channel *chan, bool new)
|
|
{
|
|
event_T event = new ? EVENT_CHANOPEN : EVENT_CHANINFO;
|
|
if (has_event(event)) {
|
|
channel_incref(chan);
|
|
multiqueue_put(main_loop.events, set_info_event,
|
|
2, chan, event);
|
|
}
|
|
}
|
|
|
|
static void set_info_event(void **argv)
|
|
{
|
|
Channel *chan = argv[0];
|
|
event_T event = (event_T)(ptrdiff_t)argv[1];
|
|
|
|
dict_T *dict = get_vim_var_dict(VV_EVENT);
|
|
Dictionary info = channel_info(chan->id);
|
|
typval_T retval;
|
|
(void)object_to_vim(DICTIONARY_OBJ(info), &retval, NULL);
|
|
tv_dict_add_dict(dict, S_LEN("info"), retval.vval.v_dict);
|
|
|
|
apply_autocmds(event, NULL, NULL, false, curbuf);
|
|
|
|
tv_dict_clear(dict);
|
|
api_free_dictionary(info);
|
|
channel_decref(chan);
|
|
}
|
|
|
|
bool channel_job_running(uint64_t id)
|
|
{
|
|
Channel *chan = find_channel(id);
|
|
return (chan
|
|
&& chan->streamtype == kChannelStreamProc
|
|
&& !process_is_stopped(&chan->stream.proc));
|
|
}
|
|
|
|
Dictionary channel_info(uint64_t id)
|
|
{
|
|
Channel *chan = find_channel(id);
|
|
if (!chan) {
|
|
return (Dictionary)ARRAY_DICT_INIT;
|
|
}
|
|
|
|
Dictionary info = ARRAY_DICT_INIT;
|
|
PUT(info, "id", INTEGER_OBJ((Integer)chan->id));
|
|
|
|
const char *stream_desc, *mode_desc;
|
|
switch (chan->streamtype) {
|
|
case kChannelStreamProc:
|
|
stream_desc = "job";
|
|
if (chan->stream.proc.type == kProcessTypePty) {
|
|
const char *name = pty_process_tty_name(&chan->stream.pty);
|
|
PUT(info, "pty", STRING_OBJ(cstr_to_string(name)));
|
|
}
|
|
break;
|
|
|
|
case kChannelStreamStdio:
|
|
stream_desc = "stdio";
|
|
break;
|
|
|
|
case kChannelStreamStderr:
|
|
stream_desc = "stderr";
|
|
break;
|
|
|
|
case kChannelStreamInternal:
|
|
PUT(info, "internal", BOOLEAN_OBJ(true));
|
|
FALLTHROUGH;
|
|
|
|
case kChannelStreamSocket:
|
|
stream_desc = "socket";
|
|
break;
|
|
|
|
default:
|
|
abort();
|
|
}
|
|
PUT(info, "stream", STRING_OBJ(cstr_to_string(stream_desc)));
|
|
|
|
if (chan->is_rpc) {
|
|
mode_desc = "rpc";
|
|
PUT(info, "client", DICTIONARY_OBJ(rpc_client_info(chan)));
|
|
} else if (chan->term) {
|
|
mode_desc = "terminal";
|
|
PUT(info, "buffer", BUFFER_OBJ(terminal_buf(chan->term)));
|
|
} else {
|
|
mode_desc = "bytes";
|
|
}
|
|
PUT(info, "mode", STRING_OBJ(cstr_to_string(mode_desc)));
|
|
|
|
return info;
|
|
}
|
|
|
|
Array channel_all_info(void)
|
|
{
|
|
Channel *channel;
|
|
Array ret = ARRAY_DICT_INIT;
|
|
map_foreach_value(channels, channel, {
|
|
ADD(ret, DICTIONARY_OBJ(channel_info(channel->id)));
|
|
});
|
|
return ret;
|
|
}
|