Suggest¶
The API for the SuggestStore
can be found in the MozillaComponents Kotlin documentation.
Prerequisites¶
That Viaduct must be initialized during application startup.
Async¶
The Suggest API is synchronous, which means calling it directly will block the current thread. To deal with this, all current consumers wrap the API in order to make it async. For details on this wrapping, see the consumer code itself.
On JS, this wrapping is handled automatically by UniFFI. See https://searchfox.org/mozilla-central/source/toolkit/components/uniffi-bindgen-gecko-js/config.toml for details on which functions/methods are wrapped to be async.
Setting up the store¶
You need to import one or more of the following primitives to work with the SuggestStore
(these come from the generated suggest.kt
file, produced by uniffi
):
import mozilla.appservices.remotesettings.RemoteSettingsServer
import mozilla.appservices.suggest.SuggestApiException
import mozilla.appservices.suggest.SuggestIngestionConstraints
import mozilla.appservices.suggest.SuggestStore
import mozilla.appservices.suggest.SuggestStoreBuilder
import mozilla.appservices.suggest.Suggestion
import mozilla.appservices.suggest.SuggestionQuery
import MozillaAppServices
ChromeUtils.defineESModuleGetters(lazy, {
RemoteSettingsServer: "resource://gre/modules/RustSuggest.sys.mjs",
SuggestApiException: "resource://gre/modules/RustSuggest.sys.mjs",
SuggestIngestionConstraints: "resource://gre/modules/RustSuggest.sys.mjs",
SuggestStore: "resource://gre/modules/RustSuggest.sys.mjs",
SuggestStoreBuilder: "resource://gre/modules/RustSuggest.sys.mjs",
Suggestion: "resource://gre/modules/RustSuggest.sys.mjs",
SuggestionProvider: "resource://gre/modules/RustSuggest.sys.mjs",
SuggestionQuery: "resource://gre/modules/RustSuggest.sys.mjs",
});
Create a SuggestStore
as a singleton. You do this via the SuggestStoreBuilder
, which returns a SuggestStore
. No I/O or network requests are performed during construction, which makes this safe to do at any point in the application startup:
internal val store: SuggestStore = {
SuggestStoreBuilder()
.dataPath(context.getDatabasePath(DATABASE_NAME).absolutePath)
.remoteSettingsServer(remoteSettingsServer)
.build()
let store: SuggestStore = {
let storeBuilder = SuggestStoreBuilder()
storeBuilder.dataPath(context.getDatabasePath(DATABASE_NAME).absolutePath)
storeBuilder.remoteSettingsServer(remoteSettingsServer)
return storeBuilder.build()
}
const store: SuggestStore = SuggestStoreBuilder()
.dataPath(pathForSuggestDatabase)
.remoteSettingsServer(remoteSettingsServer)
.build();
}
You need to set the
dataPath
, which is the path (the SQLite location) where you store your suggestions.The
remoteSettingsServer
is only needed if you want to set the server to anything else butprod
. If so, you pass aRemoteSettingsServer
object.
Ingesting suggestions¶
Ingesting suggestions happens in two different ways: On startup, and then, periodically, in the background.
SuggestIngestionConstraints
is used to control what gets ingested.Use the
providers
field to limit ingestion by provider type.Use the
providerConstraints
field to add additional constraints, currently this is only used for exposure suggestions.
On Start Up¶
Ingest with SuggestIngestionConstraints(emptyOnly=true)
shortly after each startup. This ensures we have something in the DB on the first run and also after upgrades where we often will clear the DB to start from scratch.
store.ingest(SuggestIngestionConstraints(
emptyOnly = true,
providers = listOf(SuggestionProvider.AMP_MOBILE, SuggestionProvider.WIKIPEDIA, SuggestionProvider.WEATHER)
))
store.ingest(SuggestIngestionConstraints(
emptyOnly: true,
providers: [.AMP_MOBILE, .WIKIPEDIA, .WEATHER]
))
store.ingest(SuggestIngestionConstraints(
emptyOnly: true,
providers: [SuggestionProvider.AMP_MOBILE, SuggestionProvider.WIKIPEDIA, SuggestionProvider.WEATHER]
))
Periodically¶
Ingest with SuggestIngestionConstraints(emptyOnly=false)
on a regular schedule (like once a day).
store.ingest(SuggestIngestionConstraints(
emptyOnly = false,
providers = listOf(SuggestionProvider.AMP_MOBILE, SuggestionProvider.WIKIPEDIA, SuggestionProvider.WEATHER)
))
store.ingest(SuggestIngestionConstraints(
emptyOnly: false,
providers: [.AMP_MOBILE, .WIKIPEDIA, .WEATHER]
))
store.ingest(SuggestIngestionConstraints(
emptyOnly: false,
providers: [SuggestionProvider.AMP_MOBILE, SuggestionProvider.WIKIPEDIA, SuggestionProvider.WEATHER]
))
Querying Suggestions¶
Call SuggestStore::query
to fetch suggestions for the suggest bar. The providers
parameter should be the same value that got passed to ingest()
.
store.query(
SuggestionQuery(
keyword = text,
providers = listOf(SuggestionProvider.AMP_MOBILE, SuggestionProvider.WIKIPEDIA, SuggestionProvider.WEATHER),
limit = MAX_NUM_OF_FIREFOX_SUGGESTIONS,
),
)
store.query(
SuggestionQuery(
keyword: text,
providers: [.AMP_MOBILE, .WIKIPEDIA, .WEATHER],
limit: MAX_NUM_OF_FIREFOX_SUGGESTIONS
)
)
store.query(
SuggestionQuery(
keyword = text,
providers = [SuggestionProvider.AMP_MOBILE, SuggestionProvider.WIKIPEDIA, SuggestionProvider.WEATHER],
limit = MAX_NUM_OF_FIREFOX_SUGGESTIONS,
),
)
Interrupt querying¶
Call interrupt()
with InterruptKind::Read
to interrupt any in-progress queries when the user cancels a query and before running the next query.
store.interrupt(InterruptKind.READ)
store.interrupt(kind: InterruptKind.READ)
store.interrupt(InterruptKind.READ)
Shutdown the store¶
On shutdown, call interrupt()
with InterruptKind::ReadWrite
to interrupt any in-progress ingestion in addition to queries.
store.interrupt(InterruptKind.READ_WRITE)
store.interrupt(kind: InterruptKind.READ_WRITE)
store.interrupt(InterruptKind.READ_WRITE)