2018-03-10 20:07:12 +11:00
|
|
|
#![recursion_limit = "256"]
|
2018-03-10 07:45:58 +11:00
|
|
|
// extern crate serde;
|
|
|
|
// #[macro_use]
|
|
|
|
// extern crate serde_derive;
|
|
|
|
extern crate heck;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate quote;
|
|
|
|
extern crate syn;
|
|
|
|
pub extern crate vkxml;
|
|
|
|
|
2018-03-10 20:47:02 +11:00
|
|
|
use quote::Tokens;
|
2018-03-10 07:45:58 +11:00
|
|
|
use heck::SnakeCase;
|
|
|
|
|
|
|
|
use syn::Ident;
|
|
|
|
|
2018-03-10 08:43:45 +11:00
|
|
|
pub trait FeatureExt {
|
|
|
|
fn version_string(&self) -> String;
|
|
|
|
}
|
|
|
|
impl FeatureExt for vkxml::Feature {
|
|
|
|
fn version_string(&self) -> String {
|
|
|
|
let version = format!("{:.10}", self.version);
|
|
|
|
let first_0 = version.find("0").expect("should have at least one 0");
|
|
|
|
// + 1 is correct here because we always have 10 zeroes.
|
|
|
|
let (version, _) = version.split_at(first_0 + 1);
|
|
|
|
version.replace(".", "_")
|
|
|
|
}
|
|
|
|
}
|
2018-03-10 07:45:58 +11:00
|
|
|
pub trait CommandExt {
|
|
|
|
/// Returns the ident in snake_case and without the 'vk' prefix.
|
|
|
|
fn is_device_command(&self) -> bool;
|
|
|
|
///
|
|
|
|
/// Returns true if the command is a device level command. This is indicated by
|
|
|
|
/// the type of the first parameter.
|
|
|
|
fn command_ident(&self) -> Ident;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CommandExt for vkxml::Command {
|
|
|
|
fn command_ident(&self) -> Ident {
|
|
|
|
Ident::from(self.name[2..].to_snake_case().as_str())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_device_command(&self) -> bool {
|
|
|
|
self.param
|
|
|
|
.iter()
|
|
|
|
.nth(0)
|
|
|
|
.map(|field| match field.basetype.as_str() {
|
|
|
|
"VkDevice" | "VkCommandBuffer" | "VkQueue" => true,
|
|
|
|
_ => false,
|
|
|
|
})
|
|
|
|
.unwrap_or(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait FieldExt {
|
|
|
|
/// Returns the name of the paramter that doesn't clash with Rusts resevered
|
|
|
|
/// keywords
|
|
|
|
fn param_ident(&self) -> Ident;
|
|
|
|
|
|
|
|
/// Returns the basetype ident and removes the 'Vk' prefix
|
2018-03-10 20:47:02 +11:00
|
|
|
fn type_tokens(&self) -> Tokens;
|
2018-03-10 07:45:58 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FieldExt for vkxml::Field {
|
|
|
|
fn param_ident(&self) -> Ident {
|
|
|
|
let name = self.name.as_ref().map(|s| s.as_str()).unwrap_or("field");
|
|
|
|
let name_corrected = match name {
|
|
|
|
"type" => "ty",
|
|
|
|
_ => name,
|
|
|
|
};
|
|
|
|
Ident::from(name_corrected.to_snake_case().as_str())
|
|
|
|
}
|
|
|
|
|
2018-03-10 20:47:02 +11:00
|
|
|
fn type_tokens(&self) -> Tokens {
|
2018-03-10 08:05:31 +11:00
|
|
|
let new_name = match self.basetype.as_str() {
|
|
|
|
"void" => "c_void",
|
|
|
|
"char" => "c_char",
|
|
|
|
"float" => "c_float",
|
|
|
|
"long" => "c_ulong",
|
|
|
|
_ => {
|
|
|
|
let prefix = &self.basetype[0..2];
|
|
|
|
if prefix == "Vk" {
|
|
|
|
&self.basetype[2..]
|
|
|
|
} else {
|
|
|
|
self.basetype.as_str()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2018-03-10 20:47:02 +11:00
|
|
|
let ptr_name = self.reference
|
|
|
|
.as_ref()
|
|
|
|
.map(|reference| match *reference {
|
|
|
|
vkxml::ReferenceType::Pointer => "*mut",
|
|
|
|
vkxml::ReferenceType::PointerToPointer => "*mut",
|
|
|
|
vkxml::ReferenceType::PointerToConstPointer => "*const",
|
|
|
|
})
|
|
|
|
.unwrap_or("");
|
|
|
|
let ty: syn::Type =
|
|
|
|
syn::parse_str(&format!("{} {}", ptr_name, new_name)).expect("parse field");
|
|
|
|
quote!{#ty}
|
2018-03-10 07:45:58 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
use std::collections::HashMap;
|
|
|
|
pub type CommandMap<'a> = HashMap<vkxml::Identifier, &'a vkxml::Command>;
|
2018-03-10 20:07:12 +11:00
|
|
|
|
|
|
|
fn generate_function_pointers(ident: Ident, commands: &[&vkxml::Command]) -> quote::Tokens {
|
|
|
|
let names: Vec<_> = commands.iter().map(|cmd| cmd.command_ident()).collect();
|
|
|
|
let names_ref = &names;
|
|
|
|
let raw_names: Vec<_> = commands
|
|
|
|
.iter()
|
|
|
|
.map(|cmd| Ident::from(cmd.name.as_str()))
|
|
|
|
.collect();
|
|
|
|
let raw_names_ref = &raw_names;
|
|
|
|
let names_left = &names;
|
|
|
|
let names_right = &names;
|
|
|
|
|
2018-03-10 20:47:02 +11:00
|
|
|
let params: Vec<Vec<(Ident, Tokens)>> = commands
|
2018-03-10 20:07:12 +11:00
|
|
|
.iter()
|
|
|
|
.map(|cmd| {
|
|
|
|
let fn_name_raw = cmd.name.as_str();
|
|
|
|
let fn_name_snake = cmd.command_ident();
|
|
|
|
let params: Vec<_> = cmd.param
|
|
|
|
.iter()
|
|
|
|
.map(|field| {
|
|
|
|
let name = field.param_ident();
|
2018-03-10 20:47:02 +11:00
|
|
|
let ty = field.type_tokens();
|
2018-03-10 20:07:12 +11:00
|
|
|
(name, ty)
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
params
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let params_names: Vec<Vec<_>> = params
|
|
|
|
.iter()
|
|
|
|
.map(|inner_params| {
|
|
|
|
inner_params
|
|
|
|
.iter()
|
|
|
|
.map(|&(param_name, _)| param_name)
|
|
|
|
.collect()
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
let param_names_ref = ¶ms_names;
|
|
|
|
let expanded_params: Vec<_> = params
|
|
|
|
.iter()
|
|
|
|
.map(|inner_params| {
|
2018-03-10 20:47:02 +11:00
|
|
|
let inner_params_iter = inner_params.iter().map(|&(ref param_name, ref param_ty)| {
|
2018-03-10 20:07:12 +11:00
|
|
|
quote!{#param_name: #param_ty}
|
|
|
|
});
|
|
|
|
quote!{
|
|
|
|
#(#inner_params_iter,)*
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
let expanded_params_ref = &expanded_params;
|
|
|
|
|
|
|
|
let params_ref = ¶ms;
|
|
|
|
let return_types: Vec<_> = commands
|
|
|
|
.iter()
|
2018-03-10 20:47:02 +11:00
|
|
|
.map(|cmd| cmd.return_type.type_tokens())
|
2018-03-10 20:07:12 +11:00
|
|
|
.collect();
|
|
|
|
let return_types_ref = &return_types;
|
|
|
|
quote!{
|
|
|
|
pub struct #ident {
|
|
|
|
#(
|
|
|
|
#names_ref: extern "system" fn(#expanded_params_ref) -> #return_types_ref,
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Send for #ident {}
|
|
|
|
unsafe impl Sync for #ident {}
|
|
|
|
|
|
|
|
impl ::std::clone::Clone for #ident {
|
|
|
|
pub fn clone(&self) -> Self {
|
|
|
|
#ident{
|
|
|
|
#(#names_left: self.#names_right,)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl #ident {
|
|
|
|
pub fn load<F>(mut f: F) -> ::std::result::Result<Self, Vec<&'static str>>
|
|
|
|
where F: FnMut(&::std::ffi::CStr) -> *const c_void
|
|
|
|
{
|
|
|
|
use std::ffi::CString;
|
|
|
|
use std::mem;
|
|
|
|
let mut err_str = Vec::new();
|
|
|
|
let s = #ident {
|
|
|
|
#(
|
|
|
|
#names_ref: unsafe {
|
|
|
|
let raw_name = stringify!(#raw_names_ref);
|
|
|
|
let cname = CString::new(raw_name).unwrap();
|
|
|
|
let val = f(&cname);
|
|
|
|
if val.is_null(){
|
|
|
|
err_str.push(raw_name);
|
|
|
|
}
|
|
|
|
mem::transmute(val)
|
|
|
|
},
|
|
|
|
)*
|
|
|
|
};
|
|
|
|
|
|
|
|
if err_str.is_empty() {
|
|
|
|
Ok(s)
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
Err(err_str)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#(
|
|
|
|
pub fn #names_ref(#expanded_params_ref) -> #return_types_ref {
|
|
|
|
(self.#names_left)(#(#param_names_ref,)*)
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pub fn generate_core_spec(feature: &vkxml::Feature, commands: &CommandMap) -> quote::Tokens {
|
2018-03-10 07:45:58 +11:00
|
|
|
let (device_commands, instance_commands) = feature
|
|
|
|
.elements
|
|
|
|
.iter()
|
|
|
|
.flat_map(|feature| {
|
|
|
|
if let &vkxml::FeatureElement::Require(ref spec) = feature {
|
|
|
|
spec.elements
|
|
|
|
.iter()
|
|
|
|
.filter_map(|feature_spec| {
|
|
|
|
if let &vkxml::FeatureReference::CommandReference(ref cmd_ref) =
|
|
|
|
feature_spec
|
|
|
|
{
|
|
|
|
Some(cmd_ref)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.filter_map(|cmd_ref| commands.get(&cmd_ref.name))
|
|
|
|
.fold((Vec::new(), Vec::new()), |mut acc, &cmd_ref| {
|
2018-03-10 08:43:45 +11:00
|
|
|
if cmd_ref.is_device_command() {
|
|
|
|
acc.0.push(cmd_ref);
|
|
|
|
} else {
|
|
|
|
acc.1.push(cmd_ref);
|
2018-03-10 07:45:58 +11:00
|
|
|
};
|
|
|
|
acc
|
|
|
|
});
|
|
|
|
let name = Ident::from("Test");
|
2018-03-10 08:43:45 +11:00
|
|
|
let version = feature.version_string();
|
|
|
|
let instance = generate_function_pointers(
|
|
|
|
Ident::from(format!("InstanceFnV{}", version).as_str()),
|
|
|
|
&instance_commands,
|
|
|
|
);
|
|
|
|
let device = generate_function_pointers(
|
|
|
|
Ident::from(format!("DeviceFnV{}", version).as_str()),
|
2018-03-10 20:07:12 +11:00
|
|
|
&device_commands,
|
2018-03-10 08:43:45 +11:00
|
|
|
);
|
|
|
|
quote! {
|
|
|
|
#instance
|
|
|
|
#device
|
|
|
|
}
|
2018-03-10 07:45:58 +11:00
|
|
|
}
|