1. Item对象@MySQL Internal
(建议阅读:The Item Class@MySQL Internals Manual,忽略本小结)
MySQL Internals Manual较为详细的介绍了Item对象。Item对象经常被称作"thingamabob"( A thingamabob is a noun used to describe items that either you can't remember the name of or that don't actually exist.)。Item是一个类,每一个Item实例都:(1)代表一个SQL语句里的对象;(2)有取值;(3)有数据类型指针。
下面列出的的SQL相关的对象都是一个Item对象,或者继承至Item:(1)一段字符; (2)数据表的某列; (3)一个局部或全局变量; (4)一个存储过程的变量; (5) 一个用户参数; (6)一个函数/存储过程(这包括运算符+、||、=、like等) 。例如下面的SQL语句:
SELECT UPPER(column1) FROM t WHERE column2 = @x;
MySQL需要一系列的Item来描述上面的SQL:一个描述column1对象,描述UPPER函数的对象,还有描述WHERE语句的几个相关的Item对象。Item对象可以理解做一个特殊的数据对象。MySQL的Item对象定义在./sql/item.h中,其子类都定义在./sql/item*.h中,例如item_cmpfunc.h, item_func.h。在MySQL Server层代码中有大量操作和使用Item对象的代码,建议阅读的时候,慢慢理解。
2. WHERE对应的Item对象
本节将介绍MySQL中如何使用Item对象描述一个WHERE条件。下面从简单到复杂,逐个介绍:
2.1 WHERE id >= 1 and id < 3
2.2 WHERE id = 1 or id >10
2.3 WHERE id >= 0 and id < 2 or id = 20
验证:
(gdb) p ((Item_cond *)conds)->functype()
$5 = Item_func::COND_OR_FUNC
打印WHERE(也就是Item_cond_or) List中的第一个元素:
(gdb) p ((Item_cond *)(((Item_cond *)conds)->list->first->info))->functype()
$17 = Item_func::COND_AND_FUNC
第二个元素
(gdb) p ((Item_cond *)(((Item_cond *)conds)->list->first->next->info))->functype()
$18 = Item_func::EQ_FUNC
2.4 WHERE (id = 10 or ... ) and id >= 15
WHERE (id = 10 or id < 3 ) and id >= 15
(gdb) p ((Item_cond_or *)((Item_cond_and *)conds)->list->first->info)->list->first
$39 = (list_node *) 0x7facfc005698
(gdb) p ((Item_cond_or *)((Item_cond_and *)conds)->list->first->info)->list->first->info
$40 = (void *) 0x7facfc005150
(gdb) p (Item *)$40
$41 = (Item *) 0x7facfc005150
(gdb) p ((Item *)$40)->type()
$42 = Item::FUNC_ITEM
(gdb) p ((Item_func *)$40)->functype()
$43 = Item_func::EQ_FUNC
(gdb) p ((Item_func_eq *)$40)->arg_count
$44 = 2
(gdb) p ((Item_func_eq *)$40)->args[0]
$45 = (Item *) 0x7facfc004fe0
2.5 WHERE id >= 15 or (id > 1 and id < 10)
(gdb) p ((Item *)conds)->type()
$47 = Item::COND_ITEM
(gdb) p ((Item_cond *)conds)->functype()
$48 = Item_func::COND_OR_FUNC
(gdb) p ((Item_cond_or *)conds)->list->first->next->info
$56 = (void *) 0x7facfc0058b8
(gdb) p ((Item *)$56)->type()
$57 = Item::COND_ITEM
(gdb) p ((Item_cond *)$56)->functype()
$58 = Item_func::COND_AND_FUNC
2.6 WHERE id >= 15 or ( ... and ( ... or ... ))
WHERE id >= 15 or ( id > 1 and ( id < 4 or id = 0 ))
3. Item对象的继承关系图
3.1 Item_bool_func的继承关系图
3.2 完整Item对象继承关系图
完整的Item继承关系图非常复杂,下面是缩略图:(完整图,1.8MB,谨慎打开)
这是一幅庞大关系图,使用doxygen+graphviz绘制(如何使用doxygen;如何配置doxygen生成MySQL文档)。