1
0
forked from aniani/vim

patch 8.2.4225: Vim9: depth argument of :lockvar not parsed in :def function

Problem:    Vim9: depth argument of :lockvar not parsed in :def function.
Solution:   Parse the optional depth argument. (closes #9629)
            Fix that locking doesn't work for a non-materialize list.
This commit is contained in:
Bram Moolenaar
2022-01-26 21:01:15 +00:00
parent 1080c48ec8
commit 70c43d84be
9 changed files with 82 additions and 18 deletions

View File

@@ -2859,10 +2859,10 @@ EXTERN char e_assert_fails_fifth_argument[]
INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string")); INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string"));
EXTERN char e_cannot_use_bang_with_nested_def[] EXTERN char e_cannot_use_bang_with_nested_def[]
INIT(= N_("E1117: Cannot use ! with nested :def")); INIT(= N_("E1117: Cannot use ! with nested :def"));
EXTERN char e_cannot_change_list[] EXTERN char e_cannot_change_locked_list[]
INIT(= N_("E1118: Cannot change list")); INIT(= N_("E1118: Cannot change locked list"));
EXTERN char e_cannot_change_list_item[] EXTERN char e_cannot_change_locked_list_item[]
INIT(= N_("E1119: Cannot change list item")); INIT(= N_("E1119: Cannot change locked list item"));
EXTERN char e_cannot_change_dict[] EXTERN char e_cannot_change_dict[]
INIT(= N_("E1120: Cannot change dict")); INIT(= N_("E1120: Cannot change dict"));
EXTERN char e_cannot_change_dict_item[] EXTERN char e_cannot_change_dict_item[]

View File

@@ -7922,7 +7922,7 @@ range_list_materialize(list_T *list)
{ {
varnumber_T start = list->lv_u.nonmat.lv_start; varnumber_T start = list->lv_u.nonmat.lv_start;
varnumber_T end = list->lv_u.nonmat.lv_end; varnumber_T end = list->lv_u.nonmat.lv_end;
int stride = list->lv_u.nonmat.lv_stride; int stride = list->lv_u.nonmat.lv_stride;
varnumber_T i; varnumber_T i;
list->lv_first = NULL; list->lv_first = NULL;
@@ -7930,8 +7930,13 @@ range_list_materialize(list_T *list)
list->lv_len = 0; list->lv_len = 0;
list->lv_u.mat.lv_idx_item = NULL; list->lv_u.mat.lv_idx_item = NULL;
for (i = start; stride > 0 ? i <= end : i >= end; i += stride) for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
{
if (list_append_number(list, (varnumber_T)i) == FAIL) if (list_append_number(list, (varnumber_T)i) == FAIL)
break; break;
if (list->lv_lock & VAR_ITEMS_LOCKED)
list->lv_u.mat.lv_last->li_tv.v_lock = VAR_LOCKED;
}
list->lv_lock &= ~VAR_ITEMS_LOCKED;
} }
/* /*

View File

@@ -2060,10 +2060,18 @@ item_lock(typval_T *tv, int deep, int lock, int check_refcount)
l->lv_lock |= VAR_LOCKED; l->lv_lock |= VAR_LOCKED;
else else
l->lv_lock &= ~VAR_LOCKED; l->lv_lock &= ~VAR_LOCKED;
if ((deep < 0 || deep > 1) && l->lv_first != &range_list_item) if (deep < 0 || deep > 1)
// recursive: lock/unlock the items the List contains {
FOR_ALL_LIST_ITEMS(l, li) if (l->lv_first == &range_list_item)
item_lock(&li->li_tv, deep - 1, lock, check_refcount); l->lv_lock |= VAR_ITEMS_LOCKED;
else
{
// recursive: lock/unlock the items the List contains
CHECK_LIST_MATERIALIZE(l);
FOR_ALL_LIST_ITEMS(l, li) item_lock(&li->li_tv,
deep - 1, lock, check_refcount);
}
}
} }
break; break;
case VAR_DICT: case VAR_DICT:

View File

@@ -1464,8 +1464,9 @@ typedef struct
// allowed to mask existing functions // allowed to mask existing functions
// Values for "v_lock". // Values for "v_lock".
#define VAR_LOCKED 1 // locked with lock(), can use unlock() #define VAR_LOCKED 1 // locked with lock(), can use unlock()
#define VAR_FIXED 2 // locked forever #define VAR_FIXED 2 // locked forever
#define VAR_ITEMS_LOCKED 4 // items of non-materialized list locked
/* /*
* Structure to hold an item of a list: an internal variable without a name. * Structure to hold an item of a list: an internal variable without a name.
@@ -1497,7 +1498,8 @@ struct listwatch_S
*/ */
struct listvar_S struct listvar_S
{ {
listitem_T *lv_first; // first item, NULL if none listitem_T *lv_first; // first item, NULL if none, &range_list_item
// for a non-materialized list
listwatch_T *lv_watch; // first watcher, NULL if none listwatch_T *lv_watch; // first watcher, NULL if none
union { union {
struct { // used for non-materialized range list: struct { // used for non-materialized range list:

View File

@@ -1396,6 +1396,35 @@ def Test_lockvar()
lockvar whatever lockvar whatever
endif endif
g:lockme = [1, 2, 3]
lockvar 1 g:lockme
g:lockme[1] = 77
assert_equal([1, 77, 3], g:lockme)
lockvar 2 g:lockme
var caught = false
try
g:lockme[1] = 99
catch /E1119:/
caught = true
endtry
assert_true(caught)
assert_equal([1, 77, 3], g:lockme)
unlet g:lockme
# also for non-materialized list
g:therange = range(3)
lockvar 2 g:therange
caught = false
try
g:therange[1] = 99
catch /E1119:/
caught = true
endtry
assert_true(caught)
assert_equal([0, 1, 2], g:therange)
unlet g:therange
var d = {a: 1, b: 2} var d = {a: 1, b: 2}
d.a = 3 d.a = 3
d.b = 4 d.b = 4

View File

@@ -625,7 +625,7 @@ def Test_disassemble_locl_local()
'\d STORE $0\_s*' .. '\d STORE $0\_s*' ..
'lockvar d.a\_s*' .. 'lockvar d.a\_s*' ..
'\d LOAD $0\_s*' .. '\d LOAD $0\_s*' ..
'\d LOCKUNLOCK lockvar d.a\_s*', '\d LOCKUNLOCK lockvar 2 d.a\_s*',
res) res)
enddef enddef

View File

@@ -750,6 +750,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 */
/**/
4225,
/**/ /**/
4224, 4224,
/**/ /**/

View File

@@ -178,7 +178,7 @@ compile_lock_unlock(
lval_T *lvp, lval_T *lvp,
char_u *name_end, char_u *name_end,
exarg_T *eap, exarg_T *eap,
int deep UNUSED, int deep,
void *coookie) void *coookie)
{ {
cctx_T *cctx = coookie; cctx_T *cctx = coookie;
@@ -223,8 +223,9 @@ compile_lock_unlock(
ret = FAIL; ret = FAIL;
else else
{ {
vim_snprintf((char *)buf, len, "%s %s", vim_snprintf((char *)buf, len, "%s %d %s",
eap->cmdidx == CMD_lockvar ? "lockvar" : "unlockvar", eap->cmdidx == CMD_lockvar ? "lockvar" : "unlockvar",
deep,
p); p);
ret = generate_EXEC_copy(cctx, isn, buf); ret = generate_EXEC_copy(cctx, isn, buf);
@@ -241,7 +242,23 @@ compile_lock_unlock(
char_u * char_u *
compile_unletlock(char_u *arg, exarg_T *eap, cctx_T *cctx) compile_unletlock(char_u *arg, exarg_T *eap, cctx_T *cctx)
{ {
ex_unletlock(eap, arg, 0, GLV_NO_AUTOLOAD | GLV_COMPILING, int deep = 0;
char_u *p = arg;
if (eap->cmdidx != CMD_unlet)
{
if (eap->forceit)
deep = -1;
else if (vim_isdigit(*p))
{
deep = getdigits(&p);
p = skipwhite(p);
}
else
deep = 2;
}
ex_unletlock(eap, p, deep, GLV_NO_AUTOLOAD | GLV_COMPILING,
eap->cmdidx == CMD_unlet ? compile_unlet : compile_lock_unlock, eap->cmdidx == CMD_unlet ? compile_unlet : compile_lock_unlock,
cctx); cctx);
return eap->nextcmd == NULL ? (char_u *)"" : eap->nextcmd; return eap->nextcmd == NULL ? (char_u *)"" : eap->nextcmd;

View File

@@ -1754,7 +1754,8 @@ execute_storeindex(isn_T *iptr, ectx_T *ectx)
{ {
listitem_T *li = list_find(list, lidx); listitem_T *li = list_find(list, lidx);
if (error_if_locked(li->li_tv.v_lock, e_cannot_change_list_item)) if (error_if_locked(li->li_tv.v_lock,
e_cannot_change_locked_list_item))
return FAIL; return FAIL;
// overwrite existing list item // overwrite existing list item
clear_tv(&li->li_tv); clear_tv(&li->li_tv);
@@ -1762,7 +1763,7 @@ execute_storeindex(isn_T *iptr, ectx_T *ectx)
} }
else else
{ {
if (error_if_locked(list->lv_lock, e_cannot_change_list)) if (error_if_locked(list->lv_lock, e_cannot_change_locked_list))
return FAIL; return FAIL;
// append to list, only fails when out of memory // append to list, only fails when out of memory
if (list_append_tv(list, tv) == FAIL) if (list_append_tv(list, tv) == FAIL)