adapt app-import to v5.45
[cdmlib-apps.git] / cdm-pesi / src / main / java / eu / etaxonomy / cdm / io / pesi / erms / validation / ErmsAreaImportValidator.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.logging.log4j.LogManager;
16 import org.apache.logging.log4j.Logger;
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 * @since 17.02.2010
26 */
27 public class ErmsAreaImportValidator implements IOValidator<ErmsImportState>{
28
29 private static Logger logger = LogManager.getLogger();
30
31 @Override
32 public boolean validate(ErmsImportState state){
33 boolean result = true;
34 ErmsImportConfigurator config = state.getConfig();
35 logger.info("Checking for Areas not yet implemented");
36 // result &= checkTaxonStatus(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 }