Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93277045
PhabricatorConfigTableSchema.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
Wed, Nov 27, 13:39
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Nov 29, 13:39 (2 d)
Engine
blob
Format
Raw Data
Handle
22586632
Attached To
rPH Phabricator
PhabricatorConfigTableSchema.php
View Options
<?php
final
class
PhabricatorConfigTableSchema
extends
PhabricatorConfigStorageSchema
{
private
$collation
;
private
$columns
=
array
();
private
$keys
=
array
();
public
function
addColumn
(
PhabricatorConfigColumnSchema
$column
)
{
$key
=
$column
->
getName
();
if
(
isset
(
$this
->
columns
[
$key
]))
{
throw
new
Exception
(
pht
(
'Trying to add duplicate column "%s"!'
,
$key
));
}
$this
->
columns
[
$key
]
=
$column
;
return
$this
;
}
public
function
addKey
(
PhabricatorConfigKeySchema
$key
)
{
$name
=
$key
->
getName
();
if
(
isset
(
$this
->
keys
[
$name
]))
{
throw
new
Exception
(
pht
(
'Trying to add duplicate key "%s"!'
,
$name
));
}
$key
->
setTable
(
$this
);
$this
->
keys
[
$name
]
=
$key
;
return
$this
;
}
public
function
getColumns
()
{
return
$this
->
columns
;
}
public
function
getColumn
(
$key
)
{
return
idx
(
$this
->
getColumns
(),
$key
);
}
public
function
getKeys
()
{
return
$this
->
keys
;
}
public
function
getKey
(
$key
)
{
return
idx
(
$this
->
getKeys
(),
$key
);
}
protected
function
getSubschemata
()
{
// NOTE: Keys and columns may have the same name, so make sure we return
// everything.
return
array_merge
(
array_values
(
$this
->
columns
),
array_values
(
$this
->
keys
));
}
public
function
setCollation
(
$collation
)
{
$this
->
collation
=
$collation
;
return
$this
;
}
public
function
getCollation
()
{
return
$this
->
collation
;
}
protected
function
compareToSimilarSchema
(
PhabricatorConfigStorageSchema
$expect
)
{
$issues
=
array
();
if
(
$this
->
getCollation
()
!=
$expect
->
getCollation
())
{
$issues
[]
=
self
::
ISSUE_COLLATION
;
}
return
$issues
;
}
public
function
newEmptyClone
()
{
$clone
=
clone
$this
;
$clone
->
columns
=
array
();
$clone
->
keys
=
array
();
return
$clone
;
}
}
Event Timeline
Log In to Comment