go-org-orgwiki/blorg
Niklas Fasching 5464ab37d2 Fix race condition surrounding global orgWriter
Since writers are normally only used synchronously (i.e. to write one document
at a time), we don't guard modifications to their internal
state (e.g. temporarily replacing the string.Builder in WriteNodesAsString)
against race conditions.

The package global `orgWriter` and corresponding use cases of it (`org.String`,
`$node.String`) break that pattern - the writer is potentially used from
multiple go routines at the same time. This results in race conditions that
manifest as error messages like e.g.

    could not write output: runtime error: invalid memory address or nil pointer dereference. Using unrendered content.

Additionally, since we catch panics in `Document.Write`, the corresponding
stack trace is lost and dependents of go-org never know what hit them.

As using a writer across simultaneously across go routines is not a standard
pattern, we'll sync the use of the global `orgWriter` instead of trying to make
the actual writer threadsafe; less code noise for the common use case.
2023-03-12 11:28:55 +01:00
..
testdata Refresh test fixtures for chroma v2.2.0 2022-06-28 06:37:06 -06:00
config.go Fix race condition surrounding global orgWriter 2023-03-12 11:28:55 +01:00
config_test.go Rewrite blorg tests without external md5sum 2022-02-27 19:15:48 -05:00
page.go blorg: ignore draft pages 2020-07-24 18:45:22 +02:00
util.go highlight: support highlighting lines in the default writer 2022-07-18 03:56:15 +09:00