sql_olap.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:6k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   OLAP implementation by Sinisa Milivojevic <sinisa@mysql.com>
  15.   Inspired by code submitted by Srilakshmi <lakshmi@gdit.iiit.net>
  16.   The ROLLUP code in this file has to be complitely rewritten as it's
  17.   not good enough to satisfy the goals of MySQL.
  18.   In 4.1 we will replace this with a working, superior implementation
  19.   of ROLLUP.
  20. */
  21. #ifdef DISABLED_UNTIL_REWRITTEN_IN_4_1
  22. #ifdef USE_PRAGMA_IMPLEMENTATION
  23. #pragma implementation // gcc: Class implementation
  24. #endif
  25. #include "mysql_priv.h"
  26. #include "sql_select.h"
  27. /****************************************************************************
  28.   Functions that recursively actually creates new SELECT's
  29.   Returns 0 if OK, 1 if error, -1 if error already printed to client
  30. ****************************************************************************/
  31. static int make_new_olap_select(LEX *lex, SELECT_LEX *select_lex, List<Item> new_fields)
  32. {
  33.   THD *thd=current_thd;
  34.   Item *item, *new_item;
  35.   Item_null *constant= new Item_null("ALL");
  36.   SELECT_LEX *new_select = (SELECT_LEX *) thd->memdup((char*) select_lex, sizeof(*select_lex));
  37.   if (!new_select)
  38.     return 1;
  39.   lex->last_selects->next=new_select;
  40.   new_select->linkage=OLAP_TYPE;
  41.   new_select->olap=NON_EXISTING_ONE;
  42.   new_select->group_list.elements=0;
  43.   new_select->group_list.first=(byte *)0;
  44.   new_select->group_list.next=(byte **)&new_select->group_list.first;
  45.   List<Item> privlist;
  46.   
  47.   List_iterator<Item> list_it(select_lex->item_list);
  48.   List_iterator<Item> new_it(new_fields);
  49.     
  50.   while ((item=list_it++))
  51.   {
  52.     bool not_found= TRUE;
  53.     if (item->type()==Item::FIELD_ITEM)
  54.     {
  55.       Item_field *iif = (Item_field *)item;
  56.       new_it.rewind();
  57.       while ((new_item=new_it++))
  58.       {
  59. if (new_item->type()==Item::FIELD_ITEM && 
  60.     !strcmp(((Item_field*)new_item)->table_name,iif->table_name) &&
  61.     !strcmp(((Item_field*)new_item)->field_name,iif->field_name))
  62. {
  63.   not_found= 0;
  64.   ((Item_field*)new_item)->db_name=iif->db_name;
  65.   Item_field *new_one=new Item_field(iif->db_name, iif->table_name, iif->field_name);
  66.   privlist.push_back(new_one);
  67.   if (add_to_list(new_select->group_list,new_one,1))
  68.     return 1;
  69.   break;
  70. }
  71.       }
  72.     }
  73.     if (not_found)
  74.     {
  75.       if (item->type() == Item::FIELD_ITEM)
  76. privlist.push_back(constant);
  77.       else
  78. privlist.push_back((Item*)thd->memdup((char *)item,item->size_of()));
  79.     }
  80.   }
  81.   new_select->item_list=privlist;
  82.   lex->last_selects = new_select;
  83.   return 0;
  84. }
  85. /****************************************************************************
  86.   Functions that recursively creates combinations of queries for OLAP
  87.   Returns 0 if OK, 1 if error, -1 if error already printed to client
  88. ****************************************************************************/
  89. static int  olap_combos(List<Item> old_fields, List<Item> new_fields, Item *item, LEX *lex, 
  90.       SELECT_LEX *select_lex, int position, int selection, int num_fields, 
  91.       int num_new_fields)
  92. {
  93.   int sl_return = 0;
  94.   if (position == num_new_fields)
  95.   {
  96.     if (item)
  97.       new_fields.push_front(item);
  98.     sl_return = make_new_olap_select(lex, select_lex, new_fields);
  99.   }
  100.   else
  101.   {
  102.     if (item)
  103.       new_fields.push_front(item);
  104.     while ((num_fields - num_new_fields >= selection - position) && !sl_return)
  105.     {
  106.       item = old_fields.pop();
  107.       sl_return = olap_combos(old_fields, new_fields, item, lex, select_lex, position+1, ++selection, num_fields, num_new_fields);
  108.     }
  109.   }
  110.   return sl_return;
  111. }
  112. /****************************************************************************
  113.   Top level function for converting OLAP clauses to multiple selects
  114.   This is also a place where clauses treatment depends on OLAP type 
  115.   Returns 0 if OK, 1 if error, -1 if error already printed to client
  116. ****************************************************************************/
  117. int handle_olaps(LEX *lex, SELECT_LEX *select_lex)
  118. {
  119.   List<Item> item_list_copy, new_item_list;
  120.   item_list_copy.empty();
  121.   new_item_list.empty();
  122.   int count=select_lex->group_list.elements;
  123.   int sl_return=0;
  124.   lex->last_selects=select_lex;
  125.   for (ORDER *order=(ORDER *)select_lex->group_list.first ; order ; order=order->next)
  126.     item_list_copy.push_back(*(order->item));
  127.   List<Item> all_fields(select_lex->item_list);
  128.   if (setup_tables((TABLE_LIST *)select_lex->table_list.first) ||
  129.       setup_fields(lex->thd, 0, (TABLE_LIST *)select_lex->table_list.first,
  130.    select_lex->item_list, 1, &all_fields,1) ||
  131.       setup_fields(lex->thd, 0, (TABLE_LIST *)select_lex->table_list.first,
  132.    item_list_copy, 1, &all_fields, 1))
  133.     return -1;
  134.   if (select_lex->olap == CUBE_TYPE)
  135.   {
  136.     for ( int i=count-1; i>=0 && !sl_return; i--)
  137.       sl_return=olap_combos(item_list_copy, new_item_list, (Item *)0, lex, select_lex, 0, 0, count, i);
  138.   }
  139.   else if (select_lex->olap == ROLLUP_TYPE)
  140.   {
  141.     for ( int i=count-1; i>=0 && !sl_return; i--)
  142.     {
  143.       Item *item;
  144.       item_list_copy.pop();
  145.       List_iterator<Item> it(item_list_copy);
  146.       new_item_list.empty();
  147.       while ((item = it++))
  148. new_item_list.push_front(item);
  149.       sl_return=make_new_olap_select(lex, select_lex, new_item_list);
  150.     }
  151.   }
  152.   else
  153.     sl_return=1; // impossible
  154.   return sl_return;
  155. }
  156. #endif /* DISABLED_UNTIL_REWRITTEN_IN_4_1 */