clj-lib.io

Useful utility fns for local & network IO

*char-encoding*

dynamic

Defines the default character encoding for fns in this namespace that
require one. Specifically, string to/from bytes and URL encode/decode.

*zip-buff-size*

dynamic

Defines the size of the compress/decompress stream buffers, in bytes

base64-decode

(base64-decode v)
FIXME: write docs

base64-encode

(base64-encode b)
FIXME: write docs

bytes->str

(bytes->str bytes)
Constructs a string from byte-array `bytes`, using [[*char-encoding*]].

compress

(compress s)
Compresses the input string and returns it as a byte array, using zlib compression

decompress

(decompress b)
Decompresses a zlib compressed byte-array, returns the value as a string

deserialize-string

(deserialize-string s)
Inverse of [[serialize-string]]. An alias for `read-string`.

ensure-dirs

(ensure-dirs path)
Ensures that all directories in the specified `path` exist, creating them if
necessary.

last-modified

(last-modified path)
Returns the last-modified time for the specified path, if it exists; nil
otherwise.

serialize-string

(serialize-string s)
Serializes expressions `s` with `pr`, and returns the value as a string.

str->bytes

(str->bytes s)
Returns string `s` as a byte array, using [[*char-encoding*]].

with-in

macro

(with-in s & body)
Executes `body` in a context in which `*in*` is bound to a reader of `s`. See
See `clojure.java.io/reader` for supported argument types.

with-out

macro

(with-out s & body)
Executes `body` in a context in which `*out*` is bound to a writer to `s`.
See `clojure.java.io/writer` for supported argument types.