Loupe - Log - Monitor - Resolve
Loupe / Developer's Guide / Extending Loupe Server / Commands / Loupe Extensions - Session Commands
In This Topic
    Loupe Extensions - Session Commands
    In This Topic

    Session Commands provide an alternate way of performing processing on sessions that affords more opportunities for end user interaction.  Instead of being invoked when a session is being analyzed, Session Commands are only invoked at the direct request of an end user. For a general overview of how extension commands work, see Loupe Extensions - Commands.

    These commands show up on the various context menus that involve session selections - such as the folders in the repository tree view and the session summary grids.  Because these commands are invoked directly by the end user from the user interface they can have their own user interface or be purely background.

    What You Need to Implement

    To create a Session Command, you need to create a class that:

    For more information on how classes are evaluated and loaded see Loupe Extensions - Deploying Extensions.

    Extension Lifecycle

    1. Before any call is made to have a session command process information its Initialize method will be called.  Then it is eligible to be invoked for processing. 
    2. When an extensible part of the user interface is being composed each Extension will be requested to register its commands using its RegisterCommands method.  All commands that the extension supports must be recorded during this method by calling the provided IUserInterfaceController object's RegisterCommand method. 
    3. Each time an extensible part of the user interface is displayed a BeforeCommandsDisplay Method call will be made to each extension to allow for selectively enabling / disabling commands, changing labels and tooltips.  When a command is disabled it won't show in context menus.  To update a command, call the provided IUserInterfaceCommand object's UpdateCommand method.  It isn't necessary to update any commands - if not updated they will keep their previous configuration.
    4. If a user selects a command its Process method will be invoked and passed the entire set of currently selected sessions. 
      • If the command's isUserInteractive option was set true during registration then no user interface will be provided and the command will be executed on the UI thread.  It is recommended that if this configuration is used a user interface should be provided that will appropriately perform background processing for long-running tasks to ensure the UI remains responsive.
      • If the command's isUserInteractive option was set false during registration then the command will be executed on a background thread with a progress user interface displayed to keep the user interface refreshing.  In this configuration it isn't recommended that any user interface beyond a simple message box be employed. 
    5. If a session command extension has been loaded, even if it was never initialized, it will be disposed when it is released. 

    Notes and Best Practices

    Caching Information

    If it's useful to cache information to improve performance the best place to do this is in a Repository Controller.  This allows the cache to be shared between all of the classes that make up your extension.  Your session command can cache information however it's important to do so in a thread safe manner because the Process method must be threadsafe and re-entrant.

    Repository Scope

    A single instance of a session command is associated with exactly one Repository Context.  This means its associated with a single repository.  If a repository is unmounted then any related session command instance will be disposed.  You can use the context to interact with the repository and user interface, including displaying sessions in the session viewer and requesting that the configuration of the Extension be edited.

    Managing State

     

    See Also