metra/cascading-filesystem
Composer 安装命令:
composer require metra/cascading-filesystem
包简介
A virtual filesystem formed from merging multiple directories
README 文档
README
Installation
Add this package as a dependency in your project's composer.json configuration:
require: { "koseven/cascading-filesystem": "~1.0" }
Now run composer install in the terminal at the root of your project.
You must then enable composer autoloading (if you haven't already) by requiring the autoload file:
// Enable composer autoloading require 'vendor/autoload.php';
For more information on composer please refer to its documentation.
Concept
The cascading filesystem (often abbreviated to CFS) is a collection of separate directory paths. The contents of these directories are virtually merged together creating the illusion that all of the the files are in the same directory. Files that are in latter defined directories take precedence over (and replace) files of the same location. This makes it is possible to overload any file simply by placing it in the same location of a latter directory.
For example, let's say we had these three directories in the cascading filesystem:
directory 1
|-- cat.png
|-- code
| |-- Foo.php
| |-- Bar.php
| +-- Baz.php
+-- music
+-- White & Nerdy.mp3
directory 2
|-- dog.bmp
|-- mouse.jpg
+-- code
+-- Foo.php
directory 3
|-- cat.png
+-- code
|-- Foo.php
+-- Baz.php
This would be the result when the directory's contents are virtually merged together:
root
|-- cat.png (From directory 3)
|-- dog.bmp (From directory 2)
|-- mouse.jpg (From directory 2)
|-- code
| |-- Foo.php (From directory 3)
| |-- Bar.php (From directory 1)
| +-- Baz.php (From directory 3)
+-- music
+-- White & Nerdy.mp3 (From directory 1)
Instantiation
use Kohana\CascadingFilesystem\Filesystem\CascadingFilesystem; use Doctrine\Common\Cache\ArrayCache; // Instantiate cache $cache = new ArrayCache(); // Instantiate CFS $cfs = new CascadingFilesystem($cache, [ 'directory/path/one', 'directory/path/two', 'directory/path/three', ]);
Finding Files
This finds the file path with the highest precedence in the cascading filesystem and returns its absolute location:
// Get absolute path $path = $cfs->getPath('code/foo.php');
You can also retrieve every location that the file exists, this would return an array of absolute file paths:
// Get all absolute paths $paths = $cfs->getAllPaths('code/foo.php');
This lists the files of a directory in the merged CFS:
// List directory contents $files = $cfs->listFiles('code');
Modules
Modules are really just an extended concept of a directory in the cascading filesystem. The additional functionality a module gains is that it can be initialized and classes within it can be autoloaded. Modules provide an easy way to organize your code and make any part more shareable or transportable across different applications.
Initialization
To initialize all of the enabled modules in the cascading filesystem:
use Kohana\CascadingFilesystem\Initializer\ModulesInitializer; // Initialize all modules (new ModulesInitializer($cfs))->initialize();
This should be done before you start using the modules as they may have prerequisites which are fulfilled by initialization.
Specification
If you would like your module to be initialized you must add an init.php file at the root. When the user initializes all of their modules, this init file will be included into the PHP script. This is the ideal place to execute any PHP code necessary for the module to function.
Autoloading
To enable the autoloading of classes inside of modules you must first register the autoloader class by executing its register method:
use Kohana\CascadingFilesystem\Autoloader\ModulesAutoloader; // Register Kohana module autoloader (new ModulesAutoloader($cfs))->register();
There is also a backwards compatibility autoloader for module classes which still use the old file naming convention (lowercase):
use Kohana\CascadingFilesystem\Autoloader\LegacyModulesAutoloader; // Register legacy Kohana module autoloader (new LegacyModulesAutoloader($cfs))->register();
Now the autoloader is registered you can go ahead and use any classes as if they're already included. There is also an unregister() method for unregistering an autoloader after its registration. For more precise control over registering an autoloader, you may enable its autoload method directly using spl_autoload_register().
Specification
All classes that need to be autoloaded must follow this specification:
- All classes must be placed in a
classes/directory at the root of the module. - All classes must follow the PSR-0 standard.
- All class names must be capitalized, e.g.
Foo_Bar_Baz,Teapot,Hello_World. - The class's filename and location must match the class's name exactly (including case). For example, the class
Foo_Bar_Bazmust be located atclasses/Foo/Bar/Baz.php. - Any underscore characters in the class name are converted to slashes.
If your classes do not follow this convention, they cannot be autoloaded by this package. You would have to manually include your classes or create your own autoloader.
Where to Find Modules
-
kohana-modules - A website dedicated to indexing all Kohana modules with an excellent search and refine system; created by Andrew Hutchings.
-
kohana-universe - A fairly comprehensive list of modules that are available on GitHub created by Kolanos. To get your module listed there, send him a message via GitHub.
metra/cascading-filesystem 适用场景与选型建议
metra/cascading-filesystem 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 07 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 metra/cascading-filesystem 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 metra/cascading-filesystem 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 6
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2021-07-28