mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
This PR considers the following constraints: - Resources must be available when building servo via a published crates.io package (i.e. no `../../../resources/<file>` file references). - Minimal setup when writing tests (`nextest` spawns each test in its own process, so we don't want to explicitly initialize the resource handler for every `#[test]` fn) - Use local resources when developing locally - Support loading the resources from a proper resource directory if the embedder wishes so, including via a custom mechanism, not necessarily as files (File) Resources that are only accessed from servoshell are out of scope of this PR, since it mainly focusses on unblocking publishing `libservo` to crates.io. Baking the resources into the binary by default simplifies the setup a lot. We already supported that before, but only for testing purposes and explicitly not for production builds. Using [`inventory`](https://crates.io/crates/inventory) adds a simple way for the embedder to replace the default baked in resources, while also keeping the test usage of baked in resources simple. rippy.png is also referenced from image_cache - We simply duplicate it, since the image is small, to avoid adding unnecessarily complex solutions like adding a dedicated crate. Testing: Covered by existing tests. [mach try full](https://github.com/jschwe/servo/actions/runs/23811669469) Fixes: Part of #43145 --------- Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
39 lines
1.7 KiB
Rust
39 lines
1.7 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use embedder_traits::resources::{Resource, ResourceReaderMethods};
|
|
|
|
/// A default resource reader that provides baked in resources.
|
|
pub struct DefaultResourceReader;
|
|
|
|
impl ResourceReaderMethods for DefaultResourceReader {
|
|
fn sandbox_access_files(&self) -> Vec<PathBuf> {
|
|
vec![]
|
|
}
|
|
fn sandbox_access_files_dirs(&self) -> Vec<PathBuf> {
|
|
vec![]
|
|
}
|
|
fn read(&self, file: Resource) -> Vec<u8> {
|
|
match file {
|
|
Resource::BluetoothBlocklist => &include_bytes!("resources/gatt_blocklist.txt")[..],
|
|
Resource::DomainList => &include_bytes!("resources/public_domains.txt")[..],
|
|
Resource::HstsPreloadList => &include_bytes!("resources/hsts_preload.fstmap")[..],
|
|
Resource::BadCertHTML => &include_bytes!("resources/badcert.html")[..],
|
|
Resource::NetErrorHTML => &include_bytes!("resources/neterror.html")[..],
|
|
Resource::BrokenImageIcon => &include_bytes!("resources/rippy.png")[..],
|
|
Resource::CrashHTML => &include_bytes!("resources/crash.html")[..],
|
|
Resource::DirectoryListingHTML => {
|
|
&include_bytes!("resources/directory-listing.html")[..]
|
|
},
|
|
Resource::AboutMemoryHTML => &include_bytes!("resources/about-memory.html")[..],
|
|
Resource::DebuggerJS => &include_bytes!("resources/debugger.js")[..],
|
|
}
|
|
.to_owned()
|
|
}
|
|
}
|
|
|
|
embedder_traits::submit_resource_reader!(&DefaultResourceReader);
|