Merge branch 'release/5.6.0'
[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.IdentifiableSource;
38 import eu.etaxonomy.cdm.model.common.LanguageString;
39 import eu.etaxonomy.cdm.model.description.DescriptionBase;
40 import eu.etaxonomy.cdm.model.description.DescriptionElementSource;
41 import eu.etaxonomy.cdm.model.description.Feature;
42 import eu.etaxonomy.cdm.model.description.IndividualsAssociation;
43 import eu.etaxonomy.cdm.model.description.TaxonDescription;
44 import eu.etaxonomy.cdm.model.name.INonViralName;
45 import eu.etaxonomy.cdm.model.name.NomenclaturalCode;
46 import eu.etaxonomy.cdm.model.name.Rank;
47 import eu.etaxonomy.cdm.model.name.SpecimenTypeDesignation;
48 import eu.etaxonomy.cdm.model.name.SpecimenTypeDesignationStatus;
49 import eu.etaxonomy.cdm.model.name.TaxonName;
50 import eu.etaxonomy.cdm.model.name.TaxonNameFactory;
51 import eu.etaxonomy.cdm.model.occurrence.Collection;
52 import eu.etaxonomy.cdm.model.occurrence.DerivedUnit;
53 import eu.etaxonomy.cdm.model.occurrence.DeterminationEvent;
54 import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationBase;
55 import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationType;
56 import eu.etaxonomy.cdm.model.reference.ISourceable;
57 import eu.etaxonomy.cdm.model.reference.OriginalSourceBase;
58 import eu.etaxonomy.cdm.model.reference.OriginalSourceType;
59 import eu.etaxonomy.cdm.model.reference.Reference;
60 import eu.etaxonomy.cdm.model.reference.ReferenceFactory;
61 import eu.etaxonomy.cdm.model.taxon.Classification;
62 import eu.etaxonomy.cdm.model.taxon.Synonym;
63 import eu.etaxonomy.cdm.model.taxon.Taxon;
64 import eu.etaxonomy.cdm.model.taxon.TaxonBase;
65 import eu.etaxonomy.cdm.model.taxon.TaxonNode;
66 import eu.etaxonomy.cdm.model.term.DefinedTerm;
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 List<String> propertyPaths = new ArrayList<>();
595 propertyPaths.add("derivedFrom.*");
596 config.setPropertyPaths(propertyPaths);
597 Pager<SpecimenOrObservationBase> existingSpecimens = cdmAppController.getOccurrenceService().findByTitle(config);
598 if(!existingSpecimens.getRecords().isEmpty()){
599 if(existingSpecimens.getRecords().size()==1){
600 return existingSpecimens.getRecords().iterator().next();
601 }
602 }
603 return null;
604 }
605
606 protected abstract void importAssociatedUnits(STATE state, Object item, DerivedUnitFacade derivedUnitFacade);
607
608 /**
609 * getFacade : get the DerivedUnitFacade based on the recordBasis
610 * @param state
611 *
612 * @return DerivedUnitFacade
613 */
614 protected DerivedUnitFacade getFacade(STATE state) {
615 if (logger.isDebugEnabled()){
616 logger.info("getFacade()");
617 }
618 SpecimenOrObservationType type = null;
619
620 // create specimen
621 if (NB((state.getDataHolder().getRecordBasis())) != null) {
622 if (state.getDataHolder().getRecordBasis().toLowerCase().startsWith("s") || state.getDataHolder().getRecordBasis().toLowerCase().indexOf("specimen")>-1) {// specimen
623 type = SpecimenOrObservationType.PreservedSpecimen;
624 }
625 if (state.getDataHolder().getRecordBasis().toLowerCase().startsWith("o") ||state.getDataHolder().getRecordBasis().toLowerCase().indexOf("observation")>-1 ) {
626 type = SpecimenOrObservationType.Observation;
627 }
628 if (state.getDataHolder().getRecordBasis().toLowerCase().indexOf("fossil")>-1){
629 type = SpecimenOrObservationType.Fossil;
630 }
631 if (state.getDataHolder().getRecordBasis().toLowerCase().indexOf("living")>-1) {
632 type = SpecimenOrObservationType.LivingSpecimen;
633 }
634 if (type == null) {
635 logger.info("The basis of record does not seem to be known: " + state.getDataHolder().getRecordBasis());
636 type = SpecimenOrObservationType.DerivedUnit;
637 }
638 // TODO fossils?
639 } else {
640 logger.info("The basis of record is null");
641 type = SpecimenOrObservationType.DerivedUnit;
642 }
643 DerivedUnitFacade derivedUnitFacade = DerivedUnitFacade.NewInstance(type);
644 return derivedUnitFacade;
645 }
646
647 /**
648 * Look if the Institution does already exist
649 * @param institutionCode: a string with the institutioncode
650 * @param config : the configurator
651 * @return the Institution (existing or new)
652 */
653 protected Institution getInstitution(String institutionCode, STATE state) {
654 SpecimenImportConfiguratorBase config = state.getConfig();
655 Institution institution=null;
656 institution = (Institution)state.institutions.get(institutionCode);
657 if (institution != null){
658 return institution;
659 }
660 List<Institution> institutions;
661 try {
662 institutions = getAgentService().searchInstitutionByCode(institutionCode);
663
664 } catch (Exception e) {
665 institutions = new ArrayList<Institution>();
666 logger.warn(e);
667 }
668 if (institutions.size() > 0 && config.isReuseExistingMetaData()) {
669 for (Institution institut:institutions){
670 try{
671 if (institut.getCode().equalsIgnoreCase(institutionCode)) {
672 institution=institut;
673 break;
674 }
675 }catch(Exception e){logger.warn("no institution code in the db");}
676 }
677 }
678 if (logger.isDebugEnabled()){
679 if(institution !=null) {
680 logger.info("getinstitution " + institution.toString());
681 }
682 }
683 if (institution == null){
684 // create institution
685 institution = Institution.NewInstance();
686 institution.setCode(institutionCode);
687 institution.setTitleCache(institutionCode, true);
688 UUID uuid = save(institution, state);
689 }
690
691
692 state.institutions.put(institutionCode, institution);
693 return institution;
694 }
695
696 /**
697 * Look if the Collection does already exist
698 * @param collectionCode
699 * @param collectionCode: a string
700 * @param config : the configurator
701 * @return the Collection (existing or new)
702 */
703 protected Collection getCollection(Institution institution, String collectionCode, STATE state) {
704 SpecimenImportConfiguratorBase config = state.getConfig();
705 Collection collection = null;
706 List<Collection> collections;
707 collection = (Collection) state.collections.get(collectionCode);
708 if (collection != null){
709 return collection;
710 }
711 try {
712 collections = getCollectionService().searchByCode(collectionCode);
713 } catch (Exception e) {
714 collections = new ArrayList<Collection>();
715 }
716 if (collections.size() > 0 && config.isReuseExistingMetaData()) {
717 for (Collection coll:collections){
718 if (coll.getCode() != null && coll.getInstitute() != null
719 && coll.getCode().equalsIgnoreCase(collectionCode) && coll.getInstitute().equals(institution)) {
720 collection = coll;
721 break;
722 }
723 }
724 }
725
726 if(collection == null){
727 collection =Collection.NewInstance();
728 collection.setCode(collectionCode);
729 collection.setInstitute(institution);
730 collection.setTitleCache(collectionCode);
731 UUID uuid = save(collection, state);
732 }
733
734
735
736 state.collections.put(collectionCode, collection);
737
738 return collection;
739 }
740
741 /**
742 * @param reference
743 * @param citationDetail
744 * @return
745 */
746 //FIXME this method is highly critical, because
747 // * it will have serious performance and memory problems with large databases
748 // (databases may easily have >1 Mio source records)
749 // * it does not make sense to search for existing sources and then clone them
750 // we need to search for existing references instead and use them (if exist)
751 // for our new source.
752 protected IdentifiableSource getIdentifiableSource(Reference reference, String citationDetail) {
753
754 /* List<IdentifiableSource> issTmp = getCommonService().list(IdentifiableSource.class, null, null, null, null);
755
756
757 if (reference != null){
758 try {
759 for (OriginalSourceBase<?> osb: issTmp){
760 if (osb.getCitation() != null && osb.getCitation().getTitleCache().equalsIgnoreCase(reference.getTitleCache())){
761 String osbDetail = osb.getCitationMicroReference();
762 if ((StringUtils.isBlank(osbDetail) && StringUtils.isBlank(citationDetail))
763 || (osbDetail != null && osbDetail.equalsIgnoreCase(citationDetail)) ) {
764 // System.out.println("REFERENCE FOUND RETURN EXISTING SOURCE");
765 return (IdentifiableSource) osb.clone();
766 }
767 }
768 }
769 } catch (CloneNotSupportedException e) {
770 throw new RuntimeException(e);
771 } catch (Exception e1){
772 e1.printStackTrace();
773 }
774 }
775 */
776 IdentifiableSource sour = IdentifiableSource.NewInstance(OriginalSourceType.Import,null,null, reference,citationDetail);
777 return sour;
778 }
779
780 /**
781 * Add the hierarchy for a Taxon(add higher taxa)
782 * @param classification
783 * @param taxon: a taxon to add as a node
784 * @param state: the ABCD import state
785 */
786 protected void addParentTaxon(Taxon taxon, STATE state, boolean preferredFlag, Classification classification){
787 INonViralName nvname = taxon.getName();
788 Rank rank = nvname.getRank();
789 Taxon genus =null;
790 Taxon subgenus =null;
791 Taxon species = null;
792 Taxon subspecies = null;
793 Taxon parent = null;
794 if(rank!=null){
795 if (rank.isLower(Rank.GENUS() )){
796 String genusOrUninomial = nvname.getGenusOrUninomial();
797 TaxonName taxonName = getOrCreateTaxonName(genusOrUninomial, Rank.GENUS(), preferredFlag, state, -1);
798 genus = getOrCreateTaxonForName(taxonName, state);
799 if (genus == null){
800 logger.debug("The genus should not be null " + taxonName);
801 }
802 if (preferredFlag) {
803 parent = linkParentChildNode(null, genus, classification, state);
804 }
805
806 }
807 if (rank.isLower(Rank.SUBGENUS())){
808 String prefix = nvname.getGenusOrUninomial();
809 String name = nvname.getInfraGenericEpithet();
810 if (name != null){
811 TaxonName taxonName = getOrCreateTaxonName(prefix+" "+name, Rank.SUBGENUS(), preferredFlag, state, -1);
812 subgenus = getOrCreateTaxonForName(taxonName, state);
813 if (preferredFlag) {
814 parent = linkParentChildNode(genus, subgenus, classification, state);
815 } }
816 }
817 if (rank.isLower(Rank.SPECIES())){
818 if (subgenus!=null){
819 String prefix = nvname.getGenusOrUninomial();
820 String name = nvname.getInfraGenericEpithet();
821 String spe = nvname.getSpecificEpithet();
822 if (spe != null){
823 TaxonName taxonName = getOrCreateTaxonName(prefix+" "+name+" "+spe, Rank.SPECIES(), preferredFlag, state, -1);
824 species = getOrCreateTaxonForName(taxonName, state);
825 if (preferredFlag) {
826 parent = linkParentChildNode(subgenus, species, classification, state);
827 }
828 }
829 }
830 else{
831 String prefix = nvname.getGenusOrUninomial();
832 String name = nvname.getSpecificEpithet();
833 if (name != null){
834 TaxonName taxonName = getOrCreateTaxonName(prefix+" "+name, Rank.SPECIES(), preferredFlag, state, -1);
835 species = getOrCreateTaxonForName(taxonName, state);
836 if (preferredFlag) {
837 parent = linkParentChildNode(genus, species, classification, state);
838 }
839 }
840 }
841 }
842 if (rank.isLower(Rank.INFRASPECIES())){
843 TaxonName taxonName = getOrCreateTaxonName(nvname.getFullTitleCache(), Rank.SUBSPECIES(), preferredFlag, state, -1);
844 subspecies = getOrCreateTaxonForName(taxonName, state);
845 if (preferredFlag) {
846 parent = linkParentChildNode(species, subspecies, classification, state);
847 }
848 }
849 }
850 if (preferredFlag && parent!=taxon ) {
851 linkParentChildNode(parent, taxon, classification, state);
852 }
853 }
854
855 /**
856 * Link a parent to a child and save it in the current classification
857 * @param parent: the higher Taxon
858 * @param child : the lower (or current) Taxon
859 * return the Taxon from the new created Node
860 * @param classification
861 * @param state
862 */
863 protected Taxon linkParentChildNode(Taxon parent, Taxon child, Classification classification, STATE state) {
864 TaxonNode node =null;
865 if (parent != null) {
866 parent = (Taxon) getTaxonService().find(parent.getUuid());
867 child = (Taxon) getTaxonService().find(child.getUuid());
868 //here we do not have to check if the taxon nodes already exists
869 //this is done by classification.addParentChild()
870 //do not add child node if it already exists
871 if(hasTaxonNodeInClassification(child, classification)){
872 return child;
873 }
874 else{
875 node = classification.addParentChild(parent, child, state.getRef(), "");
876 save(node, state);
877 }
878 }
879 else {
880 if (child == null){
881 logger.debug("The child should not be null!");
882 }
883 child = (Taxon) getTaxonService().find(child.getUuid());
884 //do not add child node if it already exists
885 if(hasTaxonNodeInClassification(child, classification)){
886 return child;
887 }
888 else{
889 node = classification.addChildTaxon(child, state.getRef(), null);
890 save(node, state);
891 }
892 }
893 if(node!=null){
894 state.getReport().addTaxonNode(node);
895 return node.getTaxon();
896 }
897 String message = "Could not create taxon node for " +child;
898 state.getReport().addInfoMessage(message);
899 logger.warn(message);
900 return null;
901 }
902
903 protected Taxon getOrCreateTaxonForName(TaxonName taxonName, STATE state){
904 if (taxonName != null){
905 Set<Taxon> acceptedTaxa = taxonName.getTaxa();
906 if(acceptedTaxa.size()>0){
907 Taxon firstAcceptedTaxon = acceptedTaxa.iterator().next();
908 if(acceptedTaxa.size()>1){
909 String message = "More than one accepted taxon was found for taxon name: "
910 + taxonName.getTitleCache() + "!\n" + firstAcceptedTaxon + "was chosen for "+state.getDerivedUnitBase();
911 state.getReport().addInfoMessage(message);
912 logger.warn(message);
913 }
914 else{
915 return firstAcceptedTaxon;
916 }
917 }
918 else{
919 Set<TaxonBase> taxonAndSynonyms = taxonName.getTaxonBases();
920 for (TaxonBase taxonBase : taxonAndSynonyms) {
921 if(taxonBase.isInstanceOf(Synonym.class)){
922 Synonym synonym = HibernateProxyHelper.deproxy(taxonBase, Synonym.class);
923 Taxon acceptedTaxonOfSynonym = synonym.getAcceptedTaxon();
924 if(acceptedTaxonOfSynonym == null){
925 String message = "No accepted taxon could be found for taxon name: "
926 + taxonName.getTitleCache()
927 + "!";
928 state.getReport().addInfoMessage(message);
929 logger.warn(message);
930 }
931 else{
932 return acceptedTaxonOfSynonym;
933 }
934 }
935 }
936 }
937 Taxon taxon = Taxon.NewInstance(taxonName, state.getRef());
938 save(taxon, state);
939 state.getReport().addTaxon(taxon);
940 logger.info("Created new taxon "+ taxon);
941 return taxon;
942 }
943 return null;
944
945 }
946
947 private boolean hasTaxonNodeInClassification(Taxon taxon, Classification classification){
948 if(taxon.getTaxonNodes()!=null){
949 for (TaxonNode node : taxon.getTaxonNodes()){
950 if(node.getClassification().equals(classification)){
951 return true;
952 }
953 }
954 }
955 return false;
956 }
957
958 /**
959 * HandleIdentifications : get the scientific names present in the ABCD
960 * document and store link them with the observation/specimen data
961 * @param state: the current ABCD import state
962 * @param derivedUnitFacade : the current derivedunitfacade
963 */
964 protected void handleIdentifications(STATE state, DerivedUnitFacade derivedUnitFacade) {
965 SpecimenImportConfiguratorBase config = state.getConfig();
966
967
968 String scientificName = "";
969 boolean preferredFlag = false;
970
971 if (state.getDataHolder().getNomenclatureCode() == ""){
972 if (config.getNomenclaturalCode() != null){
973 if (config.getNomenclaturalCode() != null){
974 state.getDataHolder().setNomenclatureCode(config.getNomenclaturalCode().toString());
975
976 }
977 }
978 }
979
980 for (int i = 0; i < state.getDataHolder().getIdentificationList().size(); i++) {
981 Identification identification = state.getDataHolder().getIdentificationList().get(i);
982 scientificName = identification.getScientificName().replaceAll(" et ", " & ");
983
984 String preferred = identification.getPreferred();
985 preferredFlag = false;
986 if (preferred != null || state.getDataHolder().getIdentificationList().size()==1){
987 if (preferred.equals("1") || preferred.toLowerCase().indexOf("true") != -1 || state.getDataHolder().getIdentificationList().size()==1) {
988 preferredFlag = true;
989 }
990
991 }
992 if (identification.getCode() != null){
993 if (identification.getCode().indexOf(':') != -1) {
994 state.getDataHolder().setNomenclatureCode(identification.getCode().split(COLON)[1]);
995 }
996 else{
997 state.getDataHolder().setNomenclatureCode(identification.getCode());
998 }
999 }
1000 TaxonName taxonName = getOrCreateTaxonName(scientificName, null, preferredFlag, state, i);
1001 Taxon taxon = getOrCreateTaxonForName(taxonName, state);
1002 addTaxonNode(taxon, state,preferredFlag);
1003 linkDeterminationEvent(state, taxon, preferredFlag, derivedUnitFacade, identification.getIdentifier(), identification.getDate());
1004 }
1005 }
1006
1007 /**
1008 * @param taxon : a taxon to add as a node
1009 * @param state : the ABCD import state
1010 */
1011 protected void addTaxonNode(Taxon taxon, STATE state, boolean preferredFlag) {
1012 SpecimenImportConfiguratorBase<?,?,?> config = state.getConfig();
1013 logger.info("link taxon to a taxonNode "+taxon.getTitleCache());
1014 //only add nodes if not already existing in current classification or default classification
1015
1016 //check if node exists in current classification
1017 //NOTE: we cannot use hasTaxonNodeInClassification() here because we are first creating it here
1018 if (!existsInClassification(taxon,state.getClassification(), state)){
1019 if(config.isMoveNewTaxaToDefaultClassification()){
1020 //check if node exists in default classification
1021 if (!existsInClassification(taxon, state.getDefaultClassification(true), state)){
1022 addParentTaxon(taxon, state, preferredFlag, state.getDefaultClassification(true));
1023 }
1024 }else{
1025 //add non-existing taxon to current classification
1026 addParentTaxon(taxon, state, preferredFlag, state.getClassification());
1027 }
1028
1029 }
1030 }
1031
1032
1033 private boolean existsInClassification(Taxon taxon, Classification classification, STATE state){
1034 boolean exist = false;
1035 ICdmRepository cdmAppController = state.getConfig().getCdmAppController();
1036 if(cdmAppController==null){
1037 cdmAppController = this;
1038 }
1039 if (classification != null){
1040 if (!taxon.getTaxonNodes().isEmpty()){
1041 for (TaxonNode node:taxon.getTaxonNodes()){
1042 if (node.getClassification().equals(classification)){
1043 return true;
1044 }
1045 }
1046 }
1047 // we do not need this because we already searched for taxa in db in the previous steps
1048 // List<UuidAndTitleCache<TaxonNode>> uuidAndTitleCacheOfAllTaxa = cdmAppController.getClassificationService().getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(classification.getUuid());
1049 // if (uuidAndTitleCacheOfAllTaxa != null){
1050 // for (UuidAndTitleCache p : uuidAndTitleCacheOfAllTaxa){
1051 // try{
1052 // if(p.getTitleCache().equals(taxon.getTitleCache())) {
1053 // exist = true;
1054 // }
1055 // }
1056 // catch(Exception e){
1057 // logger.warn("TaxonNode doesn't seem to have a taxon");
1058 // }
1059 // }
1060 // }
1061 }
1062 return exist;
1063 }
1064
1065 /**
1066 * join DeterminationEvent to the Taxon Object
1067 * @param state : the ABCD import state
1068 * @param taxon: the current Taxon
1069 * @param preferredFlag :if the current name is preferred
1070 * @param derivedFacade : the derived Unit Facade
1071 */
1072 @SuppressWarnings("rawtypes")
1073 protected void linkDeterminationEvent(STATE state, Taxon taxon, boolean preferredFlag, DerivedUnitFacade derivedFacade, String identifierStr, String dateStr) {
1074 SpecimenImportConfiguratorBase config = state.getConfig();
1075 if (logger.isDebugEnabled()){
1076 logger.info("start linkdetermination with taxon:" + taxon.getUuid()+", "+taxon);
1077 }
1078
1079 DeterminationEvent determinationEvent = DeterminationEvent.NewInstance();
1080 //determinationEvent.setTaxon(taxon);
1081 determinationEvent.setTaxonName(taxon.getName());
1082 determinationEvent.setPreferredFlag(preferredFlag);
1083
1084
1085 determinationEvent.setIdentifiedUnit(state.getDerivedUnitBase());
1086 if (state.getPersonStore().get(identifierStr) != null){
1087 determinationEvent.setActor((AgentBase)state.getPersonStore().get(identifierStr));
1088 } else if (identifierStr != null){
1089 Person identifier = Person.NewTitledInstance(identifierStr);
1090 determinationEvent.setActor(identifier);
1091 }
1092 if (dateStr != null){
1093 determinationEvent.setTimeperiod(TimePeriodParser.parseString(dateStr));
1094 }
1095 state.getDerivedUnitBase().addDetermination(determinationEvent);
1096
1097 if (logger.isDebugEnabled()){
1098 logger.debug("NB TYPES INFO: "+ state.getDataHolder().getStatusList().size());
1099 }
1100 for (SpecimenTypeDesignationStatus specimenTypeDesignationstatus : state.getDataHolder().getStatusList()) {
1101 if (specimenTypeDesignationstatus != null) {
1102 if (logger.isDebugEnabled()){
1103 logger.debug("specimenTypeDesignationstatus :"+ specimenTypeDesignationstatus);
1104 }
1105
1106 ICdmRepository cdmAppController = config.getCdmAppController();
1107 if(cdmAppController == null){
1108 cdmAppController = this;
1109 }
1110 specimenTypeDesignationstatus = (SpecimenTypeDesignationStatus) cdmAppController.getTermService().find(specimenTypeDesignationstatus.getUuid());
1111 //Designation
1112 TaxonName name = taxon.getName();
1113 SpecimenTypeDesignation designation = SpecimenTypeDesignation.NewInstance();
1114
1115 designation.setTypeStatus(specimenTypeDesignationstatus);
1116 designation.setTypeSpecimen(state.getDerivedUnitBase());
1117 name.addTypeDesignation(designation, true);
1118 }
1119 }
1120 save(state.getDerivedUnitBase(), state);
1121
1122 for (String[] fullReference : state.getDataHolder().getReferenceList()) {
1123
1124
1125 String strReference=fullReference[0];
1126 String citationDetail = fullReference[1];
1127 String citationURL = fullReference[2];
1128 List<Reference> references = getReferenceService().listByTitleWithRestrictions(Reference.class, "strReference", MatchMode.EXACT, null, null, null, null, null);
1129
1130 if (!references.isEmpty()){
1131 Reference reference = null;
1132 for (Reference refe: references) {
1133 if (refe.getTitleCache().equalsIgnoreCase(strReference)) {
1134 reference =refe;
1135 break;
1136 }
1137 }
1138 if (reference ==null){
1139 reference = ReferenceFactory.newGeneric();
1140 reference.setTitleCache(strReference, true);
1141 save(reference, state);
1142 }
1143 determinationEvent.addReference(reference);
1144 }
1145 }
1146 save(state.getDerivedUnitBase(), state);
1147
1148 if (config.isAddIndividualsAssociationsSuchAsSpecimenAndObservations() && preferredFlag) {
1149 //do not add IndividualsAssociation to non-preferred taxa
1150 if (logger.isDebugEnabled()){
1151 logger.debug("isDoCreateIndividualsAssociations");
1152 }
1153
1154 makeIndividualsAssociation(state, taxon, determinationEvent);
1155
1156 save(state.getDerivedUnitBase(), state);
1157 }
1158 }
1159
1160 /**
1161 * create and link each association (specimen, observation..) to the accepted taxon
1162 * @param state : the ABCD import state
1163 * @param taxon: the current Taxon
1164 * @param determinationEvent:the determinationevent
1165 */
1166 protected void makeIndividualsAssociation(STATE state, Taxon taxon, DeterminationEvent determinationEvent) {
1167 SpecimenImportConfiguratorBase<?,?,?> config = state.getConfig();
1168 SpecimenUserInteraction sui = config.getSpecimenUserInteraction();
1169
1170 if (logger.isDebugEnabled()){
1171 logger.info("MAKE INDIVIDUALS ASSOCIATION");
1172 }
1173
1174 TaxonDescription taxonDescription = null;
1175 Set<TaxonDescription> descriptions= taxon.getDescriptions();
1176 if (!descriptions.isEmpty()){ taxonDescription = descriptions.iterator().next();}
1177
1178 // for (TaxonDescription description : descriptions){
1179 // Set<IdentifiableSource> sources = new HashSet<>();
1180 // sources.addAll(description.getTaxon().getSources());
1181 // sources.addAll(description.getSources());
1182 // for (IdentifiableSource source:sources){
1183 // if(state.getRef().equals(source.getCitation())) {
1184 // taxonDescription = description;
1185 // }
1186 // }
1187 // }
1188 // }
1189 if (taxonDescription == null){
1190 taxonDescription = TaxonDescription.NewInstance(taxon, false);
1191 if(sourceNotLinkedToElement(taxonDescription,state.getRef(),null)) {
1192 taxonDescription.addSource(OriginalSourceType.Import, null, null, state.getRef(), null);
1193 }
1194 state.setDescriptionGroup(taxonDescription);
1195 taxon.addDescription(taxonDescription);
1196 }
1197
1198 //PREPARE REFERENCE QUESTIONS
1199
1200 Map<String,OriginalSourceBase<?>> sourceMap = new HashMap<String, OriginalSourceBase<?>>();
1201
1202 List<IdentifiableSource> issTmp = new ArrayList<>();//getCommonService().list(IdentifiableSource.class, null, null, null, null);
1203 List<DescriptionElementSource> issTmp2 = new ArrayList<>();//getCommonService().list(DescriptionElementSource.class, null, null, null, null);
1204
1205 Set<OriginalSourceBase> osbSet = new HashSet<OriginalSourceBase>();
1206 if(issTmp2!=null) {
1207 osbSet.addAll(issTmp2);
1208 }
1209 if(issTmp!=null) {
1210 osbSet.addAll(issTmp);
1211 }
1212
1213
1214 addToSourceMap(sourceMap, osbSet);
1215
1216 // if (((Abcd206ImportConfigurator) state.getConfig()).isInteractWithUser()){
1217 // List<OriginalSourceBase<?>> res = null;
1218 // if(!state.isDescriptionSourcesSet()){
1219 // res = sui.askForSource(sourceMap, "the description group ("+taxon+")",
1220 // "The current reference is "+state.getRef().getTitleCache(),getReferenceService(), state.getDataHolder().docSources);
1221 // state.setDescriptionRefs(res);
1222 // state.setDescriptionSourcesSet(true);
1223 // }
1224 // else{
1225 // res=state.getDescriptionRefs();
1226 // }
1227 // if(res !=null) {
1228 // for (OriginalSourceBase<?> sour:res){
1229 // if(sour.isInstanceOf(IdentifiableSource.class)){
1230 // try {
1231 // if(sourceNotLinkedToElement(taxonDescription,sour)) {
1232 // taxonDescription.addSource((IdentifiableSource)sour.clone());
1233 // }
1234 // } catch (CloneNotSupportedException e) {
1235 // logger.warn("no cloning?");
1236 // }
1237 // }else{
1238 // if(sourceNotLinkedToElement(taxonDescription,sour)) {
1239 // taxonDescription.addSource(OriginalSourceType.Import,null, null, sour.getCitation(),sour.getCitationMicroReference());
1240 // }
1241 // }
1242 // }
1243 // }
1244 // }
1245 // else {
1246 if(sourceNotLinkedToElement(taxonDescription,state.getRef(),null)) {
1247 taxonDescription.addSource(OriginalSourceType.Import,null, null, state.getRef(), null);
1248 }
1249 // }
1250 state.setDescriptionGroup(taxonDescription);
1251
1252 IndividualsAssociation indAssociation = IndividualsAssociation.NewInstance();
1253 Feature feature = makeFeature(state.getDerivedUnitBase());
1254 indAssociation.setAssociatedSpecimenOrObservation(state.getDerivedUnitBase());
1255 indAssociation.setFeature(feature);
1256 //
1257 // if (((Abcd206ImportConfigurator) state.getConfig()).isInteractWithUser()){
1258 // sourceMap = new HashMap<String, OriginalSourceBase<?>>();
1259 //
1260 // issTmp = getCommonService().list(IdentifiableSource.class, null, null, null, null);
1261 // issTmp2 = getCommonService().list(DescriptionElementSource.class, null, null, null, null);
1262 //
1263 // osbSet = new HashSet<OriginalSourceBase>();
1264 // if(issTmp2!=null) {
1265 // osbSet.addAll(issTmp2);
1266 // }
1267 // if(issTmp!=null) {
1268 // osbSet.addAll(issTmp);
1269 // }
1270 //
1271 //
1272 // addToSourceMap(sourceMap, osbSet);
1273 //
1274 // List<OriginalSourceBase<?>> sources =null;
1275 // if(!state.isAssociationSourcesSet()) {
1276 // sources = sui.askForSource(sourceMap, "descriptive element (association) ",taxon.toString(),
1277 // getReferenceService(),state.getDataHolder().getDocSources());
1278 // state.setAssociationRefs(sources);
1279 // state.setAssociationSourcesSet(true);
1280 // }
1281 // else{
1282 // sources=state.getAssociationRefs();
1283 // }
1284 // if(sources !=null) {
1285 // for (OriginalSourceBase<?> source: sources) {
1286 // if(source !=null) {
1287 // if(source.isInstanceOf(DescriptionElementSource.class)){
1288 // try {
1289 // if(sourceNotLinkedToElement(indAssociation,source)) {
1290 // indAssociation.addSource((DescriptionElementSource)source.clone());
1291 // }
1292 // } catch (CloneNotSupportedException e) {
1293 // logger.warn("clone forbidden?");
1294 // }
1295 // }else{
1296 // if(sourceNotLinkedToElement(indAssociation,source)) {
1297 // indAssociation.addSource(OriginalSourceType.Import,null, null, source.getCitation(),source.getCitationMicroReference());
1298 // }
1299 // try {
1300 // if(sourceNotLinkedToElement(state.getDerivedUnitBase(), source)) {
1301 // state.getDerivedUnitBase().addSource((IdentifiableSource) source.clone());
1302 // }
1303 // } catch (CloneNotSupportedException e) {
1304 // // TODO Auto-generated catch block
1305 // e.printStackTrace();
1306 // }
1307 // }
1308 //
1309 // }
1310 // }
1311 // }
1312 // }else {
1313 if(sourceNotLinkedToElement(indAssociation,state.getRef(),null)) {
1314 indAssociation.addSource(OriginalSourceType.Import,null, null, state.getRef(), null);
1315 }
1316 if(sourceNotLinkedToElement(state.getDerivedUnitBase(), state.getRef(),null)) {
1317 state.getDerivedUnitBase().addSource(OriginalSourceType.Import,null, null, state.getRef(), null);
1318 }
1319 for (Reference citation : determinationEvent.getReferences()) {
1320 if(sourceNotLinkedToElement(indAssociation,citation,null))
1321 {
1322 indAssociation.addSource(DescriptionElementSource.NewInstance(OriginalSourceType.Import, null, null, citation, null));
1323 }
1324 if(sourceNotLinkedToElement(state.getDerivedUnitBase(), state.getRef(),null)) {
1325 state.getDerivedUnitBase().addSource(OriginalSourceType.Import,null, null, state.getRef(), null);
1326 }
1327 }
1328 // }
1329
1330 taxonDescription.addElement(indAssociation);
1331
1332 save(taxonDescription, state);
1333 save(taxon, state);
1334 state.getReport().addDerivate(state.getDerivedUnitBase(), config);
1335 state.getReport().addIndividualAssociation(taxon, state.getDataHolder().getUnitID(), state.getDerivedUnitBase());
1336 }
1337
1338 /**
1339 * @param derivedUnitBase2
1340 * @param ref2
1341 * @param object
1342 * @return
1343 */
1344 private boolean sourceNotLinkedToElement(DerivedUnit derivedUnitBase2, Reference b, String d) {
1345 Set<IdentifiableSource> linkedSources = derivedUnitBase2.getSources();
1346 for (IdentifiableSource is:linkedSources){
1347 Reference a = is.getCitation();
1348 String c = is.getCitationMicroReference();
1349
1350 boolean refMatch=false;
1351 boolean microMatch=false;
1352
1353 try{
1354 if (a==null && b==null) {
1355 refMatch=true;
1356 }
1357 if (a!=null && b!=null) {
1358 if (a.getTitleCache().equalsIgnoreCase(b.getTitleCache())) {
1359 refMatch=true;
1360 }
1361 }
1362 }catch(Exception e){}
1363
1364
1365 try{
1366 if (c==null && d==null) {
1367 microMatch=true;
1368 }
1369 if(c!=null && d!=null) {
1370 if(c.equalsIgnoreCase(d)) {
1371 microMatch=true;
1372 }
1373 }
1374 }
1375 catch(Exception e){}
1376
1377 if (microMatch && refMatch) {
1378 return false;
1379 }
1380
1381
1382 }
1383 return true;
1384 }
1385
1386 private <T extends OriginalSourceBase<?>> boolean sourceNotLinkedToElement(ISourceable<T> sourcable, Reference reference, String microReference) {
1387 Set<T> linkedSources = sourcable.getSources();
1388 for (T is:linkedSources){
1389 Reference unitReference = is.getCitation();
1390 String unitMicroReference = is.getCitationMicroReference();
1391
1392 boolean refMatch=false;
1393 boolean microMatch=false;
1394
1395 try{
1396 if (unitReference==null && reference==null) {
1397 refMatch=true;
1398 }
1399 if (unitReference!=null && reference!=null) {
1400 if (unitReference.getTitleCache().equalsIgnoreCase(reference.getTitleCache())) {
1401 refMatch=true;
1402 }
1403 }
1404 }catch(Exception e){}
1405
1406 try{
1407 if (unitMicroReference==null && microReference==null) {
1408 microMatch=true;
1409 }
1410 if(unitMicroReference!=null && microReference!=null) {
1411 if(unitMicroReference.equalsIgnoreCase(microReference)) {
1412 microMatch=true;
1413 }
1414 }
1415 }
1416 catch(Exception e){}
1417
1418 if (microMatch && refMatch) {
1419 return false;
1420 }
1421 }
1422 return true;
1423 }
1424
1425 /**
1426 * look for the Feature object (FieldObs, Specimen,...)
1427 * @param unit : a specimen or obersvation base
1428 * @return the corresponding Feature
1429 */
1430 private Feature makeFeature(SpecimenOrObservationBase<?> unit) {
1431 SpecimenOrObservationType type = unit.getRecordBasis();
1432
1433
1434
1435 if (type.isFeatureObservation()){
1436 return Feature.OBSERVATION();
1437 }else if (type.isFeatureSpecimen()){
1438 return Feature.SPECIMEN();
1439 }else if (type == SpecimenOrObservationType.DerivedUnit){
1440 return Feature.OBSERVATION();
1441 // return getFeature("Specimen or observation");
1442 }else{
1443 String message = "Unhandled record basis '%s' for defining individuals association feature type. Use default.";
1444 logger.warn(String.format(message, type.getMessage()));
1445 return Feature.OBSERVATION();
1446 // return getFeature("Specimen or observation");
1447
1448 }
1449 }
1450
1451
1452 /**
1453 * @param sourceMap
1454 * @param osbSet
1455 */
1456 protected void addToSourceMap(Map<String, OriginalSourceBase<?>> sourceMap, Set<OriginalSourceBase> osbSet) {
1457 for( OriginalSourceBase<?> osb:osbSet) {
1458 if(osb.getCitation()!=null && osb.getCitationMicroReference() !=null && !osb.getCitationMicroReference().isEmpty()) {
1459 try{
1460 sourceMap.put(osb.getCitation().getTitleCache()+ "---"+osb.getCitationMicroReference(),osb);
1461 }catch(NullPointerException e){logger.warn("null pointer problem (no ref?) with "+osb);}
1462 } else if(osb.getCitation()!=null){
1463 try{
1464 sourceMap.put(osb.getCitation().getTitleCache(),osb);
1465 }catch(NullPointerException e){logger.warn("null pointer problem (no ref?) with "+osb);}
1466 }
1467 }
1468 }
1469
1470
1471 }