cache.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php namespace System;
  2. class Cache {
  3. /**
  4. * The active cache drivers.
  5. *
  6. * @var Cache\Driver
  7. */
  8. private static $drivers = array();
  9. /**
  10. * Get a cache driver instance. Cache drivers are singletons.
  11. *
  12. * @param string $driver
  13. * @return Cache\Driver
  14. */
  15. public static function driver($driver = null)
  16. {
  17. if (is_null($driver))
  18. {
  19. $driver = Config::get('cache.driver');
  20. }
  21. if ( ! array_key_exists($driver, static::$drivers))
  22. {
  23. static::$drivers[$driver] = Cache\Factory::make($driver);
  24. }
  25. return static::$drivers[$driver];
  26. }
  27. /**
  28. * Get an item from the cache.
  29. *
  30. * @param string $key
  31. * @param mixed $default
  32. * @param string $driver
  33. * @return mixed
  34. */
  35. public static function get($key, $default = null, $driver = null)
  36. {
  37. $item = static::driver($driver)->get($key);
  38. if (is_null($item))
  39. {
  40. return is_callable($default) ? call_user_func($default) : $default;
  41. }
  42. return $item;
  43. }
  44. /**
  45. * Get an item from the cache. If it doesn't exist, store the default value
  46. * in the cache and return it.
  47. *
  48. * @param string $key
  49. * @param mixed $default
  50. * @param int $minutes
  51. * @param string $driver
  52. * @return mixed
  53. */
  54. public static function maybe($key, $default, $minutes, $driver = null)
  55. {
  56. if ( ! is_null($item = static::get($key)))
  57. {
  58. return $item;
  59. }
  60. $default = is_callable($default) ? call_user_func($default) : $default;
  61. static::driver($driver)->put($key, $default, $minutes);
  62. return $default;
  63. }
  64. /**
  65. * Pass all other methods to the default driver.
  66. *
  67. * Passing method calls to the driver instance provides a better API for the
  68. * developer. For instance, instead of saying Cache::driver()->foo(), we can
  69. * now just say Cache::foo().
  70. */
  71. public static function __callStatic($method, $parameters)
  72. {
  73. return call_user_func_array(array(static::driver(), $method), $parameters);
  74. }
  75. }