MediaWiki  1.33.0
FileDependency.php
Go to the documentation of this file.
1 <?php
28  private $filename;
29  private $timestamp;
30 
43  function __construct( $filename, $timestamp = null ) {
44  $this->filename = $filename;
45  $this->timestamp = $timestamp;
46  }
47 
51  function __sleep() {
52  $this->loadDependencyValues();
53 
54  return [ 'filename', 'timestamp' ];
55  }
56 
57  function loadDependencyValues() {
58  if ( is_null( $this->timestamp ) ) {
59  Wikimedia\suppressWarnings();
60  # Dependency on a non-existent file stores "false"
61  # This is a valid concept!
62  $this->timestamp = filemtime( $this->filename );
63  Wikimedia\restoreWarnings();
64  }
65  }
66 
70  function isExpired() {
71  Wikimedia\suppressWarnings();
72  $lastmod = filemtime( $this->filename );
73  Wikimedia\restoreWarnings();
74  if ( $lastmod === false ) {
75  if ( $this->timestamp === false ) {
76  # Still nonexistent
77  return false;
78  }
79 
80  # Deleted
81  wfDebug( "Dependency triggered: {$this->filename} deleted.\n" );
82 
83  return true;
84  }
85 
86  if ( $lastmod > $this->timestamp ) {
87  # Modified or created
88  wfDebug( "Dependency triggered: {$this->filename} changed.\n" );
89 
90  return true;
91  }
92 
93  # Not modified
94  return false;
95  }
96 }
FileDependency
Definition: FileDependency.php:27
FileDependency\__sleep
__sleep()
Definition: FileDependency.php:51
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
FileDependency\isExpired
isExpired()
Definition: FileDependency.php:70
FileDependency\$filename
$filename
Definition: FileDependency.php:28
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:949
FileDependency\__construct
__construct( $filename, $timestamp=null)
Create a file dependency.
Definition: FileDependency.php:43
FileDependency\loadDependencyValues
loadDependencyValues()
Hook to perform any expensive pre-serialize loading of dependency values.
Definition: FileDependency.php:57
CacheDependency
Definition: CacheDependency.php:27
FileDependency\$timestamp
$timestamp
Definition: FileDependency.php:29