/* * Copyright (c) 2013 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.parser.stmt.rfc6020.effective; import java.util.HashSet; import com.google.common.collect.ImmutableList; import java.util.List; import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import com.google.common.collect.ImmutableSet; import com.google.common.collect.ImmutableSetMultimap; import com.google.common.collect.Multimaps; import com.google.common.collect.SetMultimap; import java.net.URI; import java.util.Collection; import java.util.Map; import java.util.Set; import java.util.TreeMap; import org.opendaylight.yangtools.yang.model.api.Module; import org.opendaylight.yangtools.yang.model.api.ModuleIdentifier; public class EffectiveSchemaContext extends AbstractEffectiveSchemaContext { private final Map identifiersToSources; private final SetMultimap namespaceToModules; private final SetMultimap nameToModules; private final Set modules; private final ImmutableList> rootDeclaredStatements; private final ImmutableList> rootEffectiveStatements; public EffectiveSchemaContext( List> rootDeclaredStatements, List> rootEffectiveStatements) { this.rootDeclaredStatements = ImmutableList .copyOf(rootDeclaredStatements); this.rootEffectiveStatements = ImmutableList .copyOf(rootEffectiveStatements); Set modulesInit = new HashSet<>(); for (EffectiveStatement rootEffectiveStatement : rootEffectiveStatements) { if (rootEffectiveStatement instanceof ModuleEffectiveStatementImpl) { Module module = (Module) rootEffectiveStatement; modulesInit.add(module); } } this.modules = ImmutableSet.copyOf(modulesInit); final SetMultimap nsMap = Multimaps.newSetMultimap( new TreeMap>(), MODULE_SET_SUPPLIER); final SetMultimap nameMap = Multimaps.newSetMultimap( new TreeMap>(), MODULE_SET_SUPPLIER); for (Module m : modulesInit) { nameMap.put(m.getName(), m); nsMap.put(m.getNamespace(), m); } namespaceToModules = ImmutableSetMultimap.copyOf(nsMap); nameToModules = ImmutableSetMultimap.copyOf(nameMap); // :TODO init identifiersToSources this.identifiersToSources = null; } public ImmutableList> getRootDeclaredStatements() { return rootDeclaredStatements; } public ImmutableList> getRootEffectiveStatements() { return rootEffectiveStatements; } @Override protected Map getIdentifiersToSources() { return identifiersToSources; } @Override public Set getModules() { return modules; } @Override protected SetMultimap getNamespaceToModules() { return namespaceToModules; } @Override protected SetMultimap getNameToModules() { return nameToModules; } @Override public String toString() { return String.format("SchemaContextImpl{modules=%s}", modules); } }