/usr/share/phpmyadmin/libraries/classes
NameSizeModeActions
Charsets/-0755rm
Command/-0755rm
Config/-0755rm
Controllers/-0755rm
Database/-0755rm
Dbal/-0755rm
Display/-0755rm
Engines/-0755rm
Exceptions/-0755rm
Export/-0755rm
Gis/-0755rm
Html/-0755rm
Import/-0755rm
Navigation/-0755rm
Plugins/-0755rm
Properties/-0755rm
Providers/-0755rm
Query/-0755rm
Server/-0755rm
Setup/-0755rm
Table/-0755rm
Twig/-0755rm
Utils/-0755rm
Advisor.php125170644editdlrm
Bookmark.php109440644editdlrm
BrowseForeigners.php110830644editdlrm
Charsets.php72670644editdlrm
CheckUserPrivileges.php122300644editdlrm
Config.php464560644editdlrm
Console.php34600644editdlrm
Core.php433440644editdlrm
CreateAddField.php179930644editdlrm
DatabaseInterface.php768020644editdlrm
DbTableExists.php32870644editdlrm
Encoding.php87150644editdlrm
Error.php143040644editdlrm
ErrorHandler.php175570644editdlrm
ErrorReport.php93640644editdlrm
Export.php473510644editdlrm
File.php217860644editdlrm
FileListing.php29230644editdlrm
Font.php57180644editdlrm
Footer.php107940644editdlrm
Git.php183810644editdlrm
Header.php219670644editdlrm
Import.php588400644editdlrm
Index.php154280644editdlrm
IndexColumn.php43310644editdlrm
InsertEdit.php1333090644editdlrm
InternalRelations.php177300644editdlrm
IpAllowDeny.php99970644editdlrm
Language.php45680644editdlrm
LanguageManager.php245320644editdlrm
Linter.php53740644editdlrm
ListAbstract.php18140644editdlrm
ListDatabase.php44020644editdlrm
Logging.php27810644editdlrm
Menu.php218120644editdlrm
Message.php195470644editdlrm
Mime.php9160644editdlrm
Normalization.php424750644editdlrm
OpenDocument.php86170644editdlrm
Operations.php387480644editdlrm
OutputBuffering.php40740644editdlrm
ParseAnalyze.php24290644editdlrm
Partition.php73400644editdlrm
Pdf.php44490644editdlrm
Plugins.php257830644editdlrm
Profiling.php23170644editdlrm
RecentFavoriteTable.php122970644editdlrm
Relation.php792470644editdlrm
RelationCleanup.php150510644editdlrm
Replication.php48430644editdlrm
ReplicationGui.php220380644editdlrm
ReplicationInfo.php49430644editdlrm
Response.php168640644editdlrm
Routing.php58450644editdlrm
Sanitize.php124180644editdlrm
SavedSearches.php122210644editdlrm
Scripts.php37260644editdlrm
Session.php81980644editdlrm
Sql.php682720644editdlrm
SqlQueryForm.php72860644editdlrm
StorageEngine.php128280644editdlrm
SubPartition.php33980644editdlrm
SystemDatabase.php37480644editdlrm
Table.php979610644editdlrm
TablePartitionDefinition.php66640644editdlrm
Template.php39620644editdlrm
Theme.php89690644editdlrm
ThemeManager.php98150644editdlrm
Tracker.php304970644editdlrm
Tracking.php381410644editdlrm
Transformations.php166850644editdlrm
TwoFactor.php69680644editdlrm
Types.php258050644editdlrm
Url.php89730644editdlrm
UserPassword.php72840644editdlrm
UserPreferences.php86570644editdlrm
Util.php1047680644editdlrm
Version.php5330644editdlrm
VersionInformation.php73190644editdlrm
ZipExtension.php110170644editdlrm
Edit: /usr/share/phpmyadmin/libraries/classes/StorageEngine.php (12828B)
engine = $engine; $this->title = $storage_engines[$engine]['Engine']; $this->comment = ($storage_engines[$engine]['Comment'] ?? ''); switch ($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; } } /** * Returns array of storage engines * * @return array[] array of storage engines * * @static * @staticvar array $storage_engines storage engines * @access public */ public static function getStorageEngines() { global $dbi; static $storage_engines = null; if ($storage_engines == null) { $storage_engines = $dbi->fetchResult('SHOW STORAGE ENGINES', 'Engine'); if ($dbi->getVersion() >= 50708) { $disabled = (string) SessionCache::get( 'disabled_storage_engines', static function () use ($dbi) { return $dbi->fetchValue( 'SELECT @@disabled_storage_engines' ); } ); foreach (explode(',', $disabled) as $engine) { if (! isset($storage_engines[$engine])) { continue; } $storage_engines[$engine]['Support'] = 'DISABLED'; } } } return $storage_engines; } /** * @return array> */ public static function getArray(): array { $engines = []; foreach (self::getStorageEngines() as $details) { // Don't show PERFORMANCE_SCHEMA engine (MySQL 5.5) if ($details['Support'] === 'NO' || $details['Support'] === 'DISABLED' || $details['Engine'] === 'PERFORMANCE_SCHEMA' ) { continue; } $engines[$details['Engine']] = [ 'name' => $details['Engine'], 'comment' => $details['Comment'], 'is_default' => $details['Support'] === 'DEFAULT', ]; } return $engines; } /** * Loads the corresponding engine plugin, if available. * * @param string $engine The engine ID * * @return StorageEngine The engine plugin * * @static */ public static function getEngine($engine) { switch (mb_strtolower($engine)) { case 'bdb': return new Bdb($engine); case 'berkeleydb': return new Berkeleydb($engine); case 'binlog': return new Binlog($engine); case 'innobase': return new Innobase($engine); case 'innodb': return new Innodb($engine); case 'memory': return new Memory($engine); case 'merge': return new Merge($engine); case 'mrg_myisam': return new MrgMyisam($engine); case 'myisam': return new Myisam($engine); case 'ndbcluster': return new Ndbcluster($engine); case 'pbxt': return new Pbxt($engine); case 'performance_schema': return new PerformanceSchema($engine); default: return new StorageEngine($engine); } } /** * Returns true if given engine name is supported/valid, otherwise false * * @param string $engine name of engine * * @return bool whether $engine is valid or not * * @static */ public static function isValid($engine) { if ($engine === 'PBMS') { return true; } $storage_engines = self::getStorageEngines(); return isset($storage_engines[$engine]); } /** * Returns as HTML table of the engine's server variables * * @return string The table that was generated based on the retrieved * information */ public function getHtmlVariables() { $ret = ''; foreach ($this->getVariablesStatus() as $details) { $ret .= '' . "\n" . ' ' . "\n"; if (! empty($details['desc'])) { $ret .= ' ' . Generator::showHint($details['desc']) . "\n"; } $ret .= ' ' . "\n" . ' ' . htmlspecialchars($details['title']) . '' . "\n" . ' '; switch ($details['type']) { case PMA_ENGINE_DETAILS_TYPE_SIZE: $parsed_size = $this->resolveTypeSize($details['value']); $ret .= $parsed_size[0] . ' ' . $parsed_size[1]; unset($parsed_size); break; case PMA_ENGINE_DETAILS_TYPE_NUMERIC: $ret .= Util::formatNumber($details['value']) . ' '; break; default: $ret .= htmlspecialchars($details['value']) . ' '; } $ret .= '' . "\n" . '' . "\n"; } if (! $ret) { $ret = '

' . "\n" . ' ' . __( 'There is no detailed status information available for this ' . 'storage engine.' ) . "\n" . '

' . "\n"; } else { $ret = '' . "\n" . $ret . '
' . "\n"; } return $ret; } /** * Returns the engine specific handling for * PMA_ENGINE_DETAILS_TYPE_SIZE type variables. * * This function should be overridden when * PMA_ENGINE_DETAILS_TYPE_SIZE type needs to be * handled differently for a particular engine. * * @param int $value Value to format * * @return array the formatted value and its unit */ public function resolveTypeSize($value) { return Util::formatByteDown($value); } /** * Returns array with detailed info about engine specific server variables * * @return array array with detailed info about specific engine server variables */ public function getVariablesStatus() { global $dbi; $variables = $this->getVariables(); $like = $this->getVariablesLikePattern(); if ($like) { $like = " LIKE '" . $like . "' "; } else { $like = ''; } $mysql_vars = []; $sql_query = 'SHOW GLOBAL VARIABLES ' . $like . ';'; $res = $dbi->query($sql_query); while ($row = $dbi->fetchAssoc($res)) { if (isset($variables[$row['Variable_name']])) { $mysql_vars[$row['Variable_name']] = $variables[$row['Variable_name']]; } elseif (! $like && mb_stripos($row['Variable_name'], $this->engine) !== 0 ) { continue; } $mysql_vars[$row['Variable_name']]['value'] = $row['Value']; if (empty($mysql_vars[$row['Variable_name']]['title'])) { $mysql_vars[$row['Variable_name']]['title'] = $row['Variable_name']; } if (isset($mysql_vars[$row['Variable_name']]['type'])) { continue; } $mysql_vars[$row['Variable_name']]['type'] = PMA_ENGINE_DETAILS_TYPE_PLAINTEXT; } $dbi->freeResult($res); return $mysql_vars; } /** * Reveals the engine's title * * @return string The title */ public function getTitle() { return $this->title; } /** * Fetches the server's comment about this engine * * @return string The comment */ public function getComment() { return $this->comment; } /** * Information message on whether this storage engine is supported * * @return string The localized message. */ public function getSupportInformationMessage() { switch ($this->support) { case PMA_ENGINE_SUPPORT_DEFAULT: $message = __('%s is the default storage engine on this MySQL server.'); break; case PMA_ENGINE_SUPPORT_YES: $message = __('%s is available on this MySQL server.'); break; case PMA_ENGINE_SUPPORT_DISABLED: $message = __('%s has been disabled for this MySQL server.'); break; case PMA_ENGINE_SUPPORT_NO: default: $message = __( 'This MySQL server does not support the %s storage engine.' ); } return sprintf($message, htmlspecialchars($this->title)); } /** * 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. */ public function getVariables() { return []; } /** * Returns string with filename for the MySQL helppage * about this storage engine * * @return string MySQL help page filename */ public function getMysqlHelpPage() { return $this->engine . '-storage-engine'; } /** * Returns the pattern to be used in the query for SQL variables * related to the storage engine * * @return string SQL query LIKE pattern */ public function getVariablesLikePattern() { return ''; } /** * Returns a list of available information pages with labels * * @return string[] The list */ public function getInfoPages() { return []; } /** * Generates the requested information page * * @param string $id page id * * @return string html output */ public function getPage($id) { if (! array_key_exists($id, $this->getInfoPages())) { return ''; } $id = 'getPage' . $id; return $this->$id(); } }