28 $this->manager = $ilDB->db->loadModule(
'Manager');
29 $this->reverse = $ilDB->db->loadModule(
'Reverse');
31 include_once(
"./Services/Database/classes/class.ilDBAnalyzer.php");
34 $this->allowed_attributes = $ilDB->getAllowedAttributes();
41 $query =
"SELECT DISTINCT(table_name) FROM abstraction_progress ";
46 $names[] =
$row->table_name;
52 $abs_tables = array_merge($names, array(
54 'acc_user_access_key',
57 'qpl_question_orderinghorizontal',
58 'qpl_question_fileupload',
62 'style_template_class',
66 'page_editor_settings',
127 $this->target_encoding = $a_encoding;
147 $this->blacklist = $a_blacklist;
169 $this->whitelist = $a_whitelist;
187 $this->filter[$a_filter] = $a_value;
195 $r = $this->manager->listTables();
202 if (!in_array(
"sahs_sc13_seq_seq",
$r))
204 $this->tables[] =
"sahs_sc13_seq_seq";
216 if (in_array($a_table, $this->blacklist))
222 if (count($this->whitelist) > 0 && !in_array($a_table, $this->whitelist))
234 $file = fopen($a_path,
"w");
235 $start.=
"\t".
'global $ilDB;'.
"\n\n";
236 fwrite(
$file, $start);
240 $file = fopen($a_path,
"w");
241 $start =
'<?php'.
"\n".
'function setupILIASDatabase()'.
"\n{\n";
242 $start.=
"\t".
'global $ilDB;'.
"\n\n";
243 fwrite(
$file, $start);
271 $isDirectory =
false;
272 if(@is_dir($a_filename))
279 $isDirectory =
false;
284 if ($a_filename !=
"" and !$isDirectory)
286 $file = fopen($a_filename,
"w");
288 $start =
'<?php'.
"\n".
'function setupILIASDatabase()'.
"\n{\n";
289 $start.=
"\t".
'global $ilDB;'.
"\n\n";
290 fwrite(
$file, $start);
303 foreach ($this->tables as $table)
307 if ($a_filename !=
"")
309 echo
"<br>$table"; flush();
336 #$this->buildInsertStatementsXML($table,$path); 351 if ($a_filename !=
"")
353 echo
"<br><b>missing: ".$table.
"</b>"; flush();
361 if ($a_filename ==
"")
365 elseif(!$isDirectory)
368 fwrite (
$file, $end);
381 $fields = $this->analyzer->getFieldInformation($a_table,
true);
383 $create_st =
"\n\n//\n// ".$a_table.
"\n//\n";
384 $create_st.=
'$fields = array ('.
"\n";
386 foreach ($fields as $f => $def)
389 $create_st.=
"\t".$f_sep.
'"'.$f.
'" => array ('.
"\n";
392 foreach ($def as $k => $v)
394 if ($k !=
"nativetype" && $k !=
"alt_types" && $k !=
"autoincrement" && !is_null($v))
401 $v = $v ?
"true" :
"false";
412 $create_st.=
"\t\t".$a_sep.
'"'.$k.
'" => '.$v.
"\n";
416 $create_st.=
"\t".
')'.
"\n";
418 $create_st.=
');'.
"\n";
419 $create_st.=
'$ilDB->createTable("'.$a_table.
'", $fields);'.
"\n";
427 fwrite($a_file, $create_st);
439 $pk = $this->analyzer->getPrimaryKeyInformation($a_table);
441 if (is_array($pk[
"fields"]) && count($pk[
"fields"]) > 0)
443 $pk_st =
"\n".
'$pk_fields = array(';
445 foreach ($pk[
"fields"] as $f => $pos)
447 $pk_st.= $sep.
'"'.$f.
'"';
451 $pk_st.=
'$ilDB->addPrimaryKey("'.$a_table.
'", $pk_fields);'.
"\n";
459 fwrite($a_file, $pk_st);
472 $ind = $this->analyzer->getIndicesInformation($a_table,
true);
486 $in_st =
"\n".
'$in_fields = array(';
488 foreach ($i[
"fields"] as $f => $pos)
490 $in_st.= $sep.
'"'.$f.
'"';
494 $in_st.=
'$ilDB->addIndex("'.$a_table.
'", $in_fields, "'.$i[
"name"].
'"'.$ft.
');'.
"\n";
502 fwrite($a_file, $in_st);
516 $con = $this->analyzer->getConstraintsInformation($a_table,
true);
522 $in_st =
"\n".
'$in_fields = array(';
524 foreach ($i[
"fields"] as $f => $pos)
526 $in_st.= $sep.
'"'.$f.
'"';
530 $in_st.=
'$ilDB->addUniqueConstraint("'.$a_table.
'", $in_fields, "'.$i[
"name"].
'");'.
"\n";
538 fwrite($a_file, $in_st);
552 $seq = $this->analyzer->hasSequence($a_table);
555 $seq_st =
"\n".
'$ilDB->createSequence("'.$a_table.
'", '.(int) $seq.
');'.
"\n";
563 fwrite($a_file, $seq_st);
575 $r = $this->manager->listSequences();
580 if (!in_array($seq, $this->tables))
583 if ($seq ==
"sahs_sc13_seq")
588 $create_st =
"\n".
'$ilDB->createSequence("'.$seq.
'");'.
"\n";
596 fwrite($a_file, $create_st);
613 $ilLog->write(
'Starting export of:'.$a_table);
615 $set = $this->il_db->query(
"SELECT * FROM `".$a_table.
"`");
619 mkdir($a_basedir.
'/'.$a_table.
'_inserts',fileperms($a_basedir));
622 while ($rec = $this->il_db->fetchAssoc($set))
625 foreach($rec as $f => $v)
627 if($this->
fields[$f][
'type'] ==
'text' and $this->
fields[$f][
'length'] >= 1000)
633 $this->
fields[$f][
'type'],
638 $rows[$a_table][
$row++] = $values;
642 $ilLog->write(
'Writing insert statements after 1000 lines...');
643 $fp = fopen($a_basedir.
'/'.$a_table.
'_inserts/'.$filenum++.
'.data',
'w');
644 fwrite($fp,serialize((array) $rows));
654 $fp = fopen($a_basedir.
'/'.$a_table.
'_inserts/'.$filenum++.
'.data',
'w');
655 fwrite($fp,serialize((array) $rows).
"\n");
659 $ilLog->write(
'Finished export of: '.$a_table);
660 if(function_exists(
'memory_get_usage'))
662 $ilLog->write(
'Memory usage: '.memory_get_usage(
true));
677 include_once
'./Services/Xml/classes/class.ilXmlWriter.php';
679 $w->xmlStartTag(
'Table',array(
'name' => $a_table));
681 $set = $this->il_db->query(
"SELECT * FROM `".$a_table.
"`");
684 while ($rec = $this->il_db->fetchAssoc($set))
686 #$ilLog->write('Num: '.$num++); 687 $w->xmlStartTag(
'Row');
692 foreach($rec as $f => $v)
694 if($this->
fields[$f][
'type'] ==
'text' and $this->
fields[$f][
'length'] >= 1000)
703 'type' => $this->
fields[$f][
'type']
709 $w->xmlEndTag(
'Row');
711 $w->xmlEndTag(
'Table');
713 $w->xmlDumpFile($a_basedir.
'/'.$a_table.
'.xml',FALSE);
724 if ($a_table ==
"lng_data")
729 $set = $this->il_db->query(
"SELECT * FROM `".$a_table.
"`");
732 while ($rec = $this->il_db->fetchAssoc($set))
738 foreach ($rec as $f => $v)
741 $types[] =
'"'.$this->fields[$f][
"type"].
'"';
742 $v = str_replace(
'\\',
'\\\\', $v);
743 $values[] =
"'".str_replace(
"'",
"\'", $v).
"'";
744 $i_str[] =
"'".$f.
"' => array('".$this->
fields[$f][
"type"].
745 "', '".str_replace(
"'",
"\'", $v).
"')";
747 $fields_str =
"(".implode($fields,
",").
")";
748 $types_str =
"array(".implode($types,
",").
")";
749 $values_str =
"array(".implode($values,
",").
")";
750 $ins_st =
"\n".
'$ilDB->insert("'.$a_table.
'", array('.
"\n";
751 $ins_st.= implode($i_str,
", ").
"));\n";
762 fwrite($a_file, $ins_st);
775 $tpl =
new ilTemplate(
"tpl.db_overview.html",
true,
true,
"Services/Database");
779 foreach ($this->tables as $table)
793 if ($a_filename ==
"")
804 $fields = $this->analyzer->getFieldInformation($a_table);
805 $indices = $this->analyzer->getIndicesInformation($a_table);
806 $constraints = $this->analyzer->getConstraintsInformation($a_table);
807 $pk = $this->analyzer->getPrimaryKeyInformation($a_table);
808 $auto = $this->analyzer->getAutoIncrementField($a_table);
809 $has_sequence = $this->analyzer->hasSequence($a_table);
812 if (isset($this->filter[
"has_sequence"]))
814 if ((!$has_sequence && $auto ==
"" && $this->filter[
"has_sequence"]) ||
815 (($has_sequence || $auto !=
"") && !$this->filter[
"has_sequence"]))
822 $indices_output =
false;
823 if (is_array($indices) && count($indices) > 0 && !$this->filter[
"skip_indices"])
825 foreach ($indices as $index => $def)
828 foreach ($def[
"fields"] as $f => $pos)
832 $a_tpl->setCurrentBlock(
"index");
833 $a_tpl->setVariable(
"VAL_INDEX", $def[
"name"]);
834 $a_tpl->setVariable(
"VAL_FIELDS", implode($f2,
", "));
835 $a_tpl->parseCurrentBlock();
836 $indices_output =
true;
838 $a_tpl->setCurrentBlock(
"index_table");
839 $a_tpl->parseCurrentBlock();
843 $constraints_output =
false;
844 if (is_array($constraints) && count($constraints) > 0 && !$this->filter[
"skip_constraints"])
846 foreach ($constraints as $index => $def)
849 foreach ($def[
"fields"] as $f => $pos)
853 $a_tpl->setCurrentBlock(
"constraint");
854 $a_tpl->setVariable(
"VAL_CONSTRAINT", $def[
"name"]);
855 $a_tpl->setVariable(
"VAL_CTYPE", $def[
"type"]);
856 $a_tpl->setVariable(
"VAL_CFIELDS", implode($f2,
", "));
857 $a_tpl->parseCurrentBlock();
858 $constraints_output =
true;
860 $a_tpl->setCurrentBlock(
"constraint_table");
861 $a_tpl->parseCurrentBlock();
865 $fields_output =
false;
866 foreach ($fields as $field => $def)
869 if (isset($this->filter[
"alt_types"]))
871 if (($def[
"alt_types"] ==
"" && $this->filter[
"alt_types"]) ||
872 ($def[
"alt_types"] !=
"" && !$this->filter[
"alt_types"]))
877 if (isset($this->filter[
"type"]))
879 if ($def[
"type"] != $this->filter[
"type"])
884 if (isset($this->filter[
"nativetype"]))
886 if ($def[
"nativetype"] != $this->filter[
"nativetype"])
891 if (isset($this->filter[
"unsigned"]))
893 if ($def[
"unsigned"] != $this->filter[
"unsigned"])
899 $a_tpl->setCurrentBlock(
"field");
900 if (empty($pk[
"fields"][$field]))
902 $a_tpl->setVariable(
"VAL_FIELD", strtolower($field));
906 $a_tpl->setVariable(
"VAL_FIELD",
"<u>".strtolower($field).
"</u>");
908 $a_tpl->setVariable(
"VAL_TYPE", $def[
"type"]);
909 $a_tpl->setVariable(
"VAL_LENGTH", (!is_null($def[
"length"])) ? $def[
"length"] :
" ");
911 if (strtolower($def[
"default"]) ==
"current_timestamp")
914 unset($def[
"default"]);
917 $a_tpl->setVariable(
"VAL_DEFAULT", (!is_null($def[
"default"])) ? $def[
"default"] :
" ");
918 $a_tpl->setVariable(
"VAL_NOT_NULL", (!is_null($def[
"notnull"]))
919 ? (($def[
"notnull"]) ?
"true" :
"false")
921 $a_tpl->setVariable(
"VAL_FIXED", (!is_null($def[
"fixed"]))
922 ? (($def[
"fixed"]) ?
"true" :
"false")
924 $a_tpl->setVariable(
"VAL_UNSIGNED", (!is_null($def[
"unsigned"]))
925 ? (($def[
"unsigned"]) ?
"true" :
"false")
927 $a_tpl->setVariable(
"VAL_ALTERNATIVE_TYPES", ($def[
"alt_types"] !=
"") ? $def[
"alt_types"] :
" ");
928 $a_tpl->setVariable(
"VAL_NATIVETYPE", ($def[
"nativetype"] !=
"") ? $def[
"nativetype"] :
" ");
929 $a_tpl->parseCurrentBlock();
930 $fields_output =
true;
935 $a_tpl->setCurrentBlock(
"field_table");
936 $a_tpl->parseCurrentBlock();
940 if ($indices_output || $fields_output || $constraints_output)
942 $a_tpl->setCurrentBlock(
"table");
943 $a_tpl->setVariable(
"TXT_TABLE_NAME", strtolower($a_table));
944 if ($has_sequence || $auto !=
"")
946 $a_tpl->setVariable(
"TXT_SEQUENCE",
"Has Sequence");
950 $a_tpl->setVariable(
"TXT_SEQUENCE",
"No Sequence");
952 $a_tpl->setVariable(
"VAL_CNT", (
int) $a_cnt);
953 $a_tpl->parseCurrentBlock();
980 include_once
'./Services/Utilities/classes/class.ilStr.php';
983 $shortened = mb_convert_encoding($shortened,
'UTF-8',$this->
getTargetEncoding());
985 if(strlen($a_value) != strlen($shortened))
987 $ilLog->write(
'Table : '.$table);
988 $ilLog->write(
'Field : '.$field );
989 $ilLog->write(
'Type : '.$this->
fields[$field][
'type']);
990 $ilLog->write(
'Length : '.$this->
fields[$field][
'length']);
991 $ilLog->write(
'Before : '.$a_value);
992 $ilLog->write(
'Shortened : '.$shortened);
993 $ilLog->write(
'Strlen Before: '.strlen($a_value));
994 $ilLog->write(
'Strlen After : '.strlen($shortened));
getWhiteList()
Get Table White List.
static shortenText($a_string, $a_start_pos, $a_num_bytes, $a_encoding='UTF-8')
Shorten text to the given number of bytes.
setTargetEncoding($a_encoding)
Set the desired target encoding If the target encoding os different from UTF-8 all text values will b...
buildAddIndexStatements($a_table, $a_file="")
Build AddIndex statements.
isError($data, $code=null)
Tell whether a value is a MDB2 error.
buildInsertStatement($a_table, $a_basedir)
Write seerialized insert data to array.
setFilter($a_filter, $a_value)
Set filter.
getTables()
Get (all) tables.
buildAddPrimaryKeyStatement($a_table, $a_file="")
Build AddPrimaryKey statement.
buildCreateTableStatement($a_table, $a_file="")
Build CreateTable statement.
addTableToOverview($a_table, $a_tpl, $a_cnt)
Add table to overview template.
static lookupAbstractedTables()
buildInsertStatements($a_table, $a_file="")
Build Insert statements.
setWhiteList($a_whitelist)
Set Table White List.
const DB_FETCHMODE_OBJECT
__construct()
Constructor.
getTargetEncoding()
Returns the target encoding.
special template class to simplify handling of ITX/PEAR
getHTMLOverview($a_filename="")
Get table definition overview in HTML.
shortenText($table, $field, $a_value, $a_size)
Shorten text depending on target encoding.
if(!file_exists(getcwd().'/ilias.ini.php')) if(isset( $_GET["client_id"]))
registration confirmation script for ilias
buildInsertStatementsXML($a_table, $a_basedir)
buildSingularSequenceStatement($a_file="")
Build CreateSequence statement (if not belonging to table)
setBlackList($a_blacklist)
Set Table Black List.
This class gives all kind of DB information using the MDB2 manager and reverse module.
checkProcessing($a_table)
Check whether a table should be processed or not.
buildDBGenerationScript($a_filename="")
Build DB generation script.
This class provides methods for building a DB generation script, getting a full overview on abstract ...
buildAddUniqueConstraintStatements($a_table, $a_file="")
Build AddUniqueConstraint statements.
getBlackList()
Get Table Black List.
buildCreateSequenceStatement($a_table, $a_file="")
Build CreateSequence statement.