All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mycore.datamodel.classifications2.impl.MCRAbstractCategoryImpl Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.datamodel.classifications2.impl;

import java.net.URI;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Locale;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Collectors;

import org.mycore.common.MCRConstants;
import org.mycore.common.MCRSessionMgr;
import org.mycore.common.config.MCRConfiguration2;
import org.mycore.datamodel.classifications2.MCRCategory;
import org.mycore.datamodel.classifications2.MCRCategoryDAOFactory;
import org.mycore.datamodel.classifications2.MCRCategoryID;
import org.mycore.datamodel.classifications2.MCRLabel;
import org.mycore.util.concurrent.MCRReadWriteGuard;

/**
 * @author Thomas Scheffler (yagee)
 *
 * @version $Revision$ $Date$
 * @since 2.0
 */
public abstract class MCRAbstractCategoryImpl implements MCRCategory {

    protected final MCRReadWriteGuard childGuard = new MCRReadWriteGuard();

    protected MCRCategory root;

    protected MCRCategory parent;

    protected Set labels;

    protected List children;

    private MCRCategoryID id;

    private URI uri;

    private String defaultLang;

    private static HashSet LANGUAGES;

    static {
        LANGUAGES = new HashSet<>(MCRConfiguration2.getString("MCR.Metadata.Languages")
            .map(MCRConfiguration2::splitValue)
            .map(s -> s.collect(Collectors.toList()))
            .orElseGet(Collections::emptyList));
    }

    public MCRAbstractCategoryImpl() {
        super();
        if (defaultLang == null) {
            defaultLang = MCRConfiguration2.getString("MCR.Metadata.DefaultLang").orElse(MCRConstants.DEFAULT_LANG);
        }
        labels = new HashSet<>();
    }

    public List getChildren() {
        return childGuard.lazyLoad(this::childrenNotHere, this::initChildren, () -> children);
    }

    private boolean childrenNotHere() {
        return children == null;
    }

    private void initChildren() {
        setChildrenUnlocked(MCRCategoryDAOFactory.getInstance().getChildren(id));
    }

    protected abstract void setChildrenUnlocked(List children);

    public MCRCategoryID getId() {
        return id;
    }

    public void setId(MCRCategoryID id) {
        this.id = id;
    }

    public Set getLabels() {
        return labels;
    }

    public MCRCategory getRoot() {
        if (getId().isRootID()) {
            return this;
        }
        if (root == null && getParent() != null) {
            root = getParent().getRoot();
        }
        return root;
    }

    public URI getURI() {
        return uri;
    }

    public void setURI(URI uri) {
        this.uri = uri;
    }

    public boolean hasChildren() {
        return childGuard
            .read(() -> Optional.ofNullable(children).map(c -> !c.isEmpty()))
            .orElse(MCRCategoryDAOFactory.getInstance().hasChildren(id));
    }

    public final boolean isCategory() {
        return !isClassification();
    }

    public final boolean isClassification() {
        return getId().isRootID();
    }

    public MCRCategory getParent() {
        return parent;
    }

    public void setParent(MCRCategory parent) {
        if (this.parent == parent) {
            return;
        }
        detachFromParent();
        this.parent = parent;
        if (parent != null) {
            parent.getChildren().add(this);
        }
    }

    /**
     *
     */
    void detachFromParent() {
        if (parent != null) {
            // remove this from current parent
            parent.getChildren().remove(this);
            parent = null;
        }
    }

    public Optional getCurrentLabel() {
        if (labels.isEmpty()) {
            return Optional.empty();
        }

        return Optional.of(
            getLabel(MCRSessionMgr.getCurrentSession().getCurrentLanguage())
                .orElseGet(() -> getLabel(defaultLang)
                    .orElseGet(() -> labels.stream().filter(l -> LANGUAGES.contains(l.getLang())).findFirst()
                        .orElseGet(() -> labels.stream().filter(l -> !l.getLang().startsWith("x-")).findFirst()
                            .orElseGet(() -> labels.iterator().next())))));
    }

    public Optional getLabel(String lang) {
        String languageTag = Locale.forLanguageTag(lang).toLanguageTag();
        for (MCRLabel label : labels) {
            if (label.getLang().equals(languageTag)) {
                return Optional.of(label);
            }
        }
        return Optional.empty();
    }

    public String toString() {
        return Optional.ofNullable(id).map(MCRCategoryID::toString).orElse(null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy