pub struct RequestFilterDataProvider<D, F>where
    F: Fn(DataRequest<'_>) -> bool,
{ pub inner: D, pub predicate: F, pub filter_name: &'static str, }
Expand description

A data provider that selectively filters out data requests.

Data requests that are rejected by the filter will return a DataError with kind FilteredResource, and they will not be returned by [datagen::IterableDynamicDataProvider::supported_locales_for_key].

Although this struct can be created directly, the traits in this module provide helper functions for common filtering patterns.

Fields

inner: D

The data provider to which we delegate requests.

predicate: F

The predicate function. A return value of true indicates that the request should proceed as normal; a return value of false will reject the request.

filter_name: &'static str

A name for this filter, used in error messages.

Implementations

Filter out data requests with certain langids according to the predicate function. The predicate should return true to allow a langid and false to reject a langid.

Data requests with no langid will be allowed. To reject data requests without a langid, chain this with Self::require_langid.

Examples
use icu_locid::LanguageIdentifier;
use icu_locid::{langid, locale, subtags_language as language};
use icu_provider::datagen::*;
use icu_provider::hello_world::*;
use icu_provider::prelude::*;
use icu_provider_adapters::filter::Filterable;

let provider = HelloWorldProvider
    .filterable("Demo no-English filter")
    .filter_by_langid(|langid| langid.language != language!("en"));

// German requests should succeed:
let req_de = DataRequest {
    locale: &locale!("de").into(),
    metadata: Default::default(),
};
let response: Result<DataResponse<HelloWorldV1Marker>, _> =
    provider.load(req_de);
assert!(matches!(response, Ok(_)));

// English requests should fail:
let req_en = DataRequest {
    locale: &locale!("en-US").into(),
    metadata: Default::default(),
};
let response: Result<DataResponse<HelloWorldV1Marker>, _> =
    provider.load(req_en);
assert!(matches!(
    response,
    Err(DataError {
        kind: DataErrorKind::FilteredResource,
        ..
    })
));

// English should not appear in the iterator result:
let supported_langids = provider
    .supported_locales()
    .expect("Should successfully make an iterator of supported locales")
    .into_iter()
    .map(|options| options.get_langid())
    .collect::<Vec<LanguageIdentifier>>();
assert!(supported_langids.contains(&langid!("de")));
assert!(!supported_langids.contains(&langid!("en")));

Filter out data request except those having a language identifier that exactly matches one in the allowlist.

This will be replaced with a smarter algorithm for locale filtering; see https://github.com/unicode-org/icu4x/issues/834

Data requests with no langid will be allowed. To reject data requests without a langid, chain this with Self::require_langid.

Examples
use icu_locid::{langid, locale};
use icu_provider::hello_world::*;
use icu_provider::prelude::*;
use icu_provider_adapters::filter::Filterable;

let allowlist = vec![langid!("de"), langid!("zh")];
let provider = HelloWorldProvider
    .filterable("Demo German+Chinese filter")
    .filter_by_langid_allowlist_strict(&allowlist);

// German requests should succeed:
let req_de = DataRequest {
    locale: &locale!("de").into(),
    metadata: Default::default(),
};
let response: Result<DataResponse<HelloWorldV1Marker>, _> =
    provider.load(req_de);
assert!(matches!(response, Ok(_)));

// English requests should fail:
let req_en = DataRequest {
    locale: &locale!("en-US").into(),
    metadata: Default::default(),
};
let response: Result<DataResponse<HelloWorldV1Marker>, _> =
    provider.load(req_en);
assert!(matches!(
    response,
    Err(DataError {
        kind: DataErrorKind::FilteredResource,
        ..
    })
));
assert_eq!(
    response.unwrap_err().str_context,
    Some("Demo German+Chinese filter")
);

Require that data requests contain a langid.

Examples
use icu_locid::locale;
use icu_provider::hello_world::*;
use icu_provider::prelude::*;
use icu_provider_adapters::filter::Filterable;

let provider = HelloWorldProvider
    .filterable("Demo require-langid filter")
    .require_langid();

// Requests with a langid should succeed:
let req_with_langid = DataRequest {
    locale: &locale!("de").into(),
    metadata: Default::default(),
};
let response: Result<DataResponse<HelloWorldV1Marker>, _> =
    provider.load(req_with_langid);
assert!(matches!(response, Ok(_)));

// Requests without a langid should fail:
let req_no_langid = DataRequest {
    locale: Default::default(),
    metadata: Default::default(),
};
let response: Result<DataResponse<HelloWorldV1Marker>, _> =
    provider.load(req_no_langid);
assert!(matches!(
    response,
    Err(DataError {
        kind: DataErrorKind::FilteredResource,
        ..
    })
));

Trait Implementations

Loads an AnyPayload according to the key and request.
Loads a DataPayload<BufferMarker> according to the key and request.
Query the provider for data, returning the result. Read more
Query the provider for data, returning the result. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Returns an object implementing DynamicDataProvider<M> when called on AnyProvider
Returns an object implementing AnyProvider when called on DynamicDataProvider<AnyMarker>
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Creates a filterable data provider with the given name for debugging. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.