mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-18 23:41:24 +00:00
Add renaming of conflicting constructors and operations (#579)
* Add renaming of conflicting constructors and operations * Rename conflicting to overloaded * Fix newlines * Use or_insert_with, add a comment to TypeToString * Use more Rust-like names * Use opt instead of nullable * Use argument names instead of argument types if possible * Drop new for overloaded constructots * Remove extra newline * Move WebIDL files from unavailable_overloaded_fn * Move RTCDataChannel, RTCPeerConnection and Selection to unavailable_option_primitive
This commit is contained in:
@ -18,13 +18,34 @@ use super::Result;
|
||||
/// Collection of constructs that may use partial.
|
||||
#[derive(Default)]
|
||||
pub(crate) struct FirstPassRecord<'a> {
|
||||
pub(crate) interfaces: BTreeSet<String>,
|
||||
pub(crate) interfaces: BTreeMap<String, InterfaceData>,
|
||||
pub(crate) dictionaries: BTreeSet<String>,
|
||||
pub(crate) enums: BTreeSet<String>,
|
||||
/// The mixins, mapping their name to the webidl ast node for the mixin.
|
||||
pub(crate) mixins: BTreeMap<String, MixinData<'a>>,
|
||||
}
|
||||
|
||||
/// We need to collect interface data during the first pass, to be used later.
|
||||
#[derive(Default)]
|
||||
pub(crate) struct InterfaceData {
|
||||
/// Whether only partial interfaces were encountered
|
||||
pub(crate) partial: bool,
|
||||
pub(crate) operations: BTreeMap<OperationId, OperationData>,
|
||||
}
|
||||
|
||||
#[derive(PartialEq, Eq, PartialOrd, Ord)]
|
||||
pub(crate) enum OperationId {
|
||||
Constructor,
|
||||
Operation(Option<String>)
|
||||
}
|
||||
|
||||
#[derive(Default)]
|
||||
pub(crate) struct OperationData {
|
||||
pub(crate) overloaded: bool,
|
||||
/// Map from argument names to whether they are the same for multiple overloads
|
||||
pub(crate) argument_names_same: BTreeMap<Vec<String>, bool>,
|
||||
}
|
||||
|
||||
/// We need to collect mixin data during the first pass, to be used later.
|
||||
#[derive(Default)]
|
||||
pub(crate) struct MixinData<'a> {
|
||||
@ -37,30 +58,30 @@ pub(crate) struct MixinData<'a> {
|
||||
}
|
||||
|
||||
/// Implemented on an AST node to populate the `FirstPassRecord` struct.
|
||||
pub(crate) trait FirstPass {
|
||||
pub(crate) trait FirstPass<Ctx> {
|
||||
/// Populate `record` with any constructs in `self`.
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()>;
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, ctx: Ctx) -> Result<()>;
|
||||
}
|
||||
|
||||
impl FirstPass for [webidl::ast::Definition] {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
impl FirstPass<()> for [webidl::ast::Definition] {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
for def in self {
|
||||
def.first_pass(record)?;
|
||||
def.first_pass(record, ())?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass for webidl::ast::Definition {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
impl FirstPass<()> for webidl::ast::Definition {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
use webidl::ast::Definition::*;
|
||||
|
||||
match self {
|
||||
Dictionary(dictionary) => dictionary.first_pass(record),
|
||||
Enum(enum_) => enum_.first_pass(record),
|
||||
Interface(interface) => interface.first_pass(record),
|
||||
Mixin(mixin) => mixin.first_pass(record),
|
||||
Dictionary(dictionary) => dictionary.first_pass(record, ()),
|
||||
Enum(enum_) => enum_.first_pass(record, ()),
|
||||
Interface(interface) => interface.first_pass(record, ()),
|
||||
Mixin(mixin) => mixin.first_pass(record, ()),
|
||||
_ => {
|
||||
// Other definitions aren't currently used in the first pass
|
||||
Ok(())
|
||||
@ -69,12 +90,12 @@ impl FirstPass for webidl::ast::Definition {
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass for webidl::ast::Dictionary {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
impl FirstPass<()> for webidl::ast::Dictionary {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
use webidl::ast::Dictionary::*;
|
||||
|
||||
match self {
|
||||
NonPartial(dictionary) => dictionary.first_pass(record),
|
||||
NonPartial(dictionary) => dictionary.first_pass(record, ()),
|
||||
_ => {
|
||||
// Other dictionaries aren't currently used in the first pass
|
||||
Ok(())
|
||||
@ -83,8 +104,8 @@ impl FirstPass for webidl::ast::Dictionary {
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass for webidl::ast::NonPartialDictionary {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
impl FirstPass<()> for webidl::ast::NonPartialDictionary {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
if record.dictionaries.insert(self.name.clone()) {
|
||||
warn!("Encountered multiple declarations of {}", self.name);
|
||||
}
|
||||
@ -93,8 +114,8 @@ impl FirstPass for webidl::ast::NonPartialDictionary {
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass for webidl::ast::Enum {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
impl FirstPass<()> for webidl::ast::Enum {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
if record.enums.insert(self.name.clone()) {
|
||||
warn!("Encountered multiple declarations of {}", self.name);
|
||||
}
|
||||
@ -103,43 +124,212 @@ impl FirstPass for webidl::ast::Enum {
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass for webidl::ast::Interface {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
fn first_pass_operation<'a>(
|
||||
record: &mut FirstPassRecord<'a>,
|
||||
self_name: &str,
|
||||
id: OperationId,
|
||||
arguments: &[webidl::ast::Argument],
|
||||
) -> Result<()> {
|
||||
record
|
||||
.interfaces
|
||||
.get_mut(self_name)
|
||||
.unwrap()
|
||||
.operations
|
||||
.entry(id)
|
||||
.and_modify(|operation_data| operation_data.overloaded = true)
|
||||
.or_insert_with(||
|
||||
OperationData {
|
||||
overloaded: false,
|
||||
argument_names_same: Default::default(),
|
||||
}
|
||||
)
|
||||
.argument_names_same
|
||||
.entry(arguments.iter().map(|argument| argument.name.clone()).collect())
|
||||
.and_modify(|same_argument_names| *same_argument_names = true)
|
||||
.or_insert(false);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
impl FirstPass<()> for webidl::ast::Interface {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
use webidl::ast::Interface::*;
|
||||
|
||||
match self {
|
||||
NonPartial(interface) => interface.first_pass(record),
|
||||
_ => {
|
||||
// Other interfaces aren't currently used in the first pass
|
||||
Partial(interface) => interface.first_pass(record, ()),
|
||||
NonPartial(interface) => interface.first_pass(record, ()),
|
||||
// TODO
|
||||
Callback(..) => {
|
||||
warn!("Unsupported WebIDL interface: {:?}", self);
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass for webidl::ast::NonPartialInterface {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
if record.interfaces.insert(self.name.clone()) {
|
||||
warn!("Encountered multiple declarations of {}", self.name);
|
||||
impl FirstPass<()> for webidl::ast::NonPartialInterface {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
record
|
||||
.interfaces
|
||||
.entry(self.name.clone())
|
||||
.and_modify(|interface_data| {
|
||||
if interface_data.partial {
|
||||
interface_data.partial = false;
|
||||
} else {
|
||||
warn!("Encountered multiple declarations of {}", self.name);
|
||||
}
|
||||
})
|
||||
.or_insert_with(||
|
||||
InterfaceData {
|
||||
partial: false,
|
||||
operations: Default::default(),
|
||||
},
|
||||
);
|
||||
|
||||
if ::util::is_chrome_only(&self.extended_attributes) {
|
||||
return Ok(())
|
||||
}
|
||||
|
||||
for extended_attribute in &self.extended_attributes {
|
||||
extended_attribute.first_pass(record, &self.name)?;
|
||||
}
|
||||
|
||||
for member in &self.members {
|
||||
member.first_pass(record, &self.name)?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass for webidl::ast::Mixin {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
use webidl::ast::Mixin::*;
|
||||
impl FirstPass<()> for webidl::ast::PartialInterface {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
record
|
||||
.interfaces
|
||||
.entry(self.name.clone())
|
||||
.or_insert_with(||
|
||||
InterfaceData {
|
||||
partial: true,
|
||||
operations: Default::default(),
|
||||
},
|
||||
);
|
||||
|
||||
if ::util::is_chrome_only(&self.extended_attributes) {
|
||||
return Ok(())
|
||||
}
|
||||
|
||||
for member in &self.members {
|
||||
member.first_pass(record, &self.name)?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'b> FirstPass<&'b str> for webidl::ast::ExtendedAttribute {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, self_name: &'b str) -> Result<()> {
|
||||
match self {
|
||||
NonPartial(mixin) => mixin.first_pass(record),
|
||||
Partial(mixin) => mixin.first_pass(record),
|
||||
webidl::ast::ExtendedAttribute::ArgumentList(
|
||||
webidl::ast::ArgumentListExtendedAttribute { arguments, name },
|
||||
)
|
||||
if name == "Constructor" =>
|
||||
{
|
||||
first_pass_operation(
|
||||
record,
|
||||
self_name,
|
||||
OperationId::Constructor,
|
||||
&arguments,
|
||||
)
|
||||
}
|
||||
webidl::ast::ExtendedAttribute::NoArguments(webidl::ast::Other::Identifier(name))
|
||||
if name == "Constructor" =>
|
||||
{
|
||||
first_pass_operation(
|
||||
record,
|
||||
self_name,
|
||||
OperationId::Constructor,
|
||||
&[],
|
||||
)
|
||||
}
|
||||
webidl::ast::ExtendedAttribute::NamedArgumentList(
|
||||
webidl::ast::NamedArgumentListExtendedAttribute {
|
||||
lhs_name,
|
||||
rhs_arguments,
|
||||
..
|
||||
},
|
||||
)
|
||||
if lhs_name == "NamedConstructor" =>
|
||||
{
|
||||
first_pass_operation(
|
||||
record,
|
||||
self_name,
|
||||
OperationId::Constructor,
|
||||
&rhs_arguments,
|
||||
)
|
||||
},
|
||||
_ => Ok(())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass for webidl::ast::NonPartialMixin {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
impl<'b> FirstPass<&'b str> for webidl::ast::InterfaceMember {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, self_name: &'b str) -> Result<()> {
|
||||
match self {
|
||||
webidl::ast::InterfaceMember::Operation(op) => op.first_pass(record, self_name),
|
||||
_ => Ok(()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'b> FirstPass<&'b str> for webidl::ast::Operation {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, self_name: &'b str) -> Result<()> {
|
||||
match self {
|
||||
webidl::ast::Operation::Regular(op) => op.first_pass(record, self_name),
|
||||
webidl::ast::Operation::Static(op) => op.first_pass(record, self_name),
|
||||
// TODO
|
||||
webidl::ast::Operation::Special(_) | webidl::ast::Operation::Stringifier(_) => {
|
||||
warn!("Unsupported WebIDL operation: {:?}", self);
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'b> FirstPass<&'b str> for webidl::ast::RegularOperation {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, self_name: &'b str) -> Result<()> {
|
||||
first_pass_operation(
|
||||
record,
|
||||
self_name,
|
||||
OperationId::Operation(self.name.clone()),
|
||||
&self.arguments,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'b> FirstPass<&'b str> for webidl::ast::StaticOperation {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, self_name: &'b str) -> Result<()> {
|
||||
first_pass_operation(
|
||||
record,
|
||||
self_name,
|
||||
OperationId::Operation(self.name.clone()),
|
||||
&self.arguments,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass<()> for webidl::ast::Mixin {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
use webidl::ast::Mixin::*;
|
||||
|
||||
match self {
|
||||
NonPartial(mixin) => mixin.first_pass(record, ()),
|
||||
Partial(mixin) => mixin.first_pass(record, ()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass<()> for webidl::ast::NonPartialMixin {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
let entry = record
|
||||
.mixins
|
||||
.entry(self.name.clone())
|
||||
@ -155,8 +345,8 @@ impl FirstPass for webidl::ast::NonPartialMixin {
|
||||
}
|
||||
}
|
||||
|
||||
impl FirstPass for webidl::ast::PartialMixin {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>) -> Result<()> {
|
||||
impl FirstPass<()> for webidl::ast::PartialMixin {
|
||||
fn first_pass<'a>(&'a self, record: &mut FirstPassRecord<'a>, (): ()) -> Result<()> {
|
||||
let entry = record
|
||||
.mixins
|
||||
.entry(self.name.clone())
|
||||
|
Reference in New Issue
Block a user