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

Stack overflow using the SpanFormatter #242

Open
Keboo opened this issue Oct 4, 2018 · 0 comments
Open

Stack overflow using the SpanFormatter #242

Keboo opened this issue Oct 4, 2018 · 0 comments
Labels
Area-Rendering bug Something isn't working

Comments

@Keboo
Copy link
Member

Keboo commented Oct 4, 2018

The following code throws a stack overflow exception.

var formatter = new SpanFormatter();
formatter.AddFormatter<int>(x => $"Int: {x}");
Span span = formatter.Format(42);

The issue is the SpanFormatter recurses on the parameter, and each time looks up the formatter, which causes it to loop back on itself.

If you specify a format parameter the problem no longer occurs:

var formatter = new SpanFormatter();
formatter.AddFormatter<int>(x => $"Int: {x:F0}");
Span span = formatter.Format(42);

This is due to the different code path that handles the format.

We also need to consider how to handle this in the generic case. Consider what happens if a format specifier is declared on string.

var formatter = new SpanFormatter();
formatter.AddFormatter<string>(x => $"Prefix: {x}");
Span span = formatter.Format("42");
@Keboo Keboo added the bug Something isn't working label Oct 4, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-Rendering bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants