Skip to main content
summaryrefslogblamecommitdiffstats
blob: a8086fe4a01292fe129881c6a6c529b06c5efe69 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                  

                                                       
                       

                                                                   
                                                                        
                                                       
                                                              



                                                                                                       
                         


                                                                
                                                   
                                                                                                                                            
                                                         
                                                                                                                                                                                                                                 

                                                                                                                    
 

                                               
 

                                    
                                                     
     
 

                                       
                                                           


             
                                                                                                                                                          
                                                


                                                                                                                       
 
                                      


                                                                                                          

                                           

                                            


                                                                                        
                             
                                           
        

                                                                                   
                                                                                                                
                          

                                                                                              




                                        
                                  
                                                                                   
           
                            
                                        
                                                                                               
           
                            

                              
        

                         
                                                             
        
     
 
  
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.ui.skynet.dbHealth;

import java.util.List;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.osee.framework.db.connection.ConnectionHandler;
import org.eclipse.osee.framework.db.connection.info.SupportedDatabase;
import org.eclipse.osee.framework.jdk.core.util.AHTML;
import org.eclipse.osee.framework.ui.skynet.blam.VariableMap;

/**
 * Identifies and removes addressing from the transaction table that no longer addresses other tables.
 * 
 * @author Theron Virgin
 */
public class CleanUpAddressingData extends DatabaseHealthTask {

   private static final String NOT_BACKED_GAMMAS =
         "SELECT gamma_id from osee_txs Union Select rem_gamma_id as gamma_id FROM osee_removed_txs %s " + HealthHelper.ALL_BACKING_GAMMAS;
   private static final String NOT_BACKED_TRANSACTIONS =
         "SELECT transaction_id from osee_txs UNION SELECT rem_transaction_id as transaction_id FROM osee_removed_txs UNION SELECT DISTINCT transaction_id FROM osee_removed_txs %s SELECT transaction_id from osee_tx_details";
   private static final String REMOVE_NOT_ADDRESSED_GAMMAS = "DELETE FROM osee_txs WHERE gamma_id = ?";
   private static final String REMOVE_NOT_ADDRESSED_TRANSACTIONS = "DELETE FROM osee_txs WHERE transaction_id = ?";

   private List<Object[]> gammas = null;
   private List<Object[]> transactions = null;

   @Override
   public String getFixTaskName() {
      return "Fix TXS Entries with no Backing Data";
   }

   @Override
   public String getVerifyTaskName() {
      return "Check for TXS Entries with no Backing Data";
   }

   @Override
   public void run(VariableMap variableMap, IProgressMonitor monitor, Operation operation, StringBuilder builder, boolean showDetails) throws Exception {
      boolean fix = operation == Operation.Fix;
      boolean verify = !fix;
      monitor.beginTask(
            fix ? "Deleting TXS Entries with No Backing Data" : "Checking For TXS Entries with No Backing Data", 100);

      if (verify || gammas == null) {
         gammas =
               HealthHelper.runSingleResultQuery(
                     String.format(NOT_BACKED_GAMMAS, SupportedDatabase.getComplementSql()), "gamma_id");
         monitor.worked(25);
         if (monitor.isCanceled()) return;
      }
      if (verify || transactions == null) {
         transactions =
               HealthHelper.runSingleResultQuery(String.format(NOT_BACKED_TRANSACTIONS,
                     SupportedDatabase.getComplementSql()), "transaction_id");
         monitor.worked(25);
         if (monitor.isCanceled()) return;
      }

      StringBuffer sbFull = new StringBuffer(AHTML.beginMultiColumnTable(100, 1));
      HealthHelper.displayForCleanUp("Gamma Id", sbFull, builder, verify, gammas, "'s with no backing data\n");
      monitor.worked(20);
      HealthHelper.displayForCleanUp("Transaction Id", sbFull, builder, verify, transactions,
            "'s with no backing data\n");
      monitor.worked(20);

      if (monitor.isCanceled()) return;

      if (fix) {
         if (gammas.size() > 0) {
            ConnectionHandler.runBatchUpdate(REMOVE_NOT_ADDRESSED_GAMMAS, gammas);
         }
         monitor.worked(5);
         if (transactions.size() > 0) {
            ConnectionHandler.runBatchUpdate(REMOVE_NOT_ADDRESSED_TRANSACTIONS, transactions);
         }
         monitor.worked(5);
         gammas = null;
         transactions = null;
      }

      if (showDetails) {
         HealthHelper.endTable(sbFull, getVerifyTaskName());
      }
   }

}

Back to the top