原型模式中主要角色
抽象原型(Prototype)角色:聲明一個複製自己的介面
具體原型(Concrete Prototype)角色:實現一個複製自己的操作
當一個類大部分都是相同的只有部分是不同的時候,如果需要大量這個類的對象,每次都重複執行個體化那些相同的部分是開銷很大的,而如果clone之前建立對象的那些相同的部分,就可以節約開銷。
針對php的一種實現方式就是__construct()和initialize函數分開分別處理這個類的初始化,construct裡面放prototype也就是公用的部分,initialize裡面是每個對象特殊的部分。這樣我們先建立一個類不initialize,以後每次clone這個類再進行initialize就可以了。
在zend framework官方手冊裡面提到了這個http://framework.zend.com/manual/2.0/en/user-guide/database-and-models.html,但是沒有細講,下面我來分析一下
一、引入
在zf2的model裡面有一個albumTable類,相當於一個操作資料庫動作的助手類,裡面用到了tablegateway。
為了每次初始化albumtable都是相同的一個類,將初始化工作放到了根目錄的module.php檔案的getServiceConfig(),其中用到原廠模式,並且通過回呼函數,當每次ServiceManager($sm)需要執行個體化一個對象的時候會自動調用建立一個alumTable。下面代碼我們可以看出,建立一個albumTable還需要用相同的方式建立一個AlbumTableGateWay,這個類就用到了我們所要講的原型模式。
二、代碼詳解
public function getServiceConfig() { return array( 'factories' => array( 'Album\Model\AlbumTable' => function($sm) { $tableGateway = $sm->get('AlbumTableGateway'); $table = new AlbumTable($tableGateway); return $table; }, 'AlbumTableGateway' => function ($sm) { $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter'); $resultSetPrototype = new ResultSet(); $resultSetPrototype->setArrayObjectPrototype(new Album());//這個就是一個不變的原型 return new TableGateway('album', $dbAdapter, null, $resultSetPrototype);//傳入到TableGateWay的建構函式中去 }, ), ); }
注意並不是TableGateWay運用了原型模式而是ResultSet這個類運用了。每當tablegateway調用select()或者insert()等方法的時候都會建立一個ResultSet用來表示結果,這些ResultSet中公用部分被clone,而獨特的部分類如data就會被initialize。
三、更多程式碼範例
為了更清晰得瞭解這個原型,我們先拋開zend這個大架構,看一個完整的程式碼範例。樣本來自
PHP Constructor Best Practices And The Prototype Pattern
這篇文章關於prototype pattern的部分前半部分其實是混雜怎樣在建構函式中運用繼承來提高擴充性,兩個模式看起來可能不太好理解,我們直接看最後的代碼關於prototype pattern的部分。
<?php//架構中很常見的adapter類,用來適配各種資料庫,封裝一些基本資料庫連接操作。//相當於上面代碼中的adapter類class DbAdapter { public function fetchAllFromTable($table) { return $arrayOfData; }}//運用prototype pattern的類,注意construct和initialize是分開的//相當於上面zend 代碼裡面的ResultSet類class RowGateway { public function __construct(DbAdapter $dbAdapter, $tableName) { $this->dbAdapter = $dbAdapter; $this->tableName = $tableName; } public function initialize($data) { $this->data = $data; } /** * Both methods require access to the database adapter * to fulfill their duties */ public function save() {} public function delete() {} public function refresh() {}}//相當於上面代碼中的TableGateway類,關於gateway可以具體去瞭解一下。class UserRepository { public function __construct(DbAdapter $dbAdapter, RowGateway $rowGatewayPrototype = null) { $this->dbAdapter = $dbAdapter; $this->rowGatewayPrototype = ($rowGatewayPrototype) ? new RowGateway($this->dbAdapter, 'user') } public function getUsers() { $rows = array(); foreach ($this->dbAdapter->fetchAllFromTable('user') as $rowData) { $rows[] = $row = clone $this->rowGatewayPrototype; $row->initialize($rowData); } return $rows; }}
這幾個類其實和上面zend代碼中的類是對應的
Dbadapter -- adpater
RowGateWay -- ResultSet
UserRepository - TableGateWay
具體看代碼中的注釋。
這裡的RowGateWay可以很明顯的看出在getusers中需要大量的執行個體化,那麼原型模式就是很必要的了。
下面是運用這個類的代碼
class ReadWriteRowGateway extends RowGateway { public function __construct(DbAdapter $readDbAdapter, DbAdapter $writeDbAdapter, $tableName) { $this->readDbAdapter = $readDbAdapter; parent::__construct($writeDbAdapter, $tableName); } public function refresh() { // utilize $this->readDbAdapter instead of $this->dbAdapter in RowGateway base implementation }}// usage:$userRepository = new UserRepository( $dbAdapter, new ReadWriteRowGateway($readDbAdapter, $writeDbAdapter, 'user'));$users = $userRepository->getUsers();$user = $users[0]; // instance of ReadWriteRowGateway with a specific row of data from the db
以上內容是小編給大家介紹的php樣本詳解Constructor Prototype Pattern 原型模式,希望大家喜歡。