2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Cache definition class
20 * This file is part of Moodle's cache API, affectionately called MUC.
21 * It contains the components that are requried in order to use caching.
25 * @copyright 2012 Sam Hemelryk
26 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 defined('MOODLE_INTERNAL') ||
die();
32 * The cache definition class.
34 * Cache definitions need to be defined in db/caches.php files.
35 * They can be constructed with the following options.
39 * [int] Sets the mode for the definition. Must be one of cache_store::MODE_*
43 * [bool] Set to true if your cache will only use simple keys for its items.
44 * Simple keys consist of digits, underscores and the 26 chars of the english language. a-zA-Z0-9_
45 * If true the keys won't be hashed before being passed to the cache store for gets/sets/deletes. It will be
46 * better for performance and possible only becase we know the keys are safe.
48 * [bool] If set to true we know that the data is scalar or array of scalar.
49 * + requireidentifiers
50 * [array] An array of identifiers that must be provided to the cache when it is created.
51 * + requiredataguarantee
52 * [bool] If set to true then only stores that can guarantee data will remain available once set will be used.
53 * + requiremultipleidentifiers
54 * [bool] If set to true then only stores that support multiple identifiers will be used.
55 * + requirelockingread
56 * [bool] If set to true then a lock will be gained before reading from the cache store. It is recommended not to use
57 * this setting unless 100% absolutely positively required. Remember 99.9% of caches will NOT need this setting.
58 * This setting will only be used for application caches presently.
59 * + requirelockingwrite
60 * [bool] If set to true then a lock will be gained before writing to the cache store. As above this is not recommended
61 * unless truly needed. Please think about the order of your code and deal with race conditions there first.
62 * This setting will only be used for application caches presently.
64 * [int] If set this will be used as the maximum number of entries within the cache store for this definition.
65 * Its important to note that cache stores don't actually have to acknowledge this setting or maintain it as a hard limit.
67 * [string] A class to use as the loader for this cache. This is an advanced setting and will allow the developer of the
68 * definition to take 100% control of the caching solution.
69 * Any class used here must inherit the cache_loader interface and must extend default cache loader for the mode they are
72 * [string] Suplements the above setting indicated the file containing the class to be used. This file is included when
75 * [string] A class to use as the data loader for this definition.
76 * Any class used here must inherit the cache_data_loader interface.
78 * [string] Supplements the above setting indicating the file containing the class to be used. This file is included when
80 * + staticacceleration
81 * The cache loader will keep an array of the items set and retrieved to the cache during the request.
82 * Consider using this setting when you know that there are going to be many calls to the cache for the same information.
83 * Requests for data in this array will be ultra fast, but it will cost memory.
84 * + staticaccelerationsize
85 * [int] This supplements the above setting by limiting the number of items in the static acceleration array.
86 * Tweaking this setting lower will allow you to minimise the memory implications above while hopefully still managing to
87 * offset calls to the cache store.
89 * [int] A time to live for the data (in seconds). It is strongly recommended that you don't make use of this and
90 * instead try to create an event driven invalidation system.
91 * Not all cache stores will support this natively and there are undesired performance impacts if the cache store does not.
93 * [bool] If set to true only the mapped cache store(s) will be used and the default mode store will not. This is a super
94 * advanced setting and should not be used unless absolutely required. It allows you to avoid the default stores for one
96 * + invalidationevents
97 * [array] An array of events that should cause this cache to invalidate some or all of the items within it.
99 * [int] The sharing options that are appropriate for this definition. Should be the sum of the possible options.
101 * [int] The default sharing option to use. It's highly recommended that you don't set this unless there is a very
102 * specific reason not to use the system default.
104 * For examples take a look at lib/db/caches.php
108 * @copyright 2012 Sam Hemelryk
109 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
111 class cache_definition
{
113 /** The cache can be shared with everyone */
114 const SHARING_ALL
= 1;
115 /** The cache can be shared with other sites using the same siteid. */
116 const SHARING_SITEID
= 2;
117 /** The cache can be shared with other sites of the same version. */
118 const SHARING_VERSION
= 4;
119 /** The cache can be shared with other sites using the same key */
120 const SHARING_INPUT
= 8;
123 * The default sharing options available.
124 * All + SiteID + Version + Input.
126 const SHARING_DEFAULTOPTIONS
= 15;
128 * The default sharing option that gets used if none have been selected.
129 * SiteID. It is the most restrictive.
131 const SHARING_DEFAULT
= 2;
134 * The identifier for the definition
140 * The mode for the defintion. One of cache_store::MODE_*
146 * The component this definition is associated with.
149 protected $component;
152 * The area this definition is associated with.
158 * If set to true we know the keys are simple. a-zA-Z0-9_
161 protected $simplekeys = false;
164 * Set to true if we know the data is scalar or array of scalar.
167 protected $simpledata = false;
170 * An array of identifiers that must be provided when the definition is used to create a cache.
173 protected $requireidentifiers = array();
176 * If set to true then only stores that guarantee data may be used with this definition.
179 protected $requiredataguarantee = false;
182 * If set to true then only stores that support multple identifiers may be used with this definition.
185 protected $requiremultipleidentifiers = false;
188 * If set to true then we know that this definition requires the locking functionality.
189 * This gets set during construction based upon the settings requirelockingread and requirelockingwrite.
192 protected $requirelocking = false;
195 * Set to true if this definition requires read locking.
198 protected $requirelockingread = false;
201 * Gets set to true if this definition requires write locking.
204 protected $requirelockingwrite = false;
207 * Gets set to true if this definition requires searchable stores.
208 * @since Moodle 2.4.4
211 protected $requiresearchable = false;
214 * Sets the maximum number of items that can exist in the cache.
215 * Please note this isn't a hard limit, and doesn't need to be enforced by the caches. They can choose to do so optionally.
218 protected $maxsize = null;
221 * The class to use as the cache loader for this definition.
224 protected $overrideclass = null;
227 * The file in which the override class exists. This will be included if required.
228 * @var string Absolute path
230 protected $overrideclassfile = null;
233 * The data source class to use with this definition.
236 protected $datasource = null;
239 * The file in which the data source class exists. This will be included if required.
242 protected $datasourcefile = null;
245 * Deprecated - this is completely unused.
246 * @deprecated since 2.9
249 protected $datasourceaggregate = null;
252 * Set to true if the cache should hold onto items passing through it to speed up subsequent requests.
255 protected $staticacceleration = false;
258 * The maximum number of items that static acceleration cache should hold onto.
261 protected $staticaccelerationsize = false;
264 * The TTL for data in this cache. Please don't use this, instead use event driven invalidation.
270 * Set to true if this cache should only use mapped cache stores and not the default mode cache store.
273 protected $mappingsonly = false;
276 * An array of events that should cause this cache to invalidate.
279 protected $invalidationevents = array();
282 * An array of identifiers provided to this cache when it was initialised.
285 protected $identifiers = null;
288 * Key prefix for use with single key cache stores
291 protected $keyprefixsingle = null;
294 * Key prefix to use with cache stores that support multi keys.
297 protected $keyprefixmulti = null;
300 * A hash identifier of this definition.
303 protected $definitionhash = null;
306 * The selected sharing mode for this definition.
309 protected $sharingoptions;
312 * The selected sharing option.
313 * @var int One of self::SHARING_*
315 protected $selectedsharingoption = self
::SHARING_DEFAULT
;
318 * The user input key to use if the SHARING_INPUT option has been selected.
319 * @var string Must be ALPHANUMEXT
321 protected $userinputsharingkey = '';
324 * Creates a cache definition given a definition from the cache configuration or from a caches.php file.
327 * @param array $definition
328 * @param string $unused Used to be datasourceaggregate but that was removed and this is now unused.
329 * @return cache_definition
330 * @throws coding_exception
332 public static function load($id, array $definition, $unused = null) {
335 if (!array_key_exists('mode', $definition)) {
336 throw new coding_exception('You must provide a mode when creating a cache definition');
338 if (!array_key_exists('component', $definition)) {
339 throw new coding_exception('You must provide a component when creating a cache definition');
341 if (!array_key_exists('area', $definition)) {
342 throw new coding_exception('You must provide an area when creating a cache definition');
344 $mode = (int)$definition['mode'];
345 $component = (string)$definition['component'];
346 $area = (string)$definition['area'];
351 $requireidentifiers = array();
352 $requiredataguarantee = false;
353 $requiremultipleidentifiers = false;
354 $requirelockingread = false;
355 $requirelockingwrite = false;
356 $requiresearchable = ($mode === cache_store
::MODE_SESSION
) ?
true : false;
358 $overrideclass = null;
359 $overrideclassfile = null;
361 $datasourcefile = null;
362 $staticacceleration = false;
363 $staticaccelerationsize = false;
365 $mappingsonly = false;
366 $invalidationevents = array();
367 $sharingoptions = self
::SHARING_DEFAULT
;
368 $selectedsharingoption = self
::SHARING_DEFAULT
;
369 $userinputsharingkey = '';
371 if (array_key_exists('simplekeys', $definition)) {
372 $simplekeys = (bool)$definition['simplekeys'];
374 if (array_key_exists('simpledata', $definition)) {
375 $simpledata = (bool)$definition['simpledata'];
377 if (array_key_exists('requireidentifiers', $definition)) {
378 $requireidentifiers = (array)$definition['requireidentifiers'];
380 if (array_key_exists('requiredataguarantee', $definition)) {
381 $requiredataguarantee = (bool)$definition['requiredataguarantee'];
383 if (array_key_exists('requiremultipleidentifiers', $definition)) {
384 $requiremultipleidentifiers = (bool)$definition['requiremultipleidentifiers'];
387 if (array_key_exists('requirelockingread', $definition)) {
388 $requirelockingread = (bool)$definition['requirelockingread'];
390 if (array_key_exists('requirelockingwrite', $definition)) {
391 $requirelockingwrite = (bool)$definition['requirelockingwrite'];
393 $requirelocking = $requirelockingwrite ||
$requirelockingread;
395 if (array_key_exists('requiresearchable', $definition)) {
396 $requiresearchable = (bool)$definition['requiresearchable'];
399 if (array_key_exists('maxsize', $definition)) {
400 $maxsize = (int)$definition['maxsize'];
403 if (array_key_exists('overrideclass', $definition)) {
404 $overrideclass = $definition['overrideclass'];
406 if (array_key_exists('overrideclassfile', $definition)) {
407 $overrideclassfile = $definition['overrideclassfile'];
410 if (array_key_exists('datasource', $definition)) {
411 $datasource = $definition['datasource'];
413 if (array_key_exists('datasourcefile', $definition)) {
414 $datasourcefile = $definition['datasourcefile'];
417 if (array_key_exists('persistent', $definition)) {
418 // Ahhh this is the legacy persistent option.
419 $staticacceleration = (bool)$definition['persistent'];
421 if (array_key_exists('staticacceleration', $definition)) {
422 $staticacceleration = (bool)$definition['staticacceleration'];
424 if (array_key_exists('persistentmaxsize', $definition)) {
425 // Ahhh this is the legacy persistentmaxsize option.
426 $staticaccelerationsize = (int)$definition['persistentmaxsize'];
428 if (array_key_exists('staticaccelerationsize', $definition)) {
429 $staticaccelerationsize = (int)$definition['staticaccelerationsize'];
431 if (array_key_exists('ttl', $definition)) {
432 $ttl = (int)$definition['ttl'];
434 if (array_key_exists('mappingsonly', $definition)) {
435 $mappingsonly = (bool)$definition['mappingsonly'];
437 if (array_key_exists('invalidationevents', $definition)) {
438 $invalidationevents = (array)$definition['invalidationevents'];
440 if (array_key_exists('sharingoptions', $definition)) {
441 $sharingoptions = (int)$definition['sharingoptions'];
443 if (array_key_exists('selectedsharingoption', $definition)) {
444 $selectedsharingoption = (int)$definition['selectedsharingoption'];
445 } else if (array_key_exists('defaultsharing', $definition)) {
446 $selectedsharingoption = (int)$definition['defaultsharing'];
447 } else if ($sharingoptions ^
$selectedsharingoption) {
448 if ($sharingoptions & self
::SHARING_SITEID
) {
449 $selectedsharingoption = self
::SHARING_SITEID
;
450 } else if ($sharingoptions & self
::SHARING_VERSION
) {
451 $selectedsharingoption = self
::SHARING_VERSION
;
453 $selectedsharingoption = self
::SHARING_ALL
;
457 if (array_key_exists('userinputsharingkey', $definition) && !empty($definition['userinputsharingkey'])) {
458 $userinputsharingkey = (string)$definition['userinputsharingkey'];
461 if (!is_null($overrideclass)) {
462 if (!is_null($overrideclassfile)) {
463 if (strpos($overrideclassfile, $CFG->dirroot
) !== 0) {
464 $overrideclassfile = $CFG->dirroot
.'/'.$overrideclassfile;
466 if (strpos($overrideclassfile, '../') !== false) {
467 throw new coding_exception('No path craziness allowed within override class file path.');
469 if (!file_exists($overrideclassfile)) {
470 throw new coding_exception('The override class file does not exist.');
472 require_once($overrideclassfile);
474 if (!class_exists($overrideclass)) {
475 throw new coding_exception('The override class does not exist.');
478 // Make sure that the provided class extends the default class for the mode.
479 if (get_parent_class($overrideclass) !== cache_helper
::get_class_for_mode($mode)) {
480 throw new coding_exception('The override class does not immediately extend the relevant cache class.');
484 if (!is_null($datasource)) {
485 if (!is_null($datasourcefile)) {
486 if (strpos($datasourcefile, $CFG->dirroot
) !== 0) {
487 $datasourcefile = $CFG->dirroot
.'/'.$datasourcefile;
489 if (strpos($datasourcefile, '../') !== false) {
490 throw new coding_exception('No path craziness allowed within data source file path.');
492 if (!file_exists($datasourcefile)) {
493 throw new coding_exception('The data source class file does not exist.');
495 require_once($datasourcefile);
497 if (!class_exists($datasource)) {
498 throw new coding_exception('The data source class does not exist.');
500 if (!array_key_exists('cache_data_source', class_implements($datasource))) {
501 throw new coding_exception('Cache data source classes must implement the cache_data_source interface');
505 $cachedefinition = new cache_definition();
506 $cachedefinition->id
= $id;
507 $cachedefinition->mode
= $mode;
508 $cachedefinition->component
= $component;
509 $cachedefinition->area
= $area;
510 $cachedefinition->simplekeys
= $simplekeys;
511 $cachedefinition->simpledata
= $simpledata;
512 $cachedefinition->requireidentifiers
= $requireidentifiers;
513 $cachedefinition->requiredataguarantee
= $requiredataguarantee;
514 $cachedefinition->requiremultipleidentifiers
= $requiremultipleidentifiers;
515 $cachedefinition->requirelocking
= $requirelocking;
516 $cachedefinition->requirelockingread
= $requirelockingread;
517 $cachedefinition->requirelockingwrite
= $requirelockingwrite;
518 $cachedefinition->requiresearchable
= $requiresearchable;
519 $cachedefinition->maxsize
= $maxsize;
520 $cachedefinition->overrideclass
= $overrideclass;
521 $cachedefinition->overrideclassfile
= $overrideclassfile;
522 $cachedefinition->datasource
= $datasource;
523 $cachedefinition->datasourcefile
= $datasourcefile;
524 $cachedefinition->staticacceleration
= $staticacceleration;
525 $cachedefinition->staticaccelerationsize
= $staticaccelerationsize;
526 $cachedefinition->ttl
= $ttl;
527 $cachedefinition->mappingsonly
= $mappingsonly;
528 $cachedefinition->invalidationevents
= $invalidationevents;
529 $cachedefinition->sharingoptions
= $sharingoptions;
530 $cachedefinition->selectedsharingoption
= $selectedsharingoption;
531 $cachedefinition->userinputsharingkey
= $userinputsharingkey;
533 return $cachedefinition;
537 * Creates an ah-hoc cache definition given the required params.
539 * Please note that when using an adhoc definition you cannot set any of the optional params.
540 * This is because we cannot guarantee consistent access and we don't want to mislead people into thinking that.
542 * @param int $mode One of cache_store::MODE_*
543 * @param string $component The component this definition relates to.
544 * @param string $area The area this definition relates to.
545 * @param array $options An array of options, available options are:
546 * - simplekeys : Set to true if the keys you will use are a-zA-Z0-9_
547 * - simpledata : Set to true if the type of the data you are going to store is scalar, or an array of scalar vars
548 * - overrideclass : The class to use as the loader.
549 * - staticacceleration : If set to true the cache will hold onto data passing through it.
550 * - staticaccelerationsize : Set it to an int to limit the size of the staticacceleration cache.
551 * @return cache_application|cache_session|cache_request
553 public static function load_adhoc($mode, $component, $area, array $options = array()) {
554 $id = 'adhoc/'.$component.'_'.$area;
557 'component' => $component,
560 if (!empty($options['simplekeys'])) {
561 $definition['simplekeys'] = $options['simplekeys'];
563 if (!empty($options['simpledata'])) {
564 $definition['simpledata'] = $options['simpledata'];
566 if (!empty($options['persistent'])) {
567 // Ahhh this is the legacy persistent option.
568 $definition['staticacceleration'] = (bool)$options['persistent'];
570 if (!empty($options['staticacceleration'])) {
571 $definition['staticacceleration'] = (bool)$options['staticacceleration'];
573 if (!empty($options['staticaccelerationsize'])) {
574 $definition['staticaccelerationsize'] = (int)$options['staticaccelerationsize'];
576 if (!empty($options['overrideclass'])) {
577 $definition['overrideclass'] = $options['overrideclass'];
579 if (!empty($options['sharingoptions'])) {
580 $definition['sharingoptions'] = $options['sharingoptions'];
582 return self
::load($id, $definition, null);
586 * Returns the cache loader class that should be used for this definition.
589 public function get_cache_class() {
590 if (!is_null($this->overrideclass
)) {
591 return $this->overrideclass
;
593 return cache_helper
::get_class_for_mode($this->mode
);
597 * Returns the id of this definition.
600 public function get_id() {
605 * Returns the name for this definition
608 public function get_name() {
609 $identifier = 'cachedef_'.clean_param($this->area
, PARAM_STRINGID
);
610 $component = $this->component
;
611 if ($component === 'core') {
612 $component = 'cache';
614 return new lang_string($identifier, $component);
618 * Returns the mode of this definition
619 * @return int One more cache_store::MODE_
621 public function get_mode() {
626 * Returns the area this definition is associated with.
629 public function get_area() {
634 * Returns the component this definition is associated with.
637 public function get_component() {
638 return $this->component
;
642 * Returns true if this definition is using simple keys.
644 * Simple keys contain only a-zA-Z0-9_
648 public function uses_simple_keys() {
649 return $this->simplekeys
;
653 * Returns the identifiers that are being used for this definition.
656 public function get_identifiers() {
657 if (!isset($this->identifiers
)) {
660 return $this->identifiers
;
664 * Returns the ttl in seconds for this definition if there is one, or null if not.
667 public function get_ttl() {
672 * Returns the maximum number of items allowed in this cache.
675 public function get_maxsize() {
676 return $this->maxsize
;
680 * Returns true if this definition should only be used with mappings.
683 public function is_for_mappings_only() {
684 return $this->mappingsonly
;
688 * Returns true if the data is known to be scalar or array of scalar.
691 public function uses_simple_data() {
692 return $this->simpledata
;
696 * Returns true if this definition requires a data guarantee from the cache stores being used.
699 public function require_data_guarantee() {
700 return $this->requiredataguarantee
;
704 * Returns true if this definition requires that the cache stores support multiple identifiers
707 public function require_multiple_identifiers() {
708 return $this->requiremultipleidentifiers
;
712 * Returns true if this definition requires locking functionality. Either read or write locking.
715 public function require_locking() {
716 return $this->requirelocking
;
720 * Returns true if this definition requires read locking.
723 public function require_locking_read() {
724 return $this->requirelockingread
;
728 * Returns true if this definition requires write locking.
731 public function require_locking_write() {
732 return $this->requirelockingwrite
;
736 * Returns true if this definition requires a searchable cache.
737 * @since Moodle 2.4.4
740 public function require_searchable() {
741 return $this->requiresearchable
;
745 * Returns true if this definition has an associated data source.
748 public function has_data_source() {
749 return !is_null($this->datasource
);
753 * Returns an instance of the data source class used for this definition.
755 * @return cache_data_source
756 * @throws coding_exception
758 public function get_data_source() {
759 if (!$this->has_data_source()) {
760 throw new coding_exception('This cache does not use a data source.');
762 return forward_static_call(array($this->datasource
, 'get_instance_for_cache'), $this);
766 * Sets the identifiers for this definition, or updates them if they have already been set.
768 * @param array $identifiers
769 * @throws coding_exception
771 public function set_identifiers(array $identifiers = array()) {
772 // If we are setting the exact same identifiers then just return as nothing really changed.
773 // We don't care about order as cache::make will use the same definition order all the time.
774 if ($identifiers === $this->identifiers
) {
778 foreach ($this->requireidentifiers
as $identifier) {
779 if (!isset($identifiers[$identifier])) {
780 throw new coding_exception('Identifier required for cache has not been provided: '.$identifier);
784 if ($this->identifiers
=== null) {
785 // Initialize identifiers if they have not been.
786 $this->identifiers
= array();
788 foreach ($identifiers as $name => $value) {
789 $this->identifiers
[$name] = (string)$value;
791 // Reset the key prefix's they need updating now.
792 $this->keyprefixsingle
= null;
793 $this->keyprefixmulti
= null;
797 * Returns the requirements of this definition as a binary flag.
800 public function get_requirements_bin() {
802 if ($this->require_data_guarantee()) {
803 $requires +
= cache_store
::SUPPORTS_DATA_GUARANTEE
;
805 if ($this->require_multiple_identifiers()) {
806 $requires +
= cache_store
::SUPPORTS_MULTIPLE_IDENTIFIERS
;
808 if ($this->require_searchable()) {
809 $requires +
= cache_store
::IS_SEARCHABLE
;
815 * Returns true if this definitions cache should be made persistent.
817 * Please call {@link cache_definition::use_static_acceleration()} instead.
819 * @see cache_definition::use_static_acceleration()
820 * @deprecated since 2.6
823 public function should_be_persistent() {
824 debugging('Please upgrade your code to use cache_definition::use_static_acceleration', DEBUG_DEVELOPER
);
825 return $this->use_static_acceleration();
829 * Returns true if we should hold onto the data flowing through the cache.
831 * If set to true data flowing through the cache will be stored in a static variable
832 * to make subsequent requests for the data much faster.
836 public function use_static_acceleration() {
837 if ($this->mode
=== cache_store
::MODE_REQUEST
) {
838 // Request caches should never use static acceleration - it just doesn't make sense.
841 return $this->staticacceleration
;
845 * Returns the max size for the static acceleration array.
847 * Please call {@link cache_definition::get_static_acceleration_size()} instead.
849 * @see cache_definition::get_static_acceleration_size()
850 * @deprecated since 2.6
853 public function get_persistent_max_size() {
854 debugging('Please upgrade your code to call cache_definition::get_static_acceleration_size', DEBUG_DEVELOPER
);
855 return $this->get_static_acceleration_size();
859 * Returns the max size for the static acceleration array.
862 public function get_static_acceleration_size() {
863 return $this->staticaccelerationsize
;
867 * Generates a hash of this definition and returns it.
870 public function generate_definition_hash() {
871 if ($this->definitionhash
=== null) {
872 $this->definitionhash
= md5("{$this->mode} {$this->component} {$this->area}");
874 return $this->definitionhash
;
878 * Generates a single key prefix for this definition
882 public function generate_single_key_prefix() {
883 if ($this->keyprefixsingle
=== null) {
884 $this->keyprefixsingle
= $this->mode
.'/'.$this->component
.'/'.$this->area
;
885 $this->keyprefixsingle
.= '/'.$this->get_cache_identifier();
886 $identifiers = $this->get_identifiers();
888 foreach ($identifiers as $key => $value) {
889 $this->keyprefixsingle
.= '/'.$key.'='.$value;
892 $this->keyprefixsingle
= md5($this->keyprefixsingle
);
894 return $this->keyprefixsingle
;
898 * Generates a multi key prefix for this definition
902 public function generate_multi_key_parts() {
903 if ($this->keyprefixmulti
=== null) {
904 $this->keyprefixmulti
= array(
905 'mode' => $this->mode
,
906 'component' => $this->component
,
907 'area' => $this->area
,
908 'siteidentifier' => $this->get_cache_identifier()
910 if (isset($this->identifiers
) && !empty($this->identifiers
)) {
911 $identifiers = array();
912 foreach ($this->identifiers
as $key => $value) {
913 $identifiers[] = htmlentities($key, ENT_QUOTES
, 'UTF-8').'='.htmlentities($value, ENT_QUOTES
, 'UTF-8');
915 $this->keyprefixmulti
['identifiers'] = join('&', $identifiers);
918 return $this->keyprefixmulti
;
922 * Check if this definition should invalidate on the given event.
924 * @param string $event
925 * @return bool True if the definition should invalidate on the event. False otherwise.
927 public function invalidates_on_event($event) {
928 return (in_array($event, $this->invalidationevents
));
932 * Check if the definition has any invalidation events.
934 * @return bool True if it does, false otherwise
936 public function has_invalidation_events() {
937 return !empty($this->invalidationevents
);
941 * Returns all of the invalidation events for this definition.
945 public function get_invalidation_events() {
946 return $this->invalidationevents
;
950 * Returns a cache identification string.
952 * @return string A string to be used as part of keys.
954 protected function get_cache_identifier() {
955 $identifiers = array();
956 if ($this->selectedsharingoption
& self
::SHARING_ALL
) {
957 // Nothing to do here.
959 if ($this->selectedsharingoption
& self
::SHARING_SITEID
) {
960 $identifiers[] = cache_helper
::get_site_identifier();
962 if ($this->selectedsharingoption
& self
::SHARING_VERSION
) {
963 $identifiers[] = cache_helper
::get_site_version();
965 if ($this->selectedsharingoption
& self
::SHARING_INPUT
&& !empty($this->userinputsharingkey
)) {
966 $identifiers[] = $this->userinputsharingkey
;
969 return join('/', $identifiers);
973 * Returns true if this definition requires identifiers.
977 public function has_required_identifiers() {
978 return (count($this->requireidentifiers
) > 0);
982 * Returns the possible sharing options that can be used with this defintion.
986 public function get_sharing_options() {
987 return $this->sharingoptions
;
991 * Returns the user entered sharing key for this definition.
995 public function get_user_input_sharing_key() {
996 return $this->userinputsharingkey
;
1000 * Returns the user selected sharing option for this definition.
1004 public function get_selected_sharing_option() {
1005 return $this->selectedsharingoption
;