cache.php 2.3 KB

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