Package org.sonatype.security.model.source

Source Code of org.sonatype.security.model.source.AbstractSecurityModelConfigurationSource

/*
* Sonatype Nexus (TM) Open Source Version
* Copyright (c) 2007-2014 Sonatype, Inc.
* All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,
* which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks
* of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the
* Eclipse Foundation. All other trademarks are the property of their respective owners.
*/
package org.sonatype.security.model.source;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;

import org.sonatype.configuration.source.AbstractStreamConfigurationSource;
import org.sonatype.security.model.Configuration;
import org.sonatype.security.model.io.xpp3.SecurityConfigurationXpp3Reader;

import org.codehaus.plexus.util.xml.pull.XmlPullParserException;

/**
* Abstract class that encapsulates security modello model loading and saving with interpolation.
*
* @author cstamas
*/
public abstract class AbstractSecurityModelConfigurationSource
    extends AbstractStreamConfigurationSource<Configuration>
    implements SecurityModelConfigurationSource
{

  /**
   * The configuration.
   */
  private Configuration configuration;

  public Configuration getConfiguration() {
    return configuration;
  }

  public void setConfiguration(Configuration configuration) {
    this.configuration = configuration;
  }

  /**
   * Called by subclasses when loaded configuration is rejected for some reason.
   */
  protected void rejectConfiguration(String message) {
    this.configuration = null;

    if (message != null) {
      getLogger().warn(message);
    }
  }

  /**
   * Load configuration.
   *
   * @param file the file
   * @return the configuration
   * @throws IOException Signals that an I/O exception has occurred.
   */
  protected void loadConfiguration(InputStream is)
      throws IOException
  {
    setConfigurationUpgraded(false);

    Reader fr = null;

    try {
      SecurityConfigurationXpp3Reader reader = new SecurityConfigurationXpp3Reader();

      fr = new InputStreamReader(is);

      configuration = reader.read(fr);
    }
    catch (XmlPullParserException e) {
      rejectConfiguration("Security configuration file was not loaded, it has the wrong structure.");

      if (getLogger().isDebugEnabled()) {
        getLogger().debug("security.xml is broken:", e);
      }
    }
    finally {
      if (fr != null) {
        fr.close();
      }
    }

    // check the model version if loaded
    if (configuration != null && !Configuration.MODEL_VERSION.equals(configuration.getVersion())) {
      rejectConfiguration("Security configuration file was loaded but discarded, it has the wrong version number.");
    }

    if (getConfiguration() != null) {
      getLogger().debug("Configuration loaded succesfully.");
    }
  }

  /**
   * Returns the default source of ConfigurationSource. May be null.
   */
  public SecurityModelConfigurationSource getDefaultsSource() {
    return null;
  }

}
TOP

Related Classes of org.sonatype.security.model.source.AbstractSecurityModelConfigurationSource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.