Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Display proxy structs #47

Merged
merged 5 commits into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/dev_aid/lsp/hover_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl<'l> HoverCollector<'l> {
if wire.original_instruction != id {
continue;
}
let typ_str = wire.typ.to_string(&self.linker.types);
let typ_str = wire.typ.display(&self.linker.types);
let name_str = &wire.name;
let latency_str = if wire.absolute_latency != CALCULATE_LATENCY_LATER {
format!("{}", wire.absolute_latency)
Expand Down Expand Up @@ -126,7 +126,7 @@ pub fn hover(info: LocationInfo, linker: &Linker, file_data: &FileData) -> Vec<M
let typ_str = decl
.typ
.typ
.to_string(&linker.types, &md.link_info.template_arguments);
.display(&linker.types, &md.link_info.template_arguments).to_string();
details_vec.push(&typ_str);

details_vec.push(&decl.name);
Expand Down Expand Up @@ -180,14 +180,14 @@ pub fn hover(info: LocationInfo, linker: &Linker, file_data: &FileData) -> Vec<M
details_vec.push(Cow::Owned(
wire.typ
.typ
.to_string(&linker.types, &md.link_info.template_arguments),
.display(&linker.types, &md.link_info.template_arguments).to_string(),
));
hover.sus_code(details_vec.join(" "));
hover.gather_hover_infos(md, id, wire.typ.domain.is_generative());
}
LocationInfo::Type(typ, link_info) => {
hover.sus_code(
typ.to_string(&linker.types, &link_info.template_arguments),
typ.display(&linker.types, &link_info.template_arguments).to_string(),
);
}
LocationInfo::TemplateInput(in_obj, link_info, _template_id, template_arg) => {
Expand All @@ -207,7 +207,7 @@ pub fn hover(info: LocationInfo, linker: &Linker, file_data: &FileData) -> Vec<M
hover.sus_code(format!(
"param {} {}",
decl.typ_expr
.to_string(&linker.types, &link_info.template_arguments),
.display(&linker.types, &link_info.template_arguments),
template_arg.name
));
hover.gather_hover_infos(md, *declaration_instruction, true);
Expand Down
14 changes: 13 additions & 1 deletion src/flattening/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ mod lints;

use crate::alloc::UUIDAllocator;
use crate::prelude::*;
use crate::to_string::{TemplateNameGetter, WrittenTypeDisplay};
use crate::typing::abstract_type::DomainType;
use crate::typing::type_inference::{DomainVariableIDMarker, TypeVariableIDMarker};

use std::cell::OnceCell;
use std::ops::Deref;
use std::fmt::Display;
use std::ops::{Deref, Index};

pub use flatten::flatten_all_modules;
pub use initialization::gather_initial_file_data;
Expand Down Expand Up @@ -478,6 +480,16 @@ impl WrittenType {
WrittenType::Named(global_ref) => global_ref.get_total_span()
}
}
pub fn display<'a, TypVec: Index<TypeUUID, Output = StructType>, TemplateVec: TemplateNameGetter>(&'a self,
linker_types: &'a TypVec,
template_names: &'a TemplateVec,
) -> impl Display + 'a {
WrittenTypeDisplay {
inner: self,
linker_types,
template_names,
}
}
}

/// Little helper struct that tells us what kind of declaration it is. Is it a Port, Template argument, A struct field, or just a regular temporary?
Expand Down
4 changes: 2 additions & 2 deletions src/flattening/typechecking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -571,8 +571,8 @@ pub fn apply_types(
let _ = found.fully_substitute(&type_checker.type_substitutor);
let _ = expected.fully_substitute(&type_checker.type_substitutor);

let expected_name = expected.to_string(types, &type_checker.template_type_names);
let found_name = found.to_string(types, &type_checker.template_type_names);
let expected_name = expected.display(types, &type_checker.template_type_names).to_string();
let found_name = found.display(types, &type_checker.template_type_names).to_string();
errors
.error(span, format!("Typing Error: {context} expects a {expected_name} but was given a {found_name}"))
.add_info_list(infos);
Expand Down
6 changes: 3 additions & 3 deletions src/instantiation/concrete_typecheck.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl<'fl, 'l> InstantiationContext<'fl, 'l> {
fn finalize(&mut self) {
for (_id, w) in &mut self.wires {
if w.typ.fully_substitute(&self.type_substitutor) == false {
let typ_as_str = w.typ.to_string(&self.linker.types);
let typ_as_str = w.typ.display(&self.linker.types);

let span = self.md.get_instruction_span(w.original_instruction);
self.errors.error(span, format!("Could not finalize this type, some parameters were still unknown: {typ_as_str}"));
Expand All @@ -122,8 +122,8 @@ impl<'fl, 'l> InstantiationContext<'fl, 'l> {
let _ = found.fully_substitute(&self.type_substitutor);
let _ = expected.fully_substitute(&self.type_substitutor);

let expected_name = expected.to_string(&self.linker.types);
let found_name = found.to_string(&self.linker.types);
let expected_name = expected.display(&self.linker.types).to_string();
let found_name = found.display(&self.linker.types).to_string();
self.errors
.error(span, format!("Typing Error: {context} expects a {expected_name} but was given a {found_name}"))
.add_info_list(infos);
Expand Down
143 changes: 95 additions & 48 deletions src/to_string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ use crate::prelude::*;

use crate::{file_position::FileText, pretty_print_many_spans, value::Value};

use crate::flattening::{DomainInfo, Interface, InterfaceToDomainMap, Module, StructType, WrittenType};
use crate::flattening::{
DomainInfo, Interface, InterfaceToDomainMap, Module, StructType, WrittenType,
};
use crate::linker::{FileData, LinkInfo};
use crate::typing::{
abstract_type::{AbstractType, DomainType},
concrete_type::ConcreteType,
template::{
ConcreteTemplateArg, ConcreteTemplateArgs, TemplateInputs,
},
template::{ConcreteTemplateArg, ConcreteTemplateArgs, TemplateInputs},
};

use std::{
Expand Down Expand Up @@ -39,61 +39,95 @@ impl TemplateNameGetter for TemplateInputs {
}
}

impl WrittenType {
pub fn to_string<
TypVec: Index<TypeUUID, Output = StructType>,
TemplateVec: TemplateNameGetter,
>(
&self,
linker_types: &TypVec,
template_names: &TemplateVec,
) -> String {
match self {
WrittenType::Error(_) => "{error}".to_owned(),
WrittenType::TemplateVariable(_, id) => template_names.get_template_name(*id).to_owned(),
WrittenType::Named(named_type) => linker_types[named_type.id].link_info.get_full_name(),
#[derive(Debug)]
pub struct WrittenTypeDisplay<
'a,
TypVec: Index<TypeUUID, Output = StructType>,
TemplateVec: TemplateNameGetter,
> {
pub inner: &'a WrittenType,
pub linker_types: &'a TypVec,
pub template_names: &'a TemplateVec,
IBims1NicerTobi marked this conversation as resolved.
Show resolved Hide resolved
}

impl<'a, TypVec: Index<TypeUUID, Output = StructType>, TemplateVec: TemplateNameGetter> Display
for WrittenTypeDisplay<'a, TypVec, TemplateVec>
{
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self.inner {
WrittenType::Error(_) => f.write_str("{error"),
WrittenType::TemplateVariable(_, id) => {
f.write_str(self.template_names.get_template_name(*id))
}
WrittenType::Named(named_type) => {
f.write_str(&self.linker_types[named_type.id].link_info.get_full_name())
}
WrittenType::Array(_, sub) => {
sub.deref().0.to_string(linker_types, template_names) + "[]"
write!(
f,
"{}[]",
sub.deref()
.0
.display(self.linker_types, self.template_names)
)
}
}
}
}

impl AbstractType {
pub fn to_string<
TypVec: Index<TypeUUID, Output = StructType>,
TemplateVec: TemplateNameGetter,
>(
&self,
linker_types: &TypVec,
template_names: &TemplateVec,
) -> String {
match self {
AbstractType::Unknown(id) => format!("{id:?}"),
AbstractType::Template(id) => template_names.get_template_name(*id).to_owned(),
AbstractType::Named(id) => linker_types[*id].link_info.get_full_name(),
AbstractType::Array(sub) => sub.deref().to_string(linker_types, template_names) + "[]",
#[derive(Debug)]
pub struct AbstractTypeDisplay<
'a,
TypVec: Index<TypeUUID, Output = StructType>,
TemplateVec: TemplateNameGetter,
> {
pub inner: &'a AbstractType,
pub linker_types: &'a TypVec,
pub template_names: &'a TemplateVec,
}

impl<TypVec: Index<TypeUUID, Output = StructType>, TemplateVec: TemplateNameGetter> Display
for AbstractTypeDisplay<'_, TypVec, TemplateVec>
{
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self.inner {
AbstractType::Unknown(id) => write!(f, "{id:?}"),
AbstractType::Template(id) => f.write_str(self.template_names.get_template_name(*id)),
AbstractType::Named(id) => {
f.write_str(&self.linker_types[*id].link_info.get_full_name())
}
AbstractType::Array(sub) => write!(
f,
"{}[]",
sub.deref().display(self.linker_types, self.template_names)
),
}
}
}

impl ConcreteType {
pub fn to_string<TypVec: Index<TypeUUID, Output = StructType>>(
&self,
linker_types: &TypVec,
) -> String {
match self {
ConcreteType::Named(name) => linker_types[*name].link_info.get_full_name(),
#[derive(Debug)]
pub struct ConcreteTypeDisplay<'a, T: Index<TypeUUID, Output = StructType>> {
pub inner: &'a ConcreteType,
pub linker_types: &'a T,
}

impl<T: Index<TypeUUID, Output = StructType>> Display for ConcreteTypeDisplay<'_, T> {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self.inner {
ConcreteType::Named(name) => {
f.write_str(&self.linker_types[*name].link_info.get_full_name())
}
ConcreteType::Array(arr_box) => {
let (elem_typ, arr_size) = arr_box.deref();
format!(
write!(
f,
"{}[{}]",
elem_typ.to_string(linker_types),
elem_typ.display(self.linker_types),
arr_size.unwrap_value().unwrap_integer()
)
}
ConcreteType::Value(v) => format!("{{concrete_type_{v}}}"),
ConcreteType::Unknown(u) => format!("{{{u:?}}}"),
ConcreteType::Value(v) => write!(f, "{{concrete_type_{v}}}"),
ConcreteType::Unknown(u) => write!(f, "{{{u:?}}}"),
}
}
}
Expand Down Expand Up @@ -224,26 +258,39 @@ impl Module {
pub fn pretty_print_concrete_instance<TypVec>(
target_link_info: &LinkInfo,
given_template_args: &ConcreteTemplateArgs,
linker_types: &TypVec
linker_types: &TypVec,
) -> String
where TypVec: Index<TypeUUID, Output = StructType> {
where
TypVec: Index<TypeUUID, Output = StructType>,
{
assert!(given_template_args.len() == target_link_info.template_arguments.len());
let object_full_name = target_link_info.get_full_name();
if given_template_args.len() == 0 {
return format!("{object_full_name} #()");
}

use std::fmt::Write;
let mut result = format!("{object_full_name} #(\n");
for (id, arg) in given_template_args {
let arg_in_target = &target_link_info.template_arguments[id];
write!(result, " {}: ", arg_in_target.name).unwrap();
match arg {
ConcreteTemplateArg::Type(concrete_type, how_do_we_know_the_template_arg) => {
write!(result, "type {} /* {} */,\n", concrete_type.to_string(linker_types), how_do_we_know_the_template_arg.to_str()).unwrap();
write!(
result,
"type {} /* {} */,\n",
concrete_type.display(linker_types),
how_do_we_know_the_template_arg.to_str()
)
.unwrap();
}
ConcreteTemplateArg::Value(typed_value, how_do_we_know_the_template_arg) => {
write!(result, "{} /* {} */,\n", typed_value.value.to_string(), how_do_we_know_the_template_arg.to_str()).unwrap();
write!(
result,
"{} /* {} */,\n",
typed_value.value.to_string(),
how_do_we_know_the_template_arg.to_str()
)
.unwrap();
}
ConcreteTemplateArg::NotProvided => {
write!(result, "/* Could not infer */\n").unwrap();
Expand Down
20 changes: 17 additions & 3 deletions src/typing/abstract_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ use crate::alloc::ArenaAllocator;
use crate::prelude::*;
use crate::value::Value;

use std::ops::Deref;
use std::fmt::Display;
use std::ops::{Deref, Index};

use super::template::{GlobalReference, TemplateAbstractTypes, TemplateInputs};
use super::type_inference::{DomainVariableID, DomainVariableIDMarker, TypeSubstitutor, TypeVariableID, TypeVariableIDMarker, UnifyErrorReport};
use crate::flattening::{BinaryOperator, StructType, TypingAllocator, UnaryOperator, WrittenType};
use crate::linker::get_builtin_type;
use crate::to_string::map_to_type_names;
use crate::to_string::{map_to_type_names, AbstractTypeDisplay, TemplateNameGetter};

/// This contains only the information that can be easily type-checked.
///
Expand All @@ -23,6 +24,19 @@ pub enum AbstractType {
Array(Box<AbstractType>),
}

impl AbstractType {
pub fn display<'a, TypVec: Index<TypeUUID, Output = StructType>, TemplateVec: TemplateNameGetter>(&'a self,
linker_types: &'a TypVec,
template_names: &'a TemplateVec,
) -> impl Display + 'a {
AbstractTypeDisplay {
inner: self,
linker_types,
template_names,
}
}
}

pub const BOOL_TYPE: AbstractType = AbstractType::Named(get_builtin_type("bool"));
pub const INT_TYPE: AbstractType = AbstractType::Named(get_builtin_type("int"));

Expand Down Expand Up @@ -322,7 +336,7 @@ impl TypeUnifier {
pub fn finalize_abstract_type(&mut self, types: &ArenaAllocator<StructType, TypeUUIDMarker>, typ: &mut AbstractType, span: Span, errors: &ErrorCollector) {
use super::type_inference::HindleyMilner;
if typ.fully_substitute(&self.type_substitutor) == false {
let typ_as_string = typ.to_string(types, &self.template_type_names);
let typ_as_string = typ.display(types, &self.template_type_names);
errors.error(span, format!("Could not fully figure out the type of this object. {typ_as_string}"));
}
}
Expand Down
11 changes: 10 additions & 1 deletion src/typing/concrete_type.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
use crate::flattening::StructType;
use crate::prelude::*;
use crate::to_string::ConcreteTypeDisplay;

use std::ops::Deref;
use std::fmt::Display;
use std::ops::{Deref, Index};

use crate::linker::get_builtin_type;
use crate::
Expand Down Expand Up @@ -46,4 +49,10 @@ impl ConcreteType {
ConcreteType::Unknown(_) => true,
}
}
pub fn display<'a>(&'a self, linker_types: &'a impl Index<TypeUUID, Output = StructType>) -> impl Display + 'a {
ConcreteTypeDisplay {
inner: self,
linker_types,
}
}
}
Loading