$cacheValue) */ static $_cache = NULL; /** * Retrieve an item from the DB cache. * * @param string $group * (required) The group name of the item. * @param string $path * (required) The path under which this item is stored. * @param int $componentID * The optional component ID (so componenets can share the same name space). * * @return object * The data if present in cache, else null */ public static function &getItem($group, $path, $componentID = NULL) { if (self::$_cache === NULL) { self::$_cache = array(); } $argString = "CRM_CT_{$group}_{$path}_{$componentID}"; if (!array_key_exists($argString, self::$_cache)) { $cache = CRM_Utils_Cache::singleton(); self::$_cache[$argString] = $cache->get($argString); if (!self::$_cache[$argString]) { $dao = new CRM_Core_DAO_Cache(); $dao->group_name = $group; $dao->path = $path; $dao->component_id = $componentID; $data = NULL; if ($dao->find(TRUE)) { $data = unserialize($dao->data); } $dao->free(); self::$_cache[$argString] = $data; $cache->set($argString, self::$_cache[$argString]); } } return self::$_cache[$argString]; } /** * Retrieve all items in a group. * * @param string $group * (required) The group name of the item. * @param int $componentID * The optional component ID (so componenets can share the same name space). * * @return object * The data if present in cache, else null */ public static function &getItems($group, $componentID = NULL) { if (self::$_cache === NULL) { self::$_cache = array(); } $argString = "CRM_CT_CI_{$group}_{$componentID}"; if (!array_key_exists($argString, self::$_cache)) { $cache = CRM_Utils_Cache::singleton(); self::$_cache[$argString] = $cache->get($argString); if (!self::$_cache[$argString]) { $dao = new CRM_Core_DAO_Cache(); $dao->group_name = $group; $dao->component_id = $componentID; $dao->find(); $result = array(); while ($dao->fetch()) { $result[$dao->path] = unserialize($dao->data); } $dao->free(); self::$_cache[$argString] = $result; $cache->set($argString, self::$_cache[$argString]); } } return self::$_cache[$argString]; } /** * Store an item in the DB cache. * * @param object $data * (required) A reference to the data that will be serialized and stored. * @param string $group * (required) The group name of the item. * @param string $path * (required) The path under which this item is stored. * @param int $componentID * The optional component ID (so componenets can share the same name space). */ public static function setItem(&$data, $group, $path, $componentID = NULL) { if (self::$_cache === NULL) { self::$_cache = array(); } $dao = new CRM_Core_DAO_Cache(); $dao->group_name = $group; $dao->path = $path; $dao->component_id = $componentID; // get a lock so that multiple ajax requests on the same page // dont trample on each other // CRM-11234 $lock = Civi\Core\Container::singleton()->get('lockManager')->acquire("cache.{$group}_{$path}._{$componentID}"); if (!$lock->isAcquired()) { CRM_Core_Error::fatal(); } $dao->find(TRUE); $dao->data = serialize($data); $dao->created_date = date('YmdHis'); $dao->save(); $lock->release(); $dao->free(); // cache coherency - refresh or remove dependent caches $argString = "CRM_CT_{$group}_{$path}_{$componentID}"; $cache = CRM_Utils_Cache::singleton(); $data = unserialize($dao->data); self::$_cache[$argString] = $data; $cache->set($argString, $data); $argString = "CRM_CT_CI_{$group}_{$componentID}"; unset(self::$_cache[$argString]); $cache->delete($argString); } /** * Delete all the cache elements that belong to a group OR delete the entire cache if group is not specified. * * @param string $group * The group name of the entries to be deleted. * @param string $path * Path of the item that needs to be deleted. * @param bool $clearAll clear all caches */ public static function deleteGroup($group = NULL, $path = NULL, $clearAll = TRUE) { $dao = new CRM_Core_DAO_Cache(); if (!empty($group)) { $dao->group_name = $group; } if (!empty($path)) { $dao->path = $path; } $dao->delete(); if ($clearAll) { // also reset ACL Cache CRM_ACL_BAO_Cache::resetCache(); // also reset memory cache if any CRM_Utils_System::flushCache(); } } /** * The next two functions are internal functions used to store and retrieve session from * the database cache. This keeps the session to a limited size and allows us to * create separate session scopes for each form in a tab */ /** * This function takes entries from the session array and stores it in the cache. * * It also deletes the entries from the $_SESSION object (for a smaller session size) * * @param array $names * Array of session values that should be persisted. * This is either a form name + qfKey or just a form name * (in the case of profile) * @param bool $resetSession * Should session state be reset on completion of DB store?. */ public static function storeSessionToCache($names, $resetSession = TRUE) { foreach ($names as $key => $sessionName) { if (is_array($sessionName)) { $value = NULL; if (!empty($_SESSION[$sessionName[0]][$sessionName[1]])) { $value = $_SESSION[$sessionName[0]][$sessionName[1]]; } self::setItem($value, 'CiviCRM Session', "{$sessionName[0]}_{$sessionName[1]}"); if ($resetSession) { $_SESSION[$sessionName[0]][$sessionName[1]] = NULL; unset($_SESSION[$sessionName[0]][$sessionName[1]]); } } else { $value = NULL; if (!empty($_SESSION[$sessionName])) { $value = $_SESSION[$sessionName]; } self::setItem($value, 'CiviCRM Session', $sessionName); if ($resetSession) { $_SESSION[$sessionName] = NULL; unset($_SESSION[$sessionName]); } } } self::cleanup(); } /* Retrieve the session values from the cache and populate the $_SESSION array * * @param array $names * Array of session values that should be persisted. * This is either a form name + qfKey or just a form name * (in the case of profile) */ /** * Restore session from cache. * * @param string $names */ public static function restoreSessionFromCache($names) { foreach ($names as $key => $sessionName) { if (is_array($sessionName)) { $value = self::getItem('CiviCRM Session', "{$sessionName[0]}_{$sessionName[1]}" ); if ($value) { $_SESSION[$sessionName[0]][$sessionName[1]] = $value; } } else { $value = self::getItem('CiviCRM Session', $sessionName ); if ($value) { $_SESSION[$sessionName] = $value; } } } } /** * Do periodic cleanup of the CiviCRM session table. * * Also delete all session cache entries which are a couple of days old. * This keeps the session cache to a manageable size * * @param bool $session * @param bool $table * @param bool $prevNext */ public static function cleanup($session = FALSE, $table = FALSE, $prevNext = FALSE) { // clean up the session cache every $cacheCleanUpNumber probabilistically $cleanUpNumber = 757; // clean up all sessions older than $cacheTimeIntervalDays days $timeIntervalDays = 2; $timeIntervalMins = 30; if (mt_rand(1, 100000) % $cleanUpNumber == 0) { $session = $table = $prevNext = TRUE; } if (!$session && !$table && !$prevNext) { return; } if ($prevNext) { // delete all PrevNext caches CRM_Core_BAO_PrevNextCache::cleanupCache(); } if ($table) { CRM_Core_Config::clearTempTables($timeIntervalDays . ' day'); } if ($session) { // first delete all sessions which are related to any potential transaction // page $transactionPages = array( 'CRM_Contribute_Controller_Contribution', 'CRM_Event_Controller_Registration', ); $params = array( 1 => array( date('Y-m-d H:i:s', time() - $timeIntervalMins * 60), 'String', ), ); foreach ($transactionPages as $trPage) { $params[] = array("%${trPage}%", 'String'); $where[] = 'path LIKE %' . count($params); } $sql = " DELETE FROM civicrm_cache WHERE group_name = 'CiviCRM Session' AND created_date <= %1 AND (" . implode(' OR ', $where) . ")"; CRM_Core_DAO::executeQuery($sql, $params); $sql = " DELETE FROM civicrm_cache WHERE group_name = 'CiviCRM Session' AND created_date < date_sub( NOW( ), INTERVAL $timeIntervalDays DAY ) "; CRM_Core_DAO::executeQuery($sql); } } }