======================================
MongoDB\\GridFS\\Bucket::__construct()
======================================

.. default-domain:: mongodb

.. contents:: On this page
   :local:
   :backlinks: none
   :depth: 1
   :class: singlecol

Definition
----------

.. phpmethod:: MongoDB\GridFS\Bucket::__construct()

   Constructs a new :phpclass:`Bucket <MongoDB\GridFS\Bucket>` instance.

   .. code-block:: php

      function __construct(
          MongoDB\Driver\Manager $manager,
          string $databaseName,
          array $options = []
      )

Parameters
----------

``$manager`` : :php:`MongoDB\Driver\Manager <class.mongodb-driver-manager>`
  The :php:`Manager <mongodb-driver-manager>` instance from the driver. The
  manager maintains connections between the driver and your MongoDB instances.

``$databaseName`` : string
  The name of the database.

``$options`` : array
  An array specifying the desired options.

  .. list-table::
     :header-rows: 1
     :widths: 20 20 80

     * - Name
       - Type
       - Description

     * - bucketName
       - string
       - The bucket name, which will be used as a prefix for the files and
         chunks collections. Defaults to ``"fs"``.

     * - chunkSizeBytes
       - integer
       - The chunk size in bytes. Defaults to ``261120`` (i.e. 255 KiB).

     * - codec
       - MongoDB\\Codec\\DocumentCodec
       - The default :doc:`codec </tutorial/codecs>` to use for bucket methods
         that return a file document (e.g. :phpmethod:`MongoDB\GridFS\Bucket::find()`).

         .. versionadded:: 1.17

     * - disableMD5
       - boolean
       - Whether to disable automatic MD5 generation when storing files.

         Defaults to ``false``. Only ``true`` will be supported in 2.0.

         .. versionadded:: 1.4

     * - readConcern
       - :php:`MongoDB\Driver\ReadConcern <class.mongodb-driver-readconcern>`
       - The default read concern to use for bucket operations. Defaults to the
         manager's read concern.

     * - readPreference
       - :php:`MongoDB\Driver\ReadPreference <class.mongodb-driver-readpreference>`
       - The default read preference to use for bucket operations. Defaults to
         the manager's read preference.

     * - typeMap
       - array
       - Default :php:`type map
         <manual/en/mongodb.persistence.deserialization.php#mongodb.persistence.typemaps>`
         to apply to cursors, which determines how BSON documents are converted
         to PHP values. The library uses the following type map by default:

         .. code-block:: php

            [
                'array' => 'MongoDB\Model\BSONArray',
                'document' => 'MongoDB\Model\BSONDocument',
                'root' => 'MongoDB\Model\BSONDocument',
            ]

     * - writeConcern
       - :php:`MongoDB\Driver\WriteConcern <class.mongodb-driver-writeconcern>`
       - The default write concern to use for bucket operations. Defaults to the
         manager's write concern.

Errors/Exceptions
-----------------

.. include:: /includes/extracts/error-invalidargumentexception.rst

Behavior
--------

If you construct a Bucket explicitly, the Bucket inherits any options
from the :php:`MongoDB\Driver\Manager <class.mongodb-driver-manager>` object.
If you select the Bucket from a :phpclass:`Database <MongoDB\Database>` object,
the Bucket inherits its options from that object.

Examples
--------

.. code-block:: php

   <?php

   $bucket = (new MongoDB\Client)->test->selectGridFSBucket();

   var_dump($bucket);

The output would then resemble:

.. code-block:: none

   object(MongoDB\GridFS\Bucket)#3053 (2) {
     ["bucketName"]=>
     string(4) "test"
     ["databaseName"]=>
     string(11) "phplib_test"
   }

See Also
--------

- :phpmethod:`MongoDB\Database::selectGridFSBucket()`
