/* * Licensed under the Apache License, Version 2.0 (the "License"); * * You may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * limitations under the License. * * Contributions from 2013-2017 where performed either by US government * employees, or under US Veterans Health Administration contracts. * * US Veterans Health Administration contributions by government employees * are work of the U.S. Government and are not subject to copyright * protection in the United States. Portions contributed by government * employees are USGovWork (17USC ยง105). Not subject to copyright. * * Contribution by contractors to the US Veterans Health Administration * during this period are contractually contributed under the * Apache License, Version 2.0. * * See: https://www.usa.gov/government-works * * Contributions prior to 2013: * * Copyright (C) International Health Terminology Standards Development Organisation. * Licensed under the Apache License, Version 2.0. * */ package sh.isaac.model.coordinate; //~--- JDK imports ------------------------------------------------------------ import java.util.Arrays; import java.util.List; import java.util.Optional; //~--- non-JDK imports -------------------------------------------------------- import javafx.beans.property.IntegerProperty; import javafx.beans.property.ObjectProperty; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.beans.value.WeakChangeListener; import javafx.collections.ArrayChangeListener; import javafx.collections.ObservableIntegerArray; //~--- JDK imports ------------------------------------------------------------ import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; //~--- non-JDK imports -------------------------------------------------------- import sh.isaac.api.Get; import sh.isaac.api.chronicle.LatestVersion; import sh.isaac.api.component.sememe.SememeChronology; import sh.isaac.api.component.sememe.version.DescriptionSememe; import sh.isaac.api.coordinate.LanguageCoordinate; import sh.isaac.api.coordinate.StampCoordinate; //~--- classes ---------------------------------------------------------------- /** * The Class LanguageCoordinateImpl. * * @author kec */ @XmlRootElement(name = "languageCoordinate") @XmlAccessorType(XmlAccessType.FIELD) public class LanguageCoordinateImpl implements LanguageCoordinate { /** The language concept sequence. */ int languageConceptSequence; /** The dialect assemblage preference list. */ int[] dialectAssemblagePreferenceList; /** The description type preference list. */ int[] descriptionTypePreferenceList; //~--- constructors -------------------------------------------------------- /** * Instantiates a new language coordinate impl. */ private LanguageCoordinateImpl() { // for jaxb } /** * Instantiates a new language coordinate impl. * * @param languageConceptId the language concept id * @param dialectAssemblagePreferenceList the dialect assemblage preference list * @param descriptionTypePreferenceList the description type preference list */ public LanguageCoordinateImpl(int languageConceptId, int[] dialectAssemblagePreferenceList, int[] descriptionTypePreferenceList) { this.languageConceptSequence = Get.identifierService() .getConceptSequence(languageConceptId); this.dialectAssemblagePreferenceList = dialectAssemblagePreferenceList; for (int i = 0; i < this.dialectAssemblagePreferenceList.length; i++) { this.dialectAssemblagePreferenceList[i] = Get.identifierService() .getConceptSequence(this.dialectAssemblagePreferenceList[i]); } this.descriptionTypePreferenceList = descriptionTypePreferenceList; for (int i = 0; i < this.descriptionTypePreferenceList.length; i++) { this.descriptionTypePreferenceList[i] = Get.identifierService() .getConceptSequence(this.descriptionTypePreferenceList[i]); } } //~--- methods ------------------------------------------------------------- /** * Equals. * * @param obj the obj * @return true, if successful */ @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final LanguageCoordinateImpl other = (LanguageCoordinateImpl) obj; if (this.languageConceptSequence != other.languageConceptSequence) { return false; } if (!Arrays.equals(this.dialectAssemblagePreferenceList, other.dialectAssemblagePreferenceList)) { return false; } return Arrays.equals(this.descriptionTypePreferenceList, other.descriptionTypePreferenceList); } /** * Hash code. * * @return the int */ @Override public int hashCode() { int hash = 3; hash = 79 * hash + this.languageConceptSequence; hash = 79 * hash + Arrays.hashCode(this.dialectAssemblagePreferenceList); return hash; } /** * To string. * * @return the string */ @Override public String toString() { return "Language Coordinate{" + Get.conceptDescriptionText(this.languageConceptSequence) + ", dialect preference: " + Get.conceptDescriptionTextList(this.dialectAssemblagePreferenceList) + ", type preference: " + Get.conceptDescriptionTextList(this.descriptionTypePreferenceList) + '}'; } //~--- get methods --------------------------------------------------------- /** * Gets the description. * * @param descriptionList the description list * @param stampCoordinate the stamp coordinate * @return the description */ @Override public Optional<LatestVersion<DescriptionSememe<?>>> getDescription( List<SememeChronology<? extends DescriptionSememe<?>>> descriptionList, StampCoordinate stampCoordinate) { return Get.languageCoordinateService() .getSpecifiedDescription(stampCoordinate, descriptionList, this); } /** * Gets the description type preference list. * * @return the description type preference list */ @Override public int[] getDescriptionTypePreferenceList() { return this.descriptionTypePreferenceList; } //~--- set methods --------------------------------------------------------- /** * Set description type preference list property. * * @param descriptionTypePreferenceListProperty the description type preference list property * @return the array change listener */ public ArrayChangeListener<ObservableIntegerArray> setDescriptionTypePreferenceListProperty( ObjectProperty<ObservableIntegerArray> descriptionTypePreferenceListProperty) { final ArrayChangeListener<ObservableIntegerArray> listener = (ObservableIntegerArray observableArray, boolean sizeChanged, int from, int to) -> { this.descriptionTypePreferenceList = observableArray.toArray(this.descriptionTypePreferenceList); }; descriptionTypePreferenceListProperty.getValue() .addListener(new WeakArrayChangeListener(listener)); return listener; } //~--- get methods --------------------------------------------------------- /** * Gets the dialect assemblage preference list. * * @return the dialect assemblage preference list */ @Override public int[] getDialectAssemblagePreferenceList() { return this.dialectAssemblagePreferenceList; } //~--- set methods --------------------------------------------------------- /** * Set dialect assemblage preference list property. * * @param dialectAssemblagePreferenceListProperty the dialect assemblage preference list property * @return the array change listener */ public ArrayChangeListener<ObservableIntegerArray> setDialectAssemblagePreferenceListProperty( ObjectProperty<ObservableIntegerArray> dialectAssemblagePreferenceListProperty) { final ArrayChangeListener<ObservableIntegerArray> listener = (ObservableIntegerArray observableArray, boolean sizeChanged, int from, int to) -> { this.dialectAssemblagePreferenceList = observableArray.toArray(this.dialectAssemblagePreferenceList); }; dialectAssemblagePreferenceListProperty.getValue() .addListener(new WeakArrayChangeListener(listener)); return listener; } //~--- get methods --------------------------------------------------------- /** * Gets the fully specified description. * * @param descriptionList the description list * @param stampCoordinate the stamp coordinate * @return the fully specified description */ @Override public Optional<LatestVersion<DescriptionSememe<?>>> getFullySpecifiedDescription( List<SememeChronology<? extends DescriptionSememe<?>>> descriptionList, StampCoordinate stampCoordinate) { return Get.languageCoordinateService() .getSpecifiedDescription(stampCoordinate, descriptionList, Get.languageCoordinateService() .getFullySpecifiedConceptSequence(), this); } /** * Gets the language concept sequence. * * @return the language concept sequence */ @Override public int getLanguageConceptSequence() { return this.languageConceptSequence; } //~--- set methods --------------------------------------------------------- /** * Set language concept sequence property. * * @param languageConceptSequenceProperty the language concept sequence property * @return the change listener */ public ChangeListener<Number> setLanguageConceptSequenceProperty(IntegerProperty languageConceptSequenceProperty) { final ChangeListener<Number> listener = (ObservableValue<? extends Number> observable, Number oldValue, Number newValue) -> { this.languageConceptSequence = newValue.intValue(); }; languageConceptSequenceProperty.addListener(new WeakChangeListener<>(listener)); return listener; } //~--- get methods --------------------------------------------------------- /** * Gets the preferred description. * * @param descriptionList the description list * @param stampCoordinate the stamp coordinate * @return the preferred description */ @Override public Optional<LatestVersion<DescriptionSememe<?>>> getPreferredDescription( List<SememeChronology<? extends DescriptionSememe<?>>> descriptionList, StampCoordinate stampCoordinate) { return Get.languageCoordinateService() .getSpecifiedDescription(stampCoordinate, descriptionList, Get.languageCoordinateService() .getSynonymConceptSequence(), this); } }