mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.0.0022
Problem: If a channel in NL mode is missing the NL at the end the remaining characters are dropped. Solution: When the channel is closed use the remaining text. (Ozaki Kiichi)
This commit is contained in:
@@ -2355,8 +2355,9 @@ may_invoke_callback(channel_T *channel, int part)
|
|||||||
typval_T *listtv = NULL;
|
typval_T *listtv = NULL;
|
||||||
typval_T argv[CH_JSON_MAX_ARGS];
|
typval_T argv[CH_JSON_MAX_ARGS];
|
||||||
int seq_nr = -1;
|
int seq_nr = -1;
|
||||||
ch_mode_T ch_mode = channel->ch_part[part].ch_mode;
|
chanpart_T *ch_part = &channel->ch_part[part];
|
||||||
cbq_T *cbhead = &channel->ch_part[part].ch_cb_head;
|
ch_mode_T ch_mode = ch_part->ch_mode;
|
||||||
|
cbq_T *cbhead = &ch_part->ch_cb_head;
|
||||||
cbq_T *cbitem;
|
cbq_T *cbitem;
|
||||||
char_u *callback = NULL;
|
char_u *callback = NULL;
|
||||||
partial_T *partial = NULL;
|
partial_T *partial = NULL;
|
||||||
@@ -2376,10 +2377,10 @@ may_invoke_callback(channel_T *channel, int part)
|
|||||||
callback = cbitem->cq_callback;
|
callback = cbitem->cq_callback;
|
||||||
partial = cbitem->cq_partial;
|
partial = cbitem->cq_partial;
|
||||||
}
|
}
|
||||||
else if (channel->ch_part[part].ch_callback != NULL)
|
else if (ch_part->ch_callback != NULL)
|
||||||
{
|
{
|
||||||
callback = channel->ch_part[part].ch_callback;
|
callback = ch_part->ch_callback;
|
||||||
partial = channel->ch_part[part].ch_partial;
|
partial = ch_part->ch_partial;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -2387,11 +2388,11 @@ may_invoke_callback(channel_T *channel, int part)
|
|||||||
partial = channel->ch_partial;
|
partial = channel->ch_partial;
|
||||||
}
|
}
|
||||||
|
|
||||||
buffer = channel->ch_part[part].ch_bufref.br_buf;
|
buffer = ch_part->ch_bufref.br_buf;
|
||||||
if (buffer != NULL && !bufref_valid(&channel->ch_part[part].ch_bufref))
|
if (buffer != NULL && !bufref_valid(&ch_part->ch_bufref))
|
||||||
{
|
{
|
||||||
/* buffer was wiped out */
|
/* buffer was wiped out */
|
||||||
channel->ch_part[part].ch_bufref.br_buf = NULL;
|
ch_part->ch_bufref.br_buf = NULL;
|
||||||
buffer = NULL;
|
buffer = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2452,7 +2453,7 @@ may_invoke_callback(channel_T *channel, int part)
|
|||||||
|
|
||||||
if (ch_mode == MODE_NL)
|
if (ch_mode == MODE_NL)
|
||||||
{
|
{
|
||||||
char_u *nl;
|
char_u *nl = NULL;
|
||||||
char_u *buf;
|
char_u *buf;
|
||||||
readq_T *node;
|
readq_T *node;
|
||||||
|
|
||||||
@@ -2465,10 +2466,25 @@ may_invoke_callback(channel_T *channel, int part)
|
|||||||
if (nl != NULL)
|
if (nl != NULL)
|
||||||
break;
|
break;
|
||||||
if (channel_collapse(channel, part, TRUE) == FAIL)
|
if (channel_collapse(channel, part, TRUE) == FAIL)
|
||||||
|
{
|
||||||
|
if (ch_part->ch_fd == INVALID_FD && node->rq_buflen > 0)
|
||||||
|
break;
|
||||||
return FALSE; /* incomplete message */
|
return FALSE; /* incomplete message */
|
||||||
|
}
|
||||||
}
|
}
|
||||||
buf = node->rq_buffer;
|
buf = node->rq_buffer;
|
||||||
|
|
||||||
|
if (nl == NULL)
|
||||||
|
{
|
||||||
|
/* Flush remaining message that is missing a NL. */
|
||||||
|
buf = vim_realloc(buf, node->rq_buflen + 1);
|
||||||
|
if (buf == NULL)
|
||||||
|
return FALSE;
|
||||||
|
node->rq_buffer = buf;
|
||||||
|
nl = buf + node->rq_buflen++;
|
||||||
|
*nl = NUL;
|
||||||
|
}
|
||||||
|
|
||||||
/* Convert NUL to NL, the internal representation. */
|
/* Convert NUL to NL, the internal representation. */
|
||||||
for (p = buf; p < nl && p < buf + node->rq_buflen; ++p)
|
for (p = buf; p < nl && p < buf + node->rq_buflen; ++p)
|
||||||
if (*p == NUL)
|
if (*p == NUL)
|
||||||
|
@@ -1484,6 +1484,27 @@ func Test_raw_passes_nul()
|
|||||||
bwipe!
|
bwipe!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func MyLineCountCb(ch, msg)
|
||||||
|
let g:linecount += 1
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_read_nonl_line()
|
||||||
|
if !has('job')
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
|
||||||
|
let g:linecount = 0
|
||||||
|
if has('win32')
|
||||||
|
" workaround: 'shellescape' does improper escaping double quotes
|
||||||
|
let arg = 'import sys;sys.stdout.write(\"1\n2\n3\")'
|
||||||
|
else
|
||||||
|
let arg = 'import sys;sys.stdout.write("1\n2\n3")'
|
||||||
|
endif
|
||||||
|
call job_start([s:python, '-c', arg], {'callback': 'MyLineCountCb'})
|
||||||
|
call WaitFor('3 <= g:linecount')
|
||||||
|
call assert_equal(3, g:linecount)
|
||||||
|
endfunc
|
||||||
|
|
||||||
function Ch_test_close_lambda(port)
|
function Ch_test_close_lambda(port)
|
||||||
let handle = ch_open('localhost:' . a:port, s:chopt)
|
let handle = ch_open('localhost:' . a:port, s:chopt)
|
||||||
if ch_status(handle) == "fail"
|
if ch_status(handle) == "fail"
|
||||||
|
@@ -764,6 +764,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
22,
|
||||||
/**/
|
/**/
|
||||||
21,
|
21,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user