Package org.teiid.transport

Source Code of org.teiid.transport.LogonImpl

/*
* JBoss, Home of Professional Open Source.
* See the COPYRIGHT.txt file distributed with this work for information
* regarding copyright ownership.  Some portions may be licensed
* to Red Hat, Inc. under one or more contributor license agreements.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*/

package org.teiid.transport;

import java.util.Collection;
import java.util.Properties;

import javax.security.auth.login.LoginException;

import org.teiid.adminapi.impl.SessionMetadata;
import org.teiid.client.security.ILogon;
import org.teiid.client.security.InvalidSessionException;
import org.teiid.client.security.LogonException;
import org.teiid.client.security.LogonResult;
import org.teiid.client.security.SessionToken;
import org.teiid.client.util.ResultsFuture;
import org.teiid.core.ComponentNotFoundException;
import org.teiid.core.CoreConstants;
import org.teiid.core.TeiidComponentException;
import org.teiid.dqp.internal.process.DQPWorkContext;
import org.teiid.dqp.service.SessionService;
import org.teiid.dqp.service.SessionServiceException;
import org.teiid.logging.LogConstants;
import org.teiid.logging.LogManager;
import org.teiid.net.CommunicationException;
import org.teiid.net.TeiidURL;
import org.teiid.security.Credentials;


public class LogonImpl implements ILogon {
 
  private SessionService service;
  private String clusterName;

  public LogonImpl(SessionService service, String clusterName) {
    this.service = service;
    this.clusterName = clusterName;
  }

  public LogonResult logon(Properties connProps) throws LogonException,
      ComponentNotFoundException {
    DQPWorkContext workContext = DQPWorkContext.getWorkContext();
    SessionToken oldToken = workContext.getSessionToken();
        String applicationName = connProps.getProperty(TeiidURL.CONNECTION.APP_NAME);
        // user may be null if using trustedToken to log on
        String user = connProps.getProperty(TeiidURL.CONNECTION.USER_NAME, CoreConstants.DEFAULT_ANON_USERNAME);
        // password may be null if using trustedToken to log on
        String password = connProps.getProperty(TeiidURL.CONNECTION.PASSWORD);
    Credentials credential = null;
        if (password != null) {
            credential = new Credentials(password.toCharArray());
        }
       
        boolean adminConnection = Boolean.parseBoolean(connProps.getProperty(TeiidURL.CONNECTION.ADMIN));
    try {
      SessionMetadata sessionInfo = service.createSession(user,credential, applicationName, connProps, adminConnection, true);
          updateDQPContext(sessionInfo);
          if (DQPWorkContext.getWorkContext().getClientAddress() == null) {
        sessionInfo.setEmbedded(true);
          }
          if (oldToken != null) {
            try {
          this.service.closeSession(oldToken.getSessionID());
        } catch (InvalidSessionException e) {
        }
          }
      return new LogonResult(sessionInfo.getSessionToken(), sessionInfo.getVDBName(), sessionInfo.getVDBVersion(), clusterName);
    } catch (LoginException e) {
      throw new LogonException(e.getMessage());
    } catch (SessionServiceException e) {
      throw new LogonException(e, e.getMessage());
    }
  }

  private String updateDQPContext(SessionMetadata s) {
    String sessionID = s.getSessionId();
   
    DQPWorkContext workContext = DQPWorkContext.getWorkContext();
    workContext.setSession(s);
    return sessionID;
  }
   
  public ResultsFuture<?> logoff() throws InvalidSessionException {
    this.service.closeSession(DQPWorkContext.getWorkContext().getSessionId());
    DQPWorkContext.getWorkContext().getSession().setSessionId(null);
    return ResultsFuture.NULL_FUTURE;
  }

  public ResultsFuture<?> ping() throws InvalidSessionException,TeiidComponentException {
    // ping is double used to alert the aliveness of the client, as well as check the server instance is
    // alive by socket server instance, so that they can be cached.
    String id = DQPWorkContext.getWorkContext().getSessionId();
    if (id != null) {
      this.service.pingServer(id);
    }
    LogManager.logTrace(LogConstants.CTX_SECURITY, "Ping", id); //$NON-NLS-1$
    return ResultsFuture.NULL_FUTURE;
  }
 
  @Override
  public ResultsFuture<?> ping(Collection<String> sessions)
      throws TeiidComponentException, CommunicationException {
    for (String string : sessions) {
      try {
        this.service.pingServer(string);
      } catch (InvalidSessionException e) {
      }
    }
    return ResultsFuture.NULL_FUTURE;
  }

  @Override
  public void assertIdentity(SessionToken checkSession) throws InvalidSessionException, TeiidComponentException {
    SessionMetadata sessionInfo = null;
    try {
      sessionInfo = this.service.validateSession(checkSession.getSessionID());
    } catch (SessionServiceException e) {
      throw new TeiidComponentException(e);
    }
   
    if (sessionInfo == null) {
      throw new InvalidSessionException();
    }
   
    SessionToken st = sessionInfo.getSessionToken();
    if (!st.equals(checkSession)) {
      throw new InvalidSessionException();
    }
    this.updateDQPContext(sessionInfo);
  }
}
TOP

Related Classes of org.teiid.transport.LogonImpl

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.