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

org.mule.runtime.internal.dsl.DefaultDslResolvingContext Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.runtime.internal.dsl;

import static java.util.Collections.unmodifiableSet;
import static java.util.Optional.ofNullable;
import static java.util.stream.Collectors.toMap;
import org.mule.runtime.api.dsl.DslResolvingContext;
import org.mule.runtime.api.meta.model.ExtensionModel;
import org.mule.runtime.api.meta.type.TypeCatalog;

import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Optional;
import java.util.Set;

/**
 * Default implementation of {@link DslResolvingContext} that uses the {@link Set} of {@link ExtensionModel} to provide
 * the required {@link ExtensionModel}s
 *
 * @since 1.0
 */
public final class DefaultDslResolvingContext implements DslResolvingContext {

  private final TypeCatalog typeCatalog;
  private final Set extensions;
  private final Map extensionsByName;

  public DefaultDslResolvingContext(Set extensions) {
    this.extensions = extensions;
    this.extensionsByName = extensions.stream().collect(toMap(ExtensionModel::getName, e -> e, (u, v) -> v, LinkedHashMap::new));
    this.typeCatalog = TypeCatalog.getDefault(extensions);
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public Optional getExtension(String name) {
    return ofNullable(extensionsByName.get(name));
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public Set getExtensions() {
    return unmodifiableSet(extensions);
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public TypeCatalog getTypeCatalog() {
    return typeCatalog;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy