box: implement field constraints
Introduce field constraints - limitaions for particular fields. Each constraint must refer to a function in _func space. For the first step we expect lua functions with body there. Field constraint checks are very close to field type checks, so it's natural to implement them in tuple formats. On the other hand tuple formats belong to tuple library, that does not include functions (func.h/c etc), so constraints are split into two parts: - a part in tuple library that implements arbitrary constraints with pointers to functions that actually check constraints. - a part in box library which uses the part above, sets particular check functions and handles alter etc. There are two not-so-obvious problems that are solved here: - Functions in _func space must be preserved while used by such constraints. Func pinning is used for this purpose. - During initial recovery constraits are created before _func space recovery, so we have to pospone constraint initialization. One can set up constraint for any field in tuple format with one or several functions that must be present in _func space: space:format{name='a', constraint='func1'} space:format{name='a', constraint={name1='func1'}} space:format{name='a', constraint={name1='func1', name2='func2'}} So constraint(s) can be set by one function name or by lua table with function name values. Each consraints has a name that can be specified directly (with string key in table) or imlicitly set to the name of function. The check function receives two arguments: the checking value and the name of the constraint. Also the name of the failed constraint is present in raised exception. The only way to pass the constraint is to return true from its function. All other values and exception are treated as failure (exeptions are also logged). NO_DOC=see later commits NO_CHANGELOG=see later commits
Showing
- src/box/CMakeLists.txt 3 additions, 0 deletionssrc/box/CMakeLists.txt
- src/box/errcode.h 2 additions, 0 deletionssrc/box/errcode.h
- src/box/field_def.c 35 additions, 1 deletionsrc/box/field_def.c
- src/box/field_def.h 4 additions, 0 deletionssrc/box/field_def.h
- src/box/lua/schema.lua 64 additions, 0 deletionssrc/box/lua/schema.lua
- src/box/memtx_engine.cc 8 additions, 0 deletionssrc/box/memtx_engine.cc
- src/box/space.c 58 additions, 2 deletionssrc/box/space.c
- src/box/space.h 16 additions, 0 deletionssrc/box/space.h
- src/box/space_def.c 15 additions, 0 deletionssrc/box/space_def.c
- src/box/space_def.h 1 addition, 1 deletionsrc/box/space_def.h
- src/box/tuple_constraint.c 50 additions, 0 deletionssrc/box/tuple_constraint.c
- src/box/tuple_constraint.h 97 additions, 0 deletionssrc/box/tuple_constraint.h
- src/box/tuple_constraint_def.c 172 additions, 0 deletionssrc/box/tuple_constraint_def.c
- src/box/tuple_constraint_def.h 101 additions, 0 deletionssrc/box/tuple_constraint_def.h
- src/box/tuple_constraint_func.c 149 additions, 0 deletionssrc/box/tuple_constraint_func.c
- src/box/tuple_constraint_func.h 25 additions, 0 deletionssrc/box/tuple_constraint_func.h
- src/box/tuple_format.c 89 additions, 3 deletionssrc/box/tuple_format.c
- src/box/tuple_format.h 18 additions, 1 deletionsrc/box/tuple_format.h
- test/box/error.result 2 additions, 0 deletionstest/box/error.result
- test/engine-luatest/gh_6436_field_constraint_test.lua 666 additions, 0 deletionstest/engine-luatest/gh_6436_field_constraint_test.lua
Loading
Please register or sign in to comment