use proc_macro2::TokenStream;
use pyo3::{Bound, FromPyObject, PyAny, PyResult, prelude::PyAnyMethods};
use quote::quote;
use serde::{Deserialize, Serialize};
use crate::{
CodeGen, CodeGenContext, ExprType, Node, PythonOptions, Statement, SymbolTableScopes,
extract_list,
};
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
pub struct AsyncWith {
pub items: Vec<WithItem>,
pub body: Vec<Statement>,
pub lineno: Option<usize>,
pub col_offset: Option<usize>,
pub end_lineno: Option<usize>,
pub end_col_offset: Option<usize>,
}
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
pub struct WithItem {
pub context_expr: ExprType,
pub optional_vars: Option<ExprType>,
}
impl<'a> FromPyObject<'a> for AsyncWith {
fn extract_bound(ob: &Bound<'a, PyAny>) -> PyResult<Self> {
let items: Vec<WithItem> = extract_list(ob, "items", "async with items")?;
let body: Vec<Statement> = extract_list(ob, "body", "async with body")?;
Ok(AsyncWith {
items,
body,
lineno: ob.lineno(),
col_offset: ob.col_offset(),
end_lineno: ob.end_lineno(),
end_col_offset: ob.end_col_offset(),
})
}
}
impl<'a> FromPyObject<'a> for WithItem {
fn extract_bound(ob: &Bound<'a, PyAny>) -> PyResult<Self> {
let context_expr: ExprType = ob.getattr("context_expr")?.extract()?;
let optional_vars: Option<ExprType> = if let Ok(vars_attr) = ob.getattr("optional_vars") {
if vars_attr.is_none() {
None
} else {
Some(vars_attr.extract()?)
}
} else {
None
};
Ok(WithItem {
context_expr,
optional_vars,
})
}
}
impl Node for AsyncWith {
fn lineno(&self) -> Option<usize> { self.lineno }
fn col_offset(&self) -> Option<usize> { self.col_offset }
fn end_lineno(&self) -> Option<usize> { self.end_lineno }
fn end_col_offset(&self) -> Option<usize> { self.end_col_offset }
}
impl CodeGen for AsyncWith {
type Context = CodeGenContext;
type Options = PythonOptions;
type SymbolTable = SymbolTableScopes;
fn find_symbols(self, symbols: Self::SymbolTable) -> Self::SymbolTable {
let symbols = self.items.into_iter().fold(symbols, |acc, item| {
let acc = item.context_expr.find_symbols(acc);
if let Some(vars) = item.optional_vars {
vars.find_symbols(acc)
} else {
acc
}
});
self.body.into_iter().fold(symbols, |acc, stmt| stmt.find_symbols(acc))
}
fn to_rust(
self,
ctx: Self::Context,
options: Self::Options,
symbols: Self::SymbolTable,
) -> Result<TokenStream, Box<dyn std::error::Error>> {
let body_tokens: Result<Vec<TokenStream>, Box<dyn std::error::Error>> = self.body.into_iter()
.map(|stmt| stmt.to_rust(ctx.clone(), options.clone(), symbols.clone()))
.collect();
let body_tokens = body_tokens?;
Ok(quote! {
{
#(#body_tokens)*
}
})
}
}
#[cfg(test)]
mod tests {
}