go version)?1.9beta1
In my code, I'm implementing fmt.Formatter.
In order to write a string to the fmt.State, I'm calling io.WriteString().
I know that this function has an optimization that allows to call WriteString() if w implements it.
Sadly, in my case the "real" type of fmt.State is fmt.pp.
fmt.pp only has Write().
I think we should add:
func (p *pp) WriteString(s string) (ret int, err error) {
p.buf.WriteString(s)
return len(s), nil
}
in my case, it greatly improve performance and reduces memory allocation.
We could also implement WriteByte() and WriteRune(), since fmt.buffer has these methods.
Sounds reasonable.
I want to contribute to Go and noticed the Help Wanted label. If no one is working on it, I'd like to take it! :)
io.WriteString() uses a runtime check so it looks like it should work without changing the State Interface definition. For go2 we could then think about wether it makes sense to update the State Interface.
@nikhita go ahead if you want too. Please add [email protected] and [email protected] as reviewers. We can review before go1.10 but we can only submit when the code tree opens for go1.10 start of August.
@martisch will do that, thank you.
@SCKelemen
@nikhita
did you have time to start your first CL for go?
Any blockers encountered that we can help with?
@martisch
sorry, was busy at work - didn't have time to work on it.
But will try working on it on my flight to GopherCon now. :)
Maybe I can even ask any questions I have during the Go contributor workshop at GopherCon? :)
no problem. Asking at the contributor workshop sounds good.
CL https://golang.org/cl/48871 mentions this issue.
Just checking if this is still active. I see in the CL that it needs tests. I can help with that, if need be.
Change https://golang.org/cl/61430 mentions this issue: fmt: Implement pp.WriteString() method
I mailed another way on how to resolve this. gopherbot will notice soon.
Change https://golang.org/cl/61450 mentions this issue: fmt: make buffer satisfy io interfaces
Change https://golang.org/cl/61451 mentions this issue: fmt: make pp a composition with buffer
Adding WriteString makes some sense, but please let's not open up an internal type to the full pressure of external I/O interfaces.
Following up here instead of on the CL discussion.
I would also favor to leave the internal buffer methods unexposed and only implement WriteString on pp as the proposal suggested. As far as i know there has been not yet been data or a request to add more io methods beyond WriteString. Keeping the api footprint low imposes less constraints on internals for future changes and avoids needing to implement them explicitly on pp later if buffer is replaced by something with different interfaces for internal optimization.
If it is decided to expose all the io methods from the buffer it would be good to make sure that there are no regressions due to the compiler not optimizing all the overhead away for the internal use of those methods (e.g. due to inline budget changes).
Most helpful comment
@martisch
sorry, was busy at work - didn't have time to work on it.
But will try working on it on my flight to GopherCon now. :)
Maybe I can even ask any questions I have during the Go contributor workshop at GopherCon? :)