Liking cljdoc? Tell your friends :D

boot.util

Namespace containing various utility functions and macros to make life easier in Boot scripts.

Settings (read-only)

*colorize?* *verbosity* colorize?-system-default

Shell

*sh-dir* dosh sh

Exit

exit-error exit-ok

Logging

dbug dbug* fail info warn warn-deprecated

Useful Macros

do-while-let dotoseq extends-protocol guard while-let with-err-str with-let with-resolve with-rethrow without-exiting

Printing

pp* pp-str print-ex print-tree

Miscellaneous

auto-flush bind-syms dep-as-map extract-ids index-of jarname let-assert-keys map-as-dep path->ns read-string-all with-semaphore with-semaphore-noblock


*colorize?*

Atom containing the value that determines whether ANSI colors escape codes
will be printed with boot output.

*sh-dir*

The directory to use as CWD for shell commands.

*verbosity*

Atom containing the verbosity level, 1 is lowest, 3 highest. Level 2
corresponds to the -v boot option, level 3 to -vv, etc.

Levels:

  1.  Print INFO level messages or higher, colorize and prune stack traces
      for maximum readability.
  2.  Print DEBUG level messages or higher, don't colorize stack traces and
      prune some trace elements for improved readablility.
  3.  Print DEBUG level messages or higher, don't colorize stack traces and
      include full traces with no pruning.

auto-flush

(auto-flush writer)
Returns a PrintWriter suitable for binding to *out* or *err*. This writer
will call .flush() on every write, ensuring that all output is flushed before
boot exits, even if output was written from a background thread.

bind-syms

(bind-syms form)
Returns the names bound in the given destructuring form.

colorize?-system-default

(colorize?-system-default)
Return whether we should colorize output on this system. This is
true, unless we're on Windows, where this is false. The default
console on Windows does not interprete ansi escape codes. The
default can be overriden by setting the environment variable
BOOT_COLOR=1 or BOOT_COLOR=yes or BOOT_COLOR=true to turn it on
or any other value to turn it off.

dbug

(dbug & more)
Print DEBUG level message. Arguments of the form fmt & args suitable for
passing to clojure.core/format.

Note that boot.util/*verbosity* in a pod needs to be altered AFTER pod
creation or log level won't be affected.

dbug*

(dbug* fmt & args)
Macro version of boot.util/dbug, arguments are only evaluated when the
message will be printed (i.e., verbosity level >= 2).

dep-as-map

(dep-as-map [project version & kvs])
Returns the given dependency vector as a map with :project and :version
keys plus any modifiers (eg. :scope, :exclusions, etc).

do-while-let

(do-while-let [binding test] & body)
Like while-let, except that the body is executed at least once.

dosh

(dosh & args)
Evaluates args as a shell command, blocking on completion and throwing an
exception on non-zero exit status. Output from the shell is streamed to
stdout and stderr as it is produced.

dotoseq

(dotoseq obj seq-exprs & body)
A cross between doto and doseq. For example:

    (-> (System/-err)
        (dotoseq [i (range 0 100)]
          (.printf "i = %d\n" i))
        (.checkError))

exit-error

(exit-error & body)
Binds *out* to *err*, evaluates the body, and exits with non-zero status.

  Notes:
  * This is the preferred method for returning an exit code != 0, this
  method returns 1.
  * This macro does not call System.exit(), because this instance of boot
  may be nested in another boot instance. Instead a special method on boot.App
  is called which handles the exit behavior (calling shutdown hooks etc.).

exit-ok

(exit-ok & body)
Evaluates the body, and exits with non-zero status.

  Notes:
  * Boot's main explicitly wraps user tasks in exit-ok so that in general
  it is not necessary to call it for exiting with 0.
  * This macro does not call System.exit(), because this instance of boot
  may be nested in another boot instance. Instead a special method on boot.App
  is called which handles the exit behavior (calling shutdown hooks etc.).

extends-protocol

(extends-protocol protocol & specs)
Like extend-protocol but allows specifying multiple classes for each of the
implementations:

    (extends-protocol IFoo
      clojure.lang.MapEntry         ; <-- this is the difference, multiple
      clojure.lang.PersistentVector ; <-- classes per implementation
      (-foo [x] (into [] (map bar x))))

extract-ids

(extract-ids sym)
Extracts the group-id and artifact-id from sym, using the convention that
non-namespaced symbols have group-id the same as artifact-id.

fail

(fail & more)
Print ERROR level message. Arguments of the form fmt & args suitable for
passing to clojure.core/format.

Note that boot.util/*verbosity* in a pod needs to be altered AFTER pod
creation or log level won't be affected.

guard

(guard expr & [default])
Evaluates expr within a try/catch and returns default (or nil if default is
not given) if an exception is thrown, otherwise returns the result.

index-of

(index-of v val)
Find the index of val in the sequential collection v, or nil if not found.

info

(info & more)
Print INFO level message. Arguments of the form fmt & args suitable for
passing to clojure.core/format.

Note that boot.util/*verbosity* in a pod needs to be altered AFTER pod
creation or log level won't be affected.

jarname

(jarname project version)
Generates a friendly name for the jar file associated with the given project
symbol and version.

let-assert-keys

(let-assert-keys binding & body)
Let expression that throws an exception when any of the expected bindings
is missing.

map-as-dep

(map-as-dep {:keys [project version], :as dep-map})
Returns the given dependency vector with :project and :version put at
index 0 and 1 respectively and modifiers (eg. :scope, :exclusions,
etc) next.

path->ns

(path->ns path)
Returns the namespace symbol corresponding to the source file path.

pp*

(pp* expr)
Pretty-print expr using the code dispatch.

pp-str

(pp-str expr)
Pretty-print expr to a string using the code dispatch.

print-ex

(print-ex ex)
Print exception to *err* as appropriate for the current *verbosity* level.

print-tree

(print-tree tree & [prefixes node-fn])
Pretty prints tree, with the optional prefixes prepended to each line. The
output is similar to the tree(1) unix program.

A tree consists of a graph of nodes of the format [<name> <nodes>], where
<name> is a string and <nodes> is a set of nodes (the children of this node).

Example:

    (util/print-tree [["foo" #{["bar" #{["baz"]}]}]] ["--" "XX"])

prints:

    --XX└── foo
    --XX    └── bar
    --XX        └── baz

You can also pass a function to generate the prefix instead of a
collection of prefixes that will be passed the node. Passing a
function to generate the string representation of the node itself is
also an option.

read-string-all

(read-string-all s)
Reads all forms from the string s, by wrapping in parens before reading.

sh

(sh & args)
Evaluate args as a shell command, asynchronously, and return a thunk which
may be called to block on the exit status. Output from the shell is streamed
to stdout and stderr as it is produced.

warn

(warn & more)
Print WARNING level message. Arguments of the form fmt & args suitable for
passing to clojure.core/format.

Note that boot.util/*verbosity* in a pod needs to be altered AFTER pod
creation or log level won't be affected.

warn-deprecated

(warn-deprecated & args)
Print WARNING level message. Arguments of the form fmt & args suitable for
passing to clojure.core/format. Respects the BOOT_WARN_DEPRECATED environment
variable, which if set to no suppresses these messages.

Note that boot.util/*verbosity* in a pod needs to be altered AFTER pod
creation or log level won't be affected.

while-let

(while-let [binding test] & body)
Repeatedly executes body while test expression is true. Test expression is
bound to binding.

with-err-str

(with-err-str & body)
Evaluates exprs in a context in which *err* is bound to a fresh StringWriter.
Returns the string created by any nested printing calls.

[1]: http://stackoverflow.com/questions/17314128/get-stacktrace-as-string

with-let

(with-let [binding resource] & body)
Binds resource to binding and evaluates body. Then, returns resource. It's
a cross between doto and with-open.

with-resolve

(with-resolve bindings & body)
Given a set of binding pairs bindings, resolves the righthand sides requiring
namespaces as necessary, binds them, and evaluates the body.

with-rethrow

(with-rethrow expr message)
Evaluates expr. If an exception is thrown it is wrapped in an exception with
the given message and the original exception as the cause, and the wrapped
exception is rethrown.

with-semaphore

(with-semaphore sem & body)
Acquires a permit from the Semaphore sem, blocking if necessary, and then
evaluates the body expressions, returning the result. In all cases the permit
will be released before returning.

with-semaphore-noblock

(with-semaphore-noblock sem & body)
Attempts to acquire a permit from the Semaphore sem. If successful the body
expressions are evaluated and the result returned. In all cases the permit
will be released before returning.

without-exiting

(without-exiting & body)
Evaluates body in a context where System/exit doesn't work. Returns result
of evaluating body, or nil if code in body attempted to exit.

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close