Exemplo n.º 1
0
Arquivo: Rock.php Projeto: romeoz/rock
 /**
  * End profile.
  *
  * @param $category
  * @param $token
  */
 public static function endProfile($category, $token)
 {
     Trace::endProfile($category, $token);
 }
Exemplo n.º 2
0
 protected function getCache($rawQuery, $token, $all, $indexBy, &$cache, &$cacheKey, &$lock = true)
 {
     /** @var $cache CacheInterface */
     if ($this->connection->enableQueryCache) {
         $cache = Instance::ensure($this->connection->queryCache, null, [], false);
     }
     if ($cache instanceof CacheInterface) {
         $cacheKey = json_encode([__METHOD__, $this->connection->dsn, $rawQuery]);
         if (($result = $cache->get($cacheKey)) !== false) {
             Trace::increment('cache.mongodb', 'Cache query MongoDB connection: ' . $this->connection->dsn);
             Trace::endProfile('mongodb.query', $token);
             $token['cache'] = true;
             Trace::trace('mongodb.query', $token);
             return is_array($result) ? $this->fetchRowsAsArrayInternal($result, $all, $indexBy) : $result;
         }
         $lock = $cache->lock($cacheKey);
     }
     return false;
 }
Exemplo n.º 3
0
 /**
  * Executes Mongo command.
  *
  * @param array $command command specification.
  * @param array $options options in format: "name" => "value"
  * @return array database response.
  * @throws MongoException on failure.
  */
 public function executeCommand($command, array $options = [])
 {
     $rawQuery = $this->getName() . '.$cmd(' . Json::encode($command) . ', ' . Json::encode($options) . ')';
     $token = ['query' => $rawQuery, 'valid' => true, 'cache' => false];
     //Log::info($token, __METHOD__);
     Trace::beginProfile('mongodb.query', $token);
     try {
         $result = $this->mongoDb->command($command, $options);
         $this->tryResultError($result);
         Trace::endProfile('mongodb.query', $token);
         Trace::trace('mongodb.query', $token);
         return $result;
     } catch (\Exception $e) {
         $message = $e->getMessage() . "\nThe query being executed was: {$rawQuery}";
         Trace::endProfile('mongodb.query', $token);
         $token['valid'] = false;
         $token['exception'] = defined('ROCK_DEBUG') && ROCK_DEBUG === true ? $e : $message;
         Trace::trace('mongodb.query', $token);
         throw new MongoException($message, [], 0, $e);
     }
 }
Exemplo n.º 4
0
 /**
  * Establishes a DB connection.
  * It does nothing if a DB connection has already been established.
  *
  * @throws DbException if connection fails
  */
 public function open()
 {
     if ($this->pdo !== null) {
         return;
     }
     if (!empty($this->masters)) {
         $connection = $this->openFromPool($this->masters, $this->masterConfig);
         if ($connection !== null) {
             $this->pdo = $connection->pdo;
             return;
         } else {
             throw new DbException('None of the master DB servers is available.');
         }
     }
     if (empty($this->dsn)) {
         throw new DbException('Connection::dsn cannot be empty.');
     }
     $token = 'Opening DB connection: ' . $this->dsn;
     try {
         Trace::trace('db', $token);
         Trace::beginProfile('db', $token);
         $this->pdo = $this->createPdoInstance();
         $this->initConnection();
         Trace::endProfile('db', $token);
     } catch (\PDOException $e) {
         Trace::endProfile('db', $token);
         throw new DbException($e->getMessage(), [], 0, $e);
     }
 }
Exemplo n.º 5
0
 /**
  * Deletes the file with given _id.
  *
  * @param mixed $id _id of the file to find.
  * @return boolean whether the operation was successful.
  * @throws MongoException on failure.
  */
 public function delete($id)
 {
     $token = 'Inserting file uploads into ' . $this->getFullName();
     //Log::info($token);
     Trace::beginProfile('mongodb.query', $token);
     try {
         $result = $this->mongoCollection->delete($id);
         $this->tryResultError($result);
         Trace::endProfile('mongodb.query', $token);
         Trace::trace('mongodb.query', $token);
         return true;
     } catch (\Exception $e) {
         $message = $e->getMessage() . "\nThe query being executed was: {$token}";
         Trace::endProfile('mongodb.query', $token);
         $token['valid'] = false;
         $token['exception'] = defined('ROCK_DEBUG') && ROCK_DEBUG === true ? $e : $message;
         Trace::trace('mongodb.query', $token);
         throw new MongoException($message, [], $e);
     }
 }
Exemplo n.º 6
0
 /**
  * Establishes a Mongo connection.
  * It does nothing if a Mongo connection has already been established.
  *
  * @throws MongoException if connection fails
  */
 public function open()
 {
     if ($this->mongoClient === null) {
         if (empty($this->dsn)) {
             throw new MongoException($this->className() . '::dsn cannot be empty.');
         }
         $token = 'Opening MongoDB connection: ' . $this->dsn;
         try {
             Trace::trace('mongodb', $token);
             Trace::beginProfile('mongodb', $token);
             $options = $this->options;
             $options['connect'] = true;
             if ($this->defaultDatabaseName !== null) {
                 $options['db'] = $this->defaultDatabaseName;
             }
             $this->mongoClient = new \MongoClient($this->dsn, $options);
             $this->initConnection();
             Trace::endProfile('mongodb', $token);
         } catch (\Exception $e) {
             Trace::endProfile('mongodb', $token);
             throw new MongoException($e->getMessage(), [], 0, $e);
         }
     }
 }
Exemplo n.º 7
0
 /**
  * Performs the actual DB query of a SQL statement.
  *
  * @param string $method method of PDOStatement to be called
  * @param integer $fetchMode the result fetch mode. Please refer to [PHP manual](http://www.php.net/manual/en/function.PDOStatement-setFetchMode.php)
  * for valid fetch modes. If this parameter is null, the value set in {@see \rock\db\Command::$fetchMode} will be used.
  * @return mixed the method execution result
  * @throws DbException if the query causes any problem
  */
 protected function queryInternal($method, $fetchMode = null)
 {
     $connection = $this->connection;
     $rawSql = $this->getRawSql();
     $token = ['dsn' => $connection->dsn, 'sql' => $rawSql, 'valid' => true, 'cache' => false];
     Trace::beginProfile('db.query', $token);
     $cache = null;
     /** @var $cache CacheInterface */
     if ($connection->enableQueryCache && $method !== '') {
         $cache = Instance::ensure($connection->queryCache, null, [], false);
     }
     $lock = true;
     if ($cache instanceof CacheInterface) {
         $cacheKey = json_encode([__CLASS__, $method, $connection->dsn, $connection->username, $rawSql]);
         $result = $cache->get($cacheKey);
         if (is_array($result) && array_key_exists(0, $result)) {
             Trace::increment('cache.db', 'Cache query DB connection: ' . $connection->dsn);
             Trace::endProfile('db.query', $token);
             $token['cache'] = true;
             Trace::trace('db.query', $token);
             return $result[0];
         }
         $lock = $cache->lock($cacheKey);
     }
     if ($lock === false) {
         return null;
     }
     $this->prepare(true);
     try {
         $this->pdoStatement->execute();
         if ($method === '') {
             $result = new DataReader($this);
         } else {
             if ($fetchMode === null) {
                 $fetchMode = $this->fetchMode;
             }
             $result = call_user_func_array([$this->pdoStatement, $method], (array) $fetchMode);
             if ($result === false) {
                 $result = null;
             }
             $this->pdoStatement->closeCursor();
         }
         if (isset($cache, $cacheKey) && $cache instanceof CacheInterface) {
             $cache->set($cacheKey, [$result], $connection->queryCacheExpire, $connection->queryCacheTags ?: $this->getRawEntityNames());
             $cache->unlock($cacheKey);
         }
         Trace::endProfile('db.query', $token);
         Trace::trace('db.query', $token);
         return $result;
     } catch (\Exception $e) {
         $message = $e->getMessage() . "\nThe SQL being executed was: {$rawSql}";
         Trace::endProfile('db.query', $token);
         $token['valid'] = false;
         $token['exception'] = defined('ROCK_DEBUG') && ROCK_DEBUG === true ? $e : $message;
         Trace::trace('db.query', $token);
         if (isset($cache, $cacheKey) && $cache instanceof CacheInterface) {
             $cache->unlock($cacheKey);
         }
         throw new DbException($message, [], 0, $e);
     }
 }
Exemplo n.º 8
0
 protected function getCache($rawQuery, $token, &$cache, &$cacheKey)
 {
     $this->calculateCacheParams($this->connection);
     /** @var $cache CacheInterface */
     if ($this->connection->enableQueryCache) {
         $cache = Instance::ensure($this->connection->queryCache, null, [], false);
     }
     if ($cache instanceof CacheInterface) {
         $cacheKey = json_encode([__METHOD__, $this->connection->dsn, $rawQuery]);
         if (($result = $cache->get($cacheKey)) !== false) {
             Trace::increment('cache.mongodb', 'Cache query MongoDB connection: ' . $this->connection->dsn);
             Trace::endProfile('mongodb.query', $token);
             $token['cache'] = true;
             Trace::trace('mongodb.query', $token);
             return $result;
         }
     }
     return false;
 }