mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
[Cache] Add documentation
This commit is contained in:
parent
4a6b3654eb
commit
427688fd67
1 changed files with 77 additions and 0 deletions
|
@ -1,13 +1,69 @@
|
|||
<?php
|
||||
/**
|
||||
* This file is part of RSS-Bridge, a PHP project capable of generating RSS and
|
||||
* Atom feeds for websites that don't have one.
|
||||
*
|
||||
* For the full license information, please view the UNLICENSE file distributed
|
||||
* with this source code.
|
||||
*
|
||||
* @package Core
|
||||
* @license http://unlicense.org/ UNLICENSE
|
||||
* @link https://github.com/rss-bridge/rss-bridge
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Factory class responsible for creating cache objects from a given working
|
||||
* directory.
|
||||
*
|
||||
* This class is capable of:
|
||||
* - Locating cache classes in the specified working directory (see {@see Cache::$dirCache})
|
||||
* - Creating new cache instances based on the cache's name (see {@see Cache::create()})
|
||||
*
|
||||
* The following example illustrates the intended use for this class.
|
||||
*
|
||||
* ```PHP
|
||||
* require_once __DIR__ . '/rssbridge.php';
|
||||
*
|
||||
* // Step 1: Set the working directory
|
||||
* Cache::setDir(__DIR__ . '/../caches/');
|
||||
*
|
||||
* // Step 2: Create a new instance of a cache object (based on the name)
|
||||
* $cache = Cache::create('FileCache');
|
||||
* ```
|
||||
*/
|
||||
class Cache {
|
||||
|
||||
/**
|
||||
* Holds the working directory.
|
||||
*
|
||||
* Do not access this property directly!
|
||||
* Use {@see Cache::setDir()} and {@see Cache::getDir()} instead.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
static protected $dirCache;
|
||||
|
||||
/**
|
||||
* Throws an exception when trying to create a new instance of this class.
|
||||
* Use {@see Cache::create()} to instanciate a new cache from the working
|
||||
* directory.
|
||||
*
|
||||
* @throws LogicException if called.
|
||||
*/
|
||||
public function __construct(){
|
||||
throw new \LogicException('Please use ' . __CLASS__ . '::create for new object.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new cache object from the working directory.
|
||||
*
|
||||
* @throws InvalidArgumentException if the provided name is invalid.
|
||||
* @throws Exception if no cache with the given name exist in the working
|
||||
* directory.
|
||||
* @param string $nameCache Name of the cache object.
|
||||
* @return object Instance of the cache.
|
||||
*/
|
||||
public static function create($nameCache){
|
||||
if(!static::isValidNameCache($nameCache)) {
|
||||
throw new \InvalidArgumentException('Name cache must be at least one
|
||||
|
@ -25,6 +81,14 @@ class Cache {
|
|||
return new $nameCache();
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the working directory.
|
||||
*
|
||||
* @param string $dirCache Path to a directory containing cache classes
|
||||
* @throws InvalidArgumentException if the provided path is not a valid string.
|
||||
* @throws Exception if the provided path does not exist.
|
||||
* @return void
|
||||
*/
|
||||
public static function setDir($dirCache){
|
||||
if(!is_string($dirCache)) {
|
||||
throw new \InvalidArgumentException('Dir cache must be a string.');
|
||||
|
@ -37,6 +101,13 @@ class Cache {
|
|||
self::$dirCache = $dirCache;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the current working directory.
|
||||
* The working directory must be specified with {@see Cache::setDir()}!
|
||||
*
|
||||
* @throws LogicException if the working directory was not specified.
|
||||
* @return string The current working directory.
|
||||
*/
|
||||
public static function getDir(){
|
||||
$dirCache = self::$dirCache;
|
||||
|
||||
|
@ -47,6 +118,12 @@ class Cache {
|
|||
return $dirCache;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the provided name is a valid cache name.
|
||||
*
|
||||
* @param string $nameCache The cache name.
|
||||
* @return int 1 if the name is valid, 0 if not, false if an error occurred.
|
||||
*/
|
||||
public static function isValidNameCache($nameCache){
|
||||
return preg_match('@^[A-Z][a-zA-Z0-9-]*$@', $nameCache);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue