cache.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. return static::$drivers[$driver];
  37. }
  38. /**
  39. * Get an item from the cache.
  40. *
  41. * @param string $key
  42. * @param mixed $default
  43. * @param string $driver
  44. * @return mixed
  45. */
  46. public static function get($key, $default = null, $driver = null)
  47. {
  48. if (is_null($driver))
  49. {
  50. $driver = Config::get('cache.driver');
  51. }
  52. if (is_null($item = static::driver($driver)->get($key)))
  53. {
  54. return is_callable($default) ? call_user_func($default) : $default;
  55. }
  56. return $item;
  57. }
  58. /**
  59. * Get an item from the cache. If the item doesn't exist in the cache, store
  60. * the default value in the cache and return it.
  61. *
  62. * @param string $key
  63. * @param mixed $default
  64. * @param int $minutes
  65. * @param string $driver
  66. * @return mixed
  67. */
  68. public static function remember($key, $default, $minutes, $driver = null)
  69. {
  70. if ( ! is_null($item = static::get($key, null, $driver))) return $item;
  71. $default = is_callable($default) ? call_user_func($default) : $default;
  72. static::driver($driver)->put($key, $default, $minutes);
  73. return $default;
  74. }
  75. /**
  76. * Pass all other methods to the default driver.
  77. *
  78. * Passing method calls to the driver instance provides a better API for the
  79. * developer. For instance, instead of saying Cache::driver()->foo(), we can
  80. * just say Cache::foo().
  81. */
  82. public static function __callStatic($method, $parameters)
  83. {
  84. return call_user_func_array(array(static::driver(), $method), $parameters);
  85. }
  86. }