06fddf40386704e3a4b5f1bd39735b5f0291ab6d
[moodle.git] / lib / classes / lock / lock_config.php
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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.
13 //
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/>.
17 /**
18  * Lock configuration class, used to get an instance of the currently configured lock factory.
19  *
20  * @package    core
21  * @category   lock
22  * @copyright  Damyon Wiese 2013
23  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24  */
26 namespace core\lock;
28 defined('MOODLE_INTERNAL') || die();
30 /**
31  * Lock configuration class, used to get an instance of the currently configured lock factory.
32  *
33  * @package   core
34  * @category  lock
35  * @copyright Damyon Wiese 2013
36  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37  */
38 class lock_config {
40     /**
41      * Get an instance of the currently configured locking subclass.
42      *
43      * @param string $type - Unique namespace for the locks generated by this factory. e.g. core_cron
44      * @return \core\lock\lock_factory
45      * @throws \coding_exception
46      */
47     public static function get_lock_factory($type) {
48         global $CFG, $DB;
49         $lockfactory = null;
51         if (during_initial_install()) {
52             $lockfactory = new \core\lock\installation_lock_factory($type);
53         } else if (isset($CFG->lock_factory) && $CFG->lock_factory != 'auto') {
54             if (!class_exists($CFG->lock_factory)) {
55                 // In this case I guess it is not safe to continue. Different cluster nodes could end up using different locking
56                 // types because of an installation error.
57                 throw new \coding_exception('Lock factory set in $CFG does not exist: ' . $CFG->lock_factory);
58             }
59             $lockfactoryclass = $CFG->lock_factory;
60             $lockfactory = new $lockfactoryclass($type);
61         } else {
62             $dbtype = clean_param($DB->get_dbfamily(), PARAM_ALPHA);
64             // DB Specific lock factory is preferred - should support auto-release.
65             $lockfactoryclass = "\\core\\lock\\${dbtype}_lock_factory";
66             if (!class_exists($lockfactoryclass)) {
67                 $lockfactoryclass = '\core\lock\file_lock_factory';
68             }
69             /* @var lock_factory $lockfactory */
70             $lockfactory = new $lockfactoryclass($type);
71             if (!$lockfactory->is_available()) {
72                 // Final fallback - DB row locking.
73                 $lockfactory = new \core\lock\db_record_lock_factory($type);
74             }
75         }
77         return $lockfactory;
78     }
80 }