use once_cell::sync::Lazy;
use std::borrow::Borrow;
use std::cell::RefCell;
use std::collections::{BTreeSet, HashMap, HashSet};
use std::fmt::Debug;
use anyhow::{Context, Result};
use askama::Template;
use heck::{ToLowerCamelCase, ToUpperCamelCase};
use serde::{Deserialize, Serialize};
use super::Bindings;
use crate::backend::TemplateExpression;
use crate::interface::*;
use crate::BindingsConfig;
mod callback_interface;
mod compounds;
mod custom;
mod enum_;
mod executor;
mod external;
mod miscellany;
mod object;
mod primitives;
mod record;
trait CodeType: Debug {
fn type_label(&self) -> String;
fn canonical_name(&self) -> String {
self.type_label()
}
fn literal(&self, _literal: &Literal) -> String {
unimplemented!("Unimplemented for {}", self.type_label())
}
fn ffi_converter_name(&self) -> String {
format!("FfiConverter{}", self.canonical_name())
}
fn lower(&self) -> String {
format!("{}.lower", self.ffi_converter_name())
}
fn write(&self) -> String {
format!("{}.write", self.ffi_converter_name())
}
fn lift(&self) -> String {
format!("{}.lift", self.ffi_converter_name())
}
fn read(&self) -> String {
format!("{}.read", self.ffi_converter_name())
}
fn imports(&self) -> Option<Vec<String>> {
None
}
fn initialization_fn(&self) -> Option<String> {
None
}
}
static KEYWORDS: Lazy<HashSet<String>> = Lazy::new(|| {
[
"associatedtype",
"class",
"deinit",
"enum",
"extension",
"fileprivate",
"func",
"import",
"init",
"inout",
"internal",
"let",
"open",
"operator",
"private",
"precedencegroup",
"protocol",
"public",
"rethrows",
"static",
"struct",
"subscript",
"typealias",
"var",
"break",
"case",
"catch",
"continue",
"default",
"defer",
"do",
"else",
"fallthrough",
"for",
"guard",
"if",
"in",
"repeat",
"return",
"throw",
"switch",
"where",
"while",
"Any",
"as",
"await",
"catch",
"false",
"is",
"nil",
"rethrows",
"self",
"Self",
"super",
"throw",
"throws",
"true",
"try",
]
.iter()
.map(ToString::to_string)
.collect::<HashSet<_>>()
});
pub fn quote_general_keyword(nm: String) -> String {
if KEYWORDS.contains(&nm) {
format!("`{nm}`")
} else {
nm
}
}
static ARG_KEYWORDS: Lazy<HashSet<String>> = Lazy::new(|| {
["inout", "var", "let"]
.iter()
.map(ToString::to_string)
.collect::<HashSet<_>>()
});
pub fn quote_arg_keyword(nm: String) -> String {
if ARG_KEYWORDS.contains(&nm) {
format!("`{nm}`")
} else {
nm
}
}
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct Config {
cdylib_name: Option<String>,
module_name: Option<String>,
ffi_module_name: Option<String>,
ffi_module_filename: Option<String>,
generate_module_map: Option<bool>,
omit_argument_labels: Option<bool>,
#[serde(default)]
custom_types: HashMap<String, CustomTypeConfig>,
}
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
pub struct CustomTypeConfig {
imports: Option<Vec<String>>,
type_name: Option<String>,
into_custom: TemplateExpression,
from_custom: TemplateExpression,
}
impl Config {
pub fn module_name(&self) -> String {
match self.module_name.as_ref() {
Some(name) => name.clone(),
None => "uniffi".into(),
}
}
pub fn ffi_module_name(&self) -> String {
match self.ffi_module_name.as_ref() {
Some(name) => name.clone(),
None => format!("{}FFI", self.module_name()),
}
}
pub fn ffi_module_filename(&self) -> String {
match self.ffi_module_filename.as_ref() {
Some(name) => name.clone(),
None => self.ffi_module_name(),
}
}
pub fn modulemap_filename(&self) -> String {
format!("{}.modulemap", self.ffi_module_filename())
}
pub fn header_filename(&self) -> String {
format!("{}.h", self.ffi_module_filename())
}
pub fn cdylib_name(&self) -> String {
if let Some(cdylib_name) = &self.cdylib_name {
cdylib_name.clone()
} else {
"uniffi".into()
}
}
pub fn generate_module_map(&self) -> bool {
self.generate_module_map.unwrap_or(true)
}
pub fn omit_argument_labels(&self) -> bool {
self.omit_argument_labels.unwrap_or(false)
}
}
impl BindingsConfig for Config {
fn update_from_ci(&mut self, ci: &ComponentInterface) {
self.module_name
.get_or_insert_with(|| ci.namespace().into());
self.cdylib_name
.get_or_insert_with(|| format!("uniffi_{}", ci.namespace()));
}
fn update_from_cdylib_name(&mut self, cdylib_name: &str) {
self.cdylib_name
.get_or_insert_with(|| cdylib_name.to_string());
}
fn update_from_dependency_configs(&mut self, _config_map: HashMap<&str, &Self>) {}
}
pub fn generate_bindings(config: &Config, ci: &ComponentInterface) -> Result<Bindings> {
let header = BridgingHeader::new(config, ci)
.render()
.context("failed to render Swift bridging header")?;
let library = SwiftWrapper::new(config.clone(), ci)
.render()
.context("failed to render Swift library")?;
let modulemap = if config.generate_module_map() {
Some(
ModuleMap::new(config, ci)
.render()
.context("failed to render Swift modulemap")?,
)
} else {
None
};
Ok(Bindings {
library,
header,
modulemap,
})
}
#[derive(Template)]
#[template(syntax = "swift", escape = "none", path = "Types.swift")]
pub struct TypeRenderer<'a> {
config: &'a Config,
ci: &'a ComponentInterface,
include_once_names: RefCell<HashSet<String>>,
imports: RefCell<BTreeSet<String>>,
}
impl<'a> TypeRenderer<'a> {
fn new(config: &'a Config, ci: &'a ComponentInterface) -> Self {
Self {
config,
ci,
include_once_names: RefCell::new(HashSet::new()),
imports: RefCell::new(BTreeSet::new()),
}
}
fn include_once_check(&self, name: &str) -> bool {
self.include_once_names
.borrow_mut()
.insert(name.to_string())
}
fn add_import(&self, name: &str) -> &str {
self.imports.borrow_mut().insert(name.to_owned());
""
}
}
#[derive(Template)]
#[template(syntax = "c", escape = "none", path = "BridgingHeaderTemplate.h")]
pub struct BridgingHeader<'config, 'ci> {
_config: &'config Config,
ci: &'ci ComponentInterface,
}
impl<'config, 'ci> BridgingHeader<'config, 'ci> {
pub fn new(config: &'config Config, ci: &'ci ComponentInterface) -> Self {
Self {
_config: config,
ci,
}
}
}
#[derive(Template)]
#[template(syntax = "c", escape = "none", path = "ModuleMapTemplate.modulemap")]
pub struct ModuleMap<'config, 'ci> {
config: &'config Config,
_ci: &'ci ComponentInterface,
}
impl<'config, 'ci> ModuleMap<'config, 'ci> {
pub fn new(config: &'config Config, _ci: &'ci ComponentInterface) -> Self {
Self { config, _ci }
}
}
#[derive(Template)]
#[template(syntax = "swift", escape = "none", path = "wrapper.swift")]
pub struct SwiftWrapper<'a> {
config: Config,
ci: &'a ComponentInterface,
type_helper_code: String,
type_imports: BTreeSet<String>,
has_async_fns: bool,
}
impl<'a> SwiftWrapper<'a> {
pub fn new(config: Config, ci: &'a ComponentInterface) -> Self {
let type_renderer = TypeRenderer::new(&config, ci);
let type_helper_code = type_renderer.render().unwrap();
let type_imports = type_renderer.imports.into_inner();
Self {
config,
ci,
type_helper_code,
type_imports,
has_async_fns: ci.has_async_fns(),
}
}
pub fn imports(&self) -> Vec<String> {
self.type_imports.iter().cloned().collect()
}
pub fn initialization_fns(&self) -> Vec<String> {
self.ci
.iter_types()
.map(|t| SwiftCodeOracle.find(t))
.filter_map(|ct| ct.initialization_fn())
.chain(
self.has_async_fns
.then(|| "uniffiInitContinuationCallback".into()),
)
.collect()
}
}
#[derive(Clone)]
pub struct SwiftCodeOracle;
impl SwiftCodeOracle {
fn create_code_type(&self, type_: Type) -> Box<dyn CodeType> {
match type_ {
Type::UInt8 => Box::new(primitives::UInt8CodeType),
Type::Int8 => Box::new(primitives::Int8CodeType),
Type::UInt16 => Box::new(primitives::UInt16CodeType),
Type::Int16 => Box::new(primitives::Int16CodeType),
Type::UInt32 => Box::new(primitives::UInt32CodeType),
Type::Int32 => Box::new(primitives::Int32CodeType),
Type::UInt64 => Box::new(primitives::UInt64CodeType),
Type::Int64 => Box::new(primitives::Int64CodeType),
Type::Float32 => Box::new(primitives::Float32CodeType),
Type::Float64 => Box::new(primitives::Float64CodeType),
Type::Boolean => Box::new(primitives::BooleanCodeType),
Type::String => Box::new(primitives::StringCodeType),
Type::Bytes => Box::new(primitives::BytesCodeType),
Type::Timestamp => Box::new(miscellany::TimestampCodeType),
Type::Duration => Box::new(miscellany::DurationCodeType),
Type::Enum { name, .. } => Box::new(enum_::EnumCodeType::new(name)),
Type::Object { name, .. } => Box::new(object::ObjectCodeType::new(name)),
Type::Record { name, .. } => Box::new(record::RecordCodeType::new(name)),
Type::CallbackInterface { name, .. } => {
Box::new(callback_interface::CallbackInterfaceCodeType::new(name))
}
Type::ForeignExecutor => Box::new(executor::ForeignExecutorCodeType),
Type::Optional { inner_type } => {
Box::new(compounds::OptionalCodeType::new(*inner_type))
}
Type::Sequence { inner_type } => {
Box::new(compounds::SequenceCodeType::new(*inner_type))
}
Type::Map {
key_type,
value_type,
} => Box::new(compounds::MapCodeType::new(*key_type, *value_type)),
Type::External { name, .. } => Box::new(external::ExternalCodeType::new(name)),
Type::Custom { name, .. } => Box::new(custom::CustomCodeType::new(name)),
}
}
fn find(&self, type_: &Type) -> Box<dyn CodeType> {
self.create_code_type(type_.clone())
}
fn class_name(&self, nm: &str) -> String {
nm.to_string().to_upper_camel_case()
}
fn fn_name(&self, nm: &str) -> String {
nm.to_string().to_lower_camel_case()
}
fn var_name(&self, nm: &str) -> String {
nm.to_string().to_lower_camel_case()
}
fn enum_variant_name(&self, nm: &str) -> String {
nm.to_string().to_lower_camel_case()
}
fn ffi_type_label_raw(&self, ffi_type: &FfiType) -> String {
match ffi_type {
FfiType::Int8 => "Int8".into(),
FfiType::UInt8 => "UInt8".into(),
FfiType::Int16 => "Int16".into(),
FfiType::UInt16 => "UInt16".into(),
FfiType::Int32 => "Int32".into(),
FfiType::UInt32 => "UInt32".into(),
FfiType::Int64 => "Int64".into(),
FfiType::UInt64 => "UInt64".into(),
FfiType::Float32 => "Float".into(),
FfiType::Float64 => "Double".into(),
FfiType::RustArcPtr(_) => "UnsafeMutableRawPointer".into(),
FfiType::RustBuffer(_) => "RustBuffer".into(),
FfiType::ForeignBytes => "ForeignBytes".into(),
FfiType::ForeignCallback => "ForeignCallback".into(),
FfiType::ForeignExecutorHandle => "Int".into(),
FfiType::ForeignExecutorCallback => "ForeignExecutorCallback".into(),
FfiType::RustFutureContinuationCallback => "UniFfiRustFutureContinuation".into(),
FfiType::RustFutureHandle | FfiType::RustFutureContinuationData => {
"UnsafeMutableRawPointer".into()
}
}
}
fn ffi_type_label(&self, ffi_type: &FfiType) -> String {
match ffi_type {
FfiType::ForeignCallback
| FfiType::ForeignExecutorCallback
| FfiType::RustFutureHandle
| FfiType::RustFutureContinuationCallback
| FfiType::RustFutureContinuationData => {
format!("{} _Nonnull", self.ffi_type_label_raw(ffi_type))
}
_ => self.ffi_type_label_raw(ffi_type),
}
}
fn ffi_canonical_name(&self, ffi_type: &FfiType) -> String {
self.ffi_type_label_raw(ffi_type)
}
}
pub mod filters {
use super::*;
pub use crate::backend::filters::*;
fn oracle() -> &'static SwiftCodeOracle {
&SwiftCodeOracle
}
pub fn type_name(as_type: &impl AsType) -> Result<String, askama::Error> {
Ok(oracle().find(&as_type.as_type()).type_label())
}
pub fn canonical_name(as_type: &impl AsType) -> Result<String, askama::Error> {
Ok(oracle().find(&as_type.as_type()).canonical_name())
}
pub fn ffi_converter_name(as_type: &impl AsType) -> Result<String, askama::Error> {
Ok(oracle().find(&as_type.as_type()).ffi_converter_name())
}
pub fn lower_fn(as_type: &impl AsType) -> Result<String, askama::Error> {
Ok(oracle().find(&as_type.as_type()).lower())
}
pub fn write_fn(as_type: &impl AsType) -> Result<String, askama::Error> {
Ok(oracle().find(&as_type.as_type()).write())
}
pub fn lift_fn(as_type: &impl AsType) -> Result<String, askama::Error> {
Ok(oracle().find(&as_type.as_type()).lift())
}
pub fn read_fn(as_type: &impl AsType) -> Result<String, askama::Error> {
Ok(oracle().find(&as_type.as_type()).read())
}
pub fn literal_swift(
literal: &Literal,
as_type: &impl AsType,
) -> Result<String, askama::Error> {
Ok(oracle().find(&as_type.as_type()).literal(literal))
}
pub fn ffi_type_name(ffi_type: &FfiType) -> Result<String, askama::Error> {
Ok(oracle().ffi_type_label(ffi_type))
}
pub fn ffi_canonical_name(ffi_type: &FfiType) -> Result<String, askama::Error> {
Ok(oracle().ffi_canonical_name(ffi_type))
}
pub fn header_ffi_type_name(ffi_type: &FfiType) -> Result<String, askama::Error> {
Ok(match ffi_type {
FfiType::Int8 => "int8_t".into(),
FfiType::UInt8 => "uint8_t".into(),
FfiType::Int16 => "int16_t".into(),
FfiType::UInt16 => "uint16_t".into(),
FfiType::Int32 => "int32_t".into(),
FfiType::UInt32 => "uint32_t".into(),
FfiType::Int64 => "int64_t".into(),
FfiType::UInt64 => "uint64_t".into(),
FfiType::Float32 => "float".into(),
FfiType::Float64 => "double".into(),
FfiType::RustArcPtr(_) => "void*_Nonnull".into(),
FfiType::RustBuffer(_) => "RustBuffer".into(),
FfiType::ForeignBytes => "ForeignBytes".into(),
FfiType::ForeignCallback => "ForeignCallback _Nonnull".into(),
FfiType::ForeignExecutorCallback => "UniFfiForeignExecutorCallback _Nonnull".into(),
FfiType::ForeignExecutorHandle => "size_t".into(),
FfiType::RustFutureContinuationCallback => {
"UniFfiRustFutureContinuation _Nonnull".into()
}
FfiType::RustFutureHandle | FfiType::RustFutureContinuationData => {
"void* _Nonnull".into()
}
})
}
pub fn class_name(nm: &str) -> Result<String, askama::Error> {
Ok(oracle().class_name(nm))
}
pub fn fn_name(nm: &str) -> Result<String, askama::Error> {
Ok(quote_general_keyword(oracle().fn_name(nm)))
}
pub fn var_name(nm: &str) -> Result<String, askama::Error> {
Ok(quote_general_keyword(oracle().var_name(nm)))
}
pub fn arg_name(nm: &str) -> Result<String, askama::Error> {
Ok(quote_arg_keyword(oracle().var_name(nm)))
}
pub fn enum_variant_swift_quoted(nm: &str) -> Result<String, askama::Error> {
Ok(quote_general_keyword(oracle().enum_variant_name(nm)))
}
pub fn enum_variant_swift(nm: &str) -> Result<String, askama::Error> {
Ok(oracle().enum_variant_name(nm))
}
pub fn error_handler(result: &ResultType) -> Result<String, askama::Error> {
Ok(match &result.throws_type {
Some(t) => format!("{}.lift", ffi_converter_name(t)?),
None => "nil".into(),
})
}
pub fn future_callback(result: &ResultType) -> Result<String, askama::Error> {
Ok(format!(
"uniffiFutureCallbackHandler{}{}",
match &result.return_type {
Some(t) => SwiftCodeOracle.find(t).canonical_name(),
None => "Void".into(),
},
match &result.throws_type {
Some(t) => SwiftCodeOracle.find(t).canonical_name(),
None => "".into(),
}
))
}
}