Support -bom
in encoding
option and detect BOM
#3396
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
BOM is read and written in files if
encoding
option ends in-bom
in this pull request. There are not much encodings supporting BOM so the encoding has to be checked when BOM is used. A new option where usage of BOM is enabled is not added because both options cannot be validated when one is set.The option is set when BOM is detected using utfbom so utfbom is added as a dependency package. Setting
encoding
to UTF-32 is not supported so the option is not set when UTF-32 is detected. Bytes that are not valid UTF-8 text are modified so UTF-32 BOM is intentionally not included in buffer.BOM is not written in empty files when
transform.Writer.Close
is not called inoverwriteFile
ininternal/buffer/save.go
so the method is called. It has been not tested if there is an unexpected bug with calling the method.Closes #3369