You are currently viewing a snapshot of www.mozilla.org taken on April 21, 2008. Most of this content is highly out of date (some pages haven't been updated since the project began in 1998) and exists for historical purposes only. If there are any pages on this archive site that you think should be added back to www.mozilla.org, please file a bug.



You are here: Client Customization Kit Documents > CCK Wizard Machine Functional Specifications

CCK Wizard Machine Functional Specifications, Version 1.0

Table of Contents

  1. Summary
  2. CCK Wizard Machine Design
  3. Engineering Goals
  4. Issues
  5. Document History

1. Summary

CCK, Client Customization Kit, is an application designed to allow ISPs and other interested parties to build a customized Netscape Communicator. ISPs can customize the installation experience with their branding elements, set suitable communicator preferences/settings for thier end users and create a customized communicator build. Based on the input received from the CCK users in the past and present, a new CCK wizard (CCK 5.0) design is planned. The focus of this document is the design and implementation planned for Wizard Machine, a core component of CCK 5.0. Wizard Machine provides support to various CCK components in displaying dialogs and collecting the important information to build a customized communicator.

2. CCK Wizard Machine Design

The document at the following URL(s) discusses the design of CCK Wizard (CCK 5.0) and Wizard Machine. It is important to understand the design before jumping into the implementation details.

design.html

3. Engineering Goals

Wizard machine needs to implement the following major tasks to support the wizard style implementation of CCK 5.0 and Account Setup 5.0.

Display dialogs

As explained in the design process, the whole CCK wizard is an INI file driven application. INI file is a simple text file with control and display information. In the wizard context, we can say each INI file is a page. It is not necessary for every page to contain display information, in which case that page is considered as a container page. For every page that has display information (listed as Widget1....Widget'n'), Wizard Machine should create and display a dialog whenever required.

The following link points to the document that lists the syntax of an INI file.

INI file syntax

Wizard Machine processes INI file using the following function.

WizardMachine::ProcessPage(iniFile);

The above function preforms 2 major tasks. It reads the control information from the INI file and stores the values in the appropriate data structures. If that INI file has sub pages, INI files corresponding to those pages are processed recursively until Wizard Machine hits page that contains some display information. The data structure in which the INI file heirarchey is maintained is explained in Manage data section.

Wizard Machine starts with a property sheet loaded onto a base dialog. Property sheet provides us with standard wizard controls. On identifying the file to be displayed, Wizard Machine creates a property page and adds that page to the property sheet. When it parses the INI file with display (widget) information and it stores that data in the global Widget data structures. Then it generates all those widgets dynamically and places them on a property page.

Manage Data

Wizard Machine builds a tree structure to store information provided in the INI files. Each INI file corresponds to a node in the tree. A node structure can be defined as follows.

struct node {
       node *prev; //points to the previous node
       node *next; //points to the next node
       node **childNodes; //array of pointers to child nodes i.e., sub pages
       nvPair **pageInfo; // control information is stored as name value pairs
       widget **pageWidgets; //array pointers to the page widgets
} node;

As each INI file gets represented with the above node structure, Wizard Machine will have access to all INI files via tree data structure. If an INI file has child nodes, a subtree will be built from that INI file and will be added to the main tree structure.

Here is the sample tree built out of set of INI files. A top level cck.ini as root and other major CCK components as childnodes to the root. Screen1..Screen3 are the dialogs to be displayed for Configuration Editor.

Wizard Machine needs to update the data and when it enters or exits a particular node. This will allow the other nodes to access the most recent information.

Every major component of CCK depend on Wizard Machine to maintain and provide access to the global data used in the application. Global information will be stored as name value pairs in a Global array allowing each node access and update the information as and when required.

Control Navigation

A standard wizard approach is pursued in developing CCK wizard and similiar approach will be applied to the Account Setup wizard. Regular wizard interface is provided by a class named property sheet. VC++ has already defined that class. Typically in a property sheet, you have navigation related buttons at the bottom and area for the dialog to be displayed on the top. Standard navigation buttons are Next, Back, Cancel and Help. Wizard Machine controls the actions that need to be performed on clicking on one of navigation buttons.

On clicking Next, unless otherwise INI file has defined directive in it to take a new path, Wizard Machine always moves to the sibling of the node in which the action is occurred. A sibling is built if needed and a corresponding property page is added as next node in the navigation scheme. If there are no siblings it tries to identify parent's sibling and move there. This task is performed recursively until a node is found. On the last page, Next button will be replaced by Done or Finish button.

For each node it creates, Wizard Machine adds a property page to property sheet. Property sheet internally keeps track of the order in which property pages are added. So, on clicking Back, Wizard Machine moves a page back and displays the appropriate property page i.e., a dialog that takes user input. Wizard Machine need to set the all the pointers to the correct location maintaining the right links between the page and it's widgets.

While entering and leaving nodes, Wizard Machine executes onEnter and onExit functions appropriately to maintain the global data synchronization.

On clicking Cancel, Wizard Machine exits the application.

On clicking Help, a standard window help screen will be displayed with appropriate help file loaded into it. Name of the help file can be obtained from the corresponding INI file, essentially via node representing that INI file.

4. Issues

QA issues

A progressive whitebox testing is planned in this release. QA will be provided with small programs to test the functions of Wizard Machine as when they are developed for CCK wizard.

Following functionalities should be tested as the development efforts progress.

  • Build and Navigate tree

    Wizard Machine takes the data from INI files as and when required and builds an appropriate tree data structure. Once the tree is built, navigation among the nodes of the tree is an interesting area that must be covered.

    Development work done on Wizard Machine, as of now, allows us to provide command line options to specify the root INI file (like cck.ini) and the desired navigation sequence. As a part of navigation, Wizard Machine records information about the nodes visited in an output file named "output.dat" (created in the directory from which the WizardMachine program is executed). Soon, this work will be integrated with program that can generate UI from INI files.

    For now, here is how the Wizard Machine works, the input it takes and output it generates.

    Input: a root INI file, a path to navigate

    Syntax : WizardMachine.exe -i <INI file name> -p <actions>

    INI file name : Root INI file that controls the over all tree structure
    actions : possbile actions like next (n), back(b), cancel(c)

    Example : WizardMachine.exe -i cck.ini -p nnnbnbbnc

    Functionality : Wizard Machine takes the root INI file and generates the very first leaf node (usually the left most node of the tree) and all other nodes in that path. At this point Wizard Machine waits for the user's action. With UI turned on, it is easy to wait and capture user's choice of actions. As that need to be done, we will simulate user's desired actions by passing them via command line arguments.

    Wizard Machine interprets 'n' as GoToNextNode, 'p' as GoToPrevNode and 'c' as Cancel while navigating the tree. As only the leftmost node (and parent nodes) gets built in the beginning, WizardMachine builds other nodes whenever it tries to visit those nodes and finds no such nodes. So, WizardMachine thus builds the tree dynamically depending on user's actions.

    Output : As Wizard Machine visits each node it writes the node details into an output file (output.dat). So, we can determine the correctness of navigation by looking at output file contents.

  • Generating a dialog from a given INI file
  • Accessing global data via global APIs
  • The wizard navigation scheme
  • Wizard Machine's behavior in receiving illegal INI file input

Localization issues

Enabling localization is one of the goals to be achieved in the implementation. We are now working on developing a tool that CCK users can use to alter the INI files that control the dialogs to be displayed. This should help the CCK users of any locale to easily modify the screens to suit requirements. The i18n group is involved in addressing and suggesting solutions for the localization issues.

Documentation issues

Wizard Machine needs to implement a function handler for the help button to display the appropriate help file on any given wizard screen.

5. Document History

DATE CHANGE AUTHOR
12/14/98 First Draft Bhuvan Rachamreddy