| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <?php
- /*
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /**
- * The connection point between MongoDB and PHP.
- * This class is used to initiate a connection and for database server commands.
- * @link http://www.php.net/manual/en/class.mongo.php
- * @deprecated This class has been DEPRECATED as of version 1.3.0.
- * Relying on this feature is highly discouraged. Please use MongoClient instead.
- * @see MongoClient
- */
- class Mongo extends MongoClient
- {
- /**
- * Dummy constructor to throw an exception
- */
- public function __construct()
- {
- $this->notImplemented();
- }
- /**
- * Get pool size for connection pools
- *
- * @link http://php.net/manual/en/mongo.getpoolsize.php
- * @return int Returns the current pool size.
- *
- * @deprecated This feature has been DEPRECATED as of version 1.2.3. Relying on this feature is highly discouraged. Please use MongoPool::getSize() instead.
- */
- public function getPoolSize()
- {
- $this->notImplemented();
- }
- /**
- * Returns the address being used by this for slaveOkay reads
- *
- * @link http://php.net/manual/en/mongo.getslave.php
- * @return bool The address of the secondary this connection is using for
- * reads. This returns NULL if this is not connected to a replica set or not yet
- * initialized.
- */
- public function getSlave()
- {
- $this->notImplemented();
- }
- /**
- * Get slaveOkay setting for this connection
- *
- * @link http://php.net/manual/en/mongo.getslaveokay.php
- * @return bool Returns the value of slaveOkay for this instance.
- */
- public function getSlaveOkay()
- {
- $this->notImplemented();
- }
- /**
- * Connects to paired database server
- *
- * @link http://www.php.net/manual/en/mongo.pairconnect.php
- * @throws MongoConnectionException
- * @return boolean
- *
- * @deprecated Pass a string of the form "mongodb://server1,server2" to the constructor instead of using this method.
- */
- public function pairConnect()
- {
- $this->notImplemented();
- }
- /**
- * Returns information about all connection pools.
- *
- * @link http://php.net/manual/en/mongo.pooldebug.php
- * @return array
- * @deprecated This feature has been DEPRECATED as of version 1.2.3. Relying on this feature is highly discouraged. Please use MongoPool::info() instead.
- */
- public function poolDebug()
- {
- $this->notImplemented();
- }
- /**
- * Change slaveOkay setting for this connection
- *
- * @link http://php.net/manual/en/mongo.setslaveokay.php
- * @param bool $ok
- * @return bool returns the former value of slaveOkay for this instance.
- */
- public function setSlaveOkay ($ok)
- {
- $this->notImplemented();
- }
- /**
- * Set the size for future connection pools.
- *
- * @link http://php.net/manual/en/mongo.setpoolsize.php
- * @param $size <p>The max number of connections future pools will be able to create. Negative numbers mean that the pool will spawn an infinite number of connections.</p>
- * @return bool Returns the former value of pool size.
- * @deprecated Relying on this feature is highly discouraged. Please use MongoPool::setSize() instead.
- */
- public function setPoolSize($size)
- {
- $this->notImplemented();
- }
- /**
- * Creates a persistent connection with a database server
- *
- * @link http://www.php.net/manual/en/mongo.persistconnect.php
- * @param string $username A username used to identify the connection.
- * @param string $password A password used to identify the connection.
- * @throws MongoConnectionException
- * @return boolean If the connection was successful.
- * @deprecated Pass array("persist" => $id) to the constructor instead of using this method.
- */
- public function persistConnect($username = "", $password = "")
- {
- $this->notImplemented();
- }
- /**
- * Creates a persistent connection with paired database servers
- *
- * @link http://www.php.net/manual/en/mongo.pairpersistconnect.php
- * @param string $username A username used to identify the connection.
- * @param string $password A password used to identify the connection.
- * @throws MongoConnectionException
- * @return boolean If the connection was successful.
- * @deprecated Pass "mongodb://server1,server2" and array("persist" => $id) to the constructor instead of using this method.
- */
- public function pairPersistConnect($username = "", $password = "")
- {
- $this->notImplemented();
- }
- /**
- * Connects with a database server
- *
- * @link http://www.php.net/manual/en/mongo.connectutil.php
- * @throws MongoConnectionException
- * @return boolean If the connection was successful.
- */
- protected function connectUtil()
- {
- $this->notImplemented();
- }
- /**
- * Check if there was an error on the most recent db operation performed
- *
- * @link http://www.php.net/manual/en/mongo.lasterror.php
- * @return array|null Returns the error, if there was one, or NULL.
- * @deprecated Use MongoDB::lastError() instead.
- */
- public function lastError()
- {
- $this->notImplemented();
- }
- /**
- * Checks for the last error thrown during a database operation
- *
- * @link http://www.php.net/manual/en/mongo.preverror.php
- * @return array Returns the error and the number of operations ago it occurred.
- * @deprecated Use MongoDB::prevError() instead.
- */
- public function prevError()
- {
- $this->notImplemented();
- }
- /**
- * Clears any flagged errors on the connection
- *
- * @link http://www.php.net/manual/en/mongo.reseterror.php
- * @return array Returns the database response.
- * @deprecated Use MongoDB::resetError() instead.
- */
- public function resetError()
- {
- $this->notImplemented();
- }
- /**
- * Creates a database error on the database.
- *
- * @link http://www.php.net/manual/en/mongo.forceerror.php
- * @return boolean The database response.
- * @deprecated Use MongoDB::forceError() instead.
- */
- public function forceError()
- {
- $this->notImplemented();
- }
- protected function notImplemented()
- {
- throw new \Exception('The Mongo class is deprecated and not supported through mongo-php-adapter');
- }
- }
|