Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: resource identity deduplication #218

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions crates/js-component-bindgen/src/intrinsics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,39 +351,55 @@ pub fn render_intrinsics(
}

impl Intrinsic {
pub fn get_all_names() -> &'static [&'static str] {
pub fn get_global_names() -> &'static [&'static str] {
&[
"base64Compile",
"BigInt",
"BigInt64Array",
"clampGuest",
"ComponentError",
"dataView",
"DataView",
"Error",
"f32ToI32",
"f64ToI64",
"fetch",
"fetchCompile",
"Float32Array",
"Float64Array",
"getErrorPayload",
"hasOwnProperty",
"i32ToF32",
"i64ToF64",
"instantiateCore",
"Int32Array",
"isLE",
"fetchCompile",
"Object",
"process",
"String",
"throwInvalidBool",
"throwUninitialized",
"toInt64",
"toUint64",
"toInt16",
"toInt32",
"toInt64",
"toInt8",
"toString",
"toUint16",
"toUint32",
"toUint64",
"toUint8",
"TypeError",
"Uint16Array",
"Uint8Array",
"URL",
"utf16Decoder",
"utf16Encode",
"utf8Decoder",
"utf8Encode",
"utf8EncodedLen",
"validateGuestChar",
"validateHostChar",
"WebAssembly",
]
}

Expand Down
33 changes: 21 additions & 12 deletions crates/js-component-bindgen/src/names.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
use heck::ToLowerCamelCase;
use std::collections::hash_map::RandomState;
use std::collections::{HashMap, HashSet};
use std::hash::{BuildHasher, Hash, Hasher};

#[derive(Default)]
pub struct LocalNames {
// map from exact name to generated local name
local_name_ids: HashMap<String, String>,
local_name_ids: HashMap<u64, String>,
local_names: HashSet<String>,
random_state: RandomState,
}

impl<'a> LocalNames {
/// provide known intrinsic identifier names to exclude from being assigned
pub fn exclude_intrinsics(&mut self, intrinsics: &[&str]) {
for name in intrinsics {
/// provide known global identifier names to exclude from being assigned
pub fn exclude_globals(&mut self, globals: &[&str]) {
for name in globals {
self.local_names.insert(name.to_string());
}
}
Expand Down Expand Up @@ -39,22 +42,28 @@ impl<'a> LocalNames {
self.local_names.get(&goal).unwrap()
}

pub fn get(&'a self, unique_id: &str) -> &'a str {
if !self.local_name_ids.contains_key(unique_id) {
panic!("Internal error, no name defined for {}", unique_id);
pub fn get<H: Hash>(&'a self, unique_id: H) -> &'a str {
let mut new_s = self.random_state.build_hasher();
unique_id.hash(&mut new_s);
let hash = new_s.finish();
if !self.local_name_ids.contains_key(&hash) {
panic!("Internal error, no name defined for {}", hash);
}
&self.local_name_ids[unique_id]
&self.local_name_ids[&hash]
}

/// get or create a unique identifier for a string while storing the lookup by unique id
pub fn get_or_create(&'a mut self, unique_id: &str, goal_name: &str) -> (&'a str, bool) {
pub fn get_or_create<H: Hash>(&'a mut self, unique_id: H, goal_name: &str) -> (&'a str, bool) {
let mut new_s = self.random_state.build_hasher();
unique_id.hash(&mut new_s);
let hash = new_s.finish();
let mut seen = true;
if !self.local_name_ids.contains_key(unique_id) {
if !self.local_name_ids.contains_key(&hash) {
let goal = self.create_once(goal_name).to_string();
self.local_name_ids.insert(unique_id.to_string(), goal);
self.local_name_ids.insert(hash, goal);
seen = false;
}
(self.local_name_ids.get(unique_id).unwrap(), seen)
(self.local_name_ids.get(&hash).unwrap(), seen)
}
}

Expand Down
Loading