PHP 디자인 모델 시리즈 specification 규격 모드

9257 단어 specification패턴
1.패턴 정의
규격 모델 은 조합 모델 의 확장 으로 구조 적 개발 에 많이 사용 된다(프로젝트 급 개발 은 거의 사용 되 지 않 는 다).여기 서 간단 한 소 개 를 한다.
규격 모드(Specification)는 조합 모드 의 확장 이 라 고 볼 수 있 습 니 다.어떤 때 는 프로젝트 중의 일부 조건 이 업무 논 리 를 결정 한다.이런 조건 들 은 특정한 관계(또는 비)로 조합 하여 업무 논 리 를 유연 하 게 맞 출 수 있다.또한 조회,여과 등 응용 장소 에서 여러 조건 을 미리 정의 한 다음 에 이런 조건 의 조합 을 통 해 조회 나 여과 을 처리 하고 논리 적 판단 문 구 를 사용 하여 처리 하 는 것 이 아니 라 전체 실현 논 리 를 간소화 할 수 있다.
이곳 의 모든 조건 은 하나의 규격 이 고 여러 개의 규격/조건 은 직렬 연결 방식 을 통 해 특정한 논리 관계 로 하나의 조합 식 규격 을 형성한다.
2.UML 도표

3.예시 코드
Item.php

<?php
namespace DesignPatterns\Behavioral\Specification;
class Item
{
protected $price;

/**
* An item must have a price
*
* @param int $price
*/
public function __construct($price)
{
$this->price = $price;
}
/**
* Get the items price
*
* @return int
*/
public function getPrice()
{
return $this->price;
}
}
SpecificationInterface.php

<?php
namespace DesignPatterns\Behavioral\Specification;
/**
*     
*/
interface SpecificationInterface
{
/**
*           
*
* @param Item $item
*
* @return bool
*/
public function isSatisfiedBy(Item $item);

/**
*          (AND)
*
* @param SpecificationInterface $spec
*/
public function plus(SpecificationInterface $spec);
/**
*          (OR)
*
* @param SpecificationInterface $spec
*/
public function either(SpecificationInterface $spec);

/**
*          (NOT)
*/
public function not();
}
AbstractSpecification.php

<?php
namespace DesignPatterns\Behavioral\Specification;

/**
*      
*/
abstract class AbstractSpecification implements SpecificationInterface
{
/**
*     Item        
*
* @param Item $item
*
* @return bool
*/
abstract public function isSatisfiedBy(Item $item);
/**
*            (AND)
*
* @param SpecificationInterface $spec
*
* @return SpecificationInterface
*/
public function plus(SpecificationInterface $spec)
{
return new Plus($this, $spec);
}
/**
*              (OR)
*
* @param SpecificationInterface $spec
*
* @return SpecificationInterface
*/
public function either(SpecificationInterface $spec)
{
return new Either($this, $spec);
}
/**
*            (NOT)
*
* @return SpecificationInterface
*/
public function not()
{
return new Not($this);
}
}
Plus.php

<?php
namespace DesignPatterns\Behavioral\Specification;
/**
*      (AND)
*/
class Plus extends AbstractSpecification
{
protected $left;
protected $right;

/**
*             
*
* @param SpecificationInterface $left
* @param SpecificationInterface $right
*/
public function __construct(SpecificationInterface $left, SpecificationInterface $right)
{
$this->left = $left;
$this->right = $right;
}
/**
*             
*
* @param Item $item
*
* @return bool
*/
public function isSatisfiedBy(Item $item)
{
return $this->left->isSatisfiedBy($item) && $this->right->isSatisfiedBy($item);
}
}
Either.php

<?php
namespace DesignPatterns\Behavioral\Specification;

/**
*      
*/
class Either extends AbstractSpecification
{

protected $left;
protected $right;
/**
*        
*
* @param SpecificationInterface $left
* @param SpecificationInterface $right
*/
public function __construct(SpecificationInterface $left, SpecificationInterface $right)
{
$this->left = $left;
$this->right = $right;
}
/**
*             
*
* @param Item $item
*
* @return bool
*/
public function isSatisfiedBy(Item $item)
{
return $this->left->isSatisfiedBy($item) || $this->right->isSatisfiedBy($item);
}
}
Not.php

<?php
namespace DesignPatterns\Behavioral\Specification;

/**
*      
*/
class Not extends AbstractSpecification
{
protected $spec;
/**
*             
*
* @param SpecificationInterface $spec
*/
public function __construct(SpecificationInterface $spec)
{
$this->spec = $spec;
}
/**
*          
*
* @param Item $item
*
* @return bool
*/
public function isSatisfiedBy(Item $item)
{
return !$this->spec->isSatisfiedBy($item);
}
}
PriceSpecification.php

<?php
namespace DesignPatterns\Behavioral\Specification;

/**
*     Item                   
*/
class PriceSpecification extends AbstractSpecification
{
protected $maxPrice;
protected $minPrice;
/**
*      
*
* @param int $maxPrice
*/
public function setMaxPrice($maxPrice)
{
$this->maxPrice = $maxPrice;
}
/**
*      
*
* @param int $minPrice
*/
public function setMinPrice($minPrice)
{
$this->minPrice = $minPrice;
}
/**
*     Item               
*
* @param Item $item
*
* @return bool
*/
public function isSatisfiedBy(Item $item)
{
if (!empty($this->maxPrice) && $item->getPrice() > $this->maxPrice) {
return false;
}
if (!empty($this->minPrice) && $item->getPrice() < $this->minPrice) {
return false;
}
return true;
}
}
4.테스트 코드
Tests/SpecificationTest.php

<?php
namespace DesignPatterns\Behavioral\Specification\Tests;
use DesignPatterns\Behavioral\Specification\PriceSpecification;
use DesignPatterns\Behavioral\Specification\Item;
/**
* SpecificationTest         
*/
class SpecificationTest extends \PHPUnit_Framework_TestCase
{
public function testSimpleSpecification()
{
$item = new Item(100);
$spec = new PriceSpecification();
$this->assertTrue($spec->isSatisfiedBy($item));
$spec->setMaxPrice(50);
$this->assertFalse($spec->isSatisfiedBy($item));
$spec->setMaxPrice(150);
$this->assertTrue($spec->isSatisfiedBy($item));
$spec->setMinPrice(101);
$this->assertFalse($spec->isSatisfiedBy($item));
$spec->setMinPrice(100);
$this->assertTrue($spec->isSatisfiedBy($item));
}
public function testNotSpecification()
{
$item = new Item(100);
$spec = new PriceSpecification();
$not = $spec->not();
$this->assertFalse($not->isSatisfiedBy($item));
$spec->setMaxPrice(50);
$this->assertTrue($not->isSatisfiedBy($item));
$spec->setMaxPrice(150);
$this->assertFalse($not->isSatisfiedBy($item));
$spec->setMinPrice(101);
$this->assertTrue($not->isSatisfiedBy($item));
$spec->setMinPrice(100);
$this->assertFalse($not->isSatisfiedBy($item));
}
public function testPlusSpecification()
{
$spec1 = new PriceSpecification();
$spec2 = new PriceSpecification();
$plus = $spec1->plus($spec2);
$item = new Item(100);
$this->assertTrue($plus->isSatisfiedBy($item));
$spec1->setMaxPrice(150);
$spec2->setMinPrice(50);
$this->assertTrue($plus->isSatisfiedBy($item));
$spec1->setMaxPrice(150);
$spec2->setMinPrice(101);
$this->assertFalse($plus->isSatisfiedBy($item));
$spec1->setMaxPrice(99);
$spec2->setMinPrice(50);
$this->assertFalse($plus->isSatisfiedBy($item));
}
public function testEitherSpecification()
{
$spec1 = new PriceSpecification();
$spec2 = new PriceSpecification();
$either = $spec1->either($spec2);
$item = new Item(100);
$this->assertTrue($either->isSatisfiedBy($item));
$spec1->setMaxPrice(150);
$spec2->setMaxPrice(150);
$this->assertTrue($either->isSatisfiedBy($item));
$spec1->setMaxPrice(150);
$spec2->setMaxPrice(0);
$this->assertTrue($either->isSatisfiedBy($item));
$spec1->setMaxPrice(0);
$spec2->setMaxPrice(150);
$this->assertTrue($either->isSatisfiedBy($item));
$spec1->setMaxPrice(99);
$spec2->setMaxPrice(99);
$this->assertFalse($either->isSatisfiedBy($item));
}
}
이상 의 내용 은 저희 가 여러분 에 게 공유 하 는 PHP 디자인 모델 시리즈 의 specification 규격 모델 입 니 다.본 고 는 여러분 에 게 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기