Project

General

Profile

Download (3.02 KB) Statistics
| Branch: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
* 
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.cdm.io.pesi.erms.validation;
11

    
12
import java.sql.ResultSet;
13
import java.sql.SQLException;
14

    
15
import org.apache.log4j.Logger;
16

    
17

    
18
import eu.etaxonomy.cdm.io.common.IOValidator;
19
import eu.etaxonomy.cdm.io.common.Source;
20
import eu.etaxonomy.cdm.io.pesi.erms.ErmsImportConfigurator;
21
import eu.etaxonomy.cdm.io.pesi.erms.ErmsImportState;
22

    
23
/**
24
 * @author a.mueller
25
 * @created 17.02.2010
26
 * @version 1.0
27
 */
28
public class ErmsReferenceImportValidator implements IOValidator<ErmsImportState>{
29
	private static final Logger logger = Logger.getLogger(ErmsReferenceImportValidator.class);
30

    
31
	public boolean validate(ErmsImportState state){
32
		boolean result = true;
33
		ErmsImportConfigurator config = state.getConfig();
34
		logger.info("Checking for references not yet fully implemented");
35
//		result &= checkTaxonStatus(config);
36
//		result &= checkInactivated(config);
37
		return result;
38
	}
39
	
40
	private boolean checkTaxonStatus(ErmsImportConfigurator bmiConfig){
41
		try {
42
			boolean result = true;
43
			Source source = bmiConfig.getSource();
44
			String strSQL = " SELECT RelPTaxon.RelQualifierFk, RelPTaxon.relPTaxonId, PTaxon.PTNameFk, PTaxon.PTRefFk, PTaxon_1.PTNameFk AS Expr1, PTaxon.RIdentifier, PTaxon_1.RIdentifier AS Expr3, Name.FullNameCache "  +
45
				" FROM RelPTaxon " + 
46
					" INNER JOIN PTaxon ON RelPTaxon.PTNameFk1 = PTaxon.PTNameFk AND RelPTaxon.PTRefFk1 = PTaxon.PTRefFk " + 
47
					" INNER JOIN PTaxon AS PTaxon_1 ON RelPTaxon.PTNameFk2 = PTaxon_1.PTNameFk AND RelPTaxon.PTRefFk2 = PTaxon_1.PTRefFk  " + 
48
					" INNER JOIN Name ON PTaxon.PTNameFk = Name.NameId " +
49
				" WHERE (dbo.PTaxon.StatusFk = 1) AND ((RelPTaxon.RelQualifierFk = 7) OR (RelPTaxon.RelQualifierFk = 6) OR (RelPTaxon.RelQualifierFk = 2)) ";
50
			ResultSet rs = source.getResultSet(strSQL);
51
			boolean firstRow = true;
52
			int i = 0;
53
			while (rs.next()){
54
				i++;
55
				if (firstRow){
56
					System.out.println("========================================================");
57
					logger.warn("There are taxa that have a 'is synonym of' - relationship but having taxon status 'accepted'!");
58
					System.out.println("========================================================");
59
				}
60
				int rIdentifier = rs.getInt("RIdentifier");
61
				int nameFk = rs.getInt("PTNameFk");
62
				int refFk = rs.getInt("PTRefFk");
63
				int relPTaxonId = rs.getInt("relPTaxonId");
64
				String taxonName = rs.getString("FullNameCache");
65
				
66
				System.out.println("RIdentifier:" + rIdentifier + "\n  name: " + nameFk + 
67
						"\n  taxonName: " + taxonName + "\n  refId: " + refFk + "\n  RelPTaxonId: " + relPTaxonId );
68
				result = firstRow = false;
69
			}
70
			if (i > 0){
71
				System.out.println(" ");
72
			}
73
			
74
			return result;
75
		} catch (SQLException e) {
76
			e.printStackTrace();
77
			return false;
78
		}
79
	}
80

    
81

    
82

    
83
}
(9-9/13)