ec.demetra.xml.calendars.DayAdapters.java Source code

Java tutorial

Introduction

Here is the source code for ec.demetra.xml.calendars.DayAdapters.java

Source

/*
 * Copyright 2016 National Bank of Belgium
 * 
 * Licensed under the EUPL, Version 1.1 or  as soon they will be approved 
 * by the European Commission - subsequent versions of the EUPL (the "Licence");
 * You may not use this work except in compliance with the Licence.
 * You may obtain a copy of the Licence at:
 * 
 * http://ec.europa.eu/idabc/eupl
 * 
 * Unless required by applicable law or agreed to in writing, software 
 * distributed under the Licence is distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Licence for the specific language governing permissions and 
 * limitations under the Licence.
 */
package ec.demetra.xml.calendars;

import com.google.common.collect.Iterables;
import ec.tstoolkit.design.GlobalServiceProvider;
import ec.tstoolkit.timeseries.calendars.ISpecialDay;
import java.util.ArrayList;
import java.util.List;
import java.util.ServiceLoader;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Collectors;

/**
 *
 * @author Jean Palate
 */
@GlobalServiceProvider
public class DayAdapters {

    private static final AtomicReference<DayAdapters> defadapters = new AtomicReference<>();

    public static final DayAdapters getDefault() {
        defadapters.compareAndSet(null, make());
        return defadapters.get();
    }

    public static final void setDefault(DayAdapters adapters) {
        defadapters.set(adapters);
    }

    private static DayAdapters make() {
        DayAdapters adapters = new DayAdapters();
        adapters.load();
        return adapters;
    }

    private final List<DayAdapter> adapters = new ArrayList<>();

    public void load() {
        Iterable<DayAdapter> all = ServiceLoader.load(DayAdapter.class);
        Iterables.addAll(adapters, all);
    }

    public List<Class> getXmlClasses() {
        return adapters.stream().map(adapter -> adapter.getXmlType()).collect(Collectors.toList());
    }

    public ISpecialDay unmarshal(XmlDay xvar) {
        for (DayAdapter adapter : adapters) {
            if (adapter.getXmlType().isInstance(xvar)) {
                try {
                    return (ISpecialDay) adapter.unmarshal(xvar);
                } catch (Exception ex) {
                    return null;
                }
            }
        }
        return null;
    }

    public XmlDay marshal(ISpecialDay ivar) {
        for (DayAdapter adapter : adapters) {
            if (adapter.getValueType().isInstance(ivar)) {
                try {
                    return (XmlDay) adapter.marshal(ivar);
                } catch (Exception ex) {
                    return null;
                }
            }
        }
        return null;
    }
}