babicaja/chainer
Composer 安装命令:
composer require babicaja/chainer
包简介
Chain your actions and make a complex workflow more readable
README 文档
README
Chain your actions and make a complex workflow more readable
Installation
Install Chainer using composer with the following command
composer require babicaja/chainer
Usage
Chain actions and pass any type of payload through a simple interface
Chain::do(TaskOne::class) ->then(TaskTwo::class) ->then(TaskThree::class) ->run('payload');
The actions passed to the Chainer\Chain->then() method can be any of the following
Link Instance
ℹ️ Link can be an instance or fqn Chain::do(new FirstAction()) or Chain::do(FirstAction::class) |
|---|
namespace Examples; use Chainer\Chain; use Chainer\Link; class FirstAction extends Link { public function handle($payload = null) { $payload[] = __METHOD__; return $payload; } } class SecondAction extends Link { public function handle($payload = null) { $payload[] = __METHOD__; return $payload; } } $result = Chain::do(FirstAction::class) ->then(SecondAction::class) ->run(); echo json_encode($result);
Result
[
"Examples\\FirstAction::handle",
"Examples\\SecondAction::handle"
]
Chain Instance
namespace Examples; use Chainer\Chain; use Chainer\Link; class FirstAction extends Link { public function handle($payload = null) { $payload[] = __METHOD__; return $payload; } } class SecondAction extends Link { public function handle($payload = null) { $payload[] = __METHOD__; return $payload; } } $chain = Chain::do(FirstAction::class) ->then(SecondAction::class); $result = Chain::do($chain) ->then(FirstAction::class) ->run([]); echo json_encode($result);
Result
[
"Examples\\FirstAction::handle",
"Examples\\SecondAction::handle",
"Examples\\FirstAction::handle"
]
Invokable Class
ℹ️ Invokable can be an instance or fqn Chain::do(new FirstAction()) or Chain::do(FirstAction::class) |
|---|
namespace Examples; use Chainer\Chain; class FirstAction { public function __invoke($payload = null) { $payload[] = __METHOD__; return $payload; } } class SecondAction { public function __invoke($payload = null) { $payload[] = __METHOD__; return $payload; } } $result = Chain::do(FirstAction::class) ->then(SecondAction::class) ->run(); echo json_encode($result);
Result
[
"Examples\\FirstAction::__invoke",
"Examples\\SecondAction::__invoke"
]
Callback / Callable
namespace Examples; use Chainer\Chain; function helper($payload) { $payload[] = __METHOD__; return $payload; } class Util { public function method($payload) { $payload[] = __METHOD__; return $payload; } public static function staticMethod($payload) { $payload[] = __METHOD__; return $payload; } } class App { public function run() { return Chain::do(fn($payload) => $this->method($payload)) ->then(fn($payload) => self::staticMethod($payload)) ->then([new Util(), 'method']) ->then([Util::class, 'staticMethod']) ->then('Examples\helper') ->then(function ($payload) { $payload[] = __METHOD__; return $payload; }) ->run([]); } private function method($payload) { $payload[] = __METHOD__; return $payload; } private static function staticMethod($payload) { $payload[] = __METHOD__; return $payload; } } $app = new App(); echo json_encode($app->run());
Result
[
"Examples\\App::method",
"Examples\\App::staticMethod",
"Examples\\Util::method",
"Examples\\Util::staticMethod",
"Examples\\helper",
"Examples\\{closure}"
]
Contributing
Contributors:
You are more than welcome to contribute to this project. The main goal is to keep it simple because there are more than enough libraries with advance features. To take your work into consideration please create a Pull Request along the following guidelines:
## What's the purpose of this PR?
(Insert the description of the purpose of this change here)
## Impact Analysis
(What will this possibly affect?)
## Where should the tester start?
(Hints tips or tricks regarding how to test this, things to watch out for, etc)
## What are the relevant tickets?
(Is this related to a ticket/bug at the moment?)
Don't forget to write unit tests! All contributors will be listed.
babicaja/chainer 适用场景与选型建议
babicaja/chainer 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 25 次下载、GitHub Stars 达 4, 最近一次更新时间为 2020 年 10 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「flow」 「link」 「Chain」 「chain-of-responsibility」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 babicaja/chainer 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 babicaja/chainer 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 babicaja/chainer 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Chain Adapter for Secretary
A couple of handy form fields and objects for managing external and internal links on DataObjects
Put images nicley in a row
PHP library that allows linking queries from diferent physical databases using mysql pdo database connections
Custom links on your sidebar for Laravel Nova.
This package provides a generic processor chain to process a given object with processors/task (kind of a pipline, command chain pattern).
统计信息
- 总下载量: 25
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-23