| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?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.
- */
- if (class_exists('MongoBinData', false)) {
- return;
- }
- use Alcaeus\MongoDbAdapter\TypeInterface;
- use MongoDB\BSON\Binary;
- use MongoDB\BSON\Type;
- class MongoBinData implements TypeInterface
- {
- /**
- * Generic binary data.
- * @link http://php.net/manual/en/class.mongobindata.php#mongobindata.constants.custom
- */
- const GENERIC = 0x0;
- /**
- * Function
- * @link http://php.net/manual/en/class.mongobindata.php#mongobindata.constants.func
- */
- const FUNC = 0x1;
- /**
- * Generic binary data (deprecated in favor of MongoBinData::GENERIC)
- * @link http://php.net/manual/en/class.mongobindata.php#mongobindata.constants.byte-array
- */
- const BYTE_ARRAY = 0x2;
- /**
- * Universally unique identifier (deprecated in favor of MongoBinData::UUID_RFC4122)
- * @link http://php.net/manual/en/class.mongobindata.php#mongobindata.constants.uuid
- */
- const UUID = 0x3;
- /**
- * Universally unique identifier (according to » RFC 4122)
- * @link http://php.net/manual/en/class.mongobindata.php#mongobindata.constants.custom
- */
- const UUID_RFC4122 = 0x4;
- /**
- * MD5
- * @link http://php.net/manual/en/class.mongobindata.php#mongobindata.constants.md5
- */
- const MD5 = 0x5;
- /**
- * User-defined type
- * @link http://php.net/manual/en/class.mongobindata.php#mongobindata.constants.custom
- */
- const CUSTOM = 0x80;
- /**
- * @link http://php.net/manual/en/class.mongobindata.php#mongobindata.props.bin
- * @var $bin
- */
- public $bin;
- /**
- * @link http://php.net/manual/en/class.mongobindata.php#mongobindata.props.type
- * @var $type
- */
- public $type;
- /**
- * Creates a new binary data object.
- *
- * @link http://php.net/manual/en/mongobindata.construct.php
- * @param string $data Binary data
- * @param int $type Data type
- */
- public function __construct($data, $type = 2)
- {
- if ($data instanceof Binary) {
- $this->bin = $data->getData();
- $this->type = $data->getType();
- } else {
- $this->bin = $data;
- $this->type = $type;
- }
- }
- /**
- * Returns the string "<Mongo Binary Data>". To access the contents of a MongoBinData, use the bin field.
- *
- * @return string
- */
- public function __toString()
- {
- return '<Mongo Binary Data>';
- }
- /**
- * Converts this MongoBinData to the new BSON Binary type
- *
- * @return Binary
- * @internal This method is not part of the ext-mongo API
- */
- public function toBSONType()
- {
- return new Binary($this->bin, $this->type);
- }
- }
|