| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
- <?php
- /* vim: set expandtab sw=4 ts=4 sts=4: */
- /**
- * Classes to create relation schema in SVG format.
- *
- * @package PhpMyAdmin
- */
- if (! defined('PHPMYADMIN')) {
- exit;
- }
- require_once 'libraries/plugins/schema/Export_Relation_Schema.class.php';
- require_once 'libraries/plugins/schema/svg/RelationStatsSvg.class.php';
- require_once 'libraries/plugins/schema/svg/TableStatsSvg.class.php';
- require_once 'libraries/Font.class.php';
- /**
- * This Class inherits the XMLwriter class and
- * helps in developing structure of SVG Schema Export
- *
- * @package PhpMyAdmin
- * @access public
- * @see http://php.net/manual/en/book.xmlwriter.php
- */
- class PMA_SVG extends XMLWriter
- {
- public $title;
- public $author;
- public $font;
- public $fontSize;
- /**
- * The "PMA_SVG" constructor
- *
- * Upon instantiation This starts writing the Svg XML document
- *
- * @see XMLWriter::openMemory(),XMLWriter::setIndent(),XMLWriter::startDocument()
- */
- public function __construct()
- {
- $this->openMemory();
- /*
- * Set indenting using three spaces,
- * so output is formatted
- */
- $this->setIndent(true);
- $this->setIndentString(' ');
- /*
- * Create the XML document
- */
- $this->startDocument('1.0', 'UTF-8');
- $this->startDtd(
- 'svg', '-//W3C//DTD SVG 1.1//EN',
- 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'
- );
- $this->endDtd();
- }
- /**
- * Set document title
- *
- * @param string $value sets the title text
- *
- * @return void
- */
- public function setTitle($value)
- {
- $this->title = $value;
- }
- /**
- * Set document author
- *
- * @param string $value sets the author
- *
- * @return void
- */
- public function setAuthor($value)
- {
- $this->author = $value;
- }
- /**
- * Set document font
- *
- * @param string $value sets the font e.g Arial, Sans-serif etc
- *
- * @return void
- */
- public function setFont($value)
- {
- $this->font = $value;
- }
- /**
- * Get document font
- *
- * @return string returns the font name
- */
- public function getFont()
- {
- return $this->font;
- }
- /**
- * Set document font size
- *
- * @param string $value sets the font size in pixels
- *
- * @return void
- */
- public function setFontSize($value)
- {
- $this->fontSize = $value;
- }
- /**
- * Get document font size
- *
- * @return string returns the font size
- */
- public function getFontSize()
- {
- return $this->fontSize;
- }
- /**
- * Starts Svg Document
- *
- * svg document starts by first initializing svg tag
- * which contains all the attributes and namespace that needed
- * to define the svg document
- *
- * @param integer $width total width of the Svg document
- * @param integer $height total height of the Svg document
- * @param integer $x min-x of the view box
- * @param integer $y min-y of the view box
- *
- * @return void
- *
- * @see XMLWriter::startElement(),XMLWriter::writeAttribute()
- */
- public function startSvgDoc($width, $height, $x = 0, $y = 0)
- {
- $this->startElement('svg');
- if (!is_int($width)) {
- $width = intval($width);
- }
- if (!is_int($height)) {
- $height = intval($height);
- }
- if ($x != 0 || $y != 0) {
- $this->writeAttribute('viewBox', "$x $y $width $height");
- }
- $this->writeAttribute('width', ($width - $x) . 'px');
- $this->writeAttribute('height', ($height - $y) . 'px');
- $this->writeAttribute('xmlns', 'http://www.w3.org/2000/svg');
- $this->writeAttribute('version', '1.1');
- }
- /**
- * Ends Svg Document
- *
- * @return void
- * @see XMLWriter::endElement(),XMLWriter::endDocument()
- */
- public function endSvgDoc()
- {
- $this->endElement();
- $this->endDocument();
- }
- /**
- * output Svg Document
- *
- * svg document prompted to the user for download
- * Svg document saved in .svg extension and can be
- * easily changeable by using any svg IDE
- *
- * @param string $fileName file name
- *
- * @return void
- * @see XMLWriter::startElement(),XMLWriter::writeAttribute()
- */
- public function showOutput($fileName)
- {
- //ob_get_clean();
- $output = $this->flush();
- PMA_Response::getInstance()->disable();
- PMA_downloadHeader(
- $fileName,
- 'image/svg+xml',
- /*overload*/mb_strlen($output)
- );
- print $output;
- }
- /**
- * Draws Svg elements
- *
- * SVG has some predefined shape elements like rectangle & text
- * and other elements who have x,y co-ordinates are drawn.
- * specify their width and height and can give styles too.
- *
- * @param string $name Svg element name
- * @param int $x The x attr defines the left position of the element
- * (e.g. x="0" places the element 0 pixels from the left of the browser window)
- * @param integer $y The y attribute defines the top position of the
- * element (e.g. y="0" places the element 0 pixels from the top of the browser
- * window)
- * @param int|string $width The width attribute defines the width the element
- * @param int|string $height The height attribute defines the height the element
- * @param string $text The text attribute defines the text the element
- * @param string $styles The style attribute defines the style the element
- * styles can be defined like CSS styles
- *
- * @return void
- *
- * @see XMLWriter::startElement(), XMLWriter::writeAttribute(),
- * XMLWriter::text(), XMLWriter::endElement()
- */
- public function printElement($name, $x, $y, $width = '', $height = '',
- $text = '', $styles = ''
- ) {
- $this->startElement($name);
- $this->writeAttribute('width', $width);
- $this->writeAttribute('height', $height);
- $this->writeAttribute('x', $x);
- $this->writeAttribute('y', $y);
- $this->writeAttribute('style', $styles);
- if (isset($text)) {
- $this->writeAttribute('font-family', $this->font);
- $this->writeAttribute('font-size', $this->fontSize);
- $this->text($text);
- }
- $this->endElement();
- }
- /**
- * Draws Svg Line element
- *
- * Svg line element is drawn for connecting the tables.
- * arrows are also drawn by specify its start and ending
- * co-ordinates
- *
- * @param string $name Svg element name i.e line
- * @param integer $x1 Defines the start of the line on the x-axis
- * @param integer $y1 Defines the start of the line on the y-axis
- * @param integer $x2 Defines the end of the line on the x-axis
- * @param integer $y2 Defines the end of the line on the y-axis
- * @param string $styles The style attribute defines the style the element
- * styles can be defined like CSS styles
- *
- * @return void
- *
- * @see XMLWriter::startElement(), XMLWriter::writeAttribute(),
- * XMLWriter::endElement()
- */
- public function printElementLine($name,$x1,$y1,$x2,$y2,$styles)
- {
- $this->startElement($name);
- $this->writeAttribute('x1', $x1);
- $this->writeAttribute('y1', $y1);
- $this->writeAttribute('x2', $x2);
- $this->writeAttribute('y2', $y2);
- $this->writeAttribute('style', $styles);
- $this->endElement();
- }
- }
- /**
- * Svg Relation Schema Class
- *
- * Purpose of this class is to generate the SVG XML Document because
- * SVG defines the graphics in XML format which is used for representing
- * the database diagrams as vector image. This class actually helps
- * in preparing SVG XML format.
- *
- * SVG XML is generated by using XMLWriter php extension and this class
- * inherits Export_Relation_Schema class has common functionality added
- * to this class
- *
- * @package PhpMyAdmin
- * @name Svg_Relation_Schema
- */
- class PMA_Svg_Relation_Schema extends PMA_Export_Relation_Schema
- {
- /**
- * @var Table_Stats_Dia[]|Table_Stats_Eps[]|Table_Stats_Pdf[]|Table_Stats_Svg[]
- */
- private $_tables = array();
- /** @var Relation_Stats_Dia[] Relations */
- private $_relations = array();
- private $_xMax = 0;
- private $_yMax = 0;
- private $_xMin = 100000;
- private $_yMin = 100000;
- private $_tablewidth;
- /**
- * The "PMA_Svg_Relation_Schema" constructor
- *
- * Upon instantiation This starts writing the SVG XML document
- * user will be prompted for download as .svg extension
- *
- * @param string $db database name
- *
- * @see PMA_SVG
- */
- function __construct($db)
- {
- parent::__construct($db, new PMA_SVG());
- $this->setShowColor(isset($_REQUEST['svg_show_color']));
- $this->setShowKeys(isset($_REQUEST['svg_show_keys']));
- $this->setTableDimension(isset($_REQUEST['svg_show_table_dimension']));
- $this->setAllTablesSameWidth(isset($_REQUEST['svg_all_tables_same_width']));
- $this->diagram->setTitle(
- sprintf(
- __('Schema of the %s database - Page %s'),
- $this->db,
- $this->pageNumber
- )
- );
- $this->diagram->SetAuthor('phpMyAdmin ' . PMA_VERSION);
- $this->diagram->setFont('Arial');
- $this->diagram->setFontSize('16px');
- $alltables = $this->getTablesFromRequest();
- foreach ($alltables as $table) {
- if (! isset($this->_tables[$table])) {
- $this->_tables[$table] = new Table_Stats_Svg(
- $this->diagram, $this->db,
- $table, $this->diagram->getFont(),
- $this->diagram->getFontSize(), $this->pageNumber,
- $this->_tablewidth, $this->showKeys, $this->tableDimension,
- $this->offline
- );
- }
- if ($this->sameWide) {
- $this->_tables[$table]->width = &$this->_tablewidth;
- }
- $this->_setMinMax($this->_tables[$table]);
- }
- $border = 15;
- $this->diagram->startSvgDoc(
- $this->_xMax + $border,
- $this->_yMax + $border,
- $this->_xMin - $border,
- $this->_yMin - $border
- );
- $seen_a_relation = false;
- foreach ($alltables as $one_table) {
- $exist_rel = PMA_getForeigners($this->db, $one_table, '', 'both');
- if (!$exist_rel) {
- continue;
- }
- $seen_a_relation = true;
- foreach ($exist_rel as $master_field => $rel) {
- /* put the foreign table on the schema only if selected
- * by the user
- * (do not use array_search() because we would have to
- * to do a === false and this is not PHP3 compatible)
- */
- if ($master_field != 'foreign_keys_data') {
- if (in_array($rel['foreign_table'], $alltables)) {
- $this->_addRelation(
- $one_table,
- $this->diagram->getFont(),
- $this->diagram->getFontSize(),
- $master_field,
- $rel['foreign_table'],
- $rel['foreign_field'],
- $this->tableDimension
- );
- }
- continue;
- }
- foreach ($rel as $one_key) {
- if (!in_array($one_key['ref_table_name'], $alltables)) {
- continue;
- }
- foreach ($one_key['index_list']
- as $index => $one_field
- ) {
- $this->_addRelation(
- $one_table, $this->diagram->getFont(),
- $this->diagram->getFontSize(),
- $one_field, $one_key['ref_table_name'],
- $one_key['ref_index_list'][$index],
- $this->tableDimension
- );
- }
- }
- }
- }
- if ($seen_a_relation) {
- $this->_drawRelations();
- }
- $this->_drawTables();
- $this->diagram->endSvgDoc();
- }
- /**
- * Output Svg Document for download
- *
- * @return void
- */
- public function showOutput()
- {
- $this->diagram->showOutput($this->getFileName('.svg'));
- }
- /**
- * Sets X and Y minimum and maximum for a table cell
- *
- * @param string $table The table name
- *
- * @return void
- */
- private function _setMinMax($table)
- {
- $this->_xMax = max($this->_xMax, $table->x + $table->width);
- $this->_yMax = max($this->_yMax, $table->y + $table->height);
- $this->_xMin = min($this->_xMin, $table->x);
- $this->_yMin = min($this->_yMin, $table->y);
- }
- /**
- * Defines relation objects
- *
- * @param string $masterTable The master table name
- * @param string $font The font face
- * @param int $fontSize Font size
- * @param string $masterField The relation field in the master table
- * @param string $foreignTable The foreign table name
- * @param string $foreignField The relation field in the foreign table
- * @param boolean $tableDimension Whether to display table position or not
- *
- * @return void
- *
- * @see _setMinMax,Table_Stats_Svg::__construct(),
- * Relation_Stats_Svg::__construct()
- */
- private function _addRelation(
- $masterTable,$font,$fontSize, $masterField,
- $foreignTable, $foreignField, $tableDimension
- ) {
- if (! isset($this->_tables[$masterTable])) {
- $this->_tables[$masterTable] = new Table_Stats_Svg(
- $this->diagram, $this->db,
- $masterTable, $font, $fontSize, $this->pageNumber,
- $this->_tablewidth, false, $tableDimension
- );
- $this->_setMinMax($this->_tables[$masterTable]);
- }
- if (! isset($this->_tables[$foreignTable])) {
- $this->_tables[$foreignTable] = new Table_Stats_Svg(
- $this->diagram, $this->db,
- $foreignTable, $font, $fontSize, $this->pageNumber,
- $this->_tablewidth, false, $tableDimension
- );
- $this->_setMinMax($this->_tables[$foreignTable]);
- }
- $this->_relations[] = new Relation_Stats_Svg(
- $this->diagram,
- $this->_tables[$masterTable],
- $masterField,
- $this->_tables[$foreignTable],
- $foreignField
- );
- }
- /**
- * Draws relation arrows and lines
- * connects master table's master field to
- * foreign table's foreign field
- *
- * @return void
- *
- * @see Relation_Stats_Svg::relationDraw()
- */
- private function _drawRelations()
- {
- foreach ($this->_relations as $relation) {
- $relation->relationDraw($this->showColor);
- }
- }
- /**
- * Draws tables
- *
- * @return void
- *
- * @see Table_Stats_Svg::Table_Stats_tableDraw()
- */
- private function _drawTables()
- {
- foreach ($this->_tables as $table) {
- $table->tableDraw($this->showColor);
- }
- }
- }
|