Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98229799
DivinerPublishCache.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 11, 06:49
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 13, 06:49 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23534650
Attached To
rPH Phabricator
DivinerPublishCache.php
View Options
<?php
final
class
DivinerPublishCache
extends
DivinerDiskCache
{
private
$pathMap
;
private
$index
;
public
function
__construct
(
$cache_directory
)
{
return
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
;
}
}
Event Timeline
Log In to Comment