Home > Articles > Home & Office Computing > Microsoft Windows Desktop

This chapter is from the book

Activity Automaton

The CLR virtualizes the instruction set of machine processors by describing its execution capabilities in terms of a hardware-agnostic instruction set, Microsoft Intermediate Language (MSIL). Programs compiled to MSIL are ultimately translated to machine-specific instructions, but virtualization allows language compilers to target only MSIL and not worry about various processor architectures.

In the WF programming model, the program statements used to build WF programs are classes that derive from Activity and CompositeActivity. Therefore, unlike MSIL, the "instruction set" supported by WF is not fixed. It is expected that many kinds of activities will be built and used in WF programs, while the WF runtime only relies upon the base classes. An activity developer can choose to implement anything—domain-specific or general-purpose—within the very general boundaries set by the WF runtime. Consequently, the WF runtime is freed from the actual semantics of specific activities.

The WF programming model does codify aspects of the interactions between the WF runtime and activities (such as the dispatch of execution handlers) in terms of an activity automaton (a finite state machine), which we will now explore in depth, with examples.

This chapter focuses solely on the normal execution of an activity. An activity that executes normally begins in the Initialized state, moves to the Executing state when its work begins, and moves to the Closed state when its work is completed. This is shown in Figure 3.2. The full activity automaton, shown in Figure 3.3, includes other states that will be discussed in Chapter 4, "Advanced Activity Execution."

Figure 3.2

Figure 3.2 Basic activity automaton

Figure 3.3

Figure 3.3 Complete activity automaton

The lifecycle of any activity in an executing WF program is captured by the states of the activity automaton and the transitions that exist between these states. Transitions from one state to another are brokered by the WF runtime to ensure the correctness of WF program execution.

Another way to view the activity automaton is as an abstract execution contract that exists between the WF runtime and any activity. It is the responsibility of the WF runtime to enforce that the execution of an activity strictly follows the transitions of the activity automaton. It is the responsibility of the activity to decide when certain transitions should occur. Figure 3.4 depicts the participation of both the WF scheduler and an activity in driving the automaton.

Figure 3.4

Figure 3.4 The dispatch of execution handlers is governed by the activity automaton.

Activity Execution Status and Result

The WriteLine activity shown in Listing 3.1 prints the value of its Text property to the console and then reports its completion.

Listing 3.1. WriteLine Activity

using System;
using System.Workflow.ComponentModel;

namespace EssentialWF.Activities
{
  public class WriteLine : Activity
  {
    public static readonly DependencyProperty TextProperty
      = DependencyProperty.Register("Text",
        typeof(string), typeof(WriteLine));

    public string Text
    {
      get { return (string) GetValue(TextProperty); }
      set { SetValue(TextProperty, value); }
    }

    protected override ActivityExecutionStatus Execute(
      ActivityExecutionContext context)
    {
      Console.WriteLine(Text);
      return ActivityExecutionStatus.Closed;
    }
  }
}

The execution logic of WriteLine is found in its override of the Execute method, which is inherited from Activity. The Execute method is the most important in a set of virtual methods defined on Activity that collectively constitute an activity's participation in the transitions of the activity automaton. All activities implement the Execute method; the other methods are more selectively overridden.

Listing 3.2 shows members defined by the Activity type that we will cover in this chapter and the next.

Listing 3.2. Activity Revisited

namespace System.Workflow.ComponentModel
{
  public class Activity : DependencyObject
  {
    protected virtual ActivityExecutionStatus Cancel(
      ActivityExecutionContext context);

    protected virtual ActivityExecutionStatus Execute(
      ActivityExecutionContext context);

    protected virtual ActivityExecutionStatus HandleFault(
      ActivityExecutionContext context, Exception fault);

    protected virtual void Initialize(
      IServiceProvider provider);

    protected virtual void Uninitialize(
      IServiceProvider provider);

    protected virtual void OnExecutionContextLoad(
      IServiceProvider provider);

    protected virtual void OnExecutionContextUnload(
      IServiceProvider provider);

    protected virtual void OnClosed(
      IServiceProvider provider);

    public ActivityExecutionResult ExecutionResult { get; }
    public ActivityExecutionStatus ExecutionStatus { get; }

    /* *** other members *** */
  }
}

By returning a value of ActivityExecutionStatus.Closed from its Execute method, the WriteLine activity indicates to the WF runtime that its work is done; as a result, the activity moves to the Closed state.

Activity defines a property called ExecutionStatus, whose value indicates the current state (in the activity automaton) of the activity. The type of Activity.ExecutionStatus is ActivityExecutionStatus, which is shown in Listing 3.3.

Listing 3.3. ActivityExecutionStatus

namespace System.Workflow.ComponentModel
{
  public enum ActivityExecutionStatus
  {
    Initialized,
    Executing,
    Canceling,
    Closed,
    Compensating,
    Faulting
  }
}

Activity also defines a property called ExecutionResult, whose value qualifies an execution status of ExecutionStatus.Closed, because that state can be entered from any of five other states. The type of Activity.ExecutionResult is ActivityExecutionResult, which is shown in Listing 3.4. An activity with an execution status other than Closed will always have an execution result of None.

Listing 3.4. ActivityExecutionResult

namespace System.Workflow.ComponentModel
{
  public enum ActivityExecutionResult
  {
    None,
    Succeeded,
    Canceled,
    Compensated,
    Faulted,
    Uninitialized,
  }
}

The values of the ExecutionStatus and ExecutionResult properties are settable only by the WF runtime, which manages the lifecyle transitions of all activities.

You can determine the current execution status and execution result of an activity by getting the values of its ExecutionStatus and ExecutionResult properties:

using System;
using System.Workflow.ComponentModel;

public class MyActivity : Activity
{
  protected override ActivityExecutionStatus Execute(
    ActivityExecutionContext context)
  {
    System.Diagnostics.Debug.Assert(
      ActivityExecutionStatus.Executing == ExecutionStatus);

    System.Diagnostics.Debug.Assert(
      ActivityExecutionResult.None == ExecutionResult);

    ...
  }
}

The ExecutionStatus and ExecutionResult properties only have meaning at runtime for activities within a WF program instance.

Activity Execution Context

The Execute method has one parameter of type ActivityExecutionContext. This object represents the execution context for the currently executing activity.

The ActivityExecutionContext type (abbreviated AEC) is shown in Listing 3.5.

Listing 3.5. ActivityExecutionContext

namespace System.Workflow.ComponentModel
{
  public sealed class ActivityExecutionContext: IDisposable,
    IServiceProvider
  {
    public T GetService<T>();
    public object GetService(Type serviceType);

    public void CloseActivity();

    /* *** other members *** */
  }
}

AEC has several roles in the WF programming model. The simplest view is that AEC makes certain WF runtime functionality available to executing activities. A comprehensive treatment of AEC will be given in Chapter 4.

The WF runtime manages ActivityExecutionContext objects carefully. AEC has only internal constructors, so only the WF runtime creates objects of this type. Moreover, AEC implements System.IDisposable. An AEC object is disposed immediately after the return of the method call (such as Activity.Execute) in which it is a parameter; if you try to cache an AEC object, you will encounter an ObjectDisposedException exception when you access its properties and methods. Allowing AEC objects to be cached could easily lead to violation of the activity automaton:

public class MyActivity : Activity
{
  private ActivityExecutionContext cachedContext = null;

  protected override ActivityExecutionStatus Execute(
    ActivityExecutionContext context)
  {
    this.cachedContext = context;
    return ActivityExecutionStatus.Executing;

  }

  public void UseCachedContext()
  {
    // Next line will throw an ObjectDisposedException
    
   this.cachedContext.CloseActivity();
  }
}

Activity Services

ActivityExecutionContext has a role as a provider of services; these services are an activity's gateway to functionality that exists outside of the running WF program instance. AEC implements System.IServiceProvider and offers the required GetService method plus (for the sake of convenience) a typed GetService<T> wrapper over GetService. Using these methods, an activity can obtain services that are needed in order to complete its work.

In fact, AEC chains its service provider implementation to that of the WF runtime. This means that an activity can obtain custom services proffered by the application hosting the WF runtime, as shown in Figure 3.5.

Consider a WriterService that defines a Write method:

using System;

namespace EssentialWF.Activities
{
  public abstract class WriterService
  {
    public abstract void Write(string s);
  }
}

By defining the writer service abstractly (we could also have used an interface), activities that use the service are shielded from details of how the service is implemented. We can change our implementation of the service over time without affecting activity code.

Here is a simple derivative of WriterService that uses the console to print the string that is provided to the Write method:

using System;
using EssentialWF.Activities;

namespace EssentialWF.Services
{
  public class SimpleWriterService : WriterService
  {
    public override void Write(string s)
    {
      Console.WriteLine(s);
    }
  }
}
Figure 3.5

Figure 3.5 Chaining of services

A SimpleWriterService object can be added to the WF runtime, which acts as a container of services:

using (WorkflowRuntime runtime = new WorkflowRuntime())
{
  runtime.AddService(new SimpleWriterService());

  ...
}

We can now change the execution logic of WriteLine to obtain a WriterService and call its Write method:

public class WriteLine : Activity
{
  // Text property elided for clarity...

  protected override ActivityExecutionStatus Execute(
    ActivityExecutionContext context)
  {
    WriterService writer = context.GetService<WriterService>();
    writer.Write(Text);

    return ActivityExecutionStatus.Closed;
  }
}

This change may seem like a small matter, but if WriterService is defined as an abstract class (or an interface), it can have multiple implementations. In this way, the application hosting the WF runtime can choose the appropriate writer service without affecting WF program instances that contain WriteLine activities (that rely only upon the definition of that service).

In Chapter 6, "Transactions," we will bring transactions into the picture and explore how services used by activities (and activities themselves) can partipate in the transactions that attend the execution of WF program instances.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020