svySearch
Welcome to the svySearch wiki! This wiki provides comprehensive documentation to using the svySearch module. This module is designed to parse natural-language text input and apply it to developer-specified patterns for searching.
Table of Contents
Parsing Rules
Text is parsed according to some general patterns. String fragments are matched against developer-specified SearchProvider, which map some rules to how certain columns are searched.
Patterns
Tokens: Parsing input for individual words
Quoted Strings: Used to escape token separators
Aliases: Used to explicitly referenes a single SearchProvider
Operators: For comparisons other than the default LIKE/Contains
Substitutions: Dynamically match and replace input text, ideal for converting value list values into stored values
Tokens
Words separated by white space will be treated as separate tokens. ALL tokens must match ANY SearchProvider.
Example
NOTE: Multiple tokens that match on the same related SearchProvider are not currently supported and may result in no records. This cannot be easily supported, because when a SearchProvider is compared to multiple tokens, we cannot know which token(s) matched, and therefore, cannot guarantee the contract for matching ALL tokens.
Quoted Strings
Use double quotes to escape tokenization
Example
Aliases
Any SearchProvider can be explicitly searched using the data provider name or alias. Aliases are specified left or a ':' character. Additionally, some SearchProvider can be specified as explicit-only, meaning the field is not searched unless the user performs an alias-based search. This can be useful for date fields
Example
Operators
By default, all searches are LIKE/Contains for Strings and strict "=" for Numbers and Dates. However, additional operators may be specified at the beginning of a token (except for the BETWEEN operator)
Example
Substitutions
Substitutions can be applied dynamically to match and replace string fragments within user input. This is ideal for allowing users to express custom ValueList display values in their searches, and have those values resolved to the actual stored/DB value
Example
API Documentation
svySearch is an object-oriented API for parsing user input and applying searches against the data model.
The API consists of the primary class SimpleSearch, which models a search on a particular data source and its supporting class, SearchProvider, which models th ecomponent of the search that maps to a single data provider.
Example
svySearch
A single scope that contains the classes
Method Summary
createSimpleSearch
Params
returns
example
SimpleSearch
A class which models a search on a particular data source and its supporting class
Method Summary
Method Details
addAlternateDateFormat
Add alternative date format which is used to parse user input for searching dates in addition to the default format.
Params
Returns SimpleSearch
Example
addSearchProvider
Adds a search provider to the search object.
Params
Returns SearchProvider
getAllSearchProviders
Get all search providers for this search object
Returns Array<SearchProvider>
getAlternateDateFormats
Returns the alternate date format which is used to parse user input for searching dates in addition to the default format.
Returns Array<String>
getDataSet
Executes the search and returns the results as a JSDataSet
Params
Returns JSDataSet
getDataSource
Returns the data source used by the search object
Returns String
getDateFormat
Returns the date format which is used to parse user input for searching dates
Returns String
getFoundSet
Creates a factory foundset, runs the search and returns it
Returns JSFoundSet
getQuery
Creates and returns a query object parsed from the user input
Returns QBSelect
getSearchProvider
Gets the specified SearchProvider
Params
Returns SearchProvider or null if named SearchProvider is not found
getSearchText
Gets the raw, unparsed input text
Returns String
loadRecords
Loads records in the specified foundset
Params
Returns Boolean True indicates query was successful, although may have loaded zero records
removeAlternateDateFormat
Remove alternative date format which is used to parse user input for searching dates in addition to the default format.
Params
Returns SimpleSearch
setDateFormat
Sets the date formatting which will be used to parse user input
Params
Returns SimpleSearch Returns this SimpleSearch for convenience, method chaining
setSearchAllColumns
Sets that all columns are to be searchable
This should be called before adding any additional, related search providers
Returns SimpleSearch Returns this SimpleSearch for convenience, method chaining
setSearchText
Set the raw, user input to be parsed
Params
Returns SimpleSearch Returns this SimpleSearch for convenience, method chaining
A class which models the component of the search that maps to a single data provider.
Method Summary
Method Details
addSubstitution
Add a substitution kev-value pair to this search provider
Substitutions provide replacement capability for user input.
A typical use case involves parsing a value list display value
Params
Returns SearchProvider this SearchProvider for convenience, method chaining
getAlias
Gets the alias of this search provider.
Returns String The alias, or null if none was specified
getDataProviderID
Gets the data provider ID
Returns String The data provider which will be searched
getJSColumn
Get the JSColumn object that corresponds to this search provider
Returns JSColumn
getJSTable
Get the JSTable object that corresponds to this search provider
Returns JSTable
getStringMatching
Get the matching mode for this search provider.
Returns String
getSubstitutionsKeys
Get all the keys for substitutions
getSubstitutionValue
Get the substitution value for a given key
Params
Returns String
isCaseSensitive
Indicates if this SearchProvider is case-sensitive
Returns Boolean
isCastInteger
Indicates if this SearchProvider will cast INTEGER values to TEXT in the query
Returns [Boolean]
isImpliedSearch
Indicates if this SearchProvider is an implied search
Returns Boolean
setAlias
Sets the natural language name for this SearchProvider
The alias can be used in explicit searches
Params
Returns SearchProvider this SearchProvider for convenience, method chaining
setCaseSensitive
Specifies if this SearchProvider will perform case-sensitive searches
Params
Returns SearchProvider this SearchProvider for convenience, method chaining
setCastInteger
Specifies if this SearchProvider will cast INTEGER values to TEXT in the query. For example, a search term "1025"
would match on 10250
, 10251
, 91025
, etc.
Params
Returns SearchProvider this SearchProvider for convenience, method chaining
setImpliedSearch
Specifies if this search provider is included in implied search
A value of true indicates that the provider will always be searched
A value of false indicates that provider will ONLY be searched when used in explicit field matching
Params
Returns SearchProvider this SearchProvider for convenience, method chaining
setStringMatching
Sets the string matching mode for this SearchProvider
Params
Returns SearchProvider this SearchProvider for convenience, method chaining
Last updated