search
HomeBackend DevelopmentPHP TutorialAn in-depth analysis of the mediator pattern in PHP design patterns_PHP Tutorial

An in-depth analysis of the mediator pattern in PHP design patterns_PHP Tutorial

Jul 21, 2016 pm 03:07 PM
phprightencapsulationyesmodelgo deepofPurposeparseDesign Patternsthis

Mediator pattern, the purpose of this pattern is to encapsulate the interaction between a group of objects and prevent the objects from interfering with each other. The Mediator (Mediator) acts as an intermediate convergence point between Colleague objects (Colleague). Colleague objects should be loosely coupled to avoid one object pointing directly to another object. In the mediator mode, when the relationships and dependencies of objects conflict, we can use the mediator to coordinate the workflow between coupled objects. Dependencies can be established from colleagues to the mediator or from the mediator to colleagues in both directions. Dependencies can be broken using AbstractColleague or AbstractMediator.



Objects are not isolated, they must cooperate with each other to complete tasks. Although the mediator pattern can limit the interaction between objects, if abused, it can make writing aggregate classes very difficult. To give a practical example, services in Domain-Driven Design are mediators between entities. To give another PHP-related example, the Zend_Form decoration and filtering functions can actually be seen as a simple mediator between Zend_Form_Decorator and Zend_Filter instances, both of which use Zend_Validate objects for validation.

When the mediator must listen to events on colleague objects, it is usually implemented as an Observer, producing a blackboard object for some colleagues to write and others to read. Events from colleagues are pushed to the mediator, who then forwards them to other subscribed colleagues. Colleagues do not need to know each other. This architecture is successfully used in the Dojo JavaScript library released with the Zend Framework. Another benefit of this pattern is that the changes to the object are contained in the calculation method. This can be achieved by configuring different mediators, but instantiating related objects will be a loose operation, and the collaborative relationship between different containers and factories will is decentralized.

Participants:
◆Colleague: The point is its responsibilities, it only communicates with one mediator or AbstractMediator.
◆Mediator: Work together with multiple Colleagues (AbstractColleagues).
◆AbstractMediator, AbstractColleague: Optional interfaces decoupled from the real implementation of these roles, there may be more than one AbstractColleague role.
The following code implements a form input filtering process, similar to the Zend_Form_Element function.

Copy code The code is as follows:

        /** 
     * AbstractColleague. 
    */ 
    interface Filter 
    { 
 public function filter($value); 
    } 

    /** 
     * Colleague. We decide in the implementation phase 
     * that Colleagues should not know the next Colleague 
     * in the chain, resorting to a Mediator to link them together. 
     * This choice succesfully avoids a base abstract class 
     * for Filters. 
     * Remember that this is an example: it is not only 
     * Chain of Responsibility that can be alternatively implemented 
     * as a Mediator. 
    */ 
    class TrimFilter implements Filter 
    { 
  public function filter($value) 
  { 
      return trim($value); 
  } 
    }
    /**  <BR>     * Colleague.  <BR>    */  <BR>    class NullFilter implements Filter  <BR>    {  <BR> public function filter($value)  <BR> {  <BR>     return $value ? $value : '';  <BR> }  <BR>    }  <br><br>    /**  <BR>     * Colleague.  <BR>    */  <BR>    class HtmlEntitiesFilter implements Filter  <BR>    {  <BR> public function filter($value)  <BR> {  <BR>     return htmlentities($value);  <BR> }  <BR>    }<BR>
    /**  <BR>     * The Mediator. We avoid referencing it from ConcreteColleagues  <BR>     * and so the need for an interface. We leave the implementation  <BR>     * of a bidirectional channel for the Observer pattern's example.  <BR>     * This class responsibility is to store the value and coordinate  <BR>     * filters computation when they have to be applied to the value.  <BR>     * Filtering responsibilities are obviously a concern of  <BR>     * the Colleagues, which are Filter implementations.  <BR>    */  <BR>    class InputElement  <BR>    {  <BR> protected $_filters;  <BR> protected $_value;  <br><br> public function addFilter(Filter $filter)  <BR> {  <BR>     $this->_filters[] = $filter;  <BR>     return $this;  <BR> }  <br><br> public function setValue($value)  <BR> {  <BR>     $this->_value = $this->_filter($value);  <BR> }  <br><br> protected function _filter($value)  <BR> {  <BR>     foreach ($this->_filters as $filter) {  <BR>  $value = $filter->filter($value);  <BR>     }  <BR>     return $value;  <BR> }  <br><br> public function getValue()  <BR> {  <BR>     return $this->_value;  <BR> }    <BR>    }  <br><br>    $input = new InputElement();  <BR>    $input->addFilter(new NullFilter())  <BR>   ->addFilter(new TrimFilter())  <BR>   ->addFilter(new HtmlEntitiesFilter());  <BR>    $input->setValue(' You should use the <h1>-<h6> tags for your headings.');  <BR>    echo $input->getValue(), "n";<BR>




www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327553.htmlTechArticleMediator pattern, the purpose of this pattern is to encapsulate the interaction between a group of objects and prevent the objects from interacting with each other. Interference, the mediator (Mediator) acts between colleague objects (Colleague)...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How does PHP identify a user's session?How does PHP identify a user's session?May 01, 2025 am 12:23 AM

PHPidentifiesauser'ssessionusingsessioncookiesandsessionIDs.1)Whensession_start()iscalled,PHPgeneratesauniquesessionIDstoredinacookienamedPHPSESSIDontheuser'sbrowser.2)ThisIDallowsPHPtoretrievesessiondatafromtheserver.

What are some best practices for securing PHP sessions?What are some best practices for securing PHP sessions?May 01, 2025 am 12:22 AM

The security of PHP sessions can be achieved through the following measures: 1. Use session_regenerate_id() to regenerate the session ID when the user logs in or is an important operation. 2. Encrypt the transmission session ID through the HTTPS protocol. 3. Use session_save_path() to specify the secure directory to store session data and set permissions correctly.

Where are PHP session files stored by default?Where are PHP session files stored by default?May 01, 2025 am 12:15 AM

PHPsessionfilesarestoredinthedirectoryspecifiedbysession.save_path,typically/tmponUnix-likesystemsorC:\Windows\TemponWindows.Tocustomizethis:1)Usesession_save_path()tosetacustomdirectory,ensuringit'swritable;2)Verifythecustomdirectoryexistsandiswrita

How do you retrieve data from a PHP session?How do you retrieve data from a PHP session?May 01, 2025 am 12:11 AM

ToretrievedatafromaPHPsession,startthesessionwithsession_start()andaccessvariablesinthe$_SESSIONarray.Forexample:1)Startthesession:session_start().2)Retrievedata:$username=$_SESSION['username'];echo"Welcome,".$username;.Sessionsareserver-si

How can you use sessions to implement a shopping cart?How can you use sessions to implement a shopping cart?May 01, 2025 am 12:10 AM

The steps to build an efficient shopping cart system using sessions include: 1) Understand the definition and function of the session. The session is a server-side storage mechanism used to maintain user status across requests; 2) Implement basic session management, such as adding products to the shopping cart; 3) Expand to advanced usage, supporting product quantity management and deletion; 4) Optimize performance and security, by persisting session data and using secure session identifiers.

How do you create and use an interface in PHP?How do you create and use an interface in PHP?Apr 30, 2025 pm 03:40 PM

The article explains how to create, implement, and use interfaces in PHP, focusing on their benefits for code organization and maintainability.

What is the difference between crypt() and password_hash()?What is the difference between crypt() and password_hash()?Apr 30, 2025 pm 03:39 PM

The article discusses the differences between crypt() and password_hash() in PHP for password hashing, focusing on their implementation, security, and suitability for modern web applications.

How can you prevent Cross-Site Scripting (XSS) in PHP?How can you prevent Cross-Site Scripting (XSS) in PHP?Apr 30, 2025 pm 03:38 PM

Article discusses preventing Cross-Site Scripting (XSS) in PHP through input validation, output encoding, and using tools like OWASP ESAPI and HTML Purifier.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment