Example #1
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="e">Event</param>
 /// <param name="originInfo">EventOriginInfo</param>
 internal EventInfo(Event e, EventOriginInfo originInfo)
 {
     this.Event = e;
     this.EventType = e.GetType();
     this.EventName = this.EventType.FullName;
     this.OriginInfo = originInfo;
 }
Example #2
0
        /// <summary>
        /// Handles the given event.
        /// </summary>
        /// <param name="e">Event to handle</param>
        private void HandleEvent(Event e)
        {
            // Do not process an ignored event.
            if (this.IgnoredEvents.Contains(e.GetType()))
            {
                Output.Log("<IgnoreLog> Monitor '{0}' ignored event '{1}'.",
                    this.GetType().Name, e.GetType());
                return;
            }

            // Assign trigger and payload.
            this.Trigger = e.GetType();
            this.Payload = e.Payload;

            while (true)
            {
                if (this.State == null)
                {
                    // If the event cannot be handled then report an error and exit.
                    this.Assert(false, "Monitor '{0}' received event '{1}' that cannot be handled.",
                        this.GetType().Name, e.GetType().Name);
                }

                // If current state cannot handle the event then null the state.
                if (!this.CanHandleEvent(e.GetType()))
                {
                    Output.Debug(DebugType.Runtime, "<ExitLog> Monitor '{0}' exiting state '{1}'.",
                        this, this.State.GetType().Name);
                    this.State = null;
                    continue;
                }

                // Checks if the event can trigger a goto state transition.
                if (this.GotoTransitions.ContainsKey(e.GetType()))
                {
                    var transition = this.GotoTransitions[e.GetType()];
                    Type targetState = transition.Item1;
                    Action onExitAction = transition.Item2;
                    this.GotoState(targetState, onExitAction);
                }
                // Checks if the event can trigger an action.
                else if (this.ActionBindings.ContainsKey(e.GetType()))
                {
                    Action action = this.ActionBindings[e.GetType()];
                    this.Do(action);
                }

                break;
            }
        }
Example #3
0
        /// <summary>
        /// Raises an event internally and returns from the execution context.
        /// </summary>
        /// <param name="e">Event</param>
        /// <param name="payload">Optional payload</param>
        protected internal void Raise(Event e, params Object[] payload)
        {
            // If the event is null then report an error and exit.
            this.Assert(e != null, "Monitor '{0}' is raising a null event.", this.GetType().Name);

            e.AssignPayload(payload);
            Output.Debug(DebugType.Runtime, "<RaiseLog> Monitor '{0}' " +
                "raised event '{1}'.", this, e);
            this.HandleEvent(e);
        }
Example #4
0
 /// <summary>
 /// Notifies the monitor to handle the received event.
 /// </summary>
 /// <param name="e">Event</param>
 internal void MonitorEvent(Event e)
 {
     Output.Debug(DebugType.Runtime, "<EnqueueLog> Monitor '{0}' is processing " +
         "event '{1}'.", this, e.GetType());
     this.HandleEvent(e);
 }
Example #5
0
 /// <summary>
 /// Raises an event internally and returns from the execution context.
 /// </summary>
 /// <param name="e">Event</param>
 protected internal void Raise(Event e)
 {
     // If the event is null then report an error and exit.
     this.Assert(e != null, "Monitor '{0}' is raising a null event.", this.GetType().Name);
     base.Runtime.Log("<MonitorLog> Monitor '{0}' raised event '{1}'.",
         this, e.GetType().FullName);
     this.HandleEvent(e);
 }
Example #6
0
 /// <summary>
 /// Notifies the monitor to handle the received event.
 /// </summary>
 /// <param name="e">Event</param>
 internal void MonitorEvent(Event e)
 {
     base.Runtime.Log("<MonitorLog> Monitor '{0}' is processing event '{1}'.",
         this, e.GetType().FullName);
     this.HandleEvent(e);
 }
Example #7
0
 /// <summary>
 /// Raises an event internally and returns from the execution context.
 /// </summary>
 /// <param name="e">Event</param>
 /// <param name="payload">Optional payload</param>
 protected void Raise(Event e, params Object[] payload)
 {
     this.Monitor.Raise(e, payload);
 }
Example #8
0
        /// <summary>
        /// Handles the given event.
        /// </summary>
        /// <param name="e">Event to handle</param>
        private void HandleEvent(Event e)
        {
            // Do not process an ignored event.
            if (this.IgnoredEvents.Contains(e.GetType()))
            {
                return;
            }

            // Assigns the receieved event.
            this.ReceivedEvent = e;

            while (true)
            {
                if (this.State == null)
                {
                    // If the event cannot be handled, then report an error and exit.
                    this.Assert(false, $"Monitor '{this.GetType().Name}' received event " +
                        $"'{e.GetType().FullName}' that cannot be handled.");
                }

                // If current state cannot handle the event then null the state.
                if (!this.CanHandleEvent(e.GetType()))
                {
                    base.Runtime.NotifyExitedState(this);
                    this.State = null;
                    continue;
                }

                // Checks if the event is a goto state event.
                if (e.GetType() == typeof(GotoStateEvent))
                {
                    Type targetState = (e as GotoStateEvent).State;
                    this.GotoState(targetState, null);
                }
                // Checks if the event can trigger a goto state transition.
                else if (this.GotoTransitions.ContainsKey(e.GetType()))
                {
                    var transition = this.GotoTransitions[e.GetType()];
                    this.GotoState(transition.Item1, transition.Item2);
                }
                // Checks if the event can trigger an action.
                else if (this.ActionBindings.ContainsKey(e.GetType()))
                {
                    string actionName = this.ActionBindings[e.GetType()];
                    this.Do(actionName);
                }

                break;
            }
        }
Example #9
0
 /// <summary>
 /// Raises an event internally and returns from the execution context.
 /// </summary>
 /// <param name="e">Event</param>
 protected void Raise(Event e)
 {
     // If the event is null, then report an error and exit.
     this.Assert(e != null, $"Monitor '{this.GetType().Name}' is raising a null event.");
     EventInfo raisedEvent = new EventInfo(e, new EventOriginInfo(
         base.Id, this.GetType().Name, this.CurrentState.Name));
     base.Runtime.NotifyRaisedEvent(this, raisedEvent, false);
     this.HandleEvent(e);
 }
Example #10
0
 /// <summary>
 /// Notifies the monitor to handle the received event.
 /// </summary>
 /// <param name="e">Event</param>
 internal void MonitorEvent(Event e)
 {
     base.Runtime.Log($"<MonitorLog> Monitor '{this.GetType().Name}' " +
         $"is processing event '{e.GetType().FullName}'.");
     this.HandleEvent(e);
 }
Example #11
0
 public RedirectRequest(Event request)
     : base()
 {
     this.Request = request;
 }
Example #12
0
 /// <summary>
 /// Raises an event internally and returns from the execution context.
 /// </summary>
 /// <param name="e">Event</param>
 protected void Raise(Event e)
 {
     this.Monitor.Raise(e);
 }
Example #13
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="e">Event</param>
 internal EventInfo(Event e)
 {
     this.Event = e;
     this.EventType = e.GetType();
     this.EventName = this.EventType.FullName;
 }
Example #14
0
        /// <summary>
        /// Sends an asynchronous event to a machine.
        /// </summary>
        /// <param name="mid">Machine id</param>
        /// <param name="e">Event</param>
        internal static void Send(MachineId mid, Event e)
        {
            if (mid == null)
            {
                ErrorReporter.ReportAndExit("Cannot send to a null machine.");
            }
            else if (e == null)
            {
                ErrorReporter.ReportAndExit("Cannot send a null event.");
            }

            if (PSharpRuntime.TaskMap.ContainsKey((int)Task.CurrentId))
            {
                Machine sender = PSharpRuntime.TaskMap[(int)Task.CurrentId];
                Output.Log("<SendLog> Machine '{0}({1})' sent event '{2}' to '{3}({4})'.",
                           sender, sender.Id.MVal, e.GetType(), mid.Type, mid.MVal);
            }
            else
            {
                Output.Log("<SendLog> Event '{0}' was sent to '{1}({2})'.",
                           e.GetType(), mid.Type, mid.MVal);
            }

            Machine machine = PSharpRuntime.MachineMap[mid.Value];

            bool runHandler = false;

            machine.Enqueue(e, ref runHandler);

            if (!runHandler)
            {
                PSharpRuntime.BugFinder.Schedule();
                return;
            }

            Task task = new Task(() =>
            {
                PSharpRuntime.BugFinder.NotifyTaskStarted();
                machine.RunEventHandler();
                PSharpRuntime.BugFinder.NotifyTaskCompleted();
            });

            lock (PSharpRuntime.Lock)
            {
                PSharpRuntime.MachineTasks.Add(task);
                PSharpRuntime.TaskMap.Add(task.Id, machine as Machine);
            }

            PSharpRuntime.BugFinder.NotifyNewTaskCreated(task.Id, machine);

            if (PSharpRuntime.Configuration.ScheduleIntraMachineConcurrency)
            {
                task.Start(PSharpRuntime.TaskScheduler);
            }
            else
            {
                task.Start();
            }

            PSharpRuntime.BugFinder.WaitForTaskToStart(task.Id);
            PSharpRuntime.BugFinder.Schedule();
        }