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

Difference between revisions of "SMILA/Documentation/Record Filter"

m
(Configuration)
Line 4: Line 4:
  
 
== Configuration ==
 
== Configuration ==
Schema: org.eclipse.eilf.datamodel.tools/schemas/RecordFilters.xsd   
+
Schema: org.eclipse.smila.datamodel.tools/schemas/RecordFilters.xsd   
  
 
Configuration is a list of filters (tag Filter) identified by attribute “name”. Every filter specified copy rules for Attributes/Annotations.
 
Configuration is a list of filters (tag Filter) identified by attribute “name”. Every filter specified copy rules for Attributes/Annotations.

Revision as of 04:52, 13 November 2008

What is Record Filter

Ordinary, Record contains many attributes and annotations but only a few of them are used. To increase productivity, decrease information sent (by SCA) or stored in JMS queue its better to strip unused data. Record filter is a tool that allows to create a copy of Record with only filtered Attributes and Annotations. Configuration with filtering rules should be described as XML.

Configuration

Schema: org.eclipse.smila.datamodel.tools/schemas/RecordFilters.xsd

Configuration is a list of filters (tag Filter) identified by attribute “name”. Every filter specified copy rules for Attributes/Annotations.

Configuration Example

<RecordFilters>
  <Filter name="only-attributes">
    <Attribute name="*"/>
  </Filter>
  <Filter name="no-filter">
    <Attribute name="*" keepAnnotations="true"/>
    <Annotation name="*"/>
  </Filter>
  <Filter name="nothing"/>
  <Filter name="only-attribute1">
    <Attribute name="attribute1"/>
  </Filter>
  <Filter name="filter-single-and-datetime">
    <Attribute name="single value"/>
    <Attribute name="datetime value"/>
  </Filter>
</RecordFilters>

Sample Usage

Utility class org.eclipse.eilf.datamodel.tools.record.filter.RecordFilterHelper

RecordFilterHelper recordFilterHelper = new RecordFilterHelper(configStream);
Record newRecord = recordFilterHelper.filter(record, "only-attributes");

Record filter will search first appropriate Filter by name ("only-attributes") specified. If filter not found, then RecordFilterNotFoundException will be thrown.

Attribute/Annotation will be copied if correspondent, by name, Attribute/Annotation tag Filter will be found. Attribute "keepAnnotations" is a flag to copy internal attribute annotations or not.


Blackboard Service Record Filter

One Record Filter instance is preloaded by Blackboard service (org.eclipse.eilf.blackboard). It loads Record Filer configuration from “configuration/org.eclipse.eilf.blackboard/RecordFilters.xml” file and shares following interface methods related to record filtering.

public interface BlackboardService {
...
public Record getRecord(final Id id, final String filterName) throws BlackboardAccessException,RecordFilterNotFoundException;
public Record filterRecord(final Record record, final String filterName) throws RecordFilterNotFoundException;
}

Back to the top