Laravelパイプラインの解釈

藏色散人
リリース: 2021-06-23 09:29:28
転載
2149 人が閲覧しました

以下は、laravel チュートリアル コラムからの Laravel Pipeline の説明です。困っている友人の役に立てば幸いです。

皆さん、こんにちは。今日は Laravel フレームワークのパイプラインを紹介します。
これは、コードの構造を非常に明確にすることができる、非常に使いやすいコンポーネントです。 Laravelのミドルウェア機構はそれをベースに実装されています。

パイプラインを使用すると、APO プログラミングを簡単に実装できます。

公式 GIT アドレス

https://github.com/illuminate/pipeline

次のコードは、私の実装の簡略化されたバージョンです:

class Pipeline
{

    /**
     * The method to call on each pipe
     * @var string
     */
    protected $method = 'handle';

    /**
     * The object being passed throw the pipeline
     * @var mixed
     */
    protected $passable;

    /**
     * The array of class pipes
     * @var array
     */
    protected $pipes = [];

    /**
     * Set the object being sent through the pipeline
     *
     * @param $passable
     * @return $this
     */
    public function send($passable)
    {
        $this->passable = $passable;
        return $this;
    }

    /**
     * Set the method to call on the pipes
     * @param array $pipes
     * @return $this
     */
    public function through($pipes)
    {
        $this->pipes = $pipes;
        return $this;
    }

    /**
     * @param \Closure $destination
     * @return mixed
     */
    public function then(\Closure $destination)
    {
        $pipeline = array_reduce(array_reverse($this->pipes), $this->getSlice(), $destination);
        return $pipeline($this->passable);
    }


    /**
     * Get a Closure that represents a slice of the application onion
     * @return \Closure
     */
    protected function getSlice()
    {
        return function($stack, $pipe){
            return function ($request) use ($stack, $pipe) {
                return $pipe::{$this->method}($request, $stack);
            };
        };
    }

}
ログイン後にコピー

このタイプの主なロジックは then メソッドと getSlice メソッドにあります。 array_reduce を使用して、1 つのパラメーターを受け入れる匿名関数を生成し、呼び出しを実行します。

簡単な使用例

class ALogic
{
    public static function handle($data, \Clourse $next)
    {
        print "开始 A 逻辑";
        $ret = $next($data);
        print "结束 A 逻辑";
        return $ret;
    }
}

class BLogic
{
    public static function handle($data, \Clourse $next)
    {
        print "开始 B 逻辑";
        $ret = $next($data);
        print "结束 B 逻辑";
        return $ret;
    }
}

class CLogic
{
    public static function handle($data, \Clourse $next)
    {
        print "开始 C 逻辑";
        $ret = $next($data);
        print "结束 C 逻辑";
        return $ret;
    }
}
ログイン後にコピー
$pipes = [
    ALogic::class,
    BLogic::class,
    CLogic::class
];

$data = "any things";
(new Pipeline())->send($data)->through($pipes)->then(function($data){ print $data;});
ログイン後にコピー
実行結果:
"开始 A 逻辑"
"开始 B 逻辑"
"开始 C 逻辑"
"any things"
"结束 C 逻辑"
"结束 B 逻辑"
"结束 A 逻辑"
ログイン後にコピー

AOP の例

AOP の利点は、他のレイヤーに影響を与えることなく関数を動的に追加できることです。 、非常に便利に機能を追加または削除できます。

えええええ

以上がLaravelパイプラインの解釈の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:segmentfault.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート