<?php
/*
*
* @Author: Zuhair Mirza
* @Implementation Of Singleton Design Pattern in PHP (Practical Example)
* @Date : 12-June-2015
* @Defination : In software engineering, the singleton pattern is a design pattern that
* restricts the instantiation of a class to one object. This is useful when exactly one
* object is needed to coordinate actions across the system.
*/
/*
* Singleton classes
*/
class BookSingleton {
private $author = 'Zuhair Mirza Informative';
private $title = 'Design Patterns';
private static $book = NULL;
private static $isLoanedOut = FALSE;
private function __construct() {
}
static function borrowBook() {
if (FALSE == self::$isLoanedOut) {
if (NULL == self::$book) {
self::$book = new BookSingleton();
}
self::$isLoanedOut = TRUE;
return self::$book;
} else {
return NULL;
}
}
function returnBook(BookSingleton $bookReturned) {
self::$isLoanedOut = FALSE;
}
function getAuthor() {
return $this->author;
}
function getTitle() {
return $this->title;
}
function getAuthorAndTitle() {
return $this->getTitle() . ' by ' . $this->getAuthor();
}
}
class BookBorrower {
private $borrowedBook;
private $haveBook = FALSE;
function __construct() {
}
function getAuthorAndTitle() {
if (TRUE == $this->haveBook) {
return $this->borrowedBook->getAuthorAndTitle();
} else {
return "I don't have the book";
}
}
function borrowBook() {
$this->borrowedBook = BookSingleton::borrowBook();
if ($this->borrowedBook == NULL) {
$this->haveBook = FALSE;
} else {
$this->haveBook = TRUE;
}
}
function returnBook() {
$this->borrowedBook->returnBook($this->borrowedBook);
}
}
/*
* Initialization
*/
writeln('BEGIN TESTING SINGLETON PATTERN');
writeln('');
$bookBorrower1 = new BookBorrower();
$bookBorrower2 = new BookBorrower();
$bookBorrower1->borrowBook();
writeln('BookBorrower1 asked to borrow the book');
writeln('BookBorrower1 Author and Title: ');
writeln($bookBorrower1->getAuthorAndTitle());
writeln('');
$bookBorrower2->borrowBook();
writeln('BookBorrower2 asked to borrow the book');
writeln('BookBorrower2 Author and Title: ');
writeln($bookBorrower2->getAuthorAndTitle());
writeln('');
$bookBorrower1->returnBook();
writeln('BookBorrower1 returned the book');
writeln('');
$bookBorrower2->borrowBook();
writeln('BookBorrower2 Author and Title: ');
writeln($bookBorrower1->getAuthorAndTitle());
writeln('');
writeln('END TESTING SINGLETON PATTERN');
function writeln($line_in) {
echo $line_in . '<br/>';
}
?>
No comments:
Post a Comment