Package ch.qos.logback.core.net

Source Code of ch.qos.logback.core.net.AbstractSSLSocketAppender

/**
* Logback: the reliable, generic, fast and flexible logging framework.
* Copyright (C) 1999-2013, QOS.ch. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
*   or (per the licensee's choosing)
*
* under the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation.
*/
package ch.qos.logback.core.net;

import javax.net.SocketFactory;
import javax.net.ssl.SSLContext;

import ch.qos.logback.core.net.ssl.ConfigurableSSLSocketFactory;
import ch.qos.logback.core.net.ssl.SSLComponent;
import ch.qos.logback.core.net.ssl.SSLConfiguration;
import ch.qos.logback.core.net.ssl.SSLParametersConfiguration;

/**
* An abstract base for module specific {@code SSLSocketAppender}
* implementations located in other logback modules.
*
* @author Carl Harris
*/
public abstract class AbstractSSLSocketAppender<E> extends AbstractSocketAppender<E>
    implements SSLComponent {

  private SSLConfiguration ssl;
  private SocketFactory socketFactory;

  /**
   * Constructs a new appender.
   */
  protected AbstractSSLSocketAppender() {
  }
 
  /**
   * Constructs a new appender that will connect to the given remote host
   * and port.
   * <p>
   * This constructor was introduced primarily to allow the encapsulation
   * of the base {@link AbstractSocketAppender} to be improved in a manner that
   * is least disruptive to <em>existing</em> subclasses.  <strong>This
   * constructor will be removed in future release</strong>.
   * @param remoteHost target remote host
   * @param port target port on remote host
   */
  @Deprecated
  protected AbstractSSLSocketAppender(String remoteHost, int port) {
    super(remoteHost, port);
  }
 
  /**
   * Gets an {@link SocketFactory} that produces SSL sockets using an
   * {@link SSLContext} that is derived from the appender's configuration.
   * @return socket factory
   */
  @Override
  protected SocketFactory getSocketFactory() {
    return socketFactory;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public void start() {
    try {
      SSLContext sslContext = getSsl().createContext(this);
      SSLParametersConfiguration parameters = getSsl().getParameters();
      parameters.setContext(getContext());
      socketFactory = new ConfigurableSSLSocketFactory(parameters,
          sslContext.getSocketFactory());
      super.start();
    }
    catch (Exception ex) {
      addError(ex.getMessage(), ex);
    }
  }

  /**
   * Gets the SSL configuration.
   * @return SSL configuration; if no configuration has been set, a
   *    default configuration is returned
   */
  public SSLConfiguration getSsl() {
    if (ssl == null) {
      ssl = new SSLConfiguration();
    }
    return ssl;
  }

  /**
   * Sets the SSL configuration.
   * @param ssl the SSL configuration to set
   */
  public void setSsl(SSLConfiguration ssl) {
    this.ssl = ssl;
  }

}
TOP

Related Classes of ch.qos.logback.core.net.AbstractSSLSocketAppender

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.