この変換には、次の 2 つのポータブル ライブラリがあります。
すでに別の回答で言及されているflexi-streams。
このライブラリは古く、より多くの機能、特に拡張可能なストリームを備えています。
Babel、特に文字のエンコードとデコードに特化したライブラリ
Flexi-Stream に対する Babel の主な利点は速度です。
最高のパフォーマンスを得るには、必要な機能がある場合は Babel を使用し、それ以外の場合はフレキシストリームにフォールバックします。速度の違いを示す (やや非科学的な) マイクロベンチマークの下。
このテスト ケースでは、Babel は337 倍高速で、必要なメモリは 200 分の 1 です。
(asdf:operate 'asdf:load-op :flexi-streams)
(asdf:operate 'asdf:load-op :babel)
(defun flexi-streams-test (bytes n)
(loop
repeat n
collect (flexi-streams:octets-to-string bytes :external-format :utf-8)))
(defun babel-test (bytes n)
(loop
repeat n
collect (babel:octets-to-string bytes :encoding :utf-8)))
(defun test (&optional (data #(72 101 108 108 111))
(n 10000))
(let* ((ub8-vector (coerce data '(simple-array (unsigned-byte 8) (*))))
(result1 (time (flexi-streams-test ub8-vector n)))
(result2 (time (babel-test ub8-vector n))))
(assert (equal result1 result2))))
#|
CL-USER> (test)
Evaluation took:
1.348 seconds of real time
1.328083 seconds of user run time
0.020002 seconds of system run time
[Run times include 0.12 seconds GC run time.]
0 calls to %EVAL
0 page faults and
126,402,160 bytes consed.
Evaluation took:
0.004 seconds of real time
0.004 seconds of user run time
0.0 seconds of system run time
0 calls to %EVAL
0 page faults and
635,232 bytes consed.
|#