disconnect(); } /** * Returns TRUE when connection was established. * @return bool */ public static function isConnected() { return (self::$connection !== NULL) && self::$connection->isConnected(); } /** * Retrieve active connection. * @param string connection registy name * @return DibiConnection * @throws DibiException */ public static function getConnection($name = NULL) { if ($name === NULL) { if (self::$connection === NULL) { throw new DibiException('Dibi is not connected to database.'); } return self::$connection; } if (!isset(self::$registry[$name])) { throw new DibiException("There is no connection named '$name'."); } return self::$registry[$name]; } /** * Change active connection. * @param string connection registy name * @return void * @throws DibiException */ public static function activate($name) { self::$connection = self::getConnection($name); } /** * Retrieve active connection profiler. * @return IDibiProfiler * @throws DibiException */ public static function getProfiler() { return self::getConnection()->getProfiler(); } /********************* monostate for active connection ****************d*g**/ /** * Generates and executes SQL query - Monostate for DibiConnection::query(). * @param array|mixed one or more arguments * @return DibiResult|int result set object (if any) * @throws DibiException */ public static function query($args) { $args = func_get_args(); return self::getConnection()->query($args); } /** * Executes the SQL query - Monostate for DibiConnection::nativeQuery(). * @param string SQL statement. * @return DibiResult|int result set object (if any) */ public static function nativeQuery($sql) { return self::getConnection()->nativeQuery($sql); } /** * Generates and prints SQL query - Monostate for DibiConnection::test(). * @param array|mixed one or more arguments * @return bool */ public static function test($args) { $args = func_get_args(); return self::getConnection()->test($args); } /** * Generates and returns SQL query as DibiDataSource - Monostate for DibiConnection::test(). * @param array|mixed one or more arguments * @return DibiDataSource */ public static function dataSource($args) { $args = func_get_args(); return self::getConnection()->dataSource($args); } /** * Executes SQL query and fetch result - Monostate for DibiConnection::query() & fetch(). * @param array|mixed one or more arguments * @return DibiRow * @throws DibiException */ public static function fetch($args) { $args = func_get_args(); return self::getConnection()->query($args)->fetch(); } /** * Executes SQL query and fetch results - Monostate for DibiConnection::query() & fetchAll(). * @param array|mixed one or more arguments * @return array of DibiRow * @throws DibiException */ public static function fetchAll($args) { $args = func_get_args(); return self::getConnection()->query($args)->fetchAll(); } /** * Executes SQL query and fetch first column - Monostate for DibiConnection::query() & fetchSingle(). * @param array|mixed one or more arguments * @return string * @throws DibiException */ public static function fetchSingle($args) { $args = func_get_args(); return self::getConnection()->query($args)->fetchSingle(); } /** * Executes SQL query and fetch pairs - Monostate for DibiConnection::query() & fetchPairs(). * @param array|mixed one or more arguments * @return string * @throws DibiException */ public static function fetchPairs($args) { $args = func_get_args(); return self::getConnection()->query($args)->fetchPairs(); } /** * Gets the number of affected rows. * Monostate for DibiConnection::affectedRows() * @return int number of rows * @throws DibiException */ public static function affectedRows() { return self::getConnection()->affectedRows(); } /** * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Monostate for DibiConnection::insertId() * @param string optional sequence name * @return int * @throws DibiException */ public static function insertId($sequence=NULL) { return self::getConnection()->insertId($sequence); } /** * Begins a transaction - Monostate for DibiConnection::begin(). * @param string optinal savepoint name * @return void * @throws DibiException */ public static function begin($savepoint = NULL) { self::getConnection()->begin($savepoint); } /** * Commits statements in a transaction - Monostate for DibiConnection::commit($savepoint = NULL). * @param string optinal savepoint name * @return void * @throws DibiException */ public static function commit($savepoint = NULL) { self::getConnection()->commit($savepoint); } /** * Rollback changes in a transaction - Monostate for DibiConnection::rollback(). * @param string optinal savepoint name * @return void * @throws DibiException */ public static function rollback($savepoint = NULL) { self::getConnection()->rollback($savepoint); } /** * Gets a information about the current database - Monostate for DibiConnection::getDatabaseInfo(). * @return DibiDatabaseInfo */ public static function getDatabaseInfo() { return self::getConnection()->getDatabaseInfo(); } /** * Import SQL dump from file - extreme fast! * @param string filename * @return int count of sql commands */ public static function loadFile($file) { return self::getConnection()->loadFile($file); } /** * Replacement for majority of dibi::methods() in future. */ public static function __callStatic($name, $args) { //if ($name = 'select', 'update', ...') { // return self::command()->$name($args); //} return call_user_func_array(array(self::getConnection(), $name), $args); } /********************* fluent SQL builders ****************d*g**/ /** * @return DibiFluent */ public static function command() { return self::getConnection()->command(); } /** * @param string column name * @return DibiFluent */ public static function select($args) { $args = func_get_args(); return self::getConnection()->command()->__call('select', $args); } /** * @param string table * @param array * @return DibiFluent */ public static function update($table, array $args) { return self::getConnection()->update($table, $args); } /** * @param string table * @param array * @return DibiFluent */ public static function insert($table, array $args) { return self::getConnection()->insert($table, $args); } /** * @param string table * @return DibiFluent */ public static function delete($table) { return self::getConnection()->delete($table); } /********************* data types ****************d*g**/ /** * Pseudotype for timestamp representation. * @param mixed datetime * @return DibiVariable */ public static function datetime($time = NULL) { if ($time === NULL) { $time = time(); // current time } elseif (is_numeric($time)) { $time = (int) $time; // timestamp } elseif ($time instanceof DateTime) { $time = $time->format('U'); } else { $time = strtotime($time); // try convert to timestamp } return new DibiVariable($time, dibi::FIELD_DATETIME); } /** * Pseudotype for date representation. * @param mixed date * @return DibiVariable */ public static function date($date = NULL) { $var = self::datetime($date); $var->modifier = dibi::FIELD_DATE; return $var; } /********************* substitutions ****************d*g**/ /** * Create a new substitution pair for indentifiers. * @param string from * @param string to * @return void */ public static function addSubst($expr, $subst) { self::$substs[$expr] = $subst; } /** * Sets substitution fallback handler. * @param callback * @return void */ public static function setSubstFallback($callback) { if (!is_callable($callback)) { throw new InvalidArgumentException("Invalid callback."); } self::$substFallBack = $callback; } /** * Remove substitution pair. * @param mixed from or TRUE * @return void */ public static function removeSubst($expr) { if ($expr === TRUE) { self::$substs = array(); } else { unset(self::$substs[':'.$expr.':']); } } /** * Provides substitution. * @param string * @return string */ public static function substitute($value) { if (strpos($value, ':') === FALSE) { return $value; } else { return preg_replace_callback('#:(.*):#U', array('dibi', 'subCb'), $value); } } /** * Substitution callback. * @param array * @return string */ private static function subCb($m) { $m = $m[1]; if (isset(self::$substs[$m])) { return self::$substs[$m]; } elseif (self::$substFallBack) { return self::$substs[$m] = call_user_func(self::$substFallBack, $m); } else { return $m; } } /********************* misc tools ****************d*g**/ /** * Prints out a syntax highlighted version of the SQL command or DibiResult. * @param string|DibiResult * @param bool return output instead of printing it? * @return string */ public static function dump($sql = NULL, $return = FALSE) { ob_start(); if ($sql instanceof DibiResult) { $sql->dump(); } else { if ($sql === NULL) $sql = self::$sql; static $keywords1 = 'SELECT|UPDATE|INSERT(?:\s+INTO)?|REPLACE(?:\s+INTO)?|DELETE|FROM|WHERE|HAVING|GROUP\s+BY|ORDER\s+BY|LIMIT|SET|VALUES|LEFT\s+JOIN|INNER\s+JOIN|TRUNCATE'; static $keywords2 = 'ALL|DISTINCT|DISTINCTROW|AS|USING|ON|AND|OR|IN|IS|NOT|NULL|LIKE|TRUE|FALSE'; // insert new lines $sql = ' ' . $sql; $sql = preg_replace("#(?<=[\\s,(])($keywords1)(?=[\\s,)])#i", "\n\$1", $sql); // reduce spaces $sql = preg_replace('#[ \t]{2,}#', " ", $sql); $sql = wordwrap($sql, 100); $sql = htmlSpecialChars($sql); $sql = preg_replace("#\n{2,}#", "\n", $sql); // syntax highlight $sql = preg_replace_callback("#(/\\*.+?\\*/)|(\\*\\*.+?\\*\\*)|(?<=[\\s,(])($keywords1)(?=[\\s,)])|(?<=[\\s,(=])($keywords2)(?=[\\s,)=])#is", array('dibi', 'highlightCallback'), $sql); $sql = trim($sql); echo '
', $sql, "
\n"; } if ($return) { return ob_get_clean(); } else { ob_end_flush(); } } private static function highlightCallback($matches) { if (!empty($matches[1])) // comment return '' . $matches[1] . ''; if (!empty($matches[2])) // error return '' . $matches[2] . ''; if (!empty($matches[3])) // most important keywords return '' . $matches[3] . ''; if (!empty($matches[4])) // other keywords return '' . $matches[4] . ''; } /** * Returns brief descriptions. * @return string * @return array */ public static function getColophon($sender = NULL) { $arr = array( 'Number of SQL queries: ' . dibi::$numOfQueries . (dibi::$totalTime === NULL ? '' : ', elapsed time: ' . sprintf('%0.3f', dibi::$totalTime * 1000) . ' ms'), ); if ($sender === 'bluescreen') { $arr[] = 'dibi ' . dibi::VERSION . ' (revision ' . dibi::REVISION . ')'; } return $arr; } }