Search in sources :

Example 11 with DiameterActivityImpl

use of org.mobicents.slee.resource.diameter.base.DiameterActivityImpl in project jain-slee.diameter by RestComm.

the class DiameterS6aResourceAdaptor method addActivity.

// Session Management --------------------------------------------------
/**
 * Method for performing tasks when activity is created, such as informing SLEE about it and storing into internal map.
 *
 * @param ac the activity that has been created
 */
private void addActivity(DiameterActivity ac, boolean suspended) {
    try {
        // Inform SLEE that Activity Started
        DiameterActivityImpl activity = (DiameterActivityImpl) ac;
        if (suspended) {
            sleeEndpoint.startActivitySuspended(activity.getActivityHandle(), activity, DEFAULT_ACTIVITY_FLAGS);
        } else {
            sleeEndpoint.startActivity(activity.getActivityHandle(), activity, DEFAULT_ACTIVITY_FLAGS);
        }
        // Set the listener
        activity.setSessionListener(this);
        // Put it into our activites map
        activities.put(activity.getActivityHandle(), activity);
        if (tracer.isInfoEnabled()) {
            tracer.info("Activity started [" + activity.getActivityHandle() + "]");
        }
    } catch (Exception e) {
        tracer.severe("Error creating activity", e);
        throw new RuntimeException("Error creating activity", e);
    }
}
Also used : DiameterActivityImpl(org.mobicents.slee.resource.diameter.base.DiameterActivityImpl) AvpDataException(org.jdiameter.api.AvpDataException) InternalException(org.jdiameter.api.InternalException) IllegalDiameterStateException(org.jdiameter.api.IllegalDiameterStateException) CreateActivityException(net.java.slee.resource.diameter.base.CreateActivityException) OperationNotSupportedException(javax.naming.OperationNotSupportedException) InvalidConfigurationException(javax.slee.resource.InvalidConfigurationException)

Example 12 with DiameterActivityImpl

use of org.mobicents.slee.resource.diameter.base.DiameterActivityImpl in project jain-slee.diameter by RestComm.

the class DiameterS6aResourceAdaptor method sessionCreated.

public void sessionCreated(Session session) {
    DiameterMessageFactoryImpl sessionMsgFactory = new DiameterMessageFactoryImpl(session, stack, null, null);
    DiameterActivityImpl activity = new DiameterActivityImpl(sessionMsgFactory, baseAvpFactory, session, this, null, null);
    // TODO: Do we need to manage session?
    // session.addStateChangeNotification(activity);
    activity.setSessionListener(this);
    addActivity(activity, false);
}
Also used : DiameterMessageFactoryImpl(org.mobicents.slee.resource.diameter.base.DiameterMessageFactoryImpl) DiameterActivityImpl(org.mobicents.slee.resource.diameter.base.DiameterActivityImpl)

Example 13 with DiameterActivityImpl

use of org.mobicents.slee.resource.diameter.base.DiameterActivityImpl in project jain-slee.diameter by RestComm.

the class DiameterRoResourceAdaptor method addActivity.

// Session Management --------------------------------------------------
/**
 * Method for performing tasks when activity is created, such as informing SLEE about it and storing into internal map.
 *
 * @param ac the activity that has been created
 */
private void addActivity(DiameterActivity ac, boolean suspended) {
    try {
        // Inform SLEE that Activity Started
        DiameterActivityImpl activity = (DiameterActivityImpl) ac;
        if (suspended) {
            sleeEndpoint.startActivitySuspended(activity.getActivityHandle(), activity, MARSHALABLE_ACTIVITY_FLAGS);
        } else {
            sleeEndpoint.startActivity(activity.getActivityHandle(), activity, MARSHALABLE_ACTIVITY_FLAGS);
        }
        // Set the listener
        activity.setSessionListener(this);
        // Put it into our activities map
        activities.put(activity.getActivityHandle(), activity);
        if (tracer.isInfoEnabled()) {
            tracer.info("Activity started [" + activity.getActivityHandle() + "]");
        }
    } catch (Exception e) {
        tracer.severe("Error creating activity", e);
        throw new RuntimeException("Error creating activity", e);
    }
}
Also used : DiameterActivityImpl(org.mobicents.slee.resource.diameter.base.DiameterActivityImpl) AvpDataException(org.jdiameter.api.AvpDataException) IOException(java.io.IOException) CreateActivityException(net.java.slee.resource.diameter.base.CreateActivityException) OperationNotSupportedException(javax.naming.OperationNotSupportedException) InvalidConfigurationException(javax.slee.resource.InvalidConfigurationException)

Example 14 with DiameterActivityImpl

use of org.mobicents.slee.resource.diameter.base.DiameterActivityImpl in project jain-slee.diameter by RestComm.

the class DiameterS13ResourceAdaptor method addActivity.

// Session Management --------------------------------------------------
/**
 * Method for performing tasks when activity is created, such as informing SLEE about it and storing into internal map.
 *
 * @param ac the activity that has been created
 */
private void addActivity(DiameterActivity ac, boolean suspended) {
    try {
        // Inform SLEE that Activity Started
        DiameterActivityImpl activity = (DiameterActivityImpl) ac;
        if (suspended) {
            sleeEndpoint.startActivitySuspended(activity.getActivityHandle(), activity, DEFAULT_ACTIVITY_FLAGS);
        } else {
            sleeEndpoint.startActivity(activity.getActivityHandle(), activity, DEFAULT_ACTIVITY_FLAGS);
        }
        // Set the listener
        activity.setSessionListener(this);
        // Put it into our activites map
        activities.put(activity.getActivityHandle(), activity);
        if (tracer.isInfoEnabled()) {
            tracer.info("Activity started [" + activity.getActivityHandle() + "]");
        }
    } catch (Exception e) {
        tracer.severe("Error creating activity", e);
        throw new RuntimeException("Error creating activity", e);
    }
}
Also used : DiameterActivityImpl(org.mobicents.slee.resource.diameter.base.DiameterActivityImpl) AvpDataException(org.jdiameter.api.AvpDataException) InternalException(org.jdiameter.api.InternalException) IllegalDiameterStateException(org.jdiameter.api.IllegalDiameterStateException) CreateActivityException(net.java.slee.resource.diameter.base.CreateActivityException) OperationNotSupportedException(javax.naming.OperationNotSupportedException) InvalidConfigurationException(javax.slee.resource.InvalidConfigurationException)

Example 15 with DiameterActivityImpl

use of org.mobicents.slee.resource.diameter.base.DiameterActivityImpl in project jain-slee.diameter by RestComm.

the class DiameterRxResourceAdaptor method addActivity.

// Session Management --------------------------------------------------
/**
 * Method for performing tasks when activity is created, such as informing SLEE about it and storing into internal map.
 *
 * @param ac the activity that has been created
 */
private void addActivity(final DiameterActivity ac, boolean suspended) {
    try {
        // Inform SLEE that Activity Started
        final DiameterActivityImpl activity = (DiameterActivityImpl) ac;
        if (suspended) {
            sleeEndpoint.startActivitySuspended(activity.getActivityHandle(), activity, MARSHALABLE_ACTIVITY_FLAGS);
        } else {
            sleeEndpoint.startActivity(activity.getActivityHandle(), activity, MARSHALABLE_ACTIVITY_FLAGS);
        }
        // Set the listener
        activity.setSessionListener(this);
        // Put it into our activities map
        activities.put(activity.getActivityHandle(), activity);
        if (tracer.isInfoEnabled()) {
            tracer.info("Activity started [" + activity.getActivityHandle() + "]");
        }
    } catch (Exception e) {
        tracer.severe("Error creating activity", e);
        throw new RuntimeException("Error creating activity", e);
    }
}
Also used : DiameterActivityImpl(org.mobicents.slee.resource.diameter.base.DiameterActivityImpl) AvpDataException(org.jdiameter.api.AvpDataException) IOException(java.io.IOException) CreateActivityException(net.java.slee.resource.diameter.base.CreateActivityException) OperationNotSupportedException(javax.naming.OperationNotSupportedException) InvalidConfigurationException(javax.slee.resource.InvalidConfigurationException)

Aggregations

DiameterActivityImpl (org.mobicents.slee.resource.diameter.base.DiameterActivityImpl)22 CreateActivityException (net.java.slee.resource.diameter.base.CreateActivityException)19 InvalidConfigurationException (javax.slee.resource.InvalidConfigurationException)18 AvpDataException (org.jdiameter.api.AvpDataException)16 OperationNotSupportedException (javax.naming.OperationNotSupportedException)14 IOException (java.io.IOException)11 DiameterActivityHandle (org.mobicents.slee.resource.diameter.base.DiameterActivityHandle)7 IllegalDiameterStateException (org.jdiameter.api.IllegalDiameterStateException)6 InternalException (org.jdiameter.api.InternalException)6 AvpNotAllowedException (net.java.slee.resource.diameter.base.events.avp.AvpNotAllowedException)3 DiameterMessageFactoryImpl (org.mobicents.slee.resource.diameter.base.DiameterMessageFactoryImpl)3 InvalidTransactionException (javax.transaction.InvalidTransactionException)2 SystemException (javax.transaction.SystemException)2 OverloadException (org.jdiameter.api.OverloadException)1 RouteException (org.jdiameter.api.RouteException)1 ServerRfSessionImpl (org.jdiameter.server.impl.app.rf.ServerRfSessionImpl)1