Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F456939
DivinerPublishCache.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DivinerPublishCache.php
View Options
<?php
final
class
DivinerPublishCache
extends
DivinerDiskCache
{
private
$pathMap
;
private
$index
;
public
function
__construct
(
$cache_directory
)
{
parent
::
__construct
(
$cache_directory
,
'diviner-publish-cache'
);
}
/* -( Path Map )----------------------------------------------------------- */
public
function
getPathMap
()
{
if
(
$this
->
pathMap
===
null
)
{
$this
->
pathMap
=
$this
->
getCache
()->
getKey
(
'path'
,
array
());
}
return
$this
->
pathMap
;
}
public
function
writePathMap
()
{
$this
->
getCache
()->
setKey
(
'path'
,
$this
->
getPathMap
());
}
public
function
getAtomPathsFromCache
(
$hash
)
{
return
idx
(
$this
->
getPathMap
(),
$hash
,
array
());
}
public
function
removeAtomPathsFromCache
(
$hash
)
{
$map
=
$this
->
getPathMap
();
unset
(
$map
[
$hash
]);
$this
->
pathMap
=
$map
;
return
$this
;
}
public
function
addAtomPathsToCache
(
$hash
,
array
$paths
)
{
$map
=
$this
->
getPathMap
();
$map
[
$hash
]
=
$paths
;
$this
->
pathMap
=
$map
;
return
$this
;
}
/* -( Index )-------------------------------------------------------------- */
public
function
getIndex
()
{
if
(
$this
->
index
===
null
)
{
$this
->
index
=
$this
->
getCache
()->
getKey
(
'index'
,
array
());
}
return
$this
->
index
;
}
public
function
writeIndex
()
{
$this
->
getCache
()->
setKey
(
'index'
,
$this
->
getIndex
());
}
public
function
deleteAtomFromIndex
(
$hash
)
{
$index
=
$this
->
getIndex
();
unset
(
$index
[
$hash
]);
$this
->
index
=
$index
;
return
$this
;
}
public
function
addAtomToIndex
(
$hash
,
array
$data
)
{
$index
=
$this
->
getIndex
();
$index
[
$hash
]
=
$data
;
$this
->
index
=
$index
;
return
$this
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 8:56 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
71073
Default Alt Text
DivinerPublishCache.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment