ref #8508 adapt ERMS pipeline validator to taxon relationships
[cdmlib-apps.git] / cdm-pesi / src / main / java / eu / etaxonomy / cdm / io / pesi / erms / validation / ErmsRankImportValidator.java
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 import eu.etaxonomy.cdm.io.common.IOValidator;
18 import eu.etaxonomy.cdm.io.common.Source;
19 import eu.etaxonomy.cdm.io.pesi.erms.ErmsImportConfigurator;
20 import eu.etaxonomy.cdm.io.pesi.erms.ErmsImportState;
21
22 /**
23 * @author a.mueller
24 * @since 17.02.2010
25 */
26 public class ErmsRankImportValidator implements IOValidator<ErmsImportState>{
27 private static final Logger logger = Logger.getLogger(ErmsRankImportValidator.class);
28
29 @Override
30 public boolean validate(ErmsImportState state){
31 boolean result = true;
32 ErmsImportConfigurator config = state.getConfig();
33 logger.info("Checking for ranks not yet fully implemented");
34 //TODO ranks with not existing kingdoms (e.g. kingdom_id = 8)
35
36 return result;
37 }
38
39 private boolean checkTaxonStatus(ErmsImportConfigurator bmiConfig){
40 try {
41 boolean result = true;
42 Source source = bmiConfig.getSource();
43 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 " +
44 " FROM RelPTaxon " +
45 " INNER JOIN PTaxon ON RelPTaxon.PTNameFk1 = PTaxon.PTNameFk AND RelPTaxon.PTRefFk1 = PTaxon.PTRefFk " +
46 " INNER JOIN PTaxon AS PTaxon_1 ON RelPTaxon.PTNameFk2 = PTaxon_1.PTNameFk AND RelPTaxon.PTRefFk2 = PTaxon_1.PTRefFk " +
47 " INNER JOIN Name ON PTaxon.PTNameFk = Name.NameId " +
48 " WHERE (dbo.PTaxon.StatusFk = 1) AND ((RelPTaxon.RelQualifierFk = 7) OR (RelPTaxon.RelQualifierFk = 6) OR (RelPTaxon.RelQualifierFk = 2)) ";
49 ResultSet rs = source.getResultSet(strSQL);
50 boolean firstRow = true;
51 int i = 0;
52 while (rs.next()){
53 i++;
54 if (firstRow){
55 System.out.println("========================================================");
56 logger.warn("There are taxa that have a 'is synonym of' - relationship but having taxon status 'accepted'!");
57 System.out.println("========================================================");
58 }
59 int rIdentifier = rs.getInt("RIdentifier");
60 int nameFk = rs.getInt("PTNameFk");
61 int refFk = rs.getInt("PTRefFk");
62 int relPTaxonId = rs.getInt("relPTaxonId");
63 String taxonName = rs.getString("FullNameCache");
64
65 System.out.println("RIdentifier:" + rIdentifier + "\n name: " + nameFk +
66 "\n taxonName: " + taxonName + "\n refId: " + refFk + "\n RelPTaxonId: " + relPTaxonId );
67 result = firstRow = false;
68 }
69 if (i > 0){
70 System.out.println(" ");
71 }
72
73 return result;
74 } catch (SQLException e) {
75 e.printStackTrace();
76 return false;
77 }
78 }
79 }