mirror of
https://github.com/JHUAPL/aqueduct.git
synced 2026-01-08 23:38:10 -05:00
71 lines
2.2 KiB
PHP
71 lines
2.2 KiB
PHP
<?php
|
|
/*
|
|
homepage: http://arc.semsol.org/
|
|
license: http://arc.semsol.org/license
|
|
|
|
class: ARC2 RDF Store Helper
|
|
author: Benjamin Nowack
|
|
version: 2008-04-03 (Tweak: Changed locking approach from "LOCK TABLE" to "GET LOCK")
|
|
*/
|
|
|
|
ARC2::inc('Class');
|
|
|
|
class ARC2_StoreHelper extends ARC2_Class {
|
|
|
|
function __construct($a = '', &$caller) {
|
|
parent::__construct($a, $caller);
|
|
}
|
|
|
|
function ARC2_StoreHelper($a = '', &$caller) {
|
|
$this->__construct($a, $caller);
|
|
}
|
|
|
|
function __init() {/* db_con */
|
|
parent::__init();
|
|
$this->store =& $this->caller;
|
|
}
|
|
|
|
/* */
|
|
|
|
function changeNamespaceURI($old_uri, $new_uri) {
|
|
$id_changes = 0;
|
|
$t_changes = 0;
|
|
/* table lock */
|
|
if ($this->store->getLock()) {
|
|
$con = $this->store->getDBCon();
|
|
foreach (array('id', 's', 'o') as $id_col) {
|
|
$tbl = $this->store->getTablePrefix() . $id_col . '2val';
|
|
$sql = 'SELECT id, val FROM ' . $tbl . ' WHERE val LIKE "' . mysql_real_escape_string($old_uri, $con). '%"';
|
|
if ($rs = mysql_query($sql, $con)) {
|
|
while ($row = mysql_fetch_array($rs)) {
|
|
$new_val = str_replace($old_uri, $new_uri, $row['val']);
|
|
$new_id = $this->store->getTermID($new_val, $id_col , 'id');
|
|
if (!$new_id) {/* new ns uri */
|
|
$sub_sql = "UPDATE " . $tbl . " SET val = '" . mysql_real_escape_string($new_val, $con) . "' WHERE id = " . $row['id'];
|
|
$sub_r = mysql_query($sub_sql, $con);
|
|
$id_changes++;
|
|
}
|
|
else {
|
|
$t_tbls = $this->store->getTables();
|
|
foreach ($t_tbls as $t_tbl) {
|
|
if (preg_match('/^triple_/', $t_tbl)) {
|
|
foreach (array('s', 'p', 'o', 'o_lang_dt') as $t_col) {
|
|
$sub_sql = "UPDATE " . $this->store->getTablePrefix() . $t_tbl . " SET " . $t_col . " = " . $new_id . " WHERE " . $t_col . " = " . $row['id'];
|
|
$sub_r = mysql_query($sub_sql, $con);
|
|
$t_changes += mysql_affected_rows($con);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$this->store->releaseLock();
|
|
}
|
|
return array('id_replacements' => $id_changes, 'triple_updates' => $t_changes);
|
|
}
|
|
|
|
/* */
|
|
|
|
}
|