use crate::bindgen::config::Config;
use crate::bindgen::declarationtyperesolver::DeclarationTypeResolver;
use crate::bindgen::dependencies::Dependencies;
use crate::bindgen::ir::{
AnnotationSet, Cfg, Documentation, GenericArgument, GenericParams, Item, ItemContainer, Path,
};
use crate::bindgen::library::Library;
use crate::bindgen::mangle;
use crate::bindgen::monomorph::Monomorphs;
#[derive(Debug, Clone)]
pub struct OpaqueItem {
pub path: Path,
pub export_name: String,
pub generic_params: GenericParams,
pub cfg: Option<Cfg>,
pub annotations: AnnotationSet,
pub documentation: Documentation,
}
impl OpaqueItem {
pub fn load(
path: Path,
generics: &syn::Generics,
attrs: &[syn::Attribute],
mod_cfg: Option<&Cfg>,
) -> Result<OpaqueItem, String> {
Ok(Self::new(
path,
GenericParams::load(generics)?,
Cfg::append(mod_cfg, Cfg::load(attrs)),
AnnotationSet::load(attrs).unwrap_or_else(|_| AnnotationSet::new()),
Documentation::load(attrs),
))
}
pub fn new(
path: Path,
generic_params: GenericParams,
cfg: Option<Cfg>,
annotations: AnnotationSet,
documentation: Documentation,
) -> OpaqueItem {
let export_name = path.name().to_owned();
Self {
path,
export_name,
generic_params,
cfg,
annotations,
documentation,
}
}
}
impl Item for OpaqueItem {
fn path(&self) -> &Path {
&self.path
}
fn export_name(&self) -> &str {
&self.export_name
}
fn cfg(&self) -> Option<&Cfg> {
self.cfg.as_ref()
}
fn annotations(&self) -> &AnnotationSet {
&self.annotations
}
fn annotations_mut(&mut self) -> &mut AnnotationSet {
&mut self.annotations
}
fn documentation(&self) -> &Documentation {
&self.documentation
}
fn container(&self) -> ItemContainer {
ItemContainer::OpaqueItem(self.clone())
}
fn collect_declaration_types(&self, resolver: &mut DeclarationTypeResolver) {
resolver.add_struct(&self.path);
}
fn generic_params(&self) -> &GenericParams {
&self.generic_params
}
fn rename_for_config(&mut self, config: &Config) {
config.export.rename(&mut self.export_name);
}
fn add_dependencies(&self, _: &Library, _: &mut Dependencies) {}
fn instantiate_monomorph(
&self,
generic_values: &[GenericArgument],
library: &Library,
out: &mut Monomorphs,
) {
assert!(self.is_generic(), "{} is not generic", self.path);
assert!(
self.generic_params.len() >= generic_values.len(),
"{} has {} params but is being instantiated with {} values",
self.path,
self.generic_params.len(),
generic_values.len(),
);
let mangled_path = mangle::mangle_path(
&self.path,
generic_values,
&library.get_config().export.mangle,
);
let monomorph = OpaqueItem::new(
mangled_path,
GenericParams::default(),
self.cfg.clone(),
self.annotations.clone(),
self.documentation.clone(),
);
out.insert_opaque(self, monomorph, generic_values.to_owned());
}
}