1 | <?php |
||
27 | class CacheInvalidator { |
||
28 | |||
29 | /** |
||
30 | * @var CacheInvalidator |
||
31 | */ |
||
32 | private static $instance = null; |
||
33 | |||
34 | /** |
||
35 | * @var GlossaryCache |
||
36 | */ |
||
37 | private $cache = null; |
||
|
|||
38 | |||
39 | /** |
||
40 | * @since 1.0 |
||
41 | * |
||
42 | * @return CacheInvalidator |
||
43 | */ |
||
44 | 4 | public static function getInstance() { |
|
45 | |||
46 | 4 | if ( self::$instance === null ) { |
|
47 | |||
48 | 1 | $instance = new self(); |
|
49 | 1 | $instance->setCache( new GlossaryCache() ); |
|
50 | |||
51 | 1 | self::$instance = $instance; |
|
52 | } |
||
53 | |||
54 | 4 | return self::$instance; |
|
55 | } |
||
56 | |||
57 | /** |
||
58 | * @since 1.0 |
||
59 | */ |
||
60 | 1 | public static function clear() { |
|
63 | |||
64 | /** |
||
65 | * @since 1.0 |
||
66 | * |
||
67 | * @param GlossaryCache $glossaryCache |
||
68 | */ |
||
69 | 6 | public function setCache( GlossaryCache $glossaryCache ) { |
|
72 | |||
73 | /** |
||
74 | * @since 1.0 |
||
75 | * |
||
76 | * @param Store $store |
||
77 | * @param SemanticData $semanticData |
||
78 | * |
||
79 | * @return boolean |
||
80 | */ |
||
81 | 5 | public function invalidateCacheOnStoreUpdate( Store $store, SemanticData $semanticData ) { |
|
82 | |||
83 | 5 | $this->matchAllSubobjects( $store, $semanticData ); |
|
84 | |||
85 | 5 | if ( $this->hasSemanticDataDeviation( $store, $semanticData ) ) { |
|
86 | 3 | $this->purgeCache( $semanticData->getSubject() ); |
|
87 | 3 | LingoParser::purgeCache(); |
|
88 | } |
||
89 | |||
90 | 5 | return true; |
|
91 | } |
||
92 | |||
93 | /** |
||
94 | * @since 1.0 |
||
95 | * |
||
96 | * @param Store $store |
||
97 | * @param DIWikiPage $subject |
||
98 | * @param boolean|true $purgeLingo |
||
99 | * |
||
100 | * @return boolean |
||
101 | */ |
||
102 | 3 | public function invalidateCacheOnPageDelete( Store $store, DIWikiPage $subject, $purgeLingo = true ) { |
|
103 | |||
104 | 3 | $this->matchSubobjectsToSubject( $store, $subject ); |
|
105 | 3 | $this->purgeCache( $subject ); |
|
106 | |||
107 | 3 | if ( $purgeLingo ) { |
|
108 | 3 | LingoParser::purgeCache(); |
|
109 | } |
||
110 | |||
111 | 3 | return true; |
|
112 | } |
||
113 | |||
114 | /** |
||
115 | * @since 1.0 |
||
116 | * |
||
117 | * @param Title $title |
||
118 | * |
||
119 | * @return boolean |
||
120 | */ |
||
121 | 1 | public function invalidateCacheOnPageMove( Title $title ) { |
|
125 | |||
126 | 5 | private function matchAllSubobjects( Store $store, SemanticData $semanticData ) { |
|
127 | |||
128 | 5 | $properties = $semanticData->getProperties(); |
|
129 | |||
130 | 5 | if ( array_key_exists( DIProperty::TYPE_SUBOBJECT, $properties ) ) { |
|
131 | 1 | foreach ( $semanticData->getPropertyValues( $properties[ DIProperty::TYPE_SUBOBJECT ] ) as $subobject ) { |
|
132 | 1 | $this->invalidateCacheOnStoreUpdate( |
|
133 | 1 | $store, |
|
134 | 1 | $semanticData->findSubSemanticData( $subobject->getSubobjectName() ), |
|
135 | 1 | false |
|
136 | ); |
||
137 | } |
||
138 | } |
||
139 | 5 | } |
|
140 | |||
141 | 3 | private function matchSubobjectsToSubject( Store $store, DIWikiPage $subject ) { |
|
142 | |||
143 | 3 | $properties = $store->getProperties( $subject ); |
|
144 | |||
145 | 3 | if ( array_key_exists( DIProperty::TYPE_SUBOBJECT, $properties ) ) { |
|
146 | 1 | foreach ( $store->getPropertyValues( $subject, $properties[ DIProperty::TYPE_SUBOBJECT ] ) as $subobject ) { |
|
147 | $this->invalidateCacheOnPageDelete( |
||
148 | $store, |
||
149 | $subobject->getSubject(), |
||
150 | false |
||
151 | ); |
||
152 | } |
||
153 | } |
||
154 | 3 | } |
|
155 | |||
156 | 5 | private function hasSemanticDataDeviation( Store $store, SemanticData $semanticData ) { |
|
165 | |||
166 | 6 | private function purgeCache( DIWikiPage $subject ) { |
|
167 | |||
168 | 6 | $this->glossaryCache->getCache()->delete( |
|
169 | 6 | $this->glossaryCache->getKeyForSubject( $subject ) |
|
170 | ); |
||
174 | |||
175 | } |
||
176 |
This check marks private properties in classes that are never used. Those properties can be removed.