/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.yang.model.repo.util; import static java.util.Objects.requireNonNull; import com.google.common.util.concurrent.AsyncFunction; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; import com.google.common.util.concurrent.MoreExecutors; import java.util.HashMap; import java.util.Map; import org.opendaylight.yangtools.yang.model.repo.api.SchemaRepository; import org.opendaylight.yangtools.yang.model.repo.api.SchemaSourceRepresentation; import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier; import org.opendaylight.yangtools.yang.model.repo.spi.PotentialSchemaSource; import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceListener; import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceProvider; import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceRegistration; import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceRegistry; public class SchemaSourceTransformer implements SchemaSourceListener, SchemaSourceProvider { @FunctionalInterface public interface Transformation extends AsyncFunction { @Override ListenableFuture apply(S input) throws Exception; } private final Map, RefcountedRegistration> availableSources = new HashMap<>(); private final SchemaSourceRegistry consumer; private final SchemaRepository provider; private final AsyncFunction function; private final Class srcClass; private final Class dstClass; public SchemaSourceTransformer(final SchemaRepository provider, final Class srcClass, final SchemaSourceRegistry consumer, final Class dstClass, final AsyncFunction function) { this.provider = requireNonNull(provider); this.consumer = requireNonNull(consumer); this.function = requireNonNull(function); this.srcClass = requireNonNull(srcClass); this.dstClass = requireNonNull(dstClass); } @Override public ListenableFuture getSource(final SourceIdentifier sourceIdentifier) { return Futures.transformAsync(provider.getSchemaSource(sourceIdentifier, srcClass), function, MoreExecutors.directExecutor()); } @Override public final void schemaSourceEncountered(final SchemaSourceRepresentation source) { // Not interesting } @Override public final void schemaSourceRegistered(final Iterable> sources) { for (PotentialSchemaSource src : sources) { final Class rep = src.getRepresentation(); if (srcClass.isAssignableFrom(rep) && dstClass != rep) { registerSource(src); } } } @Override public final void schemaSourceUnregistered(final PotentialSchemaSource source) { final Class rep = source.getRepresentation(); if (srcClass.isAssignableFrom(rep) && dstClass != rep) { unregisterSource(source); } } private void registerSource(final PotentialSchemaSource src) { RefcountedRegistration reg = availableSources.get(src); if (reg != null) { reg.incRef(); return; } final PotentialSchemaSource newSrc = PotentialSchemaSource.create(src.getSourceIdentifier(), dstClass, src.getCost() + PotentialSchemaSource.Costs.COMPUTATION.getValue()); final SchemaSourceRegistration r = consumer.registerSchemaSource(this, newSrc); availableSources.put(src, new RefcountedRegistration(r)); } private void unregisterSource(final PotentialSchemaSource src) { final RefcountedRegistration reg = availableSources.get(src); if (reg != null && reg.decRef()) { availableSources.remove(src); } } }