cache.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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))
  21. {
  22. $driver = Config::get('cache.driver');
  23. }
  24. if ( ! array_key_exists($driver, static::$drivers))
  25. {
  26. switch ($driver)
  27. {
  28. case 'file':
  29. return static::$drivers[$driver] = new Cache\File;
  30. case 'memcached':
  31. return static::$drivers[$driver] = new Cache\Memcached;
  32. case 'apc':
  33. return static::$drivers[$driver] = new Cache\APC;
  34. default:
  35. throw new \Exception("Cache driver [$driver] is not supported.");
  36. }
  37. }
  38. return static::$drivers[$driver];
  39. }
  40. /**
  41. * Get an item from the cache.
  42. *
  43. * @param string $key
  44. * @param mixed $default
  45. * @param string $driver
  46. * @return mixed
  47. */
  48. public static function get($key, $default = null, $driver = null)
  49. {
  50. if (is_null($driver))
  51. {
  52. $driver = Config::get('cache.driver');
  53. }
  54. if (is_null($item = static::driver($driver)->get($key)))
  55. {
  56. return is_callable($default) ? call_user_func($default) : $default;
  57. }
  58. return $item;
  59. }
  60. /**
  61. * Get an item from the cache. If the item doesn't exist in the cache, store
  62. * the default value in the cache and return it.
  63. *
  64. * @param string $key
  65. * @param mixed $default
  66. * @param int $minutes
  67. * @param string $driver
  68. * @return mixed
  69. */
  70. public static function remember($key, $default, $minutes, $driver = null)
  71. {
  72. if ( ! is_null($item = static::get($key, null, $driver))) return $item;
  73. $default = is_callable($default) ? call_user_func($default) : $default;
  74. static::driver($driver)->put($key, $default, $minutes);
  75. return $default;
  76. }
  77. /**
  78. * Pass all other methods to the default driver.
  79. *
  80. * Passing method calls to the driver instance provides a better API for the
  81. * developer. For instance, instead of saying Cache::driver()->foo(), we can
  82. * just say Cache::foo().
  83. */
  84. public static function __callStatic($method, $parameters)
  85. {
  86. return call_user_func_array(array(static::driver(), $method), $parameters);
  87. }
  88. }