1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252 |
- <?php
- function chado_get_id_from_nid($table, $nid, $linking_table = NULL) {
- if (empty($linking_table)) {
- $linking_table = 'chado_' . $table;
- }
- $sql = "SELECT " . $table . "_id as id FROM {$linking_table} WHERE nid = :nid";
- return db_query($sql, array(':nid' => $nid))->fetchField();
- }
- function chado_get_nid_from_id($table, $id, $linking_table = NULL) {
- if (empty($linking_table)) {
- $linking_table = 'chado_' . $table;
- }
- $sql = "SELECT nid FROM {" . $linking_table . "} WHERE " . $table . "_id = :" . $table . "_id";
- return db_query($sql, array(":" . $table . "_id" => $id))->fetchField();
- }
- function chado_node_get_base_table($content_type, $module = FALSE) {
- if ($module) {
- $node_info = call_user_func($details['module'] . '_node_info');
- }
- else {
- $node_types = module_invoke_all('node_info');
- if (isset($node_types[$content_type])) {
- $node_info = $node_types[$content_type];
- }
- else {
- return FALSE;
- }
- }
- if (isset($node_info['chado_node_api']['base_table'])) {
- return $node_info['chado_node_api']['base_table'];
- }
- else {
- return FALSE;
- }
- }
- function chado_validate_node_form_triggering_element($form, &$form_state) {
-
-
-
- if ($_POST['_triggering_element_name'] != $form_state['triggering_element']['#name']) {
- $form_state['triggering_element']['#name'] = $_POST['_triggering_element_name'];
- }
- }
- function chado_add_node_form_subtables_add_button_validate($form, &$form_state) {
-
-
-
- if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
- $subsection = $matches[1];
- switch($subsection) {
- case 'properties':
- chado_add_node_form_properties_add_button_validate($form, $form_state);
- break;
- case 'dbxrefs':
- chado_add_node_form_dbxrefs_add_button_validate($form, $form_state);
- break;
- case 'relationships':
- chado_add_node_form_relationships_add_button_validate($form, $form_state);
- break;
- }
- }
- }
- function chado_add_node_form_subtables_add_button_submit($form, &$form_state) {
-
-
-
- if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
- $subsection = $matches[1];
- switch($subsection) {
- case 'properties':
- chado_add_node_form_properties_add_button_submit($form, $form_state);
- break;
- case 'dbxrefs':
- chado_add_node_form_dbxrefs_add_button_submit($form, $form_state);
- break;
- case 'relationships':
- chado_add_node_form_relationships_add_button_submit($form, $form_state);
- break;
- }
- }
-
-
- $form_state['rebuild'] = TRUE;
- }
- function chado_add_node_form_subtables_remove_button_validate($form, &$form_state) {
-
-
-
- chado_validate_node_form_triggering_element($form, $form_state);
-
-
-
- if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
- $subsection = $matches[1];
- switch($subsection) {
- case 'properties':
- chado_add_node_form_properties_remove_button_validate($form, $form_state);
- break;
- case 'dbxrefs':
- chado_add_node_form_dbxrefs_remove_button_validate($form, $form_state);
- break;
- case 'relationships':
- chado_add_node_form_relationships_remove_button_validate($form, $form_state);
- break;
- }
- }
- }
- function chado_add_node_form_subtables_remove_button_submit($form, &$form_state) {
-
-
-
- if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
- $subsection = $matches[1];
- switch($subsection) {
- case 'properties':
- chado_add_node_form_properties_remove_button_submit($form, $form_state);
- break;
- case 'dbxrefs':
- chado_add_node_form_dbxrefs_remove_button_submit($form, $form_state);
- break;
- case 'relationships':
- chado_add_node_form_relationships_remove_button_submit($form, $form_state);
- break;
- }
- }
-
-
- $form_state['rebuild'] = TRUE;
- }
- function chado_add_node_form_subtable_ajax_update($form, &$form_state) {
-
-
-
- chado_validate_node_form_triggering_element($form, $form_state);
-
-
-
- if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
- $subsection = $matches[1];
- switch($subsection) {
- case 'properties':
- return $form['properties']['property_table'];
- break;
- case 'dbxrefs':
- return $form['addtl_dbxrefs']['dbxref_table'];
- break;
- case 'relationships':
- return $form['relationships']['relationship_table'];
- break;
- }
- }
- }
- function chado_node_sync_form($form, &$form_state) {
- $form = array();
- if (isset($form_state['build_info']['args'][0])) {
- $module = $form_state['build_info']['args'][0];
- $linking_table = $form_state['build_info']['args'][1];
- $node_info = call_user_func($module . '_node_info');
- $args = $node_info[$linking_table]['chado_node_api'];
- $form_state['chado_node_api'] = $args;
- }
- $form['linking_table'] = array(
- '#type' => 'hidden',
- '#value' => $linking_table
- );
-
- $form['sync'] = array(
- '#type' => 'fieldset',
- '#title' => 'Sync ' . $args['record_type_title']['plural'],
- '#descrpition' => '',
- );
- $form['sync']['description'] = array(
- '#type' => 'item',
- '#value' => t("%title_plural of the types listed ".
- "below in the %title_singular Types box will be synced (leave blank to sync all types). You may limit the ".
- "%title_plural to be synced by a specific organism. Depending on the ".
- "number of %title_plural in the chado database this may take a long ".
- "time to complete. ",
- array(
- '%title_singular' => $args['record_type_title']['singular'],
- '%title_plural' => $args['record_type_title']['plural']
- )),
- );
- if ($args['sync_filters']['type_id']) {
- $form['sync']['type_ids'] = array(
- '#title' => t('%title_singular Types',
- array(
- '%title_singular' => $args['record_type_title']['singular'],
- '%title_plural' => $args['record_type_title']['plural']
- )),
- '#type' => 'textarea',
- '#description' => t("Enter the names of the %title_singular types to sync. " .
- "Leave blank to sync all %title_plural. Separate each type with a comma ".
- "or new line. Pages for these %title_singular ".
- "types will be created automatically for %title_plural that exist in the ".
- "chado database. The names must match ".
- "exactly (spelling and case) with terms in the ontologies",
- array(
- '%title_singular' => strtolower($args['record_type_title']['singular']),
- '%title_plural' => strtolower($args['record_type_title']['plural'])
- )),
- '#default_value' => (isset($form_state['values']['type_id'])) ? $form_state['values']['type_id'] : '',
- );
- }
-
- if ($args['sync_filters']['organism_id']) {
- $sql = "SELECT * FROM {organism} ORDER BY genus, species";
- $results = chado_query($sql);
- $organisms[] = '';
- foreach ($results as $organism) {
- $organisms[$organism->organism_id] = "$organism->genus $organism->species ($organism->common_name)";
- }
- $form['sync']['organism_id'] = array(
- '#title' => t('Organism'),
- '#type' => t('select'),
- '#description' => t("Choose the organism for which %title_plural types set above will be synced.",
- array(
- '%title_singular' => $args['record_type_title']['singular'],
- '%title_plural' => $args['record_type_title']['plural']
- )),
- '#options' => $organisms,
- '#default_value' => (isset($form_state['values']['organism_id'])) ? $form_state['values']['organism_id'] : 0,
- );
- }
-
- if (array_key_exists('checkboxes', $args['sync_filters'])) {
-
- $base_table = $args['base_table'];
- $table_info = chado_get_schema($base_table);
-
-
- if (array_key_exists('primary key', $table_info) and count($table_info['primary key']) == 1) {
- $pkey = $table_info['primary key'][0];
- $columns = $args['sync_filters']['checkboxes'];
- $select_cols = implode("|| ' ' ||", $columns);
-
- $sql = "
- SELECT BT.$pkey as id, $select_cols as value
- FROM {" . $base_table . "} BT
- LEFT JOIN public.$linking_table LT ON LT.$pkey = BT.$pkey
- WHERE LT.$pkey IS NULL
- ORDER BY value ASC
- ";
- $results = chado_query($sql);
- $values = array();
- foreach ($results as $result) {
- $values[$result->id] = $result->value;
- }
- if (count($values) > 0) {
- $form['sync']['ids'] = array(
- '#title' => 'Avaliable ' . $args['record_type_title']['plural'],
- '#type' => 'checkboxes',
- '#options' => $values,
- '#default_value' => (isset($form_state['values']['ids'])) ? $form_state['values']['ids'] : array(),
- '#suffix' => '</div><br>',
- '#prefix' => t("The following %title_plural have not been synced. Check those to be synced or leave all unchecked to sync them all.",
- array(
- '%title_singular' => strtolower($args['record_type_title']['singular']),
- '%title_plural' => strtolower($args['record_type_title']['plural'])
- )) . '<div style="height: 200px; overflow: scroll">',
- );
- }
- else {
- $form['sync']['no_ids'] = array(
- '#markup' => "<p>There are no " . strtolower($args['record_type_title']['plural']) . " to sync.</p>",
- );
- }
- }
- }
-
- else {
- $form['sync']['max_sync'] = array(
- '#type' => 'textfield',
- '#title' => t('Maximum number of records to Sync'),
- '#description' => t('Leave this field empty to sync all records, regardless of number'),
- '#default_value' => (isset($form_state['values']['max_sync'])) ? $form_state['values']['max_sync'] : '',
- );
- }
- $form['sync']['button'] = array(
- '#type' => 'submit',
- '#value' => t('Sync ' . $args['record_type_title']['plural']),
- '#weight' => 3,
- );
- $form['cleanup'] = array(
- '#type' => 'fieldset',
- '#title' => t('Clean Up')
- );
- $form['cleanup']['description'] = array(
- '#markup' => t("<p>With Drupal and chado residing in different databases " .
- "it is possible that nodes in Drupal and " . strtolower($args['record_type_title']['plural']) . " in Chado become " .
- "\"orphaned\". This can occur if a node in Drupal is " .
- "deleted but the corresponding chado records is not and/or vice " .
- "versa. Click the button below to resolve these discrepancies.</p>"),
- '#weight' => -10,
- );
- $form['cleanup']['cleanup_batch_size'] = array(
- '#type' => 'textfield',
- '#title' => t('Batch Size'),
- '#description' => t('The number of records to analyze together in a batch. If you are having memory issues you might want to decrease this number.'),
- '#default_value' => variable_get('chado_node_api_cleanup_batch_size', 25000),
- );
- $form['cleanup']['button'] = array(
- '#type' => 'submit',
- '#value' => 'Clean up orphaned ' . strtolower($args['record_type_title']['plural']),
- '#weight' => 2,
- );
-
- $hook_form_alter = $args['hook_prefix'] . '_chado_node_sync_form';
- if (function_exists($hook_form_alter)) {
- $form = call_user_func($hook_form_alter, $form, $form_state);
- }
- return $form;
- }
- function chado_node_sync_form_validate($form, &$form_state) {
- if (empty($form_state['values']['cleanup_batch_size'])) {
- $form_state['values']['cleanup_batch_size'] = 25000;
- drupal_set_message('You entered a Batch Size of 0 for Cleaning-up orphaned nodes. Since this is not valid, we reset it to the default of 25,000.', 'warning');
- }
- elseif (!is_numeric($form_state['values']['cleanup_batch_size'])) {
- form_set_error('cleanup_batch_size', 'The batch size must be a postitive whole number.');
- }
- else {
-
- $form_state['values']['cleanup_batch_size'] = abs(round($form_state['values']['cleanup_batch_size']));
- }
- }
- function chado_node_sync_form_submit($form, $form_state) {
- global $user;
- if (preg_match('/^Sync/', $form_state['values']['op'])) {
-
- $args = $form_state['chado_node_api'];
- $module = $form_state['chado_node_api']['hook_prefix'];
- $base_table = $form_state['chado_node_api']['base_table'];
- $linking_table = $form_state['values']['linking_table'];
-
- $hook_form_hijack_submit = $args['hook_prefix'] . '_chado_node_sync_form_submit';
- if (function_exists($hook_form_hijack_submit)) {
- return call_user_func($hook_form_hijack_submit, $form, $form_state);
- }
-
- $types = array();
- if (isset($form_state['values']['type_ids'])) {
-
- $temp_types = preg_split("/[,\n\r]+/", $form_state['values']['type_ids']);
-
- for($i = 0; $i < count($temp_types); $i++) {
-
- if (trim($temp_types[$i]) == '') {
- continue;
- }
- $types[$i] = trim($temp_types[$i]);
- }
- }
-
- $ids = array();
- if (array_key_exists('ids', $form_state['values'])){
- foreach ($form_state['values']['ids'] as $id => $selected) {
- if ($selected) {
- $ids[] = $id;
- }
- }
- }
-
- $organism_id = FALSE;
- if (array_key_exists('organism_id', $form_state['values'])) {
- $organism_id = $form_state['values']['organism_id'];
- }
-
- $job_args = array(
- 'base_table' => $base_table,
- 'max_sync' => (!empty($form_state['values']['max_sync'])) ? $form_state['values']['max_sync'] : FALSE,
- 'organism_id' => $organism_id,
- 'types' => $types,
- 'ids' => $ids,
- 'inking_table' => $linking_table
- );
- $title = "Sync " . $args['record_type_title']['plural'];
- tripal_add_job($title, $module, 'chado_node_sync_records', $job_args, $user->uid);
- }
- if (preg_match('/^Clean up orphaned/', $form_state['values']['op'])) {
- $module = $form_state['chado_node_api']['hook_prefix'];
- $base_table = $form_state['chado_node_api']['base_table'];
- $job_args = array($base_table, $form_state['values']['cleanup_batch_size']);
- variable_set('chado_node_api_cleanup_batch_size', $form_state['values']['cleanup_batch_size']);
- tripal_add_job($form_state['values']['op'], $module, 'chado_cleanup_orphaned_nodes', $job_args, $user->uid);
- }
- }
- function chado_node_sync_records($base_table, $max_sync = FALSE, $organism_id = FALSE,
- $types = array(), $ids = array(), $linking_table = FALSE, $job_id = NULL) {
- global $user;
- $base_table_id = $base_table . '_id';
- if (!$linking_table) {
- $linking_table = 'chado_' . $base_table;
- }
- print "\nSync'ing $base_table records. ";
-
- $select = array("$base_table.*");
- $joins = array();
- $where_clauses = array();
- $where_args = array();
-
- $restrictions = '';
- if (count($types) > 0) {
- $restrictions .= " Type(s): " . implode(', ',$types) . "\n";
- $select[] = 'cvterm.name as cvtname';
- $joins[] = "LEFT JOIN {cvterm} cvterm ON $base_table.type_id = cvterm.cvterm_id";
- foreach ($types as $type) {
- $sanitized_type = str_replace(' ','_',$type);
- $where_clauses['type'][] = "cvterm.name = :type_name_$sanitized_type";
- $where_args['type'][":type_name_$sanitized_type"] = $type;
- }
- }
-
- if ($ids) {
- $restrictions .= " Specific Records: " . count($ids) . " recored(s) specified.\n";
- foreach ($ids as $id) {
- $where_clauses['id'][] = "$base_table.$base_table_id = :id_$id";
- $where_args['id'][":id_$id"] = $id;
- }
- }
-
- if ($organism_id) {
- $organism = chado_select_record('organism', array('*'), array('organism_id' => $organism_id));
- $restrictions .= " Organism: " . $organism[0]->genus . " " . $organism[0]->species . "\n";
- $select[] = 'organism.*';
- $joins[] = "LEFT JOIN {organism} organism ON organism.organism_id = $base_table.organism_id";
- $where_clauses['organism'][] = 'organism.organism_id = :organism_id';
- $where_args['organism'][':organism_id'] = $organism_id;
- }
-
- $hook_query_alter = $linking_table . '_chado_node_sync_select_query';
- if (function_exists($hook_query_alter)) {
- $update = call_user_func($hook_query_alter, array(
- 'select' => $select,
- 'joins' => $joins,
- 'where_clauses' => $where_clauses,
- 'where_args' => $where_args,
- ));
-
- if ($update and is_array($update)) {
- $select = $update['select'];
- $joins = $update['joins'];
- $where_clauses = $update['where_clauses'];
- $where_args = $update['where_args'];
- }
- }
-
-
-
- $query = "
- SELECT " . implode(', ', $select) . ' ' .
- 'FROM {' . $base_table . '} ' . $base_table . ' ' . implode(' ', $joins) . ' '.
- " LEFT JOIN public.$linking_table CT ON CT.$base_table_id = $base_table.$base_table_id " .
- "WHERE CT.$base_table_id IS NULL ";
-
- $where = '';
- $sql_args = array();
- foreach ($where_clauses as $category => $items) {
- $where .= ' AND (';
- foreach ($items as $item) {
- $where .= $item . ' OR ';
- }
- $where = substr($where, 0, -4);
- $where .= ') ';
- $sql_args = array_merge($sql_args, $where_args[$category]);
- }
- if ($where) {
- $query .= $where;
- }
- $query .- " ORDER BY " . $base_table_id;
-
- if ($max_sync) {
- $query .= " LIMIT $max_sync";
- $restrictions .= " Limited to $max_sync records.\n";
- }
- if ($restrictions) {
- print "Records matching these criteria will be synced: \n$restrictions";
- }
- else {
- print "\n";
- }
-
- $results = chado_query($query, $sql_args);
-
- $count = $results->rowCount();
- $interval = intval($count * 0.01);
- if ($interval < 1) {
- $interval = 1;
- }
- print "\n$count $base_table records found.\n";
- $i = 0;
- $transaction = db_transaction();
- print "\nNOTE: Syncing is performed using a database transaction. \n" .
- "If the sync fails or is terminated prematurely then the entire set of \n" .
- "synced items is rolled back and will not be found in the database\n\n";
- try {
- $percent = 0;
- foreach ($results as $record) {
-
-
- if ($job_id and $i % $interval == 0) {
- $percent = sprintf("%.2f", (($i + 1) / $count) * 100);
- print "Syncing $base_table " . ($i + 1) . " of $count (" . $percent . "%). Memory: " . number_format(memory_get_usage()) . " bytes.\r";
- tripal_set_job_progress($job_id, intval(($i/$count)*100));
- }
-
- $result = db_select($linking_table, 'lnk')
- ->fields('lnk',array('nid'))
- ->condition($base_table_id, $record->{$base_table_id}, '=')
- ->execute()
- ->fetchObject();
- if (!empty($result)) {
-
- }
- else {
-
- $new_node = new stdClass();
- $new_node->type = $linking_table;
- $new_node->uid = $user->uid;
- $new_node->{$base_table_id} = $record->{$base_table_id};
- $new_node->$base_table = $record;
- $new_node->language = LANGUAGE_NONE;
-
-
- $hook_create_new_node = $linking_table . '_chado_node_sync_create_new_node';
- if (function_exists($hook_create_new_node)) {
- $new_node = call_user_func($hook_create_new_node, $new_node, $record);
- }
-
- $form = array();
- $form_state = array();
- node_validate($new_node, $form, $form_state);
- if (!form_get_errors()) {
- $node = node_submit($new_node);
- node_save($node);
-
- }
- else {
- watchdog('trp-fsync', "Failed to insert $base_table: %title", array('%title' => $new_node->title), WATCHDOG_ERROR);
- }
- }
- $i++;
- }
- print "\n\nComplete!\n";
- }
- catch (Exception $e) {
- $transaction->rollback();
- print "\n";
- watchdog_exception('trp-fsync', $e);
- print "FAILED: Rolling back database changes...\n";
- }
- }
- function chado_cleanup_orphaned_nodes($table, $nentries = 25000, $job_id = NULL) {
- $count = 0;
-
- $dsql = "SELECT COUNT(*) FROM {node} WHERE type = 'chado_" . $table . "'";
- $clsql= "SELECT COUNT(*) FROM {chado_" . $table . "}";
-
-
- $ndat = db_query($dsql);
- $temp = $ndat->fetchObject();
- $count = $temp->count;
- $cdat = db_query($clsql);
- $temp = $cdat->fetchObject();
- if(count < $temp->count) {
- $count = $temp->count;
- }
- $m = ceil($count / $nentries);
- for($i = 0; $i < $m; $i++) {
- $offset = ($nentries*$i)+1;
- chado_cleanup_orphaned_nodes_part($table, $job_id, $nentries, $offset);
- }
- return '';
- }
- function chado_cleanup_orphaned_nodes_part($table, $job_id = NULL, $nentries, $offset) {
- $count = 0;
-
- $debug_memory_leak = FALSE;
-
- $dsql = "SELECT * FROM {node} WHERE type = 'chado_" . $table . "' ORDER BY nid LIMIT $nentries OFFSET $offset";
- $nsql = "SELECT * FROM {node} WHERE nid = :nid";
- $csql = "SELECT * FROM {chado_" . $table . "} WHERE nid = :nid ";
- $clsql= "SELECT * FROM {chado_" . $table . "} ORDER BY nid LIMIT $nentries OFFSET $offset";
- $lsql = "SELECT * FROM {" . $table . "} where " . $table . "_id = :" . $table . "_id ";
-
- print "Getting chado_$table\n";
- $cnodes = array();
- $res = db_query($clsql);
- foreach ($res as $node) {
- $cnodes[$count] = $node;
- $count++;
- }
-
- $mu = ($debug_memory_leak) ? memory_get_usage() : 0;
- $res = NULL;
- if ($debug_memory_leak) {
- print "\tFreeing res: " . ($mu - memory_get_usage()) ." bytes\n";
- }
- $interval = intval($count * 0.01);
- if ($interval < 1) {
- $interval = 1;
- }
-
-
- print "Verifying all chado_$table Entries\n";
- $deleted = 0;
- foreach ($cnodes as $nid) {
-
- if ($job_id and $i % $interval == 0) {
- tripal_set_job_progress($job_id, intval(($i / $count) * 100));
- }
-
- $results = db_query($nsql, array(':nid' => $nid->nid));
- $node = $results->fetchObject();
- if (!$node) {
- $deleted++;
- db_query("DELETE FROM {chado_" . $table . "} WHERE nid = :nid", array(':nid' => $nid->nid));
- $message = "chado_$table missing node.... DELETING: $nid->nid";
- watchdog('tripal_core', $message, array(), WATCHDOG_WARNING);
- }
-
- $table_id = $table . "_id";
- $results = chado_query($lsql, array(":" . $table . "_id" => $nid->$table_id));
- $record = $results->fetchObject();
- if (!$record) {
- $deleted++;
- $sql = "DELETE FROM {chado_" . $table . "} WHERE " . $table . "_id = :" . $table . "_id";
- db_query($sql, array(":" . $table . "_id" => $nid->$table_id));
- $message = "chado_$table missing $table.... DELETING entry.";
- watchdog('tripal_core', $message, array(), WATCHDOG_NOTICE);
- }
- $i++;
- }
-
- $mu = ($debug_memory_leak) ? memory_get_usage() : 0;
- $cnodes = NULL;
- if ($debug_memory_leak) {
- print "\tFreeing cnodes: " . ($mu - memory_get_usage()) ." bytes\n";
- }
- $mu = ($debug_memory_leak) ? memory_get_usage() : 0;
- $results = NULL;
- if ($debug_memory_leak) {
- print "\tFreeing results: " . ($mu - memory_get_usage()) ." bytes\n";
- }
- $mu = ($debug_memory_leak) ? memory_get_usage() : 0;
- $node = NULL;
- if ($debug_memory_leak) {
- print "\tFreeing node: " . ($mu - memory_get_usage()) ." bytes\n";
- }
- $mu = ($debug_memory_leak) ? memory_get_usage() : 0;
- $record = NULL;
- if ($debug_memory_leak) {
- print "\tFreeing record: " . ($mu - memory_get_usage()) ." bytes\n";
- }
- print "\t$deleted chado_$table entries missing either a node or chado entry.\n";
-
-
- $deleted = 0;
-
- print "Getting nodes\n";
- $nodes = array();
- $res = db_query($dsql);
- foreach ($res as $node) {
- $nodes[$count] = $node;
- $count++;
- }
-
- $mu = ($debug_memory_leak) ? memory_get_usage() : 0;
- $res = NULL;
- if ($debug_memory_leak) {
- print "\tFreeing res:\n" . ($mu - memory_get_usage()) ." bytes\n";
- }
- foreach ($nodes as $node) {
-
- if ($job_id and $i % $interval == 0) {
- tripal_set_job_progress($job_id, intval(($i / $count) * 100));
- }
-
-
- $results = db_query($csql, array(":nid" => $node->nid));
- $link = $results->fetchObject();
- if (!$link) {
- if (node_access('delete', $node)) {
- $deleted++;
- $message = "Node missing in chado_$table table.... DELETING node $node->nid";
- watchdog("tripal_core", $message, array(), WATCHDOG_NOTICE);
- node_delete($node->nid);
- }
- else {
- $message = "Node missing in chado_$table table.... but cannot delete due to improper permissions (node $node->nid)";
- watchdog("tripal_core", $message, array(), WATCHDOG_WARNING);
- }
- }
- $i++;
- }
-
- $mu = ($debug_memory_leak) ? memory_get_usage() : 0;
- $results = NULL;
- if ($debug_memory_leak) {
- print "\tFreeing results: " . ($mu - memory_get_usage()) . " bytes\n";
- }
- $mu = ($debug_memory_leak) ? memory_get_usage() : 0;
- $link = NULL;
- if ($debug_memory_leak) {
- print "\tFreeing link: " . ($mu - memory_get_usage()) . " bytes\n";
- }
- $mu = ($debug_memory_leak) ? memory_get_usage() : 0;
- $nodes = NULL;
- if ($debug_memory_leak) {
- print "\tFreeing nodes: " . ($mu - memory_get_usage()) ." bytes\n";
- }
- print "\t$deleted nodes did not have corresponding chado_$table entries.\n";
- return '';
- }
- function hook_chado_node_sync_create_new_node($new_node, $record) {
-
-
-
-
- $new_node->uniquename = $record->uniquename;
- return $new_node;
- }
- function hook_chado_node_sync_form($form, &$form_state) {
-
-
- return $form;
- }
- function hook_chado_node_sync_form_submit ($form, $form_state) {
- global $user;
- $job_args = array(
- $base_table,
- $max_sync,
- $organism_id,
- $types
- );
-
- tripal_add_job(
- $title,
- $module,
- 'chado_node_sync_records',
- $job_args,
- $user->uid
- );
- }
- function hook_chado_node_sync_select_query($query) {
-
-
- $query['select'][] = 'example.myfavfield';
-
-
- $query['joins'][] = 'LEFT JOIN {exampleprop} PROP ON PROP.example_id=EXAMPLE.example_id';
-
-
-
-
-
-
- $category = 'my_category';
-
-
-
-
- $query['where_clauses'][$category][] = 'example.myfavfield = :favvalue';
- $query['where_args'][$category][':favvalue'] = 'awesome-ness';
-
- return $query;
- }
|