mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 7.4.1493
Problem: Wrong callback invoked for zero-id messages. Solution: Don't use the first one-time callback when the sequence number doesn't match.
This commit is contained in:
parent
35ca0e7a1c
commit
5983ad0b03
@ -1480,7 +1480,7 @@ may_invoke_callback(channel_T *channel, int part)
|
|||||||
int seq_nr = -1;
|
int seq_nr = -1;
|
||||||
ch_mode_T ch_mode = channel->ch_part[part].ch_mode;
|
ch_mode_T ch_mode = channel->ch_part[part].ch_mode;
|
||||||
cbq_T *cbhead = &channel->ch_part[part].ch_cb_head;
|
cbq_T *cbhead = &channel->ch_part[part].ch_cb_head;
|
||||||
cbq_T *cbitem = cbhead->cq_next;
|
cbq_T *cbitem;
|
||||||
char_u *callback = NULL;
|
char_u *callback = NULL;
|
||||||
buf_T *buffer = NULL;
|
buf_T *buffer = NULL;
|
||||||
|
|
||||||
@ -1488,7 +1488,10 @@ may_invoke_callback(channel_T *channel, int part)
|
|||||||
/* this channel is handled elsewhere (netbeans) */
|
/* this channel is handled elsewhere (netbeans) */
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
/* use a message-specific callback, part callback or channel callback */
|
/* 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;
|
||||||
if (cbitem != NULL)
|
if (cbitem != NULL)
|
||||||
callback = cbitem->cq_callback;
|
callback = cbitem->cq_callback;
|
||||||
else if (channel->ch_part[part].ch_callback != NULL)
|
else if (channel->ch_part[part].ch_callback != NULL)
|
||||||
@ -1610,16 +1613,13 @@ may_invoke_callback(channel_T *channel, int part)
|
|||||||
int done = FALSE;
|
int done = FALSE;
|
||||||
|
|
||||||
/* invoke the one-time callback with the matching nr */
|
/* invoke the one-time callback with the matching nr */
|
||||||
while (cbitem != NULL)
|
for (cbitem = cbhead->cq_next; cbitem != NULL; cbitem = cbitem->cq_next)
|
||||||
{
|
|
||||||
if (cbitem->cq_seq_nr == seq_nr)
|
if (cbitem->cq_seq_nr == seq_nr)
|
||||||
{
|
{
|
||||||
invoke_one_time_callback(channel, cbhead, cbitem, argv);
|
invoke_one_time_callback(channel, cbhead, cbitem, argv);
|
||||||
done = TRUE;
|
done = TRUE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
cbitem = cbitem->cq_next;
|
|
||||||
}
|
|
||||||
if (!done)
|
if (!done)
|
||||||
ch_logn(channel, "Dropping message %d without callback", seq_nr);
|
ch_logn(channel, "Dropping message %d without callback", seq_nr);
|
||||||
}
|
}
|
||||||
|
@ -143,6 +143,11 @@ class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler):
|
|||||||
print("sending: {}".format(cmd))
|
print("sending: {}".format(cmd))
|
||||||
self.request.sendall(cmd.encode('utf-8'))
|
self.request.sendall(cmd.encode('utf-8'))
|
||||||
response = ""
|
response = ""
|
||||||
|
elif decoded[1] == 'send zero':
|
||||||
|
cmd = '[0,"zero index"]'
|
||||||
|
print("sending: {}".format(cmd))
|
||||||
|
self.request.sendall(cmd.encode('utf-8'))
|
||||||
|
response = "sent zero"
|
||||||
elif decoded[1] == 'close me':
|
elif decoded[1] == 'close me':
|
||||||
print("closing")
|
print("closing")
|
||||||
self.request.close()
|
self.request.close()
|
||||||
|
@ -294,6 +294,72 @@ endfunc
|
|||||||
|
|
||||||
"""""""""
|
"""""""""
|
||||||
|
|
||||||
|
let s:ch_reply = ''
|
||||||
|
func s:ChHandler(chan, msg)
|
||||||
|
unlet s:ch_reply
|
||||||
|
let s:ch_reply = a:msg
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
let s:zero_reply = ''
|
||||||
|
func s:OneHandler(chan, msg)
|
||||||
|
unlet s:zero_reply
|
||||||
|
let s:zero_reply = a:msg
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func s:channel_zero(port)
|
||||||
|
let handle = ch_open('localhost:' . a:port, s:chopt)
|
||||||
|
if ch_status(handle) == "fail"
|
||||||
|
call assert_false(1, "Can't open channel")
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Check that eval works.
|
||||||
|
call assert_equal('got it', ch_evalexpr(handle, 'hello!'))
|
||||||
|
|
||||||
|
" Check that eval works if a zero id message is sent back.
|
||||||
|
let s:ch_reply = ''
|
||||||
|
call assert_equal('sent zero', ch_evalexpr(handle, 'send zero'))
|
||||||
|
sleep 10m
|
||||||
|
if s:has_handler
|
||||||
|
call assert_equal('zero index', s:ch_reply)
|
||||||
|
else
|
||||||
|
call assert_equal('', s:ch_reply)
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Check that handler works if a zero id message is sent back.
|
||||||
|
let s:ch_reply = ''
|
||||||
|
let s:zero_reply = ''
|
||||||
|
call ch_sendexpr(handle, 'send zero', {'callback': 's:OneHandler'})
|
||||||
|
" Somehow the second message takes a bit of time.
|
||||||
|
for i in range(50)
|
||||||
|
if s:zero_reply == 'sent zero'
|
||||||
|
break
|
||||||
|
endif
|
||||||
|
sleep 10m
|
||||||
|
endfor
|
||||||
|
if s:has_handler
|
||||||
|
call assert_equal('zero index', s:ch_reply)
|
||||||
|
else
|
||||||
|
call assert_equal('', s:ch_reply)
|
||||||
|
endif
|
||||||
|
call assert_equal('sent zero', s:zero_reply)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_zero_reply()
|
||||||
|
call ch_log('Test_zero_reply()')
|
||||||
|
" Run with channel handler
|
||||||
|
let s:has_handler = 1
|
||||||
|
let s:chopt.callback = 's:ChHandler'
|
||||||
|
call s:run_server('s:channel_zero')
|
||||||
|
unlet s:chopt.callback
|
||||||
|
|
||||||
|
" Run without channel handler
|
||||||
|
let s:has_handler = 0
|
||||||
|
call s:run_server('s:channel_zero')
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
"""""""""
|
||||||
|
|
||||||
let s:reply1 = ""
|
let s:reply1 = ""
|
||||||
func s:HandleRaw1(chan, msg)
|
func s:HandleRaw1(chan, msg)
|
||||||
unlet s:reply1
|
unlet s:reply1
|
||||||
|
@ -743,6 +743,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 */
|
||||||
|
/**/
|
||||||
|
1493,
|
||||||
/**/
|
/**/
|
||||||
1492,
|
1492,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user