Though Unicode handling in large projects can often be complex, Salt adheres to several basic rules to help developers handle Unicode correctly.
(For a basic introduction to this problem, see Ned Batchelder's excellent intoroduction to the topic <http://nedbatchelder.com/text/unipain/unipain.html>.
Salt's basic workflow for Unicode handling is as follows:
Salt should convert whatever data is passed on CLI/API to Unicode. Internally, everything that Salt does should be Unicode unless it is printing to the screen or writing to storage.
Modules and various Salt pluggable systems use incoming data assuming Unicode.
received from the API into Unicode.
convert data received into Unicode. (This does not apply if using the
cmd
execution module, which should handle
this for you.
outputter) or which write directly to disk, a string should be encoded
when appropriate. To handle this conversion, the global variable
__salt_system_encoding__
is available, which declares the locale of
the system that Salt is running on.
When a function in a Salt module returns a string, it should return a
unicode
type in Python 2.
When Salt delivers the data to an outputter or a returner, it is the job of the outputter or returner to encode the Unicode before displaying it on the console or writing it to storage.