APL Collection Strategy(3.1)
This section describes the APL Collection Strategy.
Prerequisites
The reader of this document should be familiar with:
Analysis Programming Language. For further information, see the APL Reference Guide(3.0).
Overview
APL Collection Strategy configurations are used on top of pre-defined collection strategies to customize how files are collected from the local file system.
APL Collection Strategy Buttons
The additional buttons that are specific for the APL Collection Strategy configuration are described in the following sections:
Button | Description |
New | Creates a new APL Collection Strategy configuration that will be visible in a new tab. |
Open | Opens a saved APL Collection Strategy configuration that will be visible in a new tab. |
Save | Saves the configuration. After clicking Save, a dialog box opens. In the Version Comment text box, type a description of the changes that you have made, then click . This information will be visible in the Historical Configurations panel, for further information see the section below, The View Menu. Note! Every time you save a configuration, performs a validation of the configuration integrity. If the configuration is incomplete, it is saved as "invalid". An invalid configuration is either one that has not been fully configured, or one with an external dependency that is either invalid or missing. You identify invalid configurations by the red "X" on top of their application icon. |
Save As | Select to save the configuration with a new name. Note! Use only a-z, A-Z, 0-9, "-" and "_" to name a Configuration. |
Permissions | To set the owner of the configuration as well as Read, Write and Execute permissions for the groups accessing the configuration. For further information, see Access Controller(3.0). |
Validate | Compiles the current APL Collection Strategy code, checking for grammatical and syntactical errors. The status of the compilation is displayed in a dialog. Upon failure, the erroneous line is highlighted and a message, including the line number, is displayed. |
References | Shows the workflows or APL Code that are referencing this particular collection strategy. |
History | Shows all the previous saves of the APL Collection Strategy. |
Import | Select this option to import code from an external file. Note that the file has to reside on the host where the client is running. |
Export | Select this option to export your code to an *.apl file that can be edited in other code editors, or be used by other systems. |
Undo | Select this option to undo your last action. |
Redo | Select this option to redo the last action you undid with the Undo option. |
Cut | Cuts selections to the clipboard buffer. |
Copy | Copies selections to the clipboard buffer. |
Paste | Pastes the clipboard contents. |
Find | Displays a dialog where chosen text may be searched for and, optionally, replaced. |
Find Again | Repeats the search for the last string entered in the Find dialog. |
Zoom Out | Zoom out the code area by modifying the font size. The default value is 13(pt). Clicking the button between the and buttons will reset the zoom level to the default value. Changing the view scale does not affect the configuration. |
Zoom In | Zoom in the code area by modifying the font size. The default value is 13(pt). Clicking the button between the and buttons will reset the zoom level to the default value. Changing the view scale does not affect the configuration. |
APL Collection Strategy Dialog
You create your APL Collection Strategy in the dialog.
The APL Collection Strategy Configuration
Setting | Description |
---|---|
Base Collection Strategy | From the drop-down list, select a pre-defined collection strategy. The Default Collection Strategy is the standard collection strategy that is used by default by collection agents that supports Collection Strategies. Note! The Base Collection Strategy is the collection strategy that your APL Extension will be based on. When saving your new collection strategy, make sure to use a descriptive name since it will be added to the list of available strategies in the agent's configuration. |
The code that you see in the dialog is a default 'skeleton' set of functions blocks that are already defined in the Base Collection Strategy. By adding APL code within these functions blocks, you customize the way by which the collection is going to be handled by the workflow.
initialize
deinitialize
prepareBaseDirList
accept
filterFiles
preFileCollection
postFileCollection
begin
commit
rollback
For more information about APL functions blocks and functions, see the APL Reference Guide(3.0).
APL Collection Strategy Outline
In order to make it easier to navigate in an APL Collection Strategy code configuration, there is an Outline navigation panel to the right of the dialog.
The Outline provides a view of all all the blocks, variables and methods in an APL Collection Strategy code configuration and makes it possible to easily navigate between different types in the APL Collection Strategy code. The entries in the navigation panel are automatically updated as you make valid entries in the APL Collection Strategy configuration.
You can also filter what you want to display in the Outline. You can search for a specific block, variable or method using the free text field, or by selecting one of the quick filter buttons for different types:
Filter | Description |
---|---|
b | Click to display or hide the blocks within the APL code displayed in the APL Collection Strategy configuration. |
v | Click to display or hide the variables within the APL code displayed in the APL Collection Strategy configuration. |
m | Click to display or hide the methods within the APL code displayed in the APL Collection Strategy configuration. |
The Outline navigation panel can be hidden or visible. By default, it is visible and all the elements are displayed. To hide or display the navigation panel, click the Outline button to the right of the APL Collection Strategy dialog.
Configuration Diff Panel
If you want to compare the current version of an APL collection strategy that you are displaying with a previous version of the same APL collection strategy, you can use Configuration Diff to compare the two versions side by side.
To hide or display the Configuration Diff panel, click the Diff button to the right of the APL Collection Strategy dialog. To select the version to which you want to compare the version currently displayed, click the History drop box directly below the Configuration Diff panel, and select the version you want to view. The panel can be hidden or visible. By default, it is hidden.
You can navigate through the differences by scrolling both panes in parallel using the scroll bar to the right of either pane. If you want to scroll through each pane separately, hover over the pane that you want to scroll through, and use the scroll wheel on your mouse.
If you want to skip through each difference in the panes, you can use the navigation buttons, Previous, Next and Refresh, which are described below.
Item | Description |
---|---|
History | Click the History drop box to select the version to which you want to compare the version currently displayed. You can also display and view encrypted configurations. If you select an encrypted configuration, you are prompted to enter the relevant password to decrypt the configuration. |
Previous | Click this button to skip to the previous difference in the configurations. The previous difference is highlighted in green. |
Next | Click this button to skip to the next difference in the configurations. The next difference is highlighted in green. |
Refresh | Click this button to display the updated version of the configuration. Configurations are not locked when you display them in Configuration Diff. If another user has modified and saved a configuration that you are viewing in this tool, you can click this button to view the latest updated version. |
The FileInfo UDR Type
The FileInfo
UDR type includes the properties of the file to collect or a directory where files are stored.
The FileInfo
UDR type can be viewed in the UDR Internal Format Browser. To open the browser right-click in the editing area of an APL Editor and select UDR Assistance... . The browser opens.
Format
The following fields are included in the FileInfo UDR:
Field | Description |
---|---|
isDirectory(boolean) | Set to True if FileInfo represents a directory. |
isFile(boolean) | Set to True if FileInfo represents a file. |
name(string) | The name of the file or directory. |
size(long) | The size of the file or directory. |
timestamp(long) | The timestamp for when the file or directory was last modified. |