use synapse_parser::ast::{
ArraySuffix, BaseType, ConstDecl, EnumDef, FieldDef, Item, MessageDef, PrimitiveType,
StructDef, SynFile, TypeExpr,
};
use crate::{
constants::{ConstContext, const_context},
error::CodegenError,
types::{PREAMBLE, ResolvedConstants},
util::{
emit_doc_lines, emit_indented_doc_lines, find_cc_attr, find_mid_attr, import_c_header,
literal_cc_str, literal_mid_str, packet_is_command, packet_item, to_screaming_snake,
typed_literal_str,
},
validate::validate_supported,
};
pub fn generate_c(file: &SynFile) -> String {
try_generate_c(file).expect("parsed Synapse file is not supported by cFS C codegen")
}
pub fn try_generate_c(file: &SynFile) -> Result<String, CodegenError> {
try_generate_c_with_constants(file, &ResolvedConstants::new())
}
pub fn try_generate_c_with_constants(
file: &SynFile,
imported_constants: &ResolvedConstants,
) -> Result<String, CodegenError> {
let constants = const_context(file, imported_constants);
validate_supported(file, &constants)?;
let mut out = String::from(PREAMBLE);
emit_c_imports(file, &mut out);
emit_items(file, &mut out, &constants);
Ok(out)
}
fn emit_c_imports(file: &SynFile, out: &mut String) {
let mut emitted = false;
for item in &file.items {
if let Item::Import(import) = item {
out.push_str(&format!("#include \"{}\"\n", import_c_header(&import.path)));
emitted = true;
}
}
if emitted {
out.push('\n');
}
}
fn emit_items(file: &SynFile, out: &mut String, constants: &ConstContext<'_>) {
let mut has_mids = false;
for item in &file.items {
if let Some(m) = packet_item(item) {
if let Some(mid) = find_mid_attr(&m.attrs) {
if !has_mids {
out.push_str("/* Message IDs */\n");
has_mids = true;
}
let define_name = to_screaming_snake(&m.name);
let mid_str = literal_mid_str(mid, constants);
out.push_str(&format!("#define {}_MID {}\n", define_name, mid_str));
}
}
}
if has_mids {
out.push('\n');
}
let mut has_ccs = false;
for item in &file.items {
if let Item::Command(m) = item {
if let Some(cc) = find_cc_attr(&m.attrs) {
if !has_ccs {
out.push_str("/* Command Codes */\n");
has_ccs = true;
}
let define_name = to_screaming_snake(&m.name);
let cc_str = literal_cc_str(cc, constants);
out.push_str(&format!("#define {}_CC {}\n", define_name, cc_str));
}
}
}
if has_ccs {
out.push('\n');
}
let mut namespace = Vec::new();
for item in &file.items {
match item {
Item::Namespace(ns) => namespace = ns.name.clone(),
Item::Enum(e) => emit_enum(out, e, &namespace),
Item::Import(_)
| Item::Const(_)
| Item::Struct(_)
| Item::Table(_)
| Item::Command(_)
| Item::Telemetry(_)
| Item::Message(_) => {}
}
}
let mut namespace = Vec::new();
for item in &file.items {
match item {
Item::Namespace(ns) => namespace = ns.name.clone(),
Item::Import(_) | Item::Enum(_) => {}
Item::Const(c) => emit_const(out, c),
Item::Struct(s) | Item::Table(s) => emit_struct(out, s, &namespace),
Item::Command(m) | Item::Telemetry(m) | Item::Message(m) => {
emit_message(out, m, &namespace)
}
}
}
}
fn emit_const(out: &mut String, c: &ConstDecl) {
emit_doc_lines(out, &c.doc);
let val = typed_literal_str(&c.value, &c.ty);
out.push_str(&format!("#define {} {}\n\n", c.name, val));
}
fn emit_enum(out: &mut String, e: &EnumDef, namespace: &[String]) {
let Some(repr) = e.repr else {
return;
};
let type_name = c_decl_type_name(&e.name, namespace);
emit_doc_lines(out, &e.doc);
out.push_str(&format!("typedef {} {};\n", primitive_str(repr), type_name));
let enum_prefix = c_enum_variant_prefix(&e.name, namespace);
for variant in &e.variants {
emit_doc_lines(out, &variant.doc);
let value = variant
.value
.expect("represented enum variants validated before emission");
out.push_str(&format!(
"#define {}_{} (({}){})\n",
enum_prefix,
to_screaming_snake(&variant.name),
type_name,
value
));
}
out.push('\n');
}
fn emit_struct(out: &mut String, s: &StructDef, namespace: &[String]) {
emit_doc_lines(out, &s.doc);
out.push_str("typedef struct {\n");
for f in &s.fields {
emit_c_field(out, f, namespace);
}
out.push_str(&format!("}} {};\n\n", c_decl_type_name(&s.name, namespace)));
}
fn emit_message(out: &mut String, m: &MessageDef, namespace: &[String]) {
let header_type = if packet_is_command(m) {
"CFE_MSG_CommandHeader_t"
} else {
"CFE_MSG_TelemetryHeader_t"
};
emit_doc_lines(out, &m.doc);
out.push_str("typedef struct {\n");
out.push_str(&format!(" {} Header;\n", header_type));
for f in &m.fields {
emit_c_field(out, f, namespace);
}
out.push_str(&format!("}} {};\n\n", c_decl_type_name(&m.name, namespace)));
}
fn non_fixed_type_str(ty: &TypeExpr, namespace: &[String]) -> String {
if ty.base == BaseType::String {
return match &ty.array {
None | Some(ArraySuffix::Dynamic) => "const char*".to_string(),
Some(ArraySuffix::Fixed(_)) => unreachable!("handled by emit_c_field"),
Some(ArraySuffix::Bounded(n)) => format!("char[{}]", n),
};
}
let base = base_type_str(&ty.base, namespace);
match &ty.array {
None => base,
Some(ArraySuffix::Fixed(_)) => unreachable!("handled by caller"),
Some(ArraySuffix::Dynamic) => format!("CFE_Span_t /* {} */", base),
Some(ArraySuffix::Bounded(n)) => format!("CFE_Span_t /* {} max {} */", base, n),
}
}
fn base_type_str(base: &BaseType, namespace: &[String]) -> String {
match base {
BaseType::String => "const char*".to_string(),
BaseType::Primitive(p) => primitive_str(*p).to_string(),
BaseType::Ref(segments) => c_ref_type_name(segments, namespace),
}
}
fn emit_c_field(out: &mut String, f: &FieldDef, namespace: &[String]) {
emit_indented_doc_lines(out, &f.doc);
match (&f.ty.base, &f.ty.array) {
(BaseType::String, Some(ArraySuffix::Fixed(n) | ArraySuffix::Bounded(n))) => {
out.push_str(&format!(" char {}[{}];\n", f.name, n));
}
(_, Some(ArraySuffix::Fixed(n))) => {
out.push_str(&format!(
" {} {}[{}];\n",
base_type_str(&f.ty.base, namespace),
f.name,
n
));
}
_ => {
out.push_str(&format!(
" {} {};\n",
non_fixed_type_str(&f.ty, namespace),
f.name
));
}
}
}
fn c_decl_type_name(name: &str, namespace: &[String]) -> String {
let mut segments = namespace.to_vec();
segments.push(name.to_string());
format!("{}_t", segments.join("_"))
}
pub(crate) fn c_enum_variant_prefix(name: &str, namespace: &[String]) -> String {
let mut segments = namespace.to_vec();
segments.push(name.to_string());
segments
.iter()
.map(|segment| to_screaming_snake(segment))
.collect::<Vec<_>>()
.join("_")
}
fn c_ref_type_name(segments: &[String], namespace: &[String]) -> String {
let resolved = if segments.len() == 1 && !namespace.is_empty() {
let mut resolved = namespace.to_vec();
resolved.push(segments[0].clone());
resolved
} else {
segments.to_vec()
};
if resolved.is_empty() {
return "_t".to_string();
}
format!("{}_t", resolved.join("_"))
}
fn primitive_str(p: PrimitiveType) -> &'static str {
match p {
PrimitiveType::F32 => "float",
PrimitiveType::F64 => "double",
PrimitiveType::I8 => "int8_t",
PrimitiveType::I16 => "int16_t",
PrimitiveType::I32 => "int32_t",
PrimitiveType::I64 => "int64_t",
PrimitiveType::U8 => "uint8_t",
PrimitiveType::U16 => "uint16_t",
PrimitiveType::U32 => "uint32_t",
PrimitiveType::U64 => "uint64_t",
PrimitiveType::Bool => "bool",
PrimitiveType::Bytes => "uint8_t*",
}
}