use log::info;
use super::{function_parameters::TransformationType, imports::Imports, *};
use crate::{codegen::Visibility, config::gobjects::GObject, env::Env, nameutil::*, traits::*};
#[derive(Debug, Default)]
pub struct Info {
pub full_name: String,
pub type_id: library::TypeId,
pub name: String,
pub functions: Vec<functions::Info>,
pub specials: special_functions::Infos,
pub visibility: Visibility,
}
impl Info {
pub fn type_<'a>(&self, library: &'a library::Library) -> &'a library::Bitfield {
let type_ = library
.type_(self.type_id)
.maybe_ref()
.unwrap_or_else(|| panic!("{} is not an flags.", self.full_name));
type_
}
}
pub fn new(env: &Env, obj: &GObject, imports: &mut Imports) -> Option<Info> {
info!("Analyzing flags {}", obj.name);
if obj.status.ignored() {
return None;
}
let flags_tid = env.library.find_type(0, &obj.name)?;
let type_ = env.type_(flags_tid);
let flags: &library::Bitfield = type_.maybe_ref()?;
let name = split_namespace_name(&obj.name).1;
if obj.status.need_generate() {
imports.add_defined(&format!("crate::{name}"));
imports.add("crate::ffi");
let imports = &mut imports.with_defaults(flags.version, &None);
imports.add("glib::translate::*");
imports.add("glib::bitflags::bitflags");
let has_get_type = flags.glib_get_type.is_some();
if has_get_type {
imports.add("glib::prelude::*");
}
}
let mut functions = functions::analyze(
env,
&flags.functions,
Some(flags_tid),
false,
false,
obj,
imports,
None,
None,
);
for f in &mut functions {
if f.parameters.c_parameters.is_empty() {
continue;
}
let first_param = &mut f.parameters.c_parameters[0];
if first_param.typ == flags_tid {
first_param.instance_parameter = true;
let t = f
.parameters
.transformations
.iter_mut()
.find(|t| t.ind_c == 0)
.unwrap();
if let TransformationType::ToGlibScalar { name, .. } = &mut t.transformation_type {
*name = "self".to_owned();
} else {
panic!(
"Bitfield function instance param must be passed as scalar, not {:?}",
t.transformation_type
);
}
}
}
let specials = special_functions::extract(&mut functions, type_, obj);
if obj.status.need_generate() {
special_functions::analyze_imports(&specials, imports);
}
let info = Info {
full_name: obj.name.clone(),
type_id: flags_tid,
name: name.to_owned(),
functions,
specials,
visibility: obj.visibility,
};
Some(info)
}