Skip to content

plandes/clj-actioncli

Repository files navigation

Command line interface action oriented framework

Travis CI Build Status

This library parses action based command line arguments and invokes the corresponding code. Action based means using the first token (after the binary name) as a mnemonic to invoke some action much like clone in git clone.

Each action mnemonic is mapped to a function with corresponding arguments passed at invocation time.

This package has a few other basic utility libraries that is used by this package but useful for many others (i.e. file system path register and resolution).

Table of Contents

Obtaining

In your project.clj file, add:

Clojars Project

Documentation

API documentation:

Templating

You can use the make project utility with the lein project directory to template out the files in the following secion.

Usage

This API provides not only an enhanced action based command line, but also several general purpose libraries.

Action Commands

Say you're writing a web service (among other things an uberjar might have) and you want to start it with the command:

$ java -jar serviceapp.jar service -p 8080

There are three kinds of action commands:

  • Global action: These are parsed first before anything else and usually trigger an early exit. Example options include --help, -h, --version.
  • Single action: These don't include the name of the action on the command line and are typical UNIX like command lines. Examples include ls, grep, etc.
  • Multi-action: These include the an action name (think operand) at the beginning of the command line. Examples include git clone where clone is the action name.

Create the following files: service.clj and core.clj

src/com/example/service.clj

(ns com.example.service
  (:require [clojure.tools.logging :as log])
  (:require [zensols.actioncli.parse :refer (with-exception)]))

(defn run-server [port]
  (log/infof "starting service on port %d" port))

(def start-server-command
  {:description "start the guide website and service" 
   :options [["-p" "--port PORT" "the port bind for web site/service"
              :default 8080
              :parse-fn #(Integer/parseInt %)
              :validate [#(< 0 % 0x10000) "Must be a number between 0 and 65536"]]]
   :app (fn [opts & args]
          (with-exception
            (run-server (:port opts))))})

src/com/example/core.clj

(ns com.example.core
  (:require [zensols.actioncli.parse :as parse]
            [zensols.actioncli.log4j2 :as lu])
  (:require [example.version])
  (:gen-class :main true))

(defn- version-info-action []
  (println (format "%s (%s)" example.version/version example.version/gitref)))

(defn- create-action-context []
  (parse/multi-action-context
   '((:service com.example.service start-server-action)
     (:repl zensols.actioncli.repl repl-action))
   :version-option (parse/version-option version-info-action)
   :default-arguments ["service" "-p" "8080"]))

(defn -main [& args]
  (lu/configure "service-log4j2.xml")
  (parse/set-program-name "nlpserver")
  (-> (create-action-context)
      (parse/process-arguments args)))

resources/service-log4j.xml

<configuration status="OFF">
    <appenders>
        <console name="console" target="SYSTEM_OUT">
            <patternLayout pattern="%c{1}: %m%n"/>
        </console>
    </appenders>
    <loggers>
        <logger name="com.example" level="info"/>
        <root level="warn">
            <appenderRef ref="console"/>
        </root>
    </loggers>
</configuration>

Executing

$ java -jar target/clj-actioncli-example-0.1.0-SNAPSHOT-standalone.jar --help
service	start the guide website and service
  -p, --port PORT  8080  the port bind for web site/service

 repl	start a repl either on the command line or headless with -h
  -h, --headless  start an nREPL server
  -p, --port      the port bind for the repl server

 version	Get the version of the application.
  -g, --gitref

$ java -jar exampleapp-standalone.jar version
0.0.1
$ java -jar exampleapp-standalone.jar version -g
0.0.1
<some git ref>
$ java -jar exampleapp-standalone.jar service -p 1234
Jul 08, 2016 6:09:08 PM clojure.tools.logging$eval1$fn__5 invoke
INFO: starting service on port 1234
$ java -jar exampleapp-standalone.jar repl
network-repl
Clojure 1.8.0
user=> (+ 1 1)
2

Resource Location

Many apps (command line) need to find paths on the file system. This library provides a way to both register and refine those locations with Java system properties.

user=> (require '[zensols.actioncli.resource :as res])
user=> (res/register-resource :data :system-file "data" :system-default "../data")
#function[zensols.actioncli.resource/eval9492/fn--9493]
user=> (res/register-resource :runtime-gen :pre-path :data :system-file "db")
#function[zensols.actioncli.resource/eval9498/fn--9499]
user=> (.getPath (res/resource-path :data))
../data
user=> (.getPath (res/resource-path :runtime-gen))
../data/db
user=> (res/set-resource-property-format "myapp.%s")
"myapp.%s"
user=> (System/setProperty "myapp.data" "/new-data-path")
nil
user=> (.getPath (res/resource-path :data))
../new-data-path
user=> (.getPath (res/resource-path :runtime-gen))
../new-data-path/db

Resource from the Class Path

When creating resources from the Java class path (i.e. file system and jar agnostic locations), use :resource for the :type and :constant for the resource without a leading forward slash. For example:

(register-resource :root-pkg :constant "pool" :type :resource)

Resource Functions

You can also declare functions to resolve your resources. If using resource-path with an argument (i.e. additional directory) the function is called with an argument. Otherwise none is given and the 0-arg function form is called. For example:

(register-resource :func-dir
                   :function (fn
                               ([] (io/file "no-file-for-you"))
                               ([file]
                                 (io/file "/another/path" file))))
(resource-path :func-dir "pos")
=> #object[java.io.File 0x394b51a "/another/path/pos"]

Resource Lexical Scope

You can temporarily register and then call resource-path in a lexical scope using with-resources as in:

(with-resources
  (register-resource :data :system-file "../less-data")
  (resource-path :runtime-gen))

=> #object[java.io.File 0x1bbdf16d "../less-data/db"]

Timeout Block

There's a utility namespace that throws an exception if a lexical scope takes too long to process. For example, the following will throw a java.util.concurrent.TimeoutException:

(require '[zensols.actioncli.util :refer (with-timeout)])

(with-timeout (* 1 1000)
  (Thread/sleep (* 2 1000)))

=> TimeoutException Execution timed out.  clojail.core/thunk-timeout (core.clj:41)

Building

To build from source, do the folling:

  • Install Leiningen (this is just a script)
  • Install GNU make
  • Install Git
  • Download the source: git clone --recurse-submodules https://github.com/plandes/clj-actioncli && cd clj-actioncli
  • Build and install: make install

Note that you can also build a single jar file with all the dependencies with: make uber

Changelog

An extensive changelog is available here.

License

Copyright © 2017, 2018 Paul Landes

Apache License version 2.0

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

An action oriented framework to the CLI (and various other libraries)

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •