> PHP 프레임워크 > Laravel > Laravel 프레임워크의 파이프라인 구문 분석(코드 예)

Laravel 프레임워크의 파이프라인 구문 분석(코드 예)

不言
풀어 주다: 2019-01-08 11:28:37
앞으로
3365명이 탐색했습니다.

이 기사는 Laravel 프레임워크의 파이프라인 분석(코드 예제)에 대한 것입니다. 필요한 친구가 참고할 수 있기를 바랍니다.

안녕하세요 여러분 오늘은 Laravel 프레임워크의 Pipeline을 소개하겠습니다.

코드의 구조를 매우 명확하게 만들어줄 수 있는 매우 사용하기 쉬운 컴포넌트입니다. Laravel의 미들웨어 메커니즘은 이를 기반으로 구현됩니다.

Pipeline을 통해 APO 프로그래밍을 쉽게 구현할 수 있습니다.

공식 GIT 주소

https://github.com/illuminate...

다음 코드는 제가 구현한 것의 단순화된 버전입니다. :

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를 통해 하나의 매개변수를 허용하는 익명 함수를 생성한 후 호출을 실행합니다.

간단한 사용 예시

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의 장점은 동적 추가입니다. 다른 레벨에는 영향을 주지 않으며 매우 편리하게 기능을 추가하거나 삭제할 수 있습니다.

class IpCheck
{
    public static function handle($data, \Clourse $next)
    {
        if ("IP invalid") { // IP 不合法
            throw Exception("ip invalid");
        }
        return $next($data);
    }
}

class StatusManage
{
    public static function handle($data, \Clourse $next)
    {
        // exec 可以执行初始化状态的操作
        $ret = $next($data)
        // exec 可以执行保存状态信息的操作
        return $ret;
    }
}

$pipes = [
    IpCheck::class,
    StatusManage::class,
];

(new Pipeline())->send($data)->through($pipes)->then(function($data){ "执行其它逻辑";});
로그인 후 복사

위 내용은 Laravel 프레임워크의 파이프라인 구문 분석(코드 예)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:segmentfault.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿