ref #7525 restoring all previously removed Criteria methods
[cdmlib.git] / cdmlib-io / src / main / java / eu / etaxonomy / cdm / io / specimen / SpecimenImportBase.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.specimen;
11
12
13 import java.util.ArrayList;
14 import java.util.HashMap;
15 import java.util.HashSet;
16 import java.util.List;
17 import java.util.Map;
18 import java.util.Set;
19 import java.util.UUID;
20
21 import org.apache.log4j.Logger;
22
23 import eu.etaxonomy.cdm.api.application.ICdmRepository;
24 import eu.etaxonomy.cdm.api.facade.DerivedUnitFacade;
25 import eu.etaxonomy.cdm.api.service.config.FindOccurrencesConfigurator;
26 import eu.etaxonomy.cdm.api.service.pager.Pager;
27 import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
28 import eu.etaxonomy.cdm.io.common.CdmImportBase;
29 import eu.etaxonomy.cdm.io.common.IImportConfigurator;
30 import eu.etaxonomy.cdm.io.specimen.abcd206.in.Identification;
31 import eu.etaxonomy.cdm.io.specimen.abcd206.in.SpecimenImportReport;
32 import eu.etaxonomy.cdm.model.agent.AgentBase;
33 import eu.etaxonomy.cdm.model.agent.Institution;
34 import eu.etaxonomy.cdm.model.agent.Person;
35 import eu.etaxonomy.cdm.model.agent.Team;
36 import eu.etaxonomy.cdm.model.common.CdmBase;
37 import eu.etaxonomy.cdm.model.common.DefinedTerm;
38 import eu.etaxonomy.cdm.model.common.ISourceable;
39 import eu.etaxonomy.cdm.model.common.IdentifiableSource;
40 import eu.etaxonomy.cdm.model.common.LanguageString;
41 import eu.etaxonomy.cdm.model.common.OriginalSourceBase;
42 import eu.etaxonomy.cdm.model.common.OriginalSourceType;
43 import eu.etaxonomy.cdm.model.description.DescriptionBase;
44 import eu.etaxonomy.cdm.model.description.DescriptionElementSource;
45 import eu.etaxonomy.cdm.model.description.Feature;
46 import eu.etaxonomy.cdm.model.description.IndividualsAssociation;
47 import eu.etaxonomy.cdm.model.description.TaxonDescription;
48 import eu.etaxonomy.cdm.model.name.INonViralName;
49 import eu.etaxonomy.cdm.model.name.NomenclaturalCode;
50 import eu.etaxonomy.cdm.model.name.Rank;
51 import eu.etaxonomy.cdm.model.name.SpecimenTypeDesignation;
52 import eu.etaxonomy.cdm.model.name.SpecimenTypeDesignationStatus;
53 import eu.etaxonomy.cdm.model.name.TaxonName;
54 import eu.etaxonomy.cdm.model.name.TaxonNameFactory;
55 import eu.etaxonomy.cdm.model.occurrence.Collection;
56 import eu.etaxonomy.cdm.model.occurrence.DerivedUnit;
57 import eu.etaxonomy.cdm.model.occurrence.DeterminationEvent;
58 import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationBase;
59 import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationType;
60 import eu.etaxonomy.cdm.model.reference.Reference;
61 import eu.etaxonomy.cdm.model.reference.ReferenceFactory;
62 import eu.etaxonomy.cdm.model.taxon.Classification;
63 import eu.etaxonomy.cdm.model.taxon.Synonym;
64 import eu.etaxonomy.cdm.model.taxon.Taxon;
65 import eu.etaxonomy.cdm.model.taxon.TaxonBase;
66 import eu.etaxonomy.cdm.model.taxon.TaxonNode;
67 import eu.etaxonomy.cdm.persistence.query.MatchMode;
68 import eu.etaxonomy.cdm.strategy.parser.NonViralNameParserImpl;
69 import eu.etaxonomy.cdm.strategy.parser.ParserProblem;
70 import eu.etaxonomy.cdm.strategy.parser.TimePeriodParser;
71
72
73 /**
74 * @author p.kelbert
75 * @since 20.10.2008
76 */
77 public abstract class SpecimenImportBase<CONFIG extends IImportConfigurator, STATE extends SpecimenImportStateBase>
78 extends CdmImportBase<CONFIG, STATE> {
79
80 private static final long serialVersionUID = 4423065367998125678L;
81 private static final Logger logger = Logger.getLogger(SpecimenImportBase.class);
82
83 protected static final UUID SPECIMEN_SCAN_TERM = UUID.fromString("acda15be-c0e2-4ea8-8783-b9b0c4ad7f03");
84
85 private static final String COLON = ":";
86
87 protected Map<String, DefinedTerm> kindOfUnitsMap;
88
89
90 @Override
91 protected abstract void doInvoke(STATE state);
92
93 /**
94 * Handle a single unit
95 * @param state
96 * @param item
97 */
98 protected abstract void handleSingleUnit(STATE state, Object item) ;
99
100
101
102 protected TaxonName getOrCreateTaxonName(String scientificName, Rank rank, boolean preferredFlag, STATE state, int unitIndexInAbcdFile){
103 TaxonName taxonName = null;
104 SpecimenImportConfiguratorBase<?,?,?> config = state.getConfig();
105
106 //check atomised name data for rank
107 //new name will be created
108 TaxonName atomisedTaxonName = null;
109 if (rank==null && unitIndexInAbcdFile>=0 && ((state.getDataHolder().getAtomisedIdentificationList() != null && !state.getDataHolder().getAtomisedIdentificationList().isEmpty())|| state.getDataHolder().getAtomisedIdentificationList().size() > 0)) {
110 atomisedTaxonName = setTaxonNameByType(state.getDataHolder().getAtomisedIdentificationList().get(unitIndexInAbcdFile), scientificName, state);
111 if(atomisedTaxonName!=null){
112 rank = atomisedTaxonName.getRank();
113 }
114 }
115 if(config.isReuseExistingTaxaWhenPossible()){
116 TaxonName parsedName = atomisedTaxonName;
117 if(parsedName==null){
118
119 parsedName = parseScientificName(scientificName, state, state.getReport(), rank);
120
121 }
122 atomisedTaxonName = parsedName;
123 if(config.isIgnoreAuthorship() && parsedName!=null){// && preferredFlag){
124 // do not ignore authorship for non-preferred names because they need
125 // to be created for the determination history
126 String nameCache = TaxonName.castAndDeproxy(parsedName).getNameCache();
127 List<TaxonName> names = getNameService().findNamesByNameCache(nameCache, MatchMode.EXACT, null);
128 if (!names.isEmpty()){
129 taxonName = getBestMatchingName(scientificName, new ArrayList<>(names), state);
130 }
131 if (taxonName == null && !names.isEmpty()){
132 taxonName = names.get(0);
133 }
134
135 } else {
136 //search for existing names
137 List<TaxonName> names = getNameService().listByTitleWithRestrictions(TaxonName.class, scientificName, MatchMode.EXACT, null, null, null, null, null);
138 taxonName = getBestMatchingName(scientificName, names, state);
139 //still nothing found -> try with the atomised name full title cache
140 if(taxonName==null && atomisedTaxonName!=null){
141 names = getNameService().listByTitleWithRestrictions(TaxonName.class, atomisedTaxonName.getFullTitleCache(), MatchMode.EXACT, null, null, null, null, null);
142 taxonName = getBestMatchingName(atomisedTaxonName.getTitleCache(), names, state);
143 //still nothing found -> try with the atomised name title cache
144 if(taxonName==null){
145 names = getNameService().listByTitleWithRestrictions(TaxonName.class, atomisedTaxonName.getTitleCache(), MatchMode.EXACT, null, null, null, null, null);
146 taxonName = getBestMatchingName(atomisedTaxonName.getTitleCache(), names, state);
147 }
148 }
149
150 }
151
152 }
153
154 if(taxonName==null && atomisedTaxonName!=null){
155 taxonName = atomisedTaxonName;
156 state.getReport().addName(taxonName);
157 logger.info("Created new taxon name "+taxonName);
158 if(taxonName.hasProblem()){
159 state.getReport().addInfoMessage(String.format("Created %s with parsing problems", taxonName));
160 }
161 if(!atomisedTaxonName.getTitleCache().equals(scientificName)){
162 state.getReport().addInfoMessage(String.format("Taxon %s was parsed as %s", scientificName, atomisedTaxonName.getTitleCache()));
163 }
164 }
165 else if(taxonName==null){
166 //create new taxon name
167
168 if (state.getDataHolder().getNomenclatureCode().equals(NomenclaturalCode.ICNAFP)){
169 taxonName = TaxonNameFactory.NewBotanicalInstance(rank);
170 }else if (state.getDataHolder().getNomenclatureCode().equals(NomenclaturalCode.ICZN)){
171 taxonName = TaxonNameFactory.NewZoologicalInstance(rank);
172 }else{
173 taxonName = TaxonNameFactory.NewNonViralInstance(rank);
174 }
175 taxonName.setFullTitleCache(scientificName,true);
176 taxonName.setTitleCache(scientificName, true);
177 state.getReport().addName(taxonName);
178 logger.info("Created new taxon name "+taxonName);
179 }
180 save(taxonName, state);
181 return taxonName;
182 }
183
184 protected TaxonName getBestMatchingName(String scientificName, java.util.Collection<TaxonName> names, STATE state){
185 Set<TaxonName> namesWithAcceptedTaxa = new HashSet<>();
186 List<TaxonName> namesWithAcceptedTaxaInClassification = new ArrayList<>();
187 for (TaxonName name : names) {
188 if(!name.getTaxa().isEmpty()){
189 Set<Taxon> taxa = name.getTaxa();
190 for (Taxon taxon:taxa){
191 if (!taxon.getTaxonNodes().isEmpty()){
192 //use only taxa included in a classification
193 for (TaxonNode node:taxon.getTaxonNodes()){
194 if (state.getClassification() != null && node.getClassification().equals(state.getClassification())){
195 namesWithAcceptedTaxaInClassification.add(name);
196 }else {
197 namesWithAcceptedTaxa.add(name);
198 }
199 }
200
201 }
202 }
203
204 }
205 }
206 String message = String.format("More than one taxon name was found for %s, maybe in other classifications!", scientificName);
207 //check for names with accepted taxa in classification
208 if(namesWithAcceptedTaxaInClassification.size()>0){
209 if(namesWithAcceptedTaxaInClassification.size()>1){
210
211 state.getReport().addInfoMessage(message);
212 logger.warn(message);
213 return null;
214 }
215 return namesWithAcceptedTaxaInClassification.iterator().next();
216 }
217 //check for any names with accepted taxa
218 if(namesWithAcceptedTaxa.size()>0){
219 if(namesWithAcceptedTaxa.size()>1){
220
221 state.getReport().addInfoMessage(message);
222 logger.warn(message);
223 return null;
224 }
225 return namesWithAcceptedTaxa.iterator().next();
226 }
227 //no names with accepted taxa found -> check accepted taxa of synonyms
228 List<Taxon> taxaFromSynonyms = new ArrayList<>();
229 for (TaxonName name : names) {
230 Set<TaxonBase> taxonBases = name.getTaxonBases();
231 for (TaxonBase taxonBase : taxonBases) {
232 if(taxonBase.isInstanceOf(Synonym.class)){
233 Synonym synonym = HibernateProxyHelper.deproxy(taxonBase, Synonym.class);
234 taxaFromSynonyms.add(synonym.getAcceptedTaxon());
235 }
236 }
237 }
238 if(taxaFromSynonyms.size()>0){
239 if(taxaFromSynonyms.size()>1){
240 state.getReport().addInfoMessage(message);
241 logger.warn(message);
242 return null;
243 }
244 return taxaFromSynonyms.iterator().next().getName();
245 }
246 //no accepted and no synonyms -> return one of the names and create a new taxon
247 if (names.isEmpty()){
248 return null;
249 }else{
250 return names.iterator().next();
251 }
252 }
253 /**
254 * Parse automatically the scientific name
255 * @param scientificName the scientific name to parse
256 * @param state the current import state
257 * @param report the import report
258 * @return a parsed name
259 */
260
261 protected TaxonName parseScientificName(String scientificName, STATE state, SpecimenImportReport report, Rank rank) {
262
263 NonViralNameParserImpl nvnpi = NonViralNameParserImpl.NewInstance();
264 TaxonName taxonName = null;
265 boolean problem = false;
266
267 if (logger.isDebugEnabled()){
268 logger.debug("parseScientificName " + state.getDataHolder().getNomenclatureCode().toString());
269 }
270
271 if (state.getDataHolder().getNomenclatureCode().toString().equals("Zoological") || state.getDataHolder().getNomenclatureCode().toString().contains("ICZN")) {
272 taxonName = (TaxonName)nvnpi.parseFullName(scientificName, NomenclaturalCode.ICZN, rank);
273 if (taxonName.hasProblem()) {
274 problem = true;
275 }
276 }
277 else if (state.getDataHolder().getNomenclatureCode().toString().equals("Botanical") || state.getDataHolder().getNomenclatureCode().toString().contains("ICBN") || state.getDataHolder().getNomenclatureCode().toString().contains("ICNAFP")) {
278 taxonName = (TaxonName)nvnpi.parseFullName(scientificName, NomenclaturalCode.ICNAFP, rank);
279 if (taxonName.hasProblem()) {
280 problem = true;
281 }
282 }
283 else if (state.getDataHolder().getNomenclatureCode().toString().equals("Bacterial") || state.getDataHolder().getNomenclatureCode().toString().contains("ICBN")) {
284 taxonName = (TaxonName)nvnpi.parseFullName(scientificName, NomenclaturalCode.ICNB, rank);
285 if (taxonName.hasProblem()) {
286 problem = true;
287 }
288 }
289 else if (state.getDataHolder().getNomenclatureCode().toString().equals("Cultivar") || state.getDataHolder().getNomenclatureCode().toString().contains("ICNCP")) {
290 taxonName = (TaxonName)nvnpi.parseFullName(scientificName, NomenclaturalCode.ICNCP, rank);
291 if (taxonName.hasProblem()) {
292 problem = true;
293 }
294 }
295 if (problem) {
296 String message = String.format("Parsing problems for %s", scientificName);
297 if(taxonName!=null){
298 for (ParserProblem parserProblem : taxonName.getParsingProblems()) {
299 message += "\n\t- "+parserProblem;
300 }
301 }
302 report.addInfoMessage(message);
303 logger.info(message);
304 }
305 return taxonName;
306
307 }
308
309 /**
310 * Create the name without automatic parsing, either because it failed, or because the user deactivated it.
311 * The name is built upon the ABCD fields
312 * @param atomisedMap : the ABCD atomised fields
313 * @param fullName : the full scientific name
314 * @param state
315 * @return the corresponding Botanical or Zoological or... name
316 */
317 protected TaxonName setTaxonNameByType(
318 HashMap<String, String> atomisedMap, String fullName, STATE state) {
319 boolean problem = false;
320 if (logger.isDebugEnabled()){
321 logger.debug("settaxonnamebytype " + state.getDataHolder().getNomenclatureCode().toString());
322 }
323
324 if (state.getDataHolder().getNomenclatureCode().equals("Zoological") || state.getDataHolder().getNomenclatureCode().equals(NomenclaturalCode.ICZN.getUuid())) {
325 TaxonName taxonName = TaxonNameFactory.NewZoologicalInstance(null);
326 taxonName.setFullTitleCache(fullName, true);
327 taxonName.setGenusOrUninomial(NB(getFromMap(atomisedMap, "Genus")));
328 taxonName.setInfraGenericEpithet(NB(getFromMap(atomisedMap, "SubGenus")));
329 taxonName.setSpecificEpithet(NB(getFromMap(atomisedMap,"SpeciesEpithet")));
330 taxonName.setInfraSpecificEpithet(NB(getFromMap(atomisedMap,"SubspeciesEpithet")));
331
332 if (taxonName.getGenusOrUninomial() != null){
333 taxonName.setRank(Rank.GENUS());
334 }
335
336 if (taxonName.getInfraGenericEpithet() != null){
337 taxonName.setRank(Rank.SUBGENUS());
338 }
339
340 if (taxonName.getSpecificEpithet() != null){
341 taxonName.setRank(Rank.SPECIES());
342 }
343
344 if (taxonName.getInfraSpecificEpithet() != null){
345 taxonName.setRank(Rank.SUBSPECIES());
346 }
347
348 Team team = null;
349 if (getFromMap(atomisedMap, "AuthorTeamParenthesis") != null) {
350 team = Team.NewInstance();
351 team.setTitleCache(getFromMap(atomisedMap, "AuthorTeamParenthesis"), true);
352 }
353 else {
354 if (getFromMap(atomisedMap, "AuthorTeamAndYear") != null) {
355 team = Team.NewInstance();
356 team.setTitleCache(getFromMap(atomisedMap, "AuthorTeamAndYear"), true);
357 }
358 }
359 if (team != null) {
360 taxonName.setBasionymAuthorship(team);
361 }
362 else {
363 if (getFromMap(atomisedMap, "AuthorTeamParenthesis") != null) {
364 taxonName.setAuthorshipCache(getFromMap(atomisedMap, "AuthorTeamParenthesis"));
365 }
366 else if (getFromMap(atomisedMap, "AuthorTeamAndYear") != null) {
367 taxonName.setAuthorshipCache(getFromMap(atomisedMap, "AuthorTeamAndYear"));
368 }
369 }
370 if (getFromMap(atomisedMap, "CombinationAuthorTeamAndYear") != null) {
371 team = Team.NewInstance();
372 team.setTitleCache(getFromMap(atomisedMap, "CombinationAuthorTeamAndYear"), true);
373 taxonName.setCombinationAuthorship(team);
374 }
375 if (taxonName.hasProblem()) {
376 logger.info("pb ICZN");
377 problem = true;
378 }
379 else {
380 return taxonName;
381 }
382 }
383 else if (state.getDataHolder().getNomenclatureCode().equals("Botanical") || state.getDataHolder().getNomenclatureCode().equals(NomenclaturalCode.ICNAFP.getUuid())) {
384 TaxonName taxonName = parseScientificName(fullName, state, state.getReport(), null);
385 if (taxonName != null){
386 return taxonName;
387 }
388 else{
389 taxonName = TaxonNameFactory.NewBotanicalInstance(null);
390 }
391 taxonName.setFullTitleCache(fullName, true);
392 taxonName.setGenusOrUninomial(NB(getFromMap(atomisedMap, "Genus")));
393 taxonName.setSpecificEpithet(NB(getFromMap(atomisedMap, "FirstEpithet")));
394 taxonName.setInfraSpecificEpithet(NB(getFromMap(atomisedMap, "InfraSpeEpithet")));
395 try {
396 taxonName.setRank(Rank.getRankByName(getFromMap(atomisedMap, "Rank")));
397 } catch (Exception e) {
398 if (taxonName.getInfraSpecificEpithet() != null){
399 taxonName.setRank(Rank.SUBSPECIES());
400 }
401 else if (taxonName.getSpecificEpithet() != null){
402 taxonName.setRank(Rank.SPECIES());
403 }
404 else if (taxonName.getInfraGenericEpithet() != null){
405 taxonName.setRank(Rank.SUBGENUS());
406 }
407 else if (taxonName.getGenusOrUninomial() != null){
408 taxonName.setRank(Rank.GENUS());
409 }
410 }
411 Team team = null;
412 if (getFromMap(atomisedMap, "AuthorTeamParenthesis") != null) {
413 team = Team.NewInstance();
414 team.setTitleCache(getFromMap(atomisedMap, "AuthorTeamParenthesis"), true);
415 taxonName.setBasionymAuthorship(team);
416 }
417 if (getFromMap(atomisedMap, "AuthorTeam") != null) {
418 team = Team.NewInstance();
419 team.setTitleCache(getFromMap(atomisedMap, "AuthorTeam"), true);
420 taxonName.setCombinationAuthorship(team);
421 }
422 if (team == null) {
423 if (getFromMap(atomisedMap, "AuthorTeamParenthesis") != null) {
424 taxonName.setAuthorshipCache(getFromMap(atomisedMap, "AuthorTeamParenthesis"));
425 }
426 else if (getFromMap(atomisedMap, "AuthorTeam") != null) {
427 taxonName.setAuthorshipCache(getFromMap(atomisedMap, "AuthorTeam"));
428 }
429 }
430 if (getFromMap(atomisedMap, "CombinationAuthorTeamAndYear") != null) {
431 team = Team.NewInstance();
432 team.setTitleCache(getFromMap(atomisedMap, "CombinationAuthorTeamAndYear"), true);
433 taxonName.setCombinationAuthorship(team);
434 }
435 if (taxonName.hasProblem()) {
436 logger.info("pb ICBN");
437 problem = true;
438 }
439 else {
440 return taxonName;
441 }
442 }
443 else if (state.getDataHolder().getNomenclatureCode().equals("Bacterial") || state.getDataHolder().getNomenclatureCode().equals(NomenclaturalCode.ICNB.getUuid())) {
444 TaxonName taxonName = TaxonNameFactory.NewBacterialInstance(null);
445 taxonName.setFullTitleCache(fullName, true);
446 taxonName.setGenusOrUninomial(getFromMap(atomisedMap, "Genus"));
447 taxonName.setInfraGenericEpithet(NB(getFromMap(atomisedMap, "SubGenus")));
448 taxonName.setSpecificEpithet(NB(getFromMap(atomisedMap, "Species")));
449 taxonName.setInfraSpecificEpithet(NB(getFromMap(atomisedMap, "SubspeciesEpithet")));
450
451 if (taxonName.getGenusOrUninomial() != null){
452 taxonName.setRank(Rank.GENUS());
453 }
454 else if (taxonName.getInfraGenericEpithet() != null){
455 taxonName.setRank(Rank.SUBGENUS());
456 }
457 else if (taxonName.getSpecificEpithet() != null){
458 taxonName.setRank(Rank.SPECIES());
459 }
460 else if (taxonName.getInfraSpecificEpithet() != null){
461 taxonName.setRank(Rank.SUBSPECIES());
462 }
463
464 if (getFromMap(atomisedMap, "AuthorTeamAndYear") != null) {
465 Team team = Team.NewInstance();
466 team.setTitleCache(getFromMap(atomisedMap, "AuthorTeamAndYear"), true);
467 taxonName.setCombinationAuthorship(team);
468 }
469 if (getFromMap(atomisedMap, "ParentheticalAuthorTeamAndYear") != null) {
470 Team team = Team.NewInstance();
471 team.setTitleCache(getFromMap(atomisedMap, "ParentheticalAuthorTeamAndYear"), true);
472 taxonName.setBasionymAuthorship(team);
473 }
474 if (taxonName.hasProblem()) {
475 logger.info("pb ICNB");
476 problem = true;
477 }
478 else {
479 return taxonName;
480 }
481 }
482 else if (state.getDataHolder().getNomenclatureCode().equals("Cultivar")) {
483 TaxonName taxonName = TaxonNameFactory.NewCultivarInstance(null);
484
485 if (taxonName.hasProblem()) {
486 logger.info("pb ICNCP");
487 problem = true;
488 }
489 else {
490 return taxonName;
491 }
492 return taxonName;
493 }
494
495 if (problem) {
496 logger.info("Problem im setTaxonNameByType ");
497 TaxonName taxonName = TaxonNameFactory.NewNonViralInstance(null);
498 taxonName.setFullTitleCache(fullName, true);
499 return taxonName;
500 }
501 TaxonName tn = TaxonNameFactory.NewNonViralInstance(null);
502 return tn;
503 }
504
505 /**
506 * Get a formated string from a hashmap
507 * @param atomisedMap
508 * @param key
509 * @return
510 */
511 private String getFromMap(HashMap<String, String> atomisedMap, String key) {
512 String value = null;
513 if (atomisedMap.containsKey(key)) {
514 value = atomisedMap.get(key);
515 }
516
517 try {
518 if (value != null && key.matches(".*Year.*")) {
519 value = value.trim();
520 if (value.matches("[a-z A-Z ]*[0-9]{4}$")) {
521 String tmp = value.split("[0-9]{4}$")[0];
522 int year = Integer.parseInt(value.split(tmp)[1]);
523 if (year >= 1752) {
524 value = tmp;
525 }
526 else {
527 value = null;
528 }
529 }
530 else {
531 value = null;
532 }
533 }
534 }
535 catch (Exception e) {
536 value = null;
537 }
538 return value;
539 }
540
541 /**
542 * Very fast and dirty implementation to allow handling of transient objects as described in
543 * https://dev.e-taxonomy.eu/trac/ticket/3726
544 *
545 * Not yet complete.
546 *
547 * @param cdmBase
548 * @param state
549 */
550 protected UUID save(CdmBase cdmBase, SpecimenImportStateBase state) {
551 ICdmRepository cdmRepository = state.getConfig().getCdmAppController();
552 if (cdmRepository == null){
553 cdmRepository = this;
554 }
555
556 if (cdmBase.isInstanceOf(LanguageString.class)){
557 return cdmRepository.getTermService().saveLanguageData(CdmBase.deproxy(cdmBase, LanguageString.class));
558 }else if (cdmBase.isInstanceOf(SpecimenOrObservationBase.class)){
559 SpecimenOrObservationBase specimen = CdmBase.deproxy(cdmBase, SpecimenOrObservationBase.class);
560
561 return cdmRepository.getOccurrenceService().saveOrUpdate(specimen);
562 }else if (cdmBase.isInstanceOf(Reference.class)){
563 return cdmRepository.getReferenceService().saveOrUpdate(CdmBase.deproxy(cdmBase, Reference.class));
564 }else if (cdmBase.isInstanceOf(Classification.class)){
565 return cdmRepository.getClassificationService().saveOrUpdate(CdmBase.deproxy(cdmBase, Classification.class));
566 }else if (cdmBase.isInstanceOf(AgentBase.class)){
567 return cdmRepository.getAgentService().saveOrUpdate(CdmBase.deproxy(cdmBase, AgentBase.class));
568 }else if (cdmBase.isInstanceOf(Collection.class)){
569 return cdmRepository.getCollectionService().saveOrUpdate(CdmBase.deproxy(cdmBase, Collection.class));
570 }else if (cdmBase.isInstanceOf(DescriptionBase.class)){
571 DescriptionBase description = CdmBase.deproxy(cdmBase, DescriptionBase.class);
572
573 return cdmRepository.getDescriptionService().saveOrUpdate(description);
574 }else if (cdmBase.isInstanceOf(TaxonBase.class)){
575 return cdmRepository.getTaxonService().saveOrUpdate(CdmBase.deproxy(cdmBase, TaxonBase.class));
576 }else if (cdmBase.isInstanceOf(TaxonName.class)){
577 return cdmRepository.getNameService().saveOrUpdate(CdmBase.deproxy(cdmBase, TaxonName.class));
578 }else if (cdmBase.isInstanceOf(TaxonNode.class)){
579 return cdmRepository.getTaxonNodeService().saveOrUpdate(CdmBase.deproxy(cdmBase, TaxonNode.class));
580 }else{
581 throw new IllegalArgumentException("Class not supported in save method: " + CdmBase.deproxy(cdmBase, CdmBase.class).getClass().getSimpleName());
582 }
583
584 }
585
586
587 protected SpecimenOrObservationBase findExistingSpecimen(String unitId, SpecimenImportStateBase state){
588 ICdmRepository cdmAppController = state.getConfig().getCdmAppController();
589 if(cdmAppController==null){
590 cdmAppController = this;
591 }
592 FindOccurrencesConfigurator config = new FindOccurrencesConfigurator();
593 config.setSignificantIdentifier(unitId);
594 Pager<SpecimenOrObservationBase> existingSpecimens = cdmAppController.getOccurrenceService().findByTitle(config);
595 if(!existingSpecimens.getRecords().isEmpty()){
596 if(existingSpecimens.getRecords().size()==1){
597 return existingSpecimens.getRecords().iterator().next();
598 }
599 }
600 return null;
601 }
602
603 protected abstract void importAssociatedUnits(STATE state, Object item, DerivedUnitFacade derivedUnitFacade);
604
605 /**
606 * getFacade : get the DerivedUnitFacade based on the recordBasis
607 * @param state
608 *
609 * @return DerivedUnitFacade
610 */
611 protected DerivedUnitFacade getFacade(STATE state) {
612 if (logger.isDebugEnabled()){
613 logger.info("getFacade()");
614 }
615 SpecimenOrObservationType type = null;
616
617 // create specimen
618 if (NB((state.getDataHolder().getRecordBasis())) != null) {
619 if (state.getDataHolder().getRecordBasis().toLowerCase().startsWith("s") || state.getDataHolder().getRecordBasis().toLowerCase().indexOf("specimen")>-1) {// specimen
620 type = SpecimenOrObservationType.PreservedSpecimen;
621 }
622 if (state.getDataHolder().getRecordBasis().toLowerCase().startsWith("o") ||state.getDataHolder().getRecordBasis().toLowerCase().indexOf("observation")>-1 ) {
623 type = SpecimenOrObservationType.Observation;
624 }
625 if (state.getDataHolder().getRecordBasis().toLowerCase().indexOf("fossil")>-1){
626 type = SpecimenOrObservationType.Fossil;
627 }
628 if (state.getDataHolder().getRecordBasis().toLowerCase().indexOf("living")>-1) {
629 type = SpecimenOrObservationType.LivingSpecimen;
630 }
631 if (type == null) {
632 logger.info("The basis of record does not seem to be known: " + state.getDataHolder().getRecordBasis());
633 type = SpecimenOrObservationType.DerivedUnit;
634 }
635 // TODO fossils?
636 } else {
637 logger.info("The basis of record is null");
638 type = SpecimenOrObservationType.DerivedUnit;
639 }
640 DerivedUnitFacade derivedUnitFacade = DerivedUnitFacade.NewInstance(type);
641 return derivedUnitFacade;
642 }
643
644 /**
645 * Look if the Institution does already exist
646 * @param institutionCode: a string with the institutioncode
647 * @param config : the configurator
648 * @return the Institution (existing or new)
649 */
650 protected Institution getInstitution(String institutionCode, STATE state) {
651 SpecimenImportConfiguratorBase config = state.getConfig();
652 Institution institution=null;
653 institution = (Institution)state.institutions.get(institutionCode);
654 if (institution != null){
655 return institution;
656 }
657 List<Institution> institutions;
658 try {
659 institutions = getAgentService().searchInstitutionByCode(institutionCode);
660
661 } catch (Exception e) {
662 institutions = new ArrayList<Institution>();
663 logger.warn(e);
664 }
665 if (institutions.size() > 0 && config.isReuseExistingMetaData()) {
666 for (Institution institut:institutions){
667 try{
668 if (institut.getCode().equalsIgnoreCase(institutionCode)) {
669 institution=institut;
670 break;
671 }
672 }catch(Exception e){logger.warn("no institution code in the db");}
673 }
674 }
675 if (logger.isDebugEnabled()){
676 if(institution !=null) {
677 logger.info("getinstitution " + institution.toString());
678 }
679 }
680 if (institution == null){
681 // create institution
682 institution = Institution.NewInstance();
683 institution.setCode(institutionCode);
684 institution.setTitleCache(institutionCode, true);
685 UUID uuid = save(institution, state);
686 }
687
688
689 state.institutions.put(institutionCode, institution);
690 return institution;
691 }
692
693 /**
694 * Look if the Collection does already exist
695 * @param collectionCode
696 * @param collectionCode: a string
697 * @param config : the configurator
698 * @return the Collection (existing or new)
699 */
700 protected Collection getCollection(Institution institution, String collectionCode, STATE state) {
701 SpecimenImportConfiguratorBase config = state.getConfig();
702 Collection collection = null;
703 List<Collection> collections;
704 collection = (Collection) state.collections.get(collectionCode);
705 if (collection != null){
706 return collection;
707 }
708 try {
709 collections = getCollectionService().searchByCode(collectionCode);
710 } catch (Exception e) {
711 collections = new ArrayList<Collection>();
712 }
713 if (collections.size() > 0 && config.isReuseExistingMetaData()) {
714 for (Collection coll:collections){
715 if (coll.getCode() != null && coll.getInstitute() != null
716 && coll.getCode().equalsIgnoreCase(collectionCode) && coll.getInstitute().equals(institution)) {
717 collection = coll;
718 break;
719 }
720 }
721 }
722
723 if(collection == null){
724 collection =Collection.NewInstance();
725 collection.setCode(collectionCode);
726 collection.setInstitute(institution);
727 collection.setTitleCache(collectionCode);
728 UUID uuid = save(collection, state);
729 }
730
731
732
733 state.collections.put(collectionCode, collection);
734
735 return collection;
736 }
737
738 /**
739 * @param reference
740 * @param citationDetail
741 * @return
742 */
743 //FIXME this method is highly critical, because
744 // * it will have serious performance and memory problems with large databases
745 // (databases may easily have >1 Mio source records)
746 // * it does not make sense to search for existing sources and then clone them
747 // we need to search for existing references instead and use them (if exist)
748 // for our new source.
749 protected IdentifiableSource getIdentifiableSource(Reference reference, String citationDetail) {
750
751 /* List<IdentifiableSource> issTmp = getCommonService().list(IdentifiableSource.class, null, null, null, null);
752
753
754 if (reference != null){
755 try {
756 for (OriginalSourceBase<?> osb: issTmp){
757 if (osb.getCitation() != null && osb.getCitation().getTitleCache().equalsIgnoreCase(reference.getTitleCache())){
758 String osbDetail = osb.getCitationMicroReference();
759 if ((StringUtils.isBlank(osbDetail) && StringUtils.isBlank(citationDetail))
760 || (osbDetail != null && osbDetail.equalsIgnoreCase(citationDetail)) ) {
761 // System.out.println("REFERENCE FOUND RETURN EXISTING SOURCE");
762 return (IdentifiableSource) osb.clone();
763 }
764 }
765 }
766 } catch (CloneNotSupportedException e) {
767 throw new RuntimeException(e);
768 } catch (Exception e1){
769 e1.printStackTrace();
770 }
771 }
772 */
773 IdentifiableSource sour = IdentifiableSource.NewInstance(OriginalSourceType.Import,null,null, reference,citationDetail);
774 return sour;
775 }
776
777 /**
778 * Add the hierarchy for a Taxon(add higher taxa)
779 * @param classification
780 * @param taxon: a taxon to add as a node
781 * @param state: the ABCD import state
782 */
783 protected void addParentTaxon(Taxon taxon, STATE state, boolean preferredFlag, Classification classification){
784 INonViralName nvname = taxon.getName();
785 Rank rank = nvname.getRank();
786 Taxon genus =null;
787 Taxon subgenus =null;
788 Taxon species = null;
789 Taxon subspecies = null;
790 Taxon parent = null;
791 if(rank!=null){
792 if (rank.isLower(Rank.GENUS() )){
793 String genusOrUninomial = nvname.getGenusOrUninomial();
794 TaxonName taxonName = getOrCreateTaxonName(genusOrUninomial, Rank.GENUS(), preferredFlag, state, -1);
795 genus = getOrCreateTaxonForName(taxonName, state);
796 if (genus == null){
797 logger.debug("The genus should not be null " + taxonName);
798 }
799 if (preferredFlag) {
800 parent = linkParentChildNode(null, genus, classification, state);
801 }
802
803 }
804 if (rank.isLower(Rank.SUBGENUS())){
805 String prefix = nvname.getGenusOrUninomial();
806 String name = nvname.getInfraGenericEpithet();
807 if (name != null){
808 TaxonName taxonName = getOrCreateTaxonName(prefix+" "+name, Rank.SUBGENUS(), preferredFlag, state, -1);
809 subgenus = getOrCreateTaxonForName(taxonName, state);
810 if (preferredFlag) {
811 parent = linkParentChildNode(genus, subgenus, classification, state);
812 } }
813 }
814 if (rank.isLower(Rank.SPECIES())){
815 if (subgenus!=null){
816 String prefix = nvname.getGenusOrUninomial();
817 String name = nvname.getInfraGenericEpithet();
818 String spe = nvname.getSpecificEpithet();
819 if (spe != null){
820 TaxonName taxonName = getOrCreateTaxonName(prefix+" "+name+" "+spe, Rank.SPECIES(), preferredFlag, state, -1);
821 species = getOrCreateTaxonForName(taxonName, state);
822 if (preferredFlag) {
823 parent = linkParentChildNode(subgenus, species, classification, state);
824 }
825 }
826 }
827 else{
828 String prefix = nvname.getGenusOrUninomial();
829 String name = nvname.getSpecificEpithet();
830 if (name != null){
831 TaxonName taxonName = getOrCreateTaxonName(prefix+" "+name, Rank.SPECIES(), preferredFlag, state, -1);
832 species = getOrCreateTaxonForName(taxonName, state);
833 if (preferredFlag) {
834 parent = linkParentChildNode(genus, species, classification, state);
835 }
836 }
837 }
838 }
839 if (rank.isLower(Rank.INFRASPECIES())){
840 TaxonName taxonName = getOrCreateTaxonName(nvname.getFullTitleCache(), Rank.SUBSPECIES(), preferredFlag, state, -1);
841 subspecies = getOrCreateTaxonForName(taxonName, state);
842 if (preferredFlag) {
843 parent = linkParentChildNode(species, subspecies, classification, state);
844 }
845 }
846 }
847 if (preferredFlag && parent!=taxon ) {
848 linkParentChildNode(parent, taxon, classification, state);
849 }
850 }
851
852 /**
853 * Link a parent to a child and save it in the current classification
854 * @param parent: the higher Taxon
855 * @param child : the lower (or current) Taxon
856 * return the Taxon from the new created Node
857 * @param classification
858 * @param state
859 */
860 protected Taxon linkParentChildNode(Taxon parent, Taxon child, Classification classification, STATE state) {
861 TaxonNode node =null;
862 if (parent != null) {
863 parent = (Taxon) getTaxonService().find(parent.getUuid());
864 child = (Taxon) getTaxonService().find(child.getUuid());
865 //here we do not have to check if the taxon nodes already exists
866 //this is done by classification.addParentChild()
867 //do not add child node if it already exists
868 if(hasTaxonNodeInClassification(child, classification)){
869 return child;
870 }
871 else{
872 node = classification.addParentChild(parent, child, state.getRef(), "");
873 save(node, state);
874 }
875 }
876 else {
877 if (child == null){
878 logger.debug("The child should not be null!");
879 }
880 child = (Taxon) getTaxonService().find(child.getUuid());
881 //do not add child node if it already exists
882 if(hasTaxonNodeInClassification(child, classification)){
883 return child;
884 }
885 else{
886 node = classification.addChildTaxon(child, state.getRef(), null);
887 save(node, state);
888 }
889 }
890 if(node!=null){
891 state.getReport().addTaxonNode(node);
892 return node.getTaxon();
893 }
894 String message = "Could not create taxon node for " +child;
895 state.getReport().addInfoMessage(message);
896 logger.warn(message);
897 return null;
898 }
899
900 protected Taxon getOrCreateTaxonForName(TaxonName taxonName, STATE state){
901 if (taxonName != null){
902 Set<Taxon> acceptedTaxa = taxonName.getTaxa();
903 if(acceptedTaxa.size()>0){
904 Taxon firstAcceptedTaxon = acceptedTaxa.iterator().next();
905 if(acceptedTaxa.size()>1){
906 String message = "More than one accepted taxon was found for taxon name: "
907 + taxonName.getTitleCache() + "!\n" + firstAcceptedTaxon + "was chosen for "+state.getDerivedUnitBase();
908 state.getReport().addInfoMessage(message);
909 logger.warn(message);
910 }
911 else{
912 return firstAcceptedTaxon;
913 }
914 }
915 else{
916 Set<TaxonBase> taxonAndSynonyms = taxonName.getTaxonBases();
917 for (TaxonBase taxonBase : taxonAndSynonyms) {
918 if(taxonBase.isInstanceOf(Synonym.class)){
919 Synonym synonym = HibernateProxyHelper.deproxy(taxonBase, Synonym.class);
920 Taxon acceptedTaxonOfSynonym = synonym.getAcceptedTaxon();
921 if(acceptedTaxonOfSynonym == null){
922 String message = "No accepted taxon could be found for taxon name: "
923 + taxonName.getTitleCache()
924 + "!";
925 state.getReport().addInfoMessage(message);
926 logger.warn(message);
927 }
928 else{
929 return acceptedTaxonOfSynonym;
930 }
931 }
932 }
933 }
934 Taxon taxon = Taxon.NewInstance(taxonName, state.getRef());
935 save(taxon, state);
936 state.getReport().addTaxon(taxon);
937 logger.info("Created new taxon "+ taxon);
938 return taxon;
939 }
940 return null;
941
942 }
943
944 private boolean hasTaxonNodeInClassification(Taxon taxon, Classification classification){
945 if(taxon.getTaxonNodes()!=null){
946 for (TaxonNode node : taxon.getTaxonNodes()){
947 if(node.getClassification().equals(classification)){
948 return true;
949 }
950 }
951 }
952 return false;
953 }
954
955 /**
956 * HandleIdentifications : get the scientific names present in the ABCD
957 * document and store link them with the observation/specimen data
958 * @param state: the current ABCD import state
959 * @param derivedUnitFacade : the current derivedunitfacade
960 */
961 protected void handleIdentifications(STATE state, DerivedUnitFacade derivedUnitFacade) {
962 SpecimenImportConfiguratorBase config = state.getConfig();
963
964
965 String scientificName = "";
966 boolean preferredFlag = false;
967
968 if (state.getDataHolder().getNomenclatureCode() == ""){
969 if (config.getNomenclaturalCode() != null){
970 if (config.getNomenclaturalCode() != null){
971 state.getDataHolder().setNomenclatureCode(config.getNomenclaturalCode().toString());
972
973 }
974 }
975 }
976
977 for (int i = 0; i < state.getDataHolder().getIdentificationList().size(); i++) {
978 Identification identification = state.getDataHolder().getIdentificationList().get(i);
979 scientificName = identification.getScientificName().replaceAll(" et ", " & ");
980
981 String preferred = identification.getPreferred();
982 preferredFlag = false;
983 if (preferred != null || state.getDataHolder().getIdentificationList().size()==1){
984 if (preferred.equals("1") || preferred.toLowerCase().indexOf("true") != -1 || state.getDataHolder().getIdentificationList().size()==1) {
985 preferredFlag = true;
986 }
987
988 }
989 if (identification.getCode() != null){
990 if (identification.getCode().indexOf(':') != -1) {
991 state.getDataHolder().setNomenclatureCode(identification.getCode().split(COLON)[1]);
992 }
993 else{
994 state.getDataHolder().setNomenclatureCode(identification.getCode());
995 }
996 }
997 TaxonName taxonName = getOrCreateTaxonName(scientificName, null, preferredFlag, state, i);
998 Taxon taxon = getOrCreateTaxonForName(taxonName, state);
999 addTaxonNode(taxon, state,preferredFlag);
1000 linkDeterminationEvent(state, taxon, preferredFlag, derivedUnitFacade, identification.getIdentifier(), identification.getDate());
1001 }
1002 }
1003
1004 /**
1005 * @param taxon : a taxon to add as a node
1006 * @param state : the ABCD import state
1007 */
1008 protected void addTaxonNode(Taxon taxon, STATE state, boolean preferredFlag) {
1009 SpecimenImportConfiguratorBase<?,?,?> config = state.getConfig();
1010 logger.info("link taxon to a taxonNode "+taxon.getTitleCache());
1011 //only add nodes if not already existing in current classification or default classification
1012
1013 //check if node exists in current classification
1014 //NOTE: we cannot use hasTaxonNodeInClassification() here because we are first creating it here
1015 if (!existsInClassification(taxon,state.getClassification(), state)){
1016 if(config.isMoveNewTaxaToDefaultClassification()){
1017 //check if node exists in default classification
1018 if (!existsInClassification(taxon, state.getDefaultClassification(true), state)){
1019 addParentTaxon(taxon, state, preferredFlag, state.getDefaultClassification(true));
1020 }
1021 }else{
1022 //add non-existing taxon to current classification
1023 addParentTaxon(taxon, state, preferredFlag, state.getClassification());
1024 }
1025
1026 }
1027 }
1028
1029
1030 private boolean existsInClassification(Taxon taxon, Classification classification, STATE state){
1031 boolean exist = false;
1032 ICdmRepository cdmAppController = state.getConfig().getCdmAppController();
1033 if(cdmAppController==null){
1034 cdmAppController = this;
1035 }
1036 if (classification != null){
1037 if (!taxon.getTaxonNodes().isEmpty()){
1038 for (TaxonNode node:taxon.getTaxonNodes()){
1039 if (node.getClassification().equals(classification)){
1040 return true;
1041 }
1042 }
1043 }
1044 // we do not need this because we already searched for taxa in db in the previous steps
1045 // List<UuidAndTitleCache<TaxonNode>> uuidAndTitleCacheOfAllTaxa = cdmAppController.getClassificationService().getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(classification.getUuid());
1046 // if (uuidAndTitleCacheOfAllTaxa != null){
1047 // for (UuidAndTitleCache p : uuidAndTitleCacheOfAllTaxa){
1048 // try{
1049 // if(p.getTitleCache().equals(taxon.getTitleCache())) {
1050 // exist = true;
1051 // }
1052 // }
1053 // catch(Exception e){
1054 // logger.warn("TaxonNode doesn't seem to have a taxon");
1055 // }
1056 // }
1057 // }
1058 }
1059 return exist;
1060 }
1061
1062 /**
1063 * join DeterminationEvent to the Taxon Object
1064 * @param state : the ABCD import state
1065 * @param taxon: the current Taxon
1066 * @param preferredFlag :if the current name is preferred
1067 * @param derivedFacade : the derived Unit Facade
1068 */
1069 @SuppressWarnings("rawtypes")
1070 protected void linkDeterminationEvent(STATE state, Taxon taxon, boolean preferredFlag, DerivedUnitFacade derivedFacade, String identifierStr, String dateStr) {
1071 SpecimenImportConfiguratorBase config = state.getConfig();
1072 if (logger.isDebugEnabled()){
1073 logger.info("start linkdetermination with taxon:" + taxon.getUuid()+", "+taxon);
1074 }
1075
1076 DeterminationEvent determinationEvent = DeterminationEvent.NewInstance();
1077 determinationEvent.setTaxonName(taxon.getName());
1078 determinationEvent.setPreferredFlag(preferredFlag);
1079
1080
1081 determinationEvent.setIdentifiedUnit(state.getDerivedUnitBase());
1082 if (state.getPersonStore().get(identifierStr) != null){
1083 determinationEvent.setActor((AgentBase)state.getPersonStore().get(identifierStr));
1084 } else if (identifierStr != null){
1085 Person identifier = Person.NewTitledInstance(identifierStr);
1086 determinationEvent.setActor(identifier);
1087 }
1088 if (dateStr != null){
1089 determinationEvent.setTimeperiod(TimePeriodParser.parseString(dateStr));
1090 }
1091 state.getDerivedUnitBase().addDetermination(determinationEvent);
1092
1093 if (logger.isDebugEnabled()){
1094 logger.debug("NB TYPES INFO: "+ state.getDataHolder().getStatusList().size());
1095 }
1096 for (SpecimenTypeDesignationStatus specimenTypeDesignationstatus : state.getDataHolder().getStatusList()) {
1097 if (specimenTypeDesignationstatus != null) {
1098 if (logger.isDebugEnabled()){
1099 logger.debug("specimenTypeDesignationstatus :"+ specimenTypeDesignationstatus);
1100 }
1101
1102 ICdmRepository cdmAppController = config.getCdmAppController();
1103 if(cdmAppController == null){
1104 cdmAppController = this;
1105 }
1106 specimenTypeDesignationstatus = (SpecimenTypeDesignationStatus) cdmAppController.getTermService().find(specimenTypeDesignationstatus.getUuid());
1107 //Designation
1108 TaxonName name = taxon.getName();
1109 SpecimenTypeDesignation designation = SpecimenTypeDesignation.NewInstance();
1110
1111 designation.setTypeStatus(specimenTypeDesignationstatus);
1112 designation.setTypeSpecimen(state.getDerivedUnitBase());
1113 name.addTypeDesignation(designation, true);
1114 }
1115 }
1116
1117 for (String[] fullReference : state.getDataHolder().getReferenceList()) {
1118
1119
1120 String strReference=fullReference[0];
1121 String citationDetail = fullReference[1];
1122 String citationURL = fullReference[2];
1123 List<Reference> references = getReferenceService().listByTitleWithRestrictions(Reference.class, "strReference", MatchMode.EXACT, null, null, null, null, null);
1124
1125 if (!references.isEmpty()){
1126 Reference reference = null;
1127 for (Reference refe: references) {
1128 if (refe.getTitleCache().equalsIgnoreCase(strReference)) {
1129 reference =refe;
1130 break;
1131 }
1132 }
1133 if (reference ==null){
1134 reference = ReferenceFactory.newGeneric();
1135 reference.setTitleCache(strReference, true);
1136 save(reference, state);
1137 }
1138 determinationEvent.addReference(reference);
1139 }
1140 }
1141 save(state.getDerivedUnitBase(), state);
1142
1143 if (config.isAddIndividualsAssociationsSuchAsSpecimenAndObservations() && preferredFlag) {
1144 //do not add IndividualsAssociation to non-preferred taxa
1145 if (logger.isDebugEnabled()){
1146 logger.debug("isDoCreateIndividualsAssociations");
1147 }
1148
1149 makeIndividualsAssociation(state, taxon, determinationEvent);
1150
1151 save(state.getDerivedUnitBase(), state);
1152 }
1153 }
1154
1155 /**
1156 * create and link each association (specimen, observation..) to the accepted taxon
1157 * @param state : the ABCD import state
1158 * @param taxon: the current Taxon
1159 * @param determinationEvent:the determinationevent
1160 */
1161 protected void makeIndividualsAssociation(STATE state, Taxon taxon, DeterminationEvent determinationEvent) {
1162 SpecimenImportConfiguratorBase<?,?,?> config = state.getConfig();
1163 SpecimenUserInteraction sui = config.getSpecimenUserInteraction();
1164
1165 if (logger.isDebugEnabled()){
1166 logger.info("MAKE INDIVIDUALS ASSOCIATION");
1167 }
1168
1169 TaxonDescription taxonDescription = null;
1170 Set<TaxonDescription> descriptions= taxon.getDescriptions();
1171 if (!descriptions.isEmpty()){ taxonDescription = descriptions.iterator().next();}
1172
1173 // for (TaxonDescription description : descriptions){
1174 // Set<IdentifiableSource> sources = new HashSet<>();
1175 // sources.addAll(description.getTaxon().getSources());
1176 // sources.addAll(description.getSources());
1177 // for (IdentifiableSource source:sources){
1178 // if(state.getRef().equals(source.getCitation())) {
1179 // taxonDescription = description;
1180 // }
1181 // }
1182 // }
1183 // }
1184 if (taxonDescription == null){
1185 taxonDescription = TaxonDescription.NewInstance(taxon, false);
1186 if(sourceNotLinkedToElement(taxonDescription,state.getRef(),null)) {
1187 taxonDescription.addSource(OriginalSourceType.Import, null, null, state.getRef(), null);
1188 }
1189 state.setDescriptionGroup(taxonDescription);
1190 taxon.addDescription(taxonDescription);
1191 }
1192
1193 //PREPARE REFERENCE QUESTIONS
1194
1195 Map<String,OriginalSourceBase<?>> sourceMap = new HashMap<String, OriginalSourceBase<?>>();
1196
1197 List<IdentifiableSource> issTmp = new ArrayList<>();//getCommonService().list(IdentifiableSource.class, null, null, null, null);
1198 List<DescriptionElementSource> issTmp2 = new ArrayList<>();//getCommonService().list(DescriptionElementSource.class, null, null, null, null);
1199
1200 Set<OriginalSourceBase> osbSet = new HashSet<OriginalSourceBase>();
1201 if(issTmp2!=null) {
1202 osbSet.addAll(issTmp2);
1203 }
1204 if(issTmp!=null) {
1205 osbSet.addAll(issTmp);
1206 }
1207
1208
1209 addToSourceMap(sourceMap, osbSet);
1210
1211 // if (((Abcd206ImportConfigurator) state.getConfig()).isInteractWithUser()){
1212 // List<OriginalSourceBase<?>> res = null;
1213 // if(!state.isDescriptionSourcesSet()){
1214 // res = sui.askForSource(sourceMap, "the description group ("+taxon+")",
1215 // "The current reference is "+state.getRef().getTitleCache(),getReferenceService(), state.getDataHolder().docSources);
1216 // state.setDescriptionRefs(res);
1217 // state.setDescriptionSourcesSet(true);
1218 // }
1219 // else{
1220 // res=state.getDescriptionRefs();
1221 // }
1222 // if(res !=null) {
1223 // for (OriginalSourceBase<?> sour:res){
1224 // if(sour.isInstanceOf(IdentifiableSource.class)){
1225 // try {
1226 // if(sourceNotLinkedToElement(taxonDescription,sour)) {
1227 // taxonDescription.addSource((IdentifiableSource)sour.clone());
1228 // }
1229 // } catch (CloneNotSupportedException e) {
1230 // logger.warn("no cloning?");
1231 // }
1232 // }else{
1233 // if(sourceNotLinkedToElement(taxonDescription,sour)) {
1234 // taxonDescription.addSource(OriginalSourceType.Import,null, null, sour.getCitation(),sour.getCitationMicroReference());
1235 // }
1236 // }
1237 // }
1238 // }
1239 // }
1240 // else {
1241 if(sourceNotLinkedToElement(taxonDescription,state.getRef(),null)) {
1242 taxonDescription.addSource(OriginalSourceType.Import,null, null, state.getRef(), null);
1243 }
1244 // }
1245 state.setDescriptionGroup(taxonDescription);
1246
1247 IndividualsAssociation indAssociation = IndividualsAssociation.NewInstance();
1248 Feature feature = makeFeature(state.getDerivedUnitBase());
1249 indAssociation.setAssociatedSpecimenOrObservation(state.getDerivedUnitBase());
1250 indAssociation.setFeature(feature);
1251 //
1252 // if (((Abcd206ImportConfigurator) state.getConfig()).isInteractWithUser()){
1253 // sourceMap = new HashMap<String, OriginalSourceBase<?>>();
1254 //
1255 // issTmp = getCommonService().list(IdentifiableSource.class, null, null, null, null);
1256 // issTmp2 = getCommonService().list(DescriptionElementSource.class, null, null, null, null);
1257 //
1258 // osbSet = new HashSet<OriginalSourceBase>();
1259 // if(issTmp2!=null) {
1260 // osbSet.addAll(issTmp2);
1261 // }
1262 // if(issTmp!=null) {
1263 // osbSet.addAll(issTmp);
1264 // }
1265 //
1266 //
1267 // addToSourceMap(sourceMap, osbSet);
1268 //
1269 // List<OriginalSourceBase<?>> sources =null;
1270 // if(!state.isAssociationSourcesSet()) {
1271 // sources = sui.askForSource(sourceMap, "descriptive element (association) ",taxon.toString(),
1272 // getReferenceService(),state.getDataHolder().getDocSources());
1273 // state.setAssociationRefs(sources);
1274 // state.setAssociationSourcesSet(true);
1275 // }
1276 // else{
1277 // sources=state.getAssociationRefs();
1278 // }
1279 // if(sources !=null) {
1280 // for (OriginalSourceBase<?> source: sources) {
1281 // if(source !=null) {
1282 // if(source.isInstanceOf(DescriptionElementSource.class)){
1283 // try {
1284 // if(sourceNotLinkedToElement(indAssociation,source)) {
1285 // indAssociation.addSource((DescriptionElementSource)source.clone());
1286 // }
1287 // } catch (CloneNotSupportedException e) {
1288 // logger.warn("clone forbidden?");
1289 // }
1290 // }else{
1291 // if(sourceNotLinkedToElement(indAssociation,source)) {
1292 // indAssociation.addSource(OriginalSourceType.Import,null, null, source.getCitation(),source.getCitationMicroReference());
1293 // }
1294 // try {
1295 // if(sourceNotLinkedToElement(state.getDerivedUnitBase(), source)) {
1296 // state.getDerivedUnitBase().addSource((IdentifiableSource) source.clone());
1297 // }
1298 // } catch (CloneNotSupportedException e) {
1299 // // TODO Auto-generated catch block
1300 // e.printStackTrace();
1301 // }
1302 // }
1303 //
1304 // }
1305 // }
1306 // }
1307 // }else {
1308 if(sourceNotLinkedToElement(indAssociation,state.getRef(),null)) {
1309 indAssociation.addSource(OriginalSourceType.Import,null, null, state.getRef(), null);
1310 }
1311 if(sourceNotLinkedToElement(state.getDerivedUnitBase(), state.getRef(),null)) {
1312 state.getDerivedUnitBase().addSource(OriginalSourceType.Import,null, null, state.getRef(), null);
1313 }
1314 for (Reference citation : determinationEvent.getReferences()) {
1315 if(sourceNotLinkedToElement(indAssociation,citation,null))
1316 {
1317 indAssociation.addSource(DescriptionElementSource.NewInstance(OriginalSourceType.Import, null, null, citation, null));
1318 }
1319 if(sourceNotLinkedToElement(state.getDerivedUnitBase(), state.getRef(),null)) {
1320 state.getDerivedUnitBase().addSource(OriginalSourceType.Import,null, null, state.getRef(), null);
1321 }
1322 }
1323 // }
1324
1325 taxonDescription.addElement(indAssociation);
1326
1327 save(taxonDescription, state);
1328 save(taxon, state);
1329 state.getReport().addDerivate(state.getDerivedUnitBase(), config);
1330 state.getReport().addIndividualAssociation(taxon, state.getDataHolder().getUnitID(), state.getDerivedUnitBase());
1331 }
1332
1333 /**
1334 * @param derivedUnitBase2
1335 * @param ref2
1336 * @param object
1337 * @return
1338 */
1339 private boolean sourceNotLinkedToElement(DerivedUnit derivedUnitBase2, Reference b, String d) {
1340 Set<IdentifiableSource> linkedSources = derivedUnitBase2.getSources();
1341 for (IdentifiableSource is:linkedSources){
1342 Reference a = is.getCitation();
1343 String c = is.getCitationMicroReference();
1344
1345 boolean refMatch=false;
1346 boolean microMatch=false;
1347
1348 try{
1349 if (a==null && b==null) {
1350 refMatch=true;
1351 }
1352 if (a!=null && b!=null) {
1353 if (a.getTitleCache().equalsIgnoreCase(b.getTitleCache())) {
1354 refMatch=true;
1355 }
1356 }
1357 }catch(Exception e){}
1358
1359
1360 try{
1361 if (c==null && d==null) {
1362 microMatch=true;
1363 }
1364 if(c!=null && d!=null) {
1365 if(c.equalsIgnoreCase(d)) {
1366 microMatch=true;
1367 }
1368 }
1369 }
1370 catch(Exception e){}
1371
1372 if (microMatch && refMatch) {
1373 return false;
1374 }
1375
1376
1377 }
1378 return true;
1379 }
1380
1381 private <T extends OriginalSourceBase<?>> boolean sourceNotLinkedToElement(ISourceable<T> sourcable, Reference reference, String microReference) {
1382 Set<T> linkedSources = sourcable.getSources();
1383 for (T is:linkedSources){
1384 Reference unitReference = is.getCitation();
1385 String unitMicroReference = is.getCitationMicroReference();
1386
1387 boolean refMatch=false;
1388 boolean microMatch=false;
1389
1390 try{
1391 if (unitReference==null && reference==null) {
1392 refMatch=true;
1393 }
1394 if (unitReference!=null && reference!=null) {
1395 if (unitReference.getTitleCache().equalsIgnoreCase(reference.getTitleCache())) {
1396 refMatch=true;
1397 }
1398 }
1399 }catch(Exception e){}
1400
1401 try{
1402 if (unitMicroReference==null && microReference==null) {
1403 microMatch=true;
1404 }
1405 if(unitMicroReference!=null && microReference!=null) {
1406 if(unitMicroReference.equalsIgnoreCase(microReference)) {
1407 microMatch=true;
1408 }
1409 }
1410 }
1411 catch(Exception e){}
1412
1413 if (microMatch && refMatch) {
1414 return false;
1415 }
1416 }
1417 return true;
1418 }
1419
1420 /**
1421 * look for the Feature object (FieldObs, Specimen,...)
1422 * @param unit : a specimen or obersvation base
1423 * @return the corresponding Feature
1424 */
1425 private Feature makeFeature(SpecimenOrObservationBase<?> unit) {
1426 SpecimenOrObservationType type = unit.getRecordBasis();
1427
1428
1429
1430 if (type.isFeatureObservation()){
1431 return Feature.OBSERVATION();
1432 }else if (type.isFeatureSpecimen()){
1433 return Feature.SPECIMEN();
1434 }else if (type == SpecimenOrObservationType.DerivedUnit){
1435 return Feature.OBSERVATION();
1436 // return getFeature("Specimen or observation");
1437 }else{
1438 String message = "Unhandled record basis '%s' for defining individuals association feature type. Use default.";
1439 logger.warn(String.format(message, type.getMessage()));
1440 return Feature.OBSERVATION();
1441 // return getFeature("Specimen or observation");
1442
1443 }
1444 }
1445
1446
1447 /**
1448 * @param sourceMap
1449 * @param osbSet
1450 */
1451 protected void addToSourceMap(Map<String, OriginalSourceBase<?>> sourceMap, Set<OriginalSourceBase> osbSet) {
1452 for( OriginalSourceBase<?> osb:osbSet) {
1453 if(osb.getCitation()!=null && osb.getCitationMicroReference() !=null && !osb.getCitationMicroReference().isEmpty()) {
1454 try{
1455 sourceMap.put(osb.getCitation().getTitleCache()+ "---"+osb.getCitationMicroReference(),osb);
1456 }catch(NullPointerException e){logger.warn("null pointer problem (no ref?) with "+osb);}
1457 } else if(osb.getCitation()!=null){
1458 try{
1459 sourceMap.put(osb.getCitation().getTitleCache(),osb);
1460 }catch(NullPointerException e){logger.warn("null pointer problem (no ref?) with "+osb);}
1461 }
1462 }
1463 }
1464
1465
1466 }