Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108421278
20180418.alamanc.interface.unique.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, Apr 16, 16:22
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Apr 18, 16:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25605331
Attached To
rPH Phabricator
20180418.alamanc.interface.unique.php
View Options
<?php
$interface_table
=
new
AlmanacInterface
();
$binding_table
=
new
AlmanacBinding
();
$interface_conn
=
$interface_table
->
establishConnection
(
'w'
);
queryfx
(
$interface_conn
,
'LOCK TABLES %T WRITE, %T WRITE'
,
$interface_table
->
getTableName
(),
$binding_table
->
getTableName
());
$seen
=
array
();
foreach
(
new
LiskMigrationIterator
(
$interface_table
)
as
$interface
)
{
$device
=
$interface
->
getDevicePHID
();
$network
=
$interface
->
getNetworkPHID
();
$address
=
$interface
->
getAddress
();
$port
=
$interface
->
getPort
();
$key
=
"{$device}/{$network}/{$address}/{$port}"
;
// If this is the first copy of this row we've seen, mark it as seen and
// move on.
if
(
empty
(
$seen
[
$key
]))
{
$seen
[
$key
]
=
$interface
->
getID
();
continue
;
}
$survivor
=
queryfx_one
(
$interface_conn
,
'SELECT * FROM %T WHERE id = %d'
,
$interface_table
->
getTableName
(),
$seen
[
$key
]);
$bindings
=
queryfx_all
(
$interface_conn
,
'SELECT * FROM %T WHERE interfacePHID = %s'
,
$binding_table
->
getTableName
(),
$interface
->
getPHID
());
// Repoint bindings to the survivor.
foreach
(
$bindings
as
$binding
)
{
// Check if there's already a binding to the survivor.
$existing
=
queryfx_one
(
$interface_conn
,
'SELECT * FROM %T WHERE interfacePHID = %s and devicePHID = %s and '
.
'servicePHID = %s'
,
$binding_table
->
getTableName
(),
$survivor
[
'phid'
],
$binding
[
'devicePHID'
],
$binding
[
'servicePHID'
]);
if
(!
$existing
)
{
// Reattach this binding to the survivor.
queryfx
(
$interface_conn
,
'UPDATE %T SET interfacePHID = %s WHERE id = %d'
,
$binding_table
->
getTableName
(),
$survivor
[
'phid'
],
$binding
[
'id'
]);
}
else
{
// Binding to survivor already exists. Remove this now-redundant binding.
queryfx
(
$interface_conn
,
'DELETE FROM %T WHERE id = %d'
,
$binding_table
->
getTableName
(),
$binding
[
'id'
]);
}
}
queryfx
(
$interface_conn
,
'DELETE FROM %T WHERE id = %d'
,
$interface_table
->
getTableName
(),
$interface
->
getID
());
}
queryfx
(
$interface_conn
,
'ALTER TABLE %T ADD UNIQUE KEY `key_unique` '
.
'(devicePHID, networkPHID, address, port)'
,
$interface_table
->
getTableName
());
queryfx
(
$interface_conn
,
'UNLOCK TABLES'
);
Event Timeline
Log In to Comment