cache.php 2.3 KB

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