diff options
Diffstat (limited to 'examples/file/eris-file.lisp')
-rw-r--r-- | examples/file/eris-file.lisp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/examples/file/eris-file.lisp b/examples/file/eris-file.lisp new file mode 100644 index 0000000..fdc53ef --- /dev/null +++ b/examples/file/eris-file.lisp @@ -0,0 +1,30 @@ +(in-package :eris-file) +(defvar *eris-directory* "/tmp/") + +(defun output-to-file (block reference) + (let* ((base32 (eris:bytes-to-base32-unpadded reference)) + (file (concatenate 'string *eris-directory* base32))) + (unless (probe-file file) + (alexandria:write-byte-vector-into-file block file)))) + +(defun input-from-file (reference) + (let* ((base32 (eris:bytes-to-base32-unpadded reference)) + (file (concatenate 'string *eris-directory* base32))) + (if (probe-file file) + (alexandria:read-file-into-byte-vector file) + nil))) + +(defun encode-file (input-file &optional (output-directory *eris-directory*)) + (let ((*eris-directory* output-directory)) + (with-open-file (file input-file :direction :input :element-type '(unsigned-byte 8)) + (eris:read-capability-to-urn + (eris:eris-encode file + (if (< (file-length file) (* 1024 16)) 1024 eris:32kib) + #'output-to-file + :hash-output nil))))) + +(defun decode-file (urn output-file &optional (output-directory *eris-directory*)) + (let ((*eris-directory* output-directory)) + (with-open-file (file output-file :direction :output :element-type '(unsigned-byte 8)) + (alexandria:copy-stream (eris:eris-decode (eris:urn-to-read-capability urn) #'input-from-file) + file)))) |