class FilesystemManager implements Factory mixin Filesystem mixin FilesystemAdapter

Traits

Constants

protected ON_DEMAND_DISK_NAME

The logical name used while resolving on-demand disks.

protected GCS_CLIENT_OPTIONS

Google Cloud Storage client constructor options supported by the installed SDK.

Properties

protected Closure> $releaseCallbacks from  HasPoolProxy
static protected null|list<string> $s3ArgumentNames
protected array $disks

The array of resolved filesystem drivers.

protected array $customCreators

The registered custom driver creators.

protected array $poolables

The array of drivers which will be wrapped as pool proxies.

Methods

mixed
createPoolProxy(string $driver, Closure $resolver, PoolDefinition $definition, string $proxyClass)

Create a pool proxy for an immutable definition.

poolDefinition(string $resource, array $poolConfig, array $fingerprintSource)

Build a namespaced pool definition for a pooled resource.

poolFactory()

Get the shared object-pool factory.

setReleaseCallback(string $driver, Closure $callback)

Set the release callback for a pooled driver.

Closure|null
getReleaseCallback(string $driver)

Get the release callback for a pooled driver.

addPoolable(string $driver)

Add a driver to the poolable-driver list.

removePoolable(string $driver)

Remove a driver from the poolable-driver list.

array
getPoolables()

Get the poolable-driver list.

setPoolables(array $poolables)

Set the poolable-driver list.

Closure|null
bindCallbackToSelf(Closure $callback)

Bind the provided callback to the class instance.

__construct(Container $app)

Create a new filesystem manager instance.

drive(UnitEnum|string|null $name = null)

Get a filesystem instance.

disk(UnitEnum|string|null $name = null)

Get a filesystem instance.

build(array|string $config)

Build an on-demand disk.

get(string $name)

Attempt to get the disk from the local cache.

resolve(string $name, array|null $config = null)

Resolve the given disk.

callCustomCreator(array $config)

Call a custom driver creator.

createDriverPooledDisk(string $driver, array $config, string|null $name, Closure $resolver)

Create a whole-driver pooled disk for a resource the framework cannot split.

createClientPooledDisk(string $driver, array $config)

Create a client-pooled disk for a built-in cloud driver.

diskPoolDefinition(string $driver, array $config, string|null $name)

Derive the immutable pool definition for a disk configuration.

createLocalDriver(array $config, string $name = 'local')

Create an instance of the local driver.

createFtpDriver(array $config)

Create an instance of the ftp driver.

createSftpDriver(array $config)

Create an instance of the sftp driver.

createS3Driver(array $config)

Create an instance of the Amazon S3 driver.

array
s3ClientConfig(array $config)

Derive the S3 client construction config from a disk config.

static array
s3ArgumentNames()

Get the S3 client constructor argument names.

S3Client
createS3Client(array $clientConfig)

Create an S3 client from normalized client config.

buildS3Disk(S3Client $client, array $config)

Build an S3 disk adapter stack around a client.

array
formatS3Config(array $config)

Format the given S3 configuration with the default options.

createGcsDriver(array $config)

Create an instance of the Google Cloud Storage driver.

array
gcsClientConfig(array $config)

Derive the Google Cloud Storage client construction config from a disk config.

StorageClient
createGcsClient(array $clientConfig)

Create a Google Cloud Storage client from normalized client config.

buildGcsDisk(StorageClient $client, array $config)

Build a Google Cloud Storage disk adapter stack around a client.

array
formatGcsConfig(array $config)

Format the given GCS configuration with the default options.

array
clientConfigBlock(array $config, array $supportedKeys)

Validate and return an explicit SDK client-option block.

createScopedDriver(array $config)

Create a scoped driver.

array
expandScopedConfig(array $config)

Expand a scoped disk into the effective parent-disk configuration.

FilesystemOperator
createFlysystem(FilesystemAdapter $adapter, array $config)

Create a Flysystem instance with the given adapter.

set(string $name, mixed $disk)

Set the given disk instance.

array
getConfig(string $name)

Get the filesystem connection configuration.

string
getDefaultDriver()

Get the default driver name.

forgetDisk(array|string $disk)

Unset the given disk instances.

void
purge(string|null $name = null)

Disconnect the given disk, remove it from local cache, and close its pool.

extend(string $driver, Closure $callback, bool $poolable = false)

Register a custom driver creator Closure.

setApplication(Container $app)

Set the application instance used by the manager.

static void
flushState()

Flush all static state.

mixed
__call(string $method, array $parameters)

Dynamically call the default driver instance.

Details

in HasPoolProxy at line 24
protected mixed createPoolProxy(string $driver, Closure $resolver, PoolDefinition $definition, string $proxyClass)

Create a pool proxy for an immutable definition.

Parameters

string $driver
Closure $resolver
PoolDefinition $definition
string $proxyClass

Return Value

mixed

in HasPoolProxy at line 45
protected PoolDefinition poolDefinition(string $resource, array $poolConfig, array $fingerprintSource)

Build a namespaced pool definition for a pooled resource.

Parameters

string $resource
array $poolConfig
array $fingerprintSource

Return Value

PoolDefinition

at line 685
protected Factory poolFactory()

Get the shared object-pool factory.

Return Value

Factory

in HasPoolProxy at line 71
HasPoolProxy setReleaseCallback(string $driver, Closure $callback)

Set the release callback for a pooled driver.

Boot-only. The callback persists on the manager for the worker lifetime and is captured by every subsequently created proxy for the driver.

Parameters

string $driver
Closure $callback

Return Value

HasPoolProxy

in HasPoolProxy at line 81
Closure|null getReleaseCallback(string $driver)

Get the release callback for a pooled driver.

Parameters

string $driver

Return Value

Closure|null

in HasPoolProxy at line 93
HasPoolProxy addPoolable(string $driver)

Add a driver to the poolable-driver list.

Boot-only. The list persists on the manager for the worker lifetime and is consulted on subsequent driver creation. Per-request use races across coroutines and does not affect already-cached drivers.

Parameters

string $driver

Return Value

HasPoolProxy

in HasPoolProxy at line 109
HasPoolProxy removePoolable(string $driver)

Remove a driver from the poolable-driver list.

Boot-only. The list persists on the manager for the worker lifetime and is consulted on subsequent driver creation. Per-request use races across coroutines and does not affect already-cached drivers.

Parameters

string $driver

Return Value

HasPoolProxy

in HasPoolProxy at line 126
array getPoolables()

Get the poolable-driver list.

Return Value

array

in HasPoolProxy at line 138
HasPoolProxy setPoolables(array $poolables)

Set the poolable-driver list.

Boot-only. The list persists on the manager for the worker lifetime and is consulted on subsequent driver creation. Per-request use races across coroutines and does not affect already-cached drivers.

Parameters

array $poolables

Return Value

HasPoolProxy

protected Closure|null bindCallbackToSelf(Closure $callback)

Bind the provided callback to the class instance.

Parameters

Closure $callback

Return Value

Closure|null

Exceptions

ReflectionException

at line 101
__construct(Container $app)

Create a new filesystem manager instance.

Parameters

Container $app

at line 109
Filesystem drive(UnitEnum|string|null $name = null)

Get a filesystem instance.

Parameters

UnitEnum|string|null $name

Return Value

Filesystem

at line 117
Filesystem disk(UnitEnum|string|null $name = null)

Get a filesystem instance.

Parameters

UnitEnum|string|null $name

Return Value

Filesystem

at line 133
Filesystem build(array|string $config)

Build an on-demand disk.

Parameters

array|string $config

Return Value

Filesystem

at line 144
protected Filesystem get(string $name)

Attempt to get the disk from the local cache.

Parameters

string $name

Return Value

Filesystem

at line 154
protected Filesystem resolve(string $name, array|null $config = null)

Resolve the given disk.

Parameters

string $name
array|null $config

Return Value

Filesystem

Exceptions

InvalidArgumentException

at line 202
protected Filesystem callCustomCreator(array $config)

Call a custom driver creator.

Parameters

array $config

Return Value

Filesystem

at line 218
protected FilesystemPoolProxy createDriverPooledDisk(string $driver, array $config, string|null $name, Closure $resolver)

Create a whole-driver pooled disk for a resource the framework cannot split.

Parameters

string $driver
array $config
string|null $name
Closure $resolver

Return Value

FilesystemPoolProxy

at line 236
protected ClientPooledFilesystem createClientPooledDisk(string $driver, array $config)

Create a client-pooled disk for a built-in cloud driver.

Parameters

string $driver
array $config

Return Value

ClientPooledFilesystem

at line 270
protected PoolDefinition diskPoolDefinition(string $driver, array $config, string|null $name)

Derive the immutable pool definition for a disk configuration.

Parameters

string $driver
array $config
string|null $name

Return Value

PoolDefinition

at line 287
Filesystem createLocalDriver(array $config, string $name = 'local')

Create an instance of the local driver.

Parameters

array $config
string $name

Return Value

Filesystem

at line 320
Filesystem createFtpDriver(array $config)

Create an instance of the ftp driver.

Parameters

array $config

Return Value

Filesystem

at line 335
Filesystem createSftpDriver(array $config)

Create an instance of the sftp driver.

Parameters

array $config

Return Value

Filesystem

at line 355
Cloud createS3Driver(array $config)

Create an instance of the Amazon S3 driver.

Parameters

array $config

Return Value

Cloud

at line 366
protected array s3ClientConfig(array $config)

Derive the S3 client construction config from a disk config.

Parameters

array $config

Return Value

array

at line 384
static protected array s3ArgumentNames()

Get the S3 client constructor argument names.

The SDK argument set is immutable for the worker's installed version.

Return Value

array

at line 392
protected S3Client createS3Client(array $clientConfig)

Create an S3 client from normalized client config.

Parameters

array $clientConfig

Return Value

S3Client

at line 400
protected AwsS3V3Adapter buildS3Disk(S3Client $client, array $config)

Build an S3 disk adapter stack around a client.

Parameters

S3Client $client
array $config

Return Value

AwsS3V3Adapter

at line 425
protected array formatS3Config(array $config)

Format the given S3 configuration with the default options.

Parameters

array $config

Return Value

array

at line 446
Cloud createGcsDriver(array $config)

Create an instance of the Google Cloud Storage driver.

Parameters

array $config

Return Value

Cloud

at line 457
protected array gcsClientConfig(array $config)

Derive the Google Cloud Storage client construction config from a disk config.

Parameters

array $config

Return Value

array

at line 470
protected StorageClient createGcsClient(array $clientConfig)

Create a Google Cloud Storage client from normalized client config.

Parameters

array $clientConfig

Return Value

StorageClient

at line 478
protected GoogleCloudStorageAdapter buildGcsDisk(StorageClient $client, array $config)

Build a Google Cloud Storage disk adapter stack around a client.

Parameters

StorageClient $client
array $config

Return Value

GoogleCloudStorageAdapter

at line 512
protected array formatGcsConfig(array $config)

Format the given GCS configuration with the default options.

Parameters

array $config

Return Value

array

at line 531
protected array clientConfigBlock(array $config, array $supportedKeys)

Validate and return an explicit SDK client-option block.

Parameters

array $config
array $supportedKeys

Return Value

array

at line 556
Filesystem createScopedDriver(array $config)

Create a scoped driver.

Parameters

array $config

Return Value

Filesystem

Exceptions

InvalidArgumentException

at line 564
protected array expandScopedConfig(array $config)

Expand a scoped disk into the effective parent-disk configuration.

Parameters

array $config

Return Value

array

at line 635
protected FilesystemOperator createFlysystem(FilesystemAdapter $adapter, array $config)

Create a Flysystem instance with the given adapter.

Parameters

FilesystemAdapter $adapter
array $config

Return Value

FilesystemOperator

at line 667
FilesystemManager set(string $name, mixed $disk)

Set the given disk instance.

Boot or tests only. Mutates the singleton's disk cache; concurrent coroutines may already hold a reference to the prior disk and next resolution will return the replacement. Any shared pool remains available until its idle TTL expires or purge() invalidates it.

Parameters

string $name
mixed $disk

Return Value

FilesystemManager

at line 677
protected array getConfig(string $name)

Get the filesystem connection configuration.

Parameters

string $name

Return Value

array

at line 693
string getDefaultDriver()

Get the default driver name.

Return Value

string

at line 706
FilesystemManager forgetDisk(array|string $disk)

Unset the given disk instances.

Boot or tests only. Mutates the singleton's disk cache; concurrent coroutines may already hold a reference to the disk and next resolution will rebuild a wrapper. Shared pools remain available until their idle TTL expires or purge() deliberately invalidates them.

Parameters

array|string $disk

Return Value

FilesystemManager

at line 722
void purge(string|null $name = null)

Disconnect the given disk, remove it from local cache, and close its pool.

Boot or tests only, plus operational recovery of broken pooled resources. Closing deliberately invalidates a shared pool; other converged disks acquire a fresh pool on their next operation.

Parameters

string|null $name

Return Value

void

at line 758
FilesystemManager extend(string $driver, Closure $callback, bool $poolable = false)

Register a custom driver creator Closure.

Boot-only. The callback persists in the singleton's customCreators array (and the poolable list if $poolable is true) for the worker lifetime and applies to every subsequent disk resolution.

Parameters

string $driver
Closure $callback
bool $poolable

Return Value

FilesystemManager

at line 782
FilesystemManager setApplication(Container $app)

Set the application instance used by the manager.

Tests only. Swaps the singleton's container reference; per-request use races across coroutines and breaks every concurrent filesystem operation.

Parameters

Container $app

Return Value

FilesystemManager

at line 792
static void flushState()

Flush all static state.

Return Value

void

at line 802
mixed __call(string $method, array $parameters)

Dynamically call the default driver instance.

Parameters

string $method
array $parameters

Return Value

mixed