1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
<?php
/* $Id: storage_engines.lib.php,v 2.4 2005/03/05 13:30:00 rabus Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:
/**
* Library for extracting information about the available storage engines
*/
$GLOBALS['mysql_storage_engines'] = array();
if (PMA_MYSQL_INT_VERSION >= 40102) {
/**
* For MySQL >= 4.1.2, the job is easy...
*/
$res = PMA_DBI_query('SHOW STORAGE ENGINES');
while ($row = PMA_DBI_fetch_assoc($res)) {
$GLOBALS['mysql_storage_engines'][strtolower($row['Engine'])] = $row;
}
PMA_DBI_free_result($res);
unset($res, $row);
} else {
/**
* Emulating SHOW STORAGE ENGINES...
*/
$GLOBALS['mysql_storage_engines'] = array(
'myisam' => array(
'Engine' => 'MyISAM',
'Support' => 'DEFAULT'
),
'merge' => array(
'Engine' => 'MERGE',
'Support' => 'YES'
),
'heap' => array(
'Engine' => 'HEAP',
'Support' => 'YES'
),
'memory' => array(
'Engine' => 'MEMORY',
'Support' => 'YES'
)
);
$known_engines = array(
'archive' => 'ARCHIVE',
'bdb' => 'BDB',
'csv' => 'CSV',
'innodb' => 'InnoDB',
'isam' => 'ISAM',
'gemini' => 'Gemini'
);
$res = PMA_DBI_query('SHOW VARIABLES LIKE \'have\\_%\';');
while ($row = PMA_DBI_fetch_row($res)) {
$current = substr($row[0], 5);
if (!empty($known_engines[$current])) {
$GLOBALS['mysql_storage_engines'][$current] = array(
'Engine' => $known_engines[$current],
'Support' => $row[1]
);
}
}
PMA_DBI_free_result($res);
unset($known_engines, $res, $row);
}
/**
* Function for generating the storage engine selection
*
* @param string The name of the select form element
* @param string The ID of the form field
* @param boolean Should unavailable storage engines be offered?
* @param string The selected engine
* @param int The indentation level
*
* @global array The storage engines
*
* @return string
*
* @author rabus
*/
function PMA_generateEnginesDropdown($name = 'engine', $id = NULL, $offerUnavailableEngines = FALSE, $selected = NULL, $indent = 0) {
global $mysql_storage_engines;
$selected = strtolower($selected);
$spaces = '';
for ($i = 0; $i < $indent; $i++) $spaces .= ' ';
$output = $spaces . '<select name="' . $name . '"' . (empty($id) ? '' : ' id="' . $id . '"') . '>' . "\n";
foreach ($mysql_storage_engines as $key => $details) {
if (!$offerUnavailableEngines && ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED')) {
continue;
}
$output .= $spaces . ' <option value="' . htmlspecialchars($key). '"'
. (empty($details['Comment']) ? '' : ' title="' . htmlspecialchars($details['Comment']) . '"')
. ($key == $selected || (empty($selected) && $details['Support'] == 'DEFAULT') ? ' selected="selected"' : '') . '>' . "\n"
. $spaces . ' ' . htmlspecialchars($details['Engine']) . "\n"
. $spaces . ' </option>' . "\n";
}
$output .= $spaces . '</select>' . "\n";
return $output;
}
/**
* Abstract Storage Engine Class
*/
define('PMA_ENGINE_SUPPORT_NO', 0);
define('PMA_ENGINE_SUPPORT_DISABLED', 1);
define('PMA_ENGINE_SUPPORT_YES', 2);
define('PMA_ENGINE_SUPPORT_DEFAULT', 3);
class PMA_StorageEngine {
var $engine = 'dummy';
var $title = 'PMA Dummy Engine Class';
var $comment = 'If you read this text inside phpMyAdmin, something went wrong...';
var $support = PMA_ENGINE_SUPPORT_NO;
/**
* public static final PMA_StorageEngine getEngine ()
*
* Loads the corresponding engine plugin, if available.
*
* @param String The engine ID
*
* @return Object The engine plugin
*/
function getEngine ($engine) {
$engine = str_replace('/', '', str_replace('.', '', $engine));
if (file_exists('./libraries/engines/' . $engine . '.lib.php') && include_once('./libraries/engines/' . $engine . '.lib.php')) {
$class_name = 'PMA_StorageEngine_' . $engine;
$engine_object = new $class_name($engine);
} else {
$engine_object = new PMA_StorageEngine($engine);
}
return $engine_object;
}
/**
* Constructor
*
* @param String The engine ID
*/
function PMA_StorageEngine ($engine) {
global $mysql_storage_engines;
if (!empty($mysql_storage_engines[$engine])) {
$this->engine = $engine;
$this->title = $mysql_storage_engines[$engine]['Engine'];
$this->comment = $mysql_storage_engines[$engine]['Comment'];
switch ($mysql_storage_engines[$engine]['Support']) {
case 'DEFAULT':
$this->support = PMA_ENGINE_SUPPORT_DEFAULT;
break;
case 'YES':
$this->support = PMA_ENGINE_SUPPORT_YES;
break;
case 'DISABLED':
$this->support = PMA_ENGINE_SUPPORT_DISABLED;
break;
case 'NO':
default:
$this->support = PMA_ENGINE_SUPPORT_NO;
}
}
}
/**
* public String getTitle ()
*
* Reveals the engine's title
*
* @return String The title
*/
function getTitle () {
return $this->title;
}
/**
* public String getComment ()
*
* Fetches the server's comment about this engine
*
* @return String The comment
*/
function getComment () {
return $this->comment;
}
/**
* public String getSupportInformationMessage ()
*
* @return String The localized message.
*/
function getSupportInformationMessage () {
switch ($this->support) {
case PMA_ENGINE_SUPPORT_DEFAULT:
$message = $GLOBALS['strDefaultEngine'];
break;
case PMA_ENGINE_SUPPORT_YES:
$message = $GLOBALS['strEngineAvailable'];
break;
case PMA_ENGINE_SUPPORT_DISABLED:
$message = $GLOBALS['strEngineUnsupported'];
break;
case PMA_ENGINE_SUPPORT_NO:
default:
$message = $GLOBALS['strEngineUnavailable'];
}
return sprintf($message, htmlspecialchars($this->title));
}
/**
* public String[][] getVariables ()
*
* Generates a list of MySQL variables that provide information about this
* engine. This function should be overridden when extending this class
* for a particular engine.
*
* @return Array The list of variables.
*/
function getVariables () {
return array();
}
/**
* public String getVariablesLikePattern ()
*/
function getVariablesLikePattern () {
return FALSE;
}
/**
* public String[] getInfoPages ()
*
* Returns a list of available information pages with labels
*
* @return Array The list
*/
function getInfoPages () {
return array();
}
/**
* public String getPage ()
*
* Generates the requested information page
*
* @param String The page ID
*
* @return String The page
* boolean or FALSE on error.
*/
function getPage($id) {
return FALSE;
}
}
?>
|