cache.php 2.3 KB

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