cache.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. * All of the items retrieved by the cache drivers.
  11. *
  12. * @var array
  13. */
  14. public static $items = array();
  15. /**
  16. * Get a cache driver instance. If no driver name is specified, the default
  17. * cache driver will be returned as defined in the cache configuration file.
  18. *
  19. * Note: Cache drivers are managed as singleton instances.
  20. *
  21. * @param string $driver
  22. * @return Cache\Driver
  23. */
  24. public static function driver($driver = null)
  25. {
  26. if (is_null($driver))
  27. {
  28. $driver = Config::get('cache.driver');
  29. }
  30. if ( ! array_key_exists($driver, static::$drivers))
  31. {
  32. switch ($driver)
  33. {
  34. case 'file':
  35. static::$drivers[$driver] = new Cache\File;
  36. break;
  37. case 'memcached':
  38. static::$drivers[$driver] = new Cache\Memcached;
  39. break;
  40. case 'apc':
  41. static::$drivers[$driver] = new Cache\APC;
  42. break;
  43. default:
  44. throw new \Exception("Cache driver [$driver] is not supported.");
  45. }
  46. }
  47. return static::$drivers[$driver];
  48. }
  49. /**
  50. * Get an item from the cache.
  51. *
  52. * @param string $key
  53. * @param mixed $default
  54. * @param string $driver
  55. * @return mixed
  56. */
  57. public static function get($key, $default = null, $driver = null)
  58. {
  59. if (isset(static::$items[$driver][$key]))
  60. {
  61. return static::$items[$driver][$key];
  62. }
  63. if (is_null($item = static::driver($driver)->get($key)))
  64. {
  65. return is_callable($default) ? call_user_func($default) : $default;
  66. }
  67. return static::$items[$driver][$key] = $item;
  68. }
  69. /**
  70. * Get an item from the cache. If the item doesn't exist in the cache, store
  71. * the default value in the cache and return it.
  72. *
  73. * @param string $key
  74. * @param mixed $default
  75. * @param int $minutes
  76. * @param string $driver
  77. * @return mixed
  78. */
  79. public static function remember($key, $default, $minutes, $driver = null)
  80. {
  81. if ( ! is_null($item = static::get($key)))
  82. {
  83. return $item;
  84. }
  85. $default = is_callable($default) ? call_user_func($default) : $default;
  86. static::driver($driver)->put($key, $default, $minutes);
  87. return $default;
  88. }
  89. /**
  90. * Pass all other methods to the default driver.
  91. *
  92. * Passing method calls to the driver instance provides a better API for the
  93. * developer. For instance, instead of saying Cache::driver()->foo(), we can
  94. * now just say Cache::foo().
  95. */
  96. public static function __callStatic($method, $parameters)
  97. {
  98. return call_user_func_array(array(static::driver(), $method), $parameters);
  99. }
  100. }