Skip to main content

%iKnow.Matching.Formats.Format

Class %iKnow.Matching.Formats.Format Extends %RegisteredObject [ Abstract, Deprecated, System = 4 ]

This abstract class describes the interface to be implemented by an actual Dictionary Format matching object. Subclasses of this class can for example introduce regular expression matching, date matching, number checking or something more domain-specific.

Subclasses should at least override MatchSingle and optionally provide a format-specific implementation for MatchAll.

Format implementations can be parameterized through a number of parameters the Format class defines, which will get passed to the MatchSingle and MatchAll methods as a formatParams parameter of type %List.

Properties

DomainId

Property DomainId As %Integer [ ReadOnly ];

Methods

MatchSingle

Method MatchSingle(string As %String, formatParams As %List, Output matchScore As %Numeric, Output matchedWordBits, Output isScattered As %Boolean, Output formatOutput) As %Status [ Abstract ]

Implementations of this method check whether an individual string complies with the format this class represents, returning a matchScore (0..1) and optional matchedWordBits, isScattered and formatOutput through output parameters.

HasMatchAll

Method HasMatchAll() As %Boolean

Whether or not this Format class has a MatchAll function that deals with a set of strings directly. Subclasses should make sure to override this method (to make it return true) if they override MatchAll.

MatchAll

Method MatchAll(stringsGlobalName As %String, resultGlobalName As %String, formatParams As %List, minEntUniId As %Integer = 0) As %Status

This method loops through @stringsGlobalName@(" "_string) = id and matches all global entries, storing the results in @resultGlobalName@(id) = $lb(matchScore, matchedWordBits, isScattered, formatOutput). The implementation should ignore all ids < minEntUniId and should not store any results if the matchScore is 0.

Implementing this method only makes sense if the specific format this class represents can exploit the inverse global structure of @stringsGlobalName.

Note: entries in @stringsGlobalName are all in lowercase and prefixed with a space

Warning: an implementation for this method does not replace MatchSingle. There should still be a MatchSingle alternative, for example to process strings longer than $$$IKHASHSIZE that would not appear in @stringsGlobalName.

MatchAllHashes

Method MatchAllHashes(hashGlobalName As %String, idGlobalName As %String, resultGlobalName As %String, formatParams As %List, minEntUniId As %Integer = 0) As %Status [ Final ]

As MatchAll can only tackle those strings shorter than $$$IKHASHSIZE, this method complements it by looping through the corresponding global structures for longer strings and checking them manually using MatchSingle.

Finalize

Method Finalize() As %Status

This method is called after matching has finished to clean up eventual memory structures generated while executing MatchSingle or MatchAll calls and can be overridden in subclasses to perform any required cleanup operations.

ConvertFormatCase

Method ConvertFormatCase(formatString As %String) As %String [ Internal ]

Utility method to ensure a string used in the format matching process is in the same case set as the strings supplied to the MatchSingle method.

%OnNew

Method %OnNew(domainId As %Integer) As %Status [ Private, ServerOnly = 1 ]

TestParams

ClassMethod TestParams(pFormatParams As %List, pDomainId As %Integer = 0) As %Status

Utility method subclasses can implement to verify user-supplied format parameters are valid. The default implementation instantiates an object of this matching format class and calls its MatchSingle method for "test string". The %Status object returned by that call is returned for this method.