Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

SMILA/Documentation/Bundle org.eclipse.smila.processing.pipelets

< SMILA‎ | Documentation
Revision as of 08:38, 7 August 2008 by Juergen.schumacher.empolis.com (Talk | contribs) (New page: == org.eclipse.eilf.processing.pipelets.CommitRecordsPipelet == === Description === Commits each record in the input variable on the blackboard to the storages. Can be used to save the r...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

org.eclipse.eilf.processing.pipelets.CommitRecordsPipelet

Description

Commits each record in the input variable on the blackboard to the storages. Can be used to save the records immediately during the workflow instead of only when a workflow has been finished.

Configuration

none.

org.eclipse.eilf.processing.pipelets.SetAnnotationPipelet

Description

Sets a configurable annotation on each record in the input variable. This can be used to control the operation of services and pipelets that look at special annotations to distinguish between different operation modes.

Since annotations on the root metadata object of records can now be set inline in the invokeService or invokePipelet activity (see SMILA/Documentation/BPEL Workflow Processor), this pipelet is only needed to set annotations on attributes. This means probably that is will not be used very much (-;

Configuration

Property Type Description
Name String Name of annotation ot set
AnonValue String an anonymous value of the annotation. Can occur multiple times.
NamedValue:<name> named value of the annotation for name <name>
Path String : attribute path Path to attribute to attach the annotation to. If not set, annotation is set on the root metadata object of the record. The index in the final step of the path is irrelevant, the annotation if always attached to the attribute, not on contained literals or objects.

Example

The following example was used in the "AddPipeline" of the EILF example application to set an annotation that advises LuceneService in the following invocation to add the records to the index: It creates an annotation named "org.eclipse.eilf.lucene.LuceneService" with a named value "executionMode=ADD" (see documentation of LuceneService for details):

    <extensionActivity name="setAnnotations">
      <proc:invokePipelet>
        <proc:pipelet class="org.eclipse.eilf.processing.pipelets.SetAnnotationPipelet" />
        <proc:variables input="request" />
        <proc:PipeletConfiguration>
          <proc:Property name="Name">
            <proc:Value>org.eclipse.eilf.lucene.LuceneService</proc:Value>
          </proc:Property>
          <proc:Property name="NamedValue:executionMode">
            <proc:Value>ADD</proc:Value>
          </proc:Property>
        </proc:PipeletConfiguration>
      </proc:invokePipelet>
    </extensionActivity>

org.eclipse.eilf.processing.pipelets.HtmlToTextPipelet

Description

Extract plain text and metadata from an HTML document in an attribute or attachment of each record and writes it to configurable attributes or attachments.

The pipelet uses the CyberNeko HTML parser NekoHTML to parse HTML documents.

Configuration

inputType
Property Type Description
String : ATTACHMENT, ATTRIBUTE selects if the HTML input is found in an attachment or attribute of the record
outputType String : ATTACHMENT, ATTRIBUTE selects if the plain text should be stored in an attachment or attribute of the record
inputName String name of input attachment or path to input attribute (process literals of attribute)
outputName String name of output attachment or path to output attribute for plain text (store result as literals of attribute)
removeContentTags String comma separated list of HTML tags (case insensitive) for which the complete content should be removed from the resulting plain text. If not set, it defaults to "applet,frame,object,script,style". If set, the default tags must be added explicitly, if they should be removed, too.
meta:<name> String: attribute path store the content of the <META> tag with name="<name>" (case insensitive) to the attribute named as the value of the property. E.g. a property named "meta:author" with value "authors" causes the content attributes of <META name="author" content="..."> tags to be stored in the attribute "authors" of the respective record.

Example

This configuration extracts plain text from the HTML document in attachment "html" and stores it in the attribute "text". It removes the complete content of heading tags <h1>, ..., <h4>. Additionally it looks for <meta> tags with names "author" and "keywords" and stores their contents in attributes "authors" and "keywords", respectively:

<PipeletConfiguration xmlns="http://www.eclipse.org/eilf/processor">
    <Property name="inputType">
        <Value>ATTACHMENT</Value>
    </Property>
    <Property name="outputType">
        <Value>ATTRIBUTE</Value>
    </Property>
    <Property name="inputName">
        <Value>html</Value>
    </Property>
    <Property name="outputName">
        <Value>text</Value>
    </Property>
    <Property name="meta:author">
        <Value>authors</Value>
    </Property>
    <Property name="meta:keywords">
        <Value>keywords</Value>
    </Property>
    <Property name="removeContentTags">
        <Value>h1,h2,h3,h4</Value>
    </Property>
</PipeletConfiguration>

Copyright © Eclipse Foundation, Inc. All Rights Reserved.