cache.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php namespace System;
  2. class Cache {
  3. /**
  4. * All of the active cache drivers.
  5. *
  6. * @var Cache\Driver
  7. */
  8. public static $drivers = array();
  9. /**
  10. * Get a cache driver instance.
  11. *
  12. * If no driver name is specified, the default cache driver will be returned
  13. * as defined in the cache configuration file.
  14. *
  15. * @param string $driver
  16. * @return Cache\Driver
  17. */
  18. public static function driver($driver = null)
  19. {
  20. if (is_null($driver)) $driver = Config::get('cache.driver');
  21. if ( ! array_key_exists($driver, static::$drivers))
  22. {
  23. switch ($driver)
  24. {
  25. case 'file':
  26. return static::$drivers[$driver] = new Cache\File;
  27. case 'memcached':
  28. return static::$drivers[$driver] = new Cache\Memcached;
  29. case 'apc':
  30. return static::$drivers[$driver] = new Cache\APC;
  31. default:
  32. throw new \Exception("Cache driver [$driver] is not supported.");
  33. }
  34. }
  35. return static::$drivers[$driver];
  36. }
  37. /**
  38. * Get an item from the cache.
  39. *
  40. * @param string $key
  41. * @param mixed $default
  42. * @param string $driver
  43. * @return mixed
  44. */
  45. public static function get($key, $default = null, $driver = null)
  46. {
  47. if (is_null($item = static::driver($driver)->get($key)))
  48. {
  49. return is_callable($default) ? call_user_func($default) : $default;
  50. }
  51. return $item;
  52. }
  53. /**
  54. * Get an item from the cache. If the item doesn't exist in the cache, store
  55. * the default value in the cache and return it.
  56. *
  57. * @param string $key
  58. * @param mixed $default
  59. * @param int $minutes
  60. * @param string $driver
  61. * @return mixed
  62. */
  63. public static function remember($key, $default, $minutes, $driver = null)
  64. {
  65. if ( ! is_null($item = static::get($key, null, $driver))) return $item;
  66. $default = is_callable($default) ? call_user_func($default) : $default;
  67. static::driver($driver)->put($key, $default, $minutes);
  68. return $default;
  69. }
  70. /**
  71. * Pass all other methods to the default driver.
  72. *
  73. * Passing method calls to the driver instance provides a better API for you.
  74. * For instance, instead of saying Cache::driver()->foo(), you can just say Cache::foo().
  75. */
  76. public static function __callStatic($method, $parameters)
  77. {
  78. return call_user_func_array(array(static::driver(), $method), $parameters);
  79. }
  80. }