2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * holds the database index class
10 * @since phpMyAdmin 3.0.0
17 * Class-wide storage container for indexes (caching, singleton)
21 protected static $_registry = array();
24 * @var string The name of the schema
26 protected $_schema = '';
29 * @var string The name of the table
31 protected $_table = '';
34 * @var string The name of the index
36 protected $_name = '';
43 protected $_columns = array();
46 * The index method used (BTREE, FULLTEXT, HASH, RTREE).
50 protected $_type = '';
53 * The index choice (PRIMARY, UNIQUE, INDEX, FULLTEXT)
57 protected $_choice = '';
64 protected $_remarks = '';
67 * Any comment provided for the index with a COMMENT attribute when the
72 protected $_comment = '';
75 * @var integer 0 if the index cannot contain duplicates, 1 if it can.
77 protected $_non_unique = 0;
80 * Indicates how the key is packed. NULL if it is not.
84 protected $_packed = null;
90 * @param array $params
92 public function __construct($params = array())
97 static public function singleton($schema, $table, $index_name = '')
99 PMA_Index
::_loadIndexes($table, $schema);
100 if (! isset(PMA_Index
::$_registry[$schema][$table][$index_name])) {
101 $index = new PMA_Index
;
102 if (strlen($index_name)) {
103 $index->setName($index_name);
104 PMA_Index
::$_registry[$schema][$table][$index->getName()] = $index;
108 return PMA_Index
::$_registry[$schema][$table][$index_name];
113 * returns an array with all indexes from the given table
115 * @uses PMA_Index::_loadIndexes()
116 * @uses PMA_Index::$_registry
117 * @param string $table
118 * @param string $schema
121 static public function getFromTable($table, $schema)
123 PMA_Index
::_loadIndexes($table, $schema);
125 if (isset(PMA_Index
::$_registry[$schema][$table])) {
126 return PMA_Index
::$_registry[$schema][$table];
133 * return primary if set, false otherwise
135 * @uses PMA_Index::_loadIndexes()
136 * @uses PMA_Index::$_registry
137 * @param string $table
138 * @param string $schema
139 * @return mixed primary index or false if no one exists
141 static public function getPrimary($table, $schema)
143 PMA_Index
::_loadIndexes($table, $schema);
145 if (isset(PMA_Index
::$_registry[$schema][$table]['PRIMARY'])) {
146 return PMA_Index
::$_registry[$schema][$table]['PRIMARY'];
153 * Load index data for table
155 * @uses PMA_Index::$_registry
156 * @uses PMA_DBI_fetch_result()
157 * @uses PMA_backquote()
159 * @uses PMA_Index->addColumn()
160 * @param string $table
161 * @param string $schema
164 static protected function _loadIndexes($table, $schema)
166 if (isset(PMA_Index
::$_registry[$schema][$table])) {
170 $_raw_indexes = PMA_DBI_fetch_result('SHOW INDEX FROM ' . PMA_backquote($schema) . '.' . PMA_backquote($table));
171 foreach ($_raw_indexes as $_each_index) {
172 $_each_index['Schema'] = $schema;
173 if (! isset(PMA_Index
::$_registry[$schema][$table][$_each_index['Key_name']])) {
174 $key = new PMA_Index($_each_index);
175 PMA_Index
::$_registry[$schema][$table][$_each_index['Key_name']] = $key;
177 $key = PMA_Index
::$_registry[$schema][$table][$_each_index['Key_name']];
180 $key->addColumn($_each_index);
187 * Add column to index
189 * @uses $this->_columns
190 * @uses PMA_Index_Column
191 * @param array $params column params
193 public function addColumn($params)
195 if (strlen($params['Column_name'])) {
196 $this->_columns
[$params['Column_name']] = new PMA_Index_Column($params);
200 public function addColumns($columns)
204 if (isset($columns['names'])) {
207 // $columns[sub_parts][]
208 foreach ($columns['names'] as $key => $name) {
210 'Column_name' => $name,
211 'Sub_part' => $columns['sub_parts'][$key],
215 // coming from SHOW INDEXES
217 // $columns[][sub_part]
219 $_columns = $columns;
222 foreach ($_columns as $column) {
223 $this->addColumn($column);
228 * Returns true if $column indexed in this index
230 * @uses $this->_columns
231 * @param string $column
234 public function hasColumn($column)
236 return isset($this->_columns
[$column]);
239 public function set($params)
241 if (isset($params['columns'])) {
242 $this->addColumns($params['columns']);
244 if (isset($params['Schema'])) {
245 $this->_schema
= $params['Schema'];
247 if (isset($params['Table'])) {
248 $this->_table
= $params['Table'];
250 if (isset($params['Key_name'])) {
251 $this->_name
= $params['Key_name'];
253 if (isset($params['Index_type'])) {
254 $this->_type
= $params['Index_type'];
256 if (isset($params['Comment'])) {
257 $this->_remarks
= $params['Comment'];
259 if (isset($params['Index_comment'])) {
260 $this->_comment
= $params['Index_comment'];
262 if (isset($params['Non_unique'])) {
263 $this->_non_unique
= $params['Non_unique'];
265 if (isset($params['Packed'])) {
266 $this->_packed
= $params['Packed'];
268 if ('PRIMARY' == $this->_name
) {
269 $this->_choice
= 'PRIMARY';
270 } elseif ('FULLTEXT' == $this->_type
) {
271 $this->_choice
= 'FULLTEXT';
272 } elseif ('0' == $this->_non_unique
) {
273 $this->_choice
= 'UNIQUE';
275 $this->_choice
= 'INDEX';
279 public function getColumnCount()
281 return count($this->_columns
);
284 public function getComment()
286 return $this->_comment
;
289 public function getRemarks()
291 return $this->_remarks
;
294 public function getComments()
296 $comments = $this->getRemarks();
297 if (strlen($comments)) {
300 $comments .= $this->getComment();
305 public function getType()
310 public function getChoice()
312 return $this->_choice
;
316 * Return a list of all index choices
318 * @return array index choices
320 static public function getIndexChoices()
330 public function generateIndexSelector()
334 foreach (PMA_Index
::getIndexChoices() as $each_index_choice) {
335 if ($each_index_choice === 'PRIMARY'
336 && $this->_choice
!== 'PRIMARY'
337 && PMA_Index
::getPrimary($this->_table
, $this->_schema
)) {
338 // skip PRIMARY if there is already one in the table
341 $html_options .= '<option value="' . $each_index_choice . '"'
342 . (($this->_choice
== $each_index_choice) ?
' selected="selected"' : '')
343 . '>'. $each_index_choice . '</option>' . "\n";
346 return $html_options;
349 public function getPacked()
351 return $this->_packed
;
354 public function isPacked($as_text = false)
368 if (null === $this->_packed
) {
372 return $this->_packed
;
375 public function getNonUnique()
377 return $this->_non_unique
;
380 public function isUnique($as_text = false)
394 return $r[$this->_non_unique
];
397 public function getName()
402 public function setName($name)
404 $this->_name
= (string) $name;
407 public function getColumns()
409 return $this->_columns
;
415 * @param string $table The tablename
416 * @param array $indexes_info Referenced info array
417 * @param array $indexes_data Referenced data array
418 * @param boolean $print_mode
420 * @return array Index collection array
422 static public function getView($table, $schema, $print_mode = false)
424 $indexes = PMA_Index
::getFromTable($table, $schema);
426 if (count($indexes) < 1) {
427 return PMA_Message
::warning(__('No index defined!'))->getDisplay();
432 $r .= '<h2>' . __('Indexes') . ': ';
433 $r .= PMA_showMySQLDocu('optimization', 'optimizing-database-structure');
439 $r .= '<th colspan="2">' . __('Action') . '</th>';
441 $r .= '<th>' . __('Keyname') . '</th>';
442 $r .= '<th>' . __('Type') . '</th>';
443 $r .= '<th>' . __('Unique') . '</th>';
444 $r .= '<th>' . __('Packed') . '</th>';
445 $r .= '<th>' . __('Column') . '</th>';
446 $r .= '<th>' . __('Cardinality') . '</th>';
447 $r .= '<th>' . __('Collation') . '</th>';
448 $r .= '<th>' . __('Null') . '</th>';
449 $r .= '<th>' . __('Comment') . '</th>';
455 foreach ($indexes as $index) {
456 $row_span = ' rowspan="' . $index->getColumnCount() . '" ';
458 $r .= '<tr class="' . ($odd_row ?
'odd' : 'even') . '">';
461 $this_params = $GLOBALS['url_params'];
462 $this_params['index'] = $index->getName();
463 $r .= '<td ' . $row_span . '>'
464 . ' <a href="tbl_indexes.php' . PMA_generate_common_url($this_params)
465 . '">' . PMA_getIcon('b_edit.png', __('Edit')) . '</a>'
468 $this_params = $GLOBALS['url_params'];
469 if ($index->getName() == 'PRIMARY') {
470 $this_params['sql_query'] = 'ALTER TABLE ' . PMA_backquote($table) . ' DROP PRIMARY KEY';
471 $this_params['message_to_show'] = __('The primary key has been dropped');
472 $js_msg = PMA_jsFormat('ALTER TABLE ' . $table . ' DROP PRIMARY KEY');
474 $this_params['sql_query'] = 'ALTER TABLE ' . PMA_backquote($table) . ' DROP INDEX ' . PMA_backquote($index->getName());
475 $this_params['message_to_show'] = sprintf(__('Index %s has been dropped'), $index->getName());
476 $js_msg = PMA_jsFormat('ALTER TABLE ' . $table . ' DROP INDEX ' . $index->getName());
479 $r .= '<td ' . $row_span . '>';
480 $r .= '<input type="hidden" class="drop_primary_key_index_msg" value="' . $js_msg . '" />';
482 if ($GLOBALS['cfg']['AjaxEnable']) {
483 $r .= 'class="drop_primary_key_index_anchor" ';
485 $r .= ' href="sql.php' . PMA_generate_common_url($this_params)
487 . PMA_getIcon('b_drop.png', __('Drop')) . '</a>'
491 $r .= '<th ' . $row_span . '>' . htmlspecialchars($index->getName()) . '</th>';
492 $r .= '<td ' . $row_span . '>' . htmlspecialchars($index->getType()) . '</td>';
493 $r .= '<td ' . $row_span . '>' . $index->isUnique(true) . '</td>';
494 $r .= '<td ' . $row_span . '>' . $index->isPacked(true) . '</td>';
496 foreach ($index->getColumns() as $column) {
497 if ($column->getSeqInIndex() > 1) {
498 $r .= '<tr class="' . ($odd_row ?
'odd' : 'even') . '">';
500 $r .= '<td>' . htmlspecialchars($column->getName());
501 if ($column->getSubPart()) {
502 $r .= ' (' . $column->getSubPart() . ')';
505 $r .= '<td>' . htmlspecialchars($column->getCardinality()) . '</td>';
506 $r .= '<td>' . htmlspecialchars($column->getCollation()) . '</td>';
507 $r .= '<td>' . htmlspecialchars($column->getNull()) . '</td>';
509 if ($column->getSeqInIndex() == 1) {
510 $r .= '<td ' . $row_span . '>'
511 . htmlspecialchars($index->getComments()) . '</td>';
514 } // end foreach $index['Sequences']
516 $odd_row = ! $odd_row;
522 $r .= PMA_Index
::findDuplicates($table, $schema);
528 public function getCompareData()
531 // 'Non_unique' => $this->_non_unique,
532 'Packed' => $this->_packed
,
533 'Index_type' => $this->_type
,
536 foreach ($this->_columns
as $column) {
537 $data['columns'][] = $column->getCompareData();
544 * Function to check over array of indexes and look for common problems
553 * @param string name of table
554 * @return string Output HTML
556 static public function findDuplicates($table, $schema)
558 $indexes = PMA_Index
::getFromTable($table, $schema);
562 // count($indexes) < 2:
563 // there is no need to check if there less than two indexes
564 if (count($indexes) < 2) {
568 // remove last index from stack and ...
569 while ($while_index = array_pop($indexes)) {
570 // ... compare with every remaining index in stack
571 foreach ($indexes as $each_index) {
572 if ($each_index->getCompareData() !== $while_index->getCompareData()) {
576 // did not find any difference
577 // so it makes no sense to have this two equal indexes
579 $message = PMA_Message
::warning(__('The indexes %1$s and %2$s seem to be equal and one of them could possibly be removed.'));
580 $message->addParam($each_index->getName());
581 $message->addParam($while_index->getName());
582 $output .= $message->getDisplay();
584 // there is no need to check any further indexes if we have already
585 // found that this one has a duplicate
594 * @package phpMyAdmin
596 class PMA_Index_Column
599 * @var string The column name
601 protected $_name = '';
604 * @var integer The column sequence number in the index, starting with 1.
606 protected $_seq_in_index = 1;
609 * @var string How the column is sorted in the index. “A” (Ascending) or NULL (Not sorted)
611 protected $_collation = null;
614 * The number of indexed characters if the column is only partly indexed,
615 * NULL if the entire column is indexed.
619 protected $_sub_part = null;
622 * Contains YES if the column may contain NULL.
623 * If not, the column contains NO.
627 protected $_null = '';
630 * An estimate of the number of unique values in the index. This is updated
631 * by running ANALYZE TABLE or myisamchk -a. Cardinality is counted based on
632 * statistics stored as integers, so the value is not necessarily exact even
633 * for small tables. The higher the cardinality, the greater the chance that
634 * MySQL uses the index when doing joins.
638 protected $_cardinality = 0;
640 public function __construct($params = array())
645 public function set($params)
647 if (isset($params['Column_name'])) {
648 $this->_name
= $params['Column_name'];
650 if (isset($params['Seq_in_index'])) {
651 $this->_seq_in_index
= $params['Seq_in_index'];
653 if (isset($params['Collation'])) {
654 $this->_collation
= $params['Collation'];
656 if (isset($params['Cardinality'])) {
657 $this->_cardinality
= $params['Cardinality'];
659 if (isset($params['Sub_part'])) {
660 $this->_sub_part
= $params['Sub_part'];
662 if (isset($params['Null'])) {
663 $this->_null
= $params['Null'];
667 public function getName()
672 public function getCollation()
674 return $this->_collation
;
677 public function getCardinality()
679 return $this->_cardinality
;
682 public function getNull()
687 public function getSeqInIndex()
689 return $this->_seq_in_index
;
692 public function getSubPart()
694 return $this->_sub_part
;
697 public function getCompareData()
700 'Column_name' => $this->_name
,
701 'Seq_in_index' => $this->_seq_in_index
,
702 'Collation' => $this->_collation
,
703 'Sub_part' => $this->_sub_part
,
704 'Null' => $this->_null
,