cache.inc 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?php
  2. /**
  3. * @file
  4. * Load Views' data so that it knows what is available to build queries from.
  5. */
  6. /**
  7. * Fetch Views' data from the cache
  8. *
  9. * @param $move
  10. * Under certain circumstances it makes sense to not get the moved table, but the old one.
  11. * One example is views_get_handler.
  12. */
  13. function _views_fetch_data($table = NULL, $move = TRUE, $reset = FALSE) {
  14. $cache = &drupal_static(__FUNCTION__ . '_cache');
  15. $recursion_protection = &drupal_static(__FUNCTION__ . '_recursion_protected');
  16. $fully_loaded = &drupal_static(__FUNCTION__ . '_fully_loaded');
  17. if ($reset) {
  18. $cache = NULL;
  19. $fully_loaded = FALSE;
  20. }
  21. if ($table) {
  22. if (!isset($cache[$table])) {
  23. $cid = 'views_data:' . $table;
  24. $data = views_cache_get($cid, TRUE);
  25. if (!empty($data->data)) {
  26. $cache[$table] = $data->data;
  27. }
  28. else {
  29. // No cache entry, rebuild.
  30. $cache = _views_fetch_data_build();
  31. $fully_loaded = TRUE;
  32. }
  33. }
  34. if (isset($cache[$table])) {
  35. if (isset($cache[$table]['moved to']) && $move) {
  36. $moved_table = $cache[$table]['moved to'];
  37. if (!empty($recursion_protection[$table])) {
  38. // recursion detected!
  39. return NULL;
  40. }
  41. $recursion_protection[$table] = TRUE;
  42. $data = _views_fetch_data($moved_table);
  43. $recursion_protection = array();
  44. return $data;
  45. }
  46. return $cache[$table];
  47. }
  48. }
  49. else {
  50. if (!$fully_loaded) {
  51. $data = views_cache_get('views_data', TRUE);
  52. if (!empty($data->data)) {
  53. $cache = $data->data;
  54. }
  55. if (empty($cache)) {
  56. $cache = _views_fetch_data_build();
  57. }
  58. $fully_loaded = TRUE;
  59. }
  60. return $cache;
  61. }
  62. // Return an empty array if there is no match.
  63. return array();
  64. }
  65. /**
  66. * Build and set the views data cache if empty.
  67. */
  68. function _views_fetch_data_build() {
  69. views_include_handlers();
  70. $cache = module_invoke_all('views_data');
  71. foreach (module_implements('views_data_alter') as $module) {
  72. $function = $module . '_views_data_alter';
  73. $function($cache);
  74. }
  75. _views_data_process_entity_types($cache);
  76. // Keep a record with all data.
  77. views_cache_set('views_data', $cache, TRUE);
  78. // Save data in seperate cache entries.
  79. foreach ($cache as $key => $data) {
  80. $cid = 'views_data:' . $key;
  81. views_cache_set($cid, $data, TRUE);
  82. }
  83. return $cache;
  84. }
  85. /**
  86. * Links tables having an 'entity type' specified to the respective generic entity-type tables.
  87. */
  88. function _views_data_process_entity_types(&$data) {
  89. foreach ($data as $table_name => $table_info) {
  90. // Add in a join from the entity-table if an entity-type is given.
  91. if (!empty($table_info['table']['entity type'])) {
  92. $entity_table = 'views_entity_' . $table_info['table']['entity type'];
  93. $data[$entity_table]['table']['join'][$table_name] = array(
  94. 'left_table' => $table_name,
  95. );
  96. $data[$entity_table]['table']['entity type'] = $table_info['table']['entity type'];
  97. // Copy over the default table group if we have none yet.
  98. if (!empty($table_info['table']['group']) && empty($data[$entity_table]['table']['group'])) {
  99. $data[$entity_table]['table']['group'] = $table_info['table']['group'];
  100. }
  101. }
  102. }
  103. }
  104. /**
  105. * Fetch the plugin data from cache.
  106. */
  107. function _views_fetch_plugin_data($type = NULL, $plugin = NULL, $reset = FALSE) {
  108. static $cache = NULL;
  109. if (!isset($cache) || $reset) {
  110. $start = microtime(TRUE);
  111. views_include('plugins');
  112. views_include_handlers();
  113. $cache = views_discover_plugins();
  114. }
  115. if (!$type && !$plugin) {
  116. return $cache;
  117. }
  118. elseif (!$plugin) {
  119. // Not in the if above so the else below won't run
  120. if (isset($cache[$type])) {
  121. return $cache[$type];
  122. }
  123. }
  124. elseif (isset($cache[$type][$plugin])) {
  125. return $cache[$type][$plugin];
  126. }
  127. // Return an empty array if there is no match.
  128. return array();
  129. }
  130. /**
  131. * Set a cached item in the views cache.
  132. *
  133. * This is just a convenience wrapper around cache_set().
  134. *
  135. * @param $cid
  136. * The cache ID of the data to store.
  137. * @param $data
  138. * The data to store in the cache. Complex data types will be automatically serialized before insertion.
  139. * Strings will be stored as plain text and not serialized.
  140. * @param $use_language
  141. * If TRUE, the data will be cached specific to the currently active language.
  142. */
  143. function views_cache_set($cid, $data, $use_language = FALSE) {
  144. global $language;
  145. if (variable_get('views_skip_cache', FALSE)) {
  146. return;
  147. }
  148. if ($use_language) {
  149. $cid .= ':' . $language->language;
  150. }
  151. cache_set($cid, $data, 'cache_views');
  152. }
  153. /**
  154. * Return data from the persistent views cache.
  155. *
  156. * This is just a convenience wrapper around cache_get().
  157. *
  158. * @param int $cid
  159. * The cache ID of the data to retrieve.
  160. * @param bool $use_language
  161. * If TRUE, the data will be requested specific to the currently active language.
  162. *
  163. * @return stdClass|bool
  164. * The cache or FALSE on failure.
  165. */
  166. function views_cache_get($cid, $use_language = FALSE) {
  167. global $language;
  168. if (variable_get('views_skip_cache', FALSE)) {
  169. return FALSE;
  170. }
  171. if ($use_language) {
  172. $cid .= ':' . $language->language;
  173. }
  174. return cache_get($cid, 'cache_views');
  175. }