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

org.restcomm.connect.commons.faulttolerance.RestcommSupervisor Maven / Gradle / Ivy

The newest version!
package org.restcomm.connect.commons.faulttolerance;

import akka.actor.ActorContext;
import akka.actor.ActorRef;
import akka.actor.ChildRestartStats;
import akka.actor.OneForOneStrategy;
import akka.actor.Props;
import akka.actor.StopChild;
import akka.actor.SupervisorStrategy;
import akka.actor.Terminated;
import akka.actor.UntypedActor;
import akka.event.Logging;
import akka.event.LoggingAdapter;
import akka.japi.Function;
import scala.collection.Iterable;
import scala.concurrent.duration.Duration;

import static akka.actor.SupervisorStrategy.resume;

/**
 * Created by gvagenas on 22/02/2017.
 */
@Deprecated
public class RestcommSupervisor extends UntypedActor {

    private LoggingAdapter logger = Logging.getLogger(getContext().system(), this);

    public RestcommSupervisor() {}


    RestcommFaultToleranceStrategy defaultStrategy = new RestcommFaultToleranceStrategy(10, Duration.create("1 minute"),
            new RestcommFaultToleranceDecider());

    @Override
    public void onReceive(Object msg) throws Exception {
        try {
            final Class klass = msg.getClass();
            final ActorRef sender = getSender();

            if (logger.isInfoEnabled()) {
                logger.info(" ********** RestcommSupervisor " + self().path() + " Processing Message: " + klass.getName());
            }

            if (msg instanceof Props) {
                final ActorRef actor = getContext().actorOf((Props) msg);
                getContext().watch(actor);
                if (logger.isDebugEnabled()) {
                    logger.debug("Created and watching actor: " + actor.path().toString());
                }
                sender.tell(actor, getSelf());
            } else if (msg instanceof Terminated) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Received Terminated message for actor {}", ((Terminated) msg).actor());
                }
            } else if (msg instanceof StopChild) {
                StopChild stop = (StopChild) msg;
                final ActorRef child = stop.child();
                getContext().unwatch(child);
                getContext().stop(child);
                if (logger.isDebugEnabled()) {
                    String logmsg = String.format("RestcommSupervisor, actor %s stopped. Sender %s",child.path(), sender.path());
                    logger.debug(logmsg);
                }
            } else {
                unhandled(msg);
            }
        } catch (Exception e) {
            logger.error("Exception during the OnReceive methid of RestcommSupervisor, {}", e);
        }
    }

    @Override // - 1st the actor will try to get the supervisor strategy
    public SupervisorStrategy supervisorStrategy() {
        ActorRef sender = getSender();
        return defaultStrategy;
    }

    private class RestcommFaultToleranceStrategy extends OneForOneStrategy {

        public RestcommFaultToleranceStrategy(int maxNrOfRetries, Duration withinTimeRange, Function function) {
            super(maxNrOfRetries, withinTimeRange, function);
        }

        @Override // - 3rd the Supervisor Strategy will execute processFailure() method. Useful for cleanup or logging
        public void processFailure(ActorContext context, boolean restart, ActorRef child, Throwable cause, ChildRestartStats stats, Iterable children) {
            String msg = String.format("RestcommSupervisor, actor exception handling. Restart %s, actor path %s, cause %s,", restart, child.path().toString(), cause);
            logger.error(msg);
            super.processFailure(context, restart, child, cause, stats, children);
        }
    }

    private class RestcommFaultToleranceDecider implements Function {

        @Override
        // - 2nd the Supervisor strategy will execute the Decider apply() to check what to do with the exception
        public SupervisorStrategy.Directive apply(Throwable t) throws Exception {
            logger.error("Handling exception {} will resume", t.getClass().getName());
            return resume();
//            return restart();
//            return stop();
//            return escalate();
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy