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

org.hibersap.execution.jco.JCoConnection Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/*
 * Copyright (c) 2008-2014 akquinet tech@spree GmbH
 *
 * This file is part of Hibersap.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this software except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.hibersap.execution.jco;

import com.sap.conn.jco.JCoCustomDestination;
import com.sap.conn.jco.JCoCustomDestination.UserData;
import com.sap.conn.jco.JCoDestination;
import com.sap.conn.jco.JCoException;
import com.sap.conn.jco.JCoFunction;
import com.sap.conn.jco.JCoRepository;
import org.hibersap.HibersapException;
import org.hibersap.execution.Connection;
import org.hibersap.session.Credentials;
import org.hibersap.session.SessionImplementor;
import org.hibersap.session.Transaction;

import java.util.Map;

/*
 * @author Carsten Erker
 */
public class JCoConnection implements Connection {

    private final JCoContextAdapter jcoContext = new JCoContextAdapterImpl();
    private final JCoMapper jcoMapper;
    private final String destinationName;
    private JCoDestination destination = null;
    private JCoTransaction transaction = null;
    private Credentials credentials;

    public JCoConnection( final String destinationName ) {
        this.jcoMapper = new JCoMapper();
        this.destinationName = destinationName;
    }

    /**
     * {@inheritDoc}
     */
    public Transaction beginTransaction( final SessionImplementor session ) {
        if ( transaction != null ) {
            return transaction;
        }
        transaction = new JCoTransaction( session );
        transaction.begin();

        return transaction;
    }

    public void close() {
        endStatefulConnection();
    }

    public void execute( final String bapiName, final Map functionMap ) {
        if ( destination == null ) {
            startStatefulConnection();
        }

        JCoFunction function;

        try {
            function = getRepository().getFunction( bapiName );
        } catch ( JCoException e ) {
            throw new HibersapException( "The function " + bapiName + " is not available in the SAP system", e );
        }
        if ( function == null ) {
            throw new HibersapException( "The function module '" + bapiName + "' does not exist in SAP" );
        }

        jcoMapper.putFunctionMapValuesToFunction( function, functionMap );

        try {
            function.execute( destination );
        } catch ( JCoException e ) {
            throw new HibersapException( "Error executing function module " + bapiName, e );
        }

        jcoMapper.putFunctionValuesToFunctionMap( function, functionMap );
    }

    /**
     * {@inheritDoc}
     */
    public Transaction getTransaction() {
        return transaction;
    }

    /**
     * {@inheritDoc}
     */
    public void setCredentials( final Credentials credentials ) {
        this.credentials = credentials;
    }

    private void copyCredentialsToUserData( final Credentials cred, final UserData data ) {
        if ( isNotNull( cred.getAliasUser() ) ) {
            data.setAliasUser( cred.getAliasUser() );
        }
        if ( isNotNull( cred.getClient() ) ) {
            data.setClient( cred.getClient() );
        }
        if ( isNotNull( cred.getLanguage() ) ) {
            data.setLanguage( cred.getLanguage() );
        }
        if ( isNotNull( cred.getPassword() ) ) {
            data.setPassword( cred.getPassword() );
        }
        if ( isNotNull( cred.getSsoTicket() ) ) {
            data.setSSOTicket( cred.getSsoTicket() );
        }
        if ( isNotNull( cred.getUser() ) ) {
            data.setUser( cred.getUser() );
        }
        if ( isNotNull( cred.getX509Certificate() ) ) {
            data.setX509Certificate( cred.getX509Certificate() );
        }
    }

    // TODO move to utility class
    private boolean isNotNull( final Object object ) {
        return object != null;
    }

    private void endStatefulConnection() {
        try {
            jcoContext.end( destination );
        } catch ( JCoException e ) {
            // TODO maybe just log this error? Can we go on though? Write test for JCo
            throw new HibersapException( "JCo connection could not be ended", e );
        } finally {
            destination = null;
        }
    }

    private JCoCustomDestination getCustomDestination( final JCoDestination dest, final Credentials cred ) {
        JCoCustomDestination custDest = dest.createCustomDestination();
        UserData data = custDest.getUserLogonData();
        copyCredentialsToUserData( cred, data );
        return custDest;
    }

    private JCoRepository getRepository() {
        try {
            return destination.getRepository();
        } catch ( JCoException e ) {
            throw new HibersapException( "Can not get repository from destination " + destination.getDestinationName(),
                                         e );
        }
    }

    private void startStatefulConnection() {
        destination = JCoEnvironment.getDestination( destinationName );

        if ( jcoContext.isStateful( destination ) ) {
            throw new HibersapException( "A stateful JCo session was already started for the given destination "
                                                 + "in the current thread." );
        }

        if ( credentials != null ) {
            destination = getCustomDestination( destination, credentials );
        }

        jcoContext.begin( destination );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy